Clarity

  • 1.  New UX - Roadmap Item (Scenarios) Table

    Posted Oct 24, 2018 05:22 PM

    Does anyone know the table that holds the actual Scenario details (Name, ID etc.) for Roadmap Items in the new UX?

     

    Looking to reference the SCENARIO_ID field in the RDM_ROADMAP_ITEMS table to get the actual Scenario name.

     

    Thanks,

    Marlon



  • 2.  Re: New UX - Roadmap Item (Scenarios) Table
    Best Answer

    Broadcom Employee
    Posted Oct 24, 2018 11:50 PM

    Hi Marlon,

     

    Try to review ODF_SCENARIOS table by using below query.

     

    select scenario.name scenario_name, item.name item_name
    from ODF_SCENARIOS scenario,RDM_ROADMAP_ITEMS item
    where scenario.id=item.scenario_id;

     

    Regards,

    Shoichi