Reports Tab in iProcurement

I added a tab in iProcurement to allow users to submit a report via a sswa jsp function. When they click on the tab, it lists the name of the report. This works perfectly. They go through the steps to submit the report and when they submit, it takes them to their concurrent manager queue. We have a request to also provide a link to the concurrent manager queue at the beginning because otherwise, they have to submit a new report to see their earlier requests. Is there a way to add a "view requests" button on the same page? Hope that makes sense.
Thanks in advance for your help!
Rob

Hi,
Are you talking about the reports tab in P6 EPPM (web Access)? P6 release 8 onwards the reports tab is added when you install and link the BI with P6. Otherwise there is no Reports tab is avilable in P6 r8 onwards. Have you installed BI or any other reporting tools for reporting purpose?
Thanks,
Dip

Similar Messages

  • Reporting Tab is not showing in SCSM 2012 SP1 Console

    I'm working with SCSM 2012 SP1. But after installing data ware house only "DataWareHouse" tab appares no "Reporting" tab. And it shows below MSG:
    And only the below reporting management pack are available in the Data Ware House >> Management pack area.
    I already check data warehouse server 'System Center Data Access Service' and 'SQL Server reporting Service', borth are running. But still 'Reporting' tab is not there.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

    At last I solve the problem. THere is 2 solution for resolve the issue.
    Force start all warehouse job.
    Un register and reregistared DataWareHouse againg.
    In my case I do the borth after reregister datawarehouse I wait 1hr after that I manualy start the warehouse jobs. And it works for me.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

  • Reporting tab is not shown in the console

    hi everyone
    the reporting tab is not shown in the service manager console, the topology i am using is 2 servers [one for DW and the other for management server] both servers have their SQL server installed on each one, could you please tell me how i can start to get
    this working or the steps i have to follow ?? isn't supposed to be working out of the box ? i have checked reporting services and they are running

    Probably your report server is not pointing to the DWDATAMART database, try login to:
    http://YourDWDatabase/Reports/Pages/Folder.aspx?ItemPath=%2fSystemCenter%2fServiceManager&ViewMode=List
    click on DWDATAMART Connection, under connection string, do you see your DWDATAMART DB name and server name?
    Antoine AL Ibry

  • Can we generate one report tab for each of the prompt values selected in the bobj 4.0 webi report.

    can we generate one report tab which filters
    with each prompt value selected in bobj 4.0 webi report.

    Hi Shrinidhi ,
    It can be achievable with static tabs created for each LOV .But this is not recommended because , object values can change dynamically .
    It is good idea to use section on prompt object in the report .With sections great feature available is in larger report it’s easy to navigate using map. It displays the section tree.You can select the particular LOV to navigate.

  • Problem defining a report to show in Reports tab of plug-in home page

    We are developing a plug-in for OEM and we want to add some SYSTEM reports that will be showing in Reports tab of plug-in home page.
    We tried to use the PL/SQL code described in Extensibility Guide, copied the code used in some existing plug-in that we downloaded from Oracle site, but it does not work. When executing the code we receiving "PL/SQL procedure successfully completed" message, but report does not show neither in Reports list nor in Home page (reports tab does not exist).
    Finally we tried to add a report containing only static text component, but with same result.
    Following is the code that is executed:
    DECLARE
    l_target_types MGMT_IP_TARGET_TYPES;
    l_param_values MGMT_IP_PARAM_VALUE_LIST;
    l_target_type MGMT_IP_TARGET_TYPES;
    l_report_guid RAW(16);
    l_element_guid RAW(16);
    l_report_title_nlsid VARCHAR2(128);
    l_report_owner VARCHAR(100);
    l_curr_order NUMBER;
    l_curr_row NUMBER;
    BEGIN
    -- specify the target type associated with this report
    l_target_type := MGMT_IP_TARGET_TYPES();
    l_target_type.extend(1);
    l_target_type(1) := 'test_plugin_57';
    l_report_title_nlsid := 'Status 57_4';
    l_report_owner := mgmt_user.get_repository_owner;
    -- create a report definition for the report
    l_report_guid := mgmt_ip.create_report_definition (
    p_title_nlsid => l_report_title_nlsid,
    p_description_nlsid => 'TODO: description here',
    p_owner => l_report_owner,
    p_category_nlsid => 'Monitoring',
    p_sub_category_nlsid => 'Hardware',
    p_late_binding_target_types => l_target_type,
    p_late_binding_multi_targets => 0,
    p_show_table_of_contents => 1,
    p_system_report => 1,
    p_component_name => l_target_type(1)
    -- Add report so that it shows up under "reports" tab in default home page
    mgmt_mp_homepage.add_report (
    p_target_type => l_target_type(1),
    p_report_title => l_report_title_nlsid,
    p_report_owner => l_report_owner,
    p_report_order => 1
    -- Text
    l_param_values := MGMT_IP_PARAM_VALUE_LIST();
    l_param_values.extend(2);
    l_param_values(1) := MGMT_IP_PARAM_VALUE_RECORD(
    'oracle.sysman.eml.ip.render.elem.TextParamBean.textMessage',
    'This page shows the reports related to TBD.');
    l_param_values(2) := MGMT_IP_PARAM_VALUE_RECORD(
    'oracle.sysman.eml.ip.render.elem.TextParamBean.textStyle',
    'OraTipText');
    l_curr_order := 1;
    l_curr_row := 1;
    l_element_guid := mgmt_ip.add_element_to_report_def (
    p_report_guid => l_report_guid,
    p_element_name_nlsid => 'IPMSG_STYLED_TEXT',
    p_element_type_nlsid => 'IPMSG_ANY_TARGET_TYPE',
    p_header_nlslid => null,
    p_element_order => l_curr_order,
    p_element_row => l_curr_row,
    p_parameters => l_param_values,
    p_targets => null
    END;
    /

    Have you tried running your sql file in sql plus? Does that work? If it does execute, does the report show on the main tab but not on the target homepage or does it show in neither spot? Try hitting the refresh icon in the page to reset the cache on the Reports tab.
    When you deploy the plug-in with the report file in it, did you see any errors or messages in the oms logs?
    1. We do: run the PL/SQL script I posted from sqlPlus. As far as I understand it should add a report?
    2. We tried all the ways of defining a report. We successfully create the report interactively with SQLs we defined. We tried to put the PL/SQL code inside the jar and deploy, to run the PL/SQL script in SQL Plus, neither report is showed in Reports list nor Reports tab is showing at all. We tried to restart OEM and computer after adding a report, it does not help...
    Regarding the oms logs - where can we see that?

  • Text dialog box instead of Report tab

    I'm using TS3.5 and customizing the LabVIEW version of the OI.  I would like to do two things.  (1) Make the Test Sequence and Test Execution tabs visible at all times.  Currently, the Execution tab (along with the Report tab) appear when "Test UUT" is selected or Executions is selected in the Listbox to the left of the SequenceView control. (2) I would like the report information to appear on the Sequence and Executions tabs as a Text Dialog box, to the right of the SequenceView control (that currently displays Step,Status,Flow Control).
    Can someone get me started?

    Hey Mr. Bean,
    1) There is a subvi called Configure Event Callbacks in the block diagram.  Inside of here there is a callback VI for the UIMessage handling.  It is called Page Change CBack.  Inside of there you'll see a subvi called Show Appropriate Tabs.  This is where the tabs are being set for which one is shown.  You can tweak this code to do what you expect.
    2) You can just copy and paste the ReportView control onto the execution Tab.  You will have to change some things in the block diagram to get it to look right.  Like the code in resize controls subvi so that your execution control doesn't overshadow the new reportview control  and you'll most likely have to make the new reportview control ConnectReportView.  You can see how this is done by looking at the other one.
    Regards,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Restoring pre-migration DPM Database - Reporting Tab issue

    Before migration, upgraded DPM 2010 to 2012 thru to 2012 R2. Took backup of database.
    Built new Windows 2012 R2, SQL 2012 SP1 & DPM 2012 R2. While database is blank, DPM seems to work fine.
    Restored pre-migration backup of DPM database over this new blank database. Most of DPM seems fine so far. Tape autoloader and attached disks are recognised and previous backups are all available. Protection Groups seem fine.
    Accessing the reporting tab causes MMC to quit with error.
    Description:
      AppName: mmc AppVer: 4.2.1205.0 ModName: mmc.exe
    ModVer: 6.3.9600.16384 StackHash: 9EAE70C3
    Problem signature:
      Problem Event Name: DPMException
      Application Name: mmc
      Application Version: 4.2.1205.0
      Module Name: mmc.exe
      Module Version: 6.3.9600.16384
      Exception Name: System.NullReferenceException
      Exception Point: Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView
      Other: 9EAE70C3
      OS Version: 6.3.9600.2.0.0.272.7
      Locale ID: 6153
    Event Log:
    An unexpected error caused a failure for process 'mmc'.  Restart the DPM process 'mmc'.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>0</Seq><TimeCreated>31/03/2014 10:37:37</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>NullReferenceException</ExceptionType><ExceptionMessage>Object
    reference not set to an instance of an object.</ExceptionMessage><ExceptionDetails>System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.DisplayAppropriateListView()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.CheckAccountStatusAndUpdateUI()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingUI()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingPage()</ExceptionDetails></FatalServiceError>
    Accessing reporting using Internet Explorer and the URL for Reporting in SQL seems Okay.
    Seeing as the database restore is the single factor that causes functionality to break I have been trying to ascertain what I might correct incside the pre-migration database.
    While the new machine has the same computer name, the accounts for services and SQL were changed in line with what was suggested/recommended by the setup comments I came across (domain accounts instead of local etc.) So there would be a discrepancy between
    the pre-migration security accounts and the new servers security accounts.
    Should I try and correct this specific issue and can anyone help with that (seeing as rest seems to be working okay)?
    OR
    Can you point me to the recommended steps that I should follow (post-restore) to get this setup working for reporting?

    You're not alone. I have the exact same issue (report tab results in MMC crash) after upgrading from DPM 2012sp1 to DPM 2012R2.
    I installed fresh windows 2012r2, then installed DPM 2012sp1, restored database, then upgraded to DPM 2012r2. Now I can't access the report TAB even though
    http://dpmserver/reports works just fine for viewing DPM reports.
    My error codes are identical to what you posted.
    Additionally, here is the crash log where I thought it was relevant to our situation:
    NORMAL ConnectToReportServerUrl: Try connecting with url [http://dpmserver/ReportServer]
     0D68 0938 05/07 21:18:58.102 42 Reporter.cs(2177)   NORMAL GetReportServerUrl: return [http://dpmserver/ReportServer]
     0D68 0938 05/07 21:18:58.133 42 Reporter.cs(255)   NORMAL  connected to the ReportServer :http://dpmserver/ReportServer/ReportService2005.asmx
    0D68 0938 05/07 21:18:59.915 42 Reporter.cs(396)   NORMAL There is no report in the rootFolderPath :
    0D68 0E30 05/07 21:18:59.930 09 AppAssert.cs(130)   WARNING ASSERT: (FileName:Reporting.cs; LineNumber:612)
    0D68 0E30 05/07 21:18:59.930 09 AppAssert.cs(130)   WARNING There is no DPM report deployed on the report server
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING Attempting to handle fatal error: System.NullReferenceException: Object reference not set to an instance of an object.
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.DisplayAppropriateListView()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.CheckAccountStatusAndUpdateUI()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingUI()
     0D68 0E30 05/07 21:18:59.930 34 PageController.cs(1970)   WARNING    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.UpdateReportingPage()
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2012)   NORMAL Will  invoke Watson
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2102)   WARNING UI Thread Exception: System.NullReferenceException
     0D68 0E30 05/07 21:18:59.946 34 PageController.cs(2109)   WARNING --------------------

  • FTE report tab is missing in the MSS Role

    Hi All,
    We have installed BP's of MSS in the portal and it is working fine.but some users are facing the below issue.
    User is unable to see FTE report tab in the MSS Role in the portal inspite of having all the roles related to the MSS and BI system.Why the users are facing this issue.
    Might not be a authorization issue.
    Could anybody give me inputs to resolve this issue.
    Thanks,
    Naveen Kumar

    Check the authorisation ...
    This happein when authorisation is missing .

  • Reports tab in web service missing even with permissions granted

    I cannot see the reports tab in the webservice interface, I have been granted the permisions to access the module but still it is not displayed. Does anyone know what the solution is???

    Hi,
    Are you talking about the reports tab in P6 EPPM (web Access)? P6 release 8 onwards the reports tab is added when you install and link the BI with P6. Otherwise there is no Reports tab is avilable in P6 r8 onwards. Have you installed BI or any other reporting tools for reporting purpose?
    Thanks,
    Dip

  • Reports not showing up in Reports tab

    Just downloaded SQL Developer 2.1
    I went to the reports tab expecting to see the pre-packaged reports that are mentioned in the tutorial.
    Sadly, I see no reports.
    No containers.
    So I can't even add my own reports.
    I'm assuming I missed some step somewhere?
    Thanks!

    AHA! OK, my laziness bit me in the behind.
    Every time I launched SQL Developer, I got one of those "This was downloaded do you want to run it" warnings and I never turned it off.
    This appears to not have been an issue when running from the folder itself.
    When I pinned the exe to the start menu, I got the warning, said OK, and would actually see the report containers on the reports tab for a moment, and then it would vanish.
    I unchecked the "always show this warning" box, and now everything works fine, even from the start menu
    thanks much!

  • Automatically refresh the report tabs after selecting the parameters in bip

    Hello Everything!!
    Is there a way to automatically refresh all the report tabs once we select the parameters? The report are not refreshed automatically in each tab and users have to either hit apply button or refresh button for each report tab . Is this a lacking feature in BI publisher. I am using 11.1.1.6.6.
    Thanks,
    Uday

    Hello Everything!!
    Is there a way to automatically refresh all the report tabs once we select the parameters? The report are not refreshed automatically in each tab and users have to either hit apply button or refresh button for each report tab . Is this a lacking feature in BI publisher. I am using 11.1.1.6.6.
    Thanks,
    Uday

  • How to customize the reports tab

    hi,
    Is there any way i can customize the reports tab? i'd like to publish my reports on the lists in order people can access them directly without having to go to custom shared analisis. Is it possible?
    thanks

    Try something like this:
    https://secure-ausomxxxx.crmondemand.com/OnDemand/user/analytics/saw.dll?Dashboard&PortalPath=/shared/Company_****-*****SharedFolder/_portal/$$$$$$$$$$$
    where xxx denotes your instance pod,
    *** denotes the name of your shared folder where reports are stored to be shown on the dashboard(to get this open any of your reports and filter it by selecting one of the reports from shared folder. the string of characters that you will see in the path is to be used)
    $$$ denotes the name of your dashboard.

  • How to  create report tabs in webi report

    How to create report tabs in WebIntelligence report in BO XIR2  through .net sdku2019s?

    ReportEngine.NET (RE.NET) SDK does not have report creation/modification functionality.
    ReportEngine Java (REBean) does, and you're able to add a Report (and thus a Report Tab) with it.
    Sincerely,
    Ted Ueda

  • How to hide report tabs in webi using opendoc?

    How to hide a report tabs in webi while accessing that report using OpenDoc??
    Is there a way to see just the sReportName selected without show the other
    report tab in the bottom of the document??

    Hi,
    As Mention By SUBBARAO MUCHERLA Either create 2 Different Reports.
    Or
    You can do one thing .
    Add Complete Report in a Blank section .
    Section (v_sec_All ="All")
       --Part1   //Table
       --Part2   // Chart
       --Part3   //Chart 2
       --Part n
    Use this section(v_sec_All) in Linking Report Part .

  • MMC has stopped working dpm 2012 r2 reporting tab

    Hi,
    I have a dpm 2012 R2 server. But i can't open the reporting tab. When i try to open it, it crashes imidiatly with the following error:
    Description:
      AppName: mmc  AppVer: 4.2.1205.0 ModName: mmc.exe
    ModVer: 6.3.9600.16384  StackHash: 9EAE70C3
    Problem signature:
      Problem Event Name: DPMException
      Application Name: mmc
      Application Version: 4.2.1205.0
      Module Name: mmc.exe
      Module Version: 6.3.9600.16384
      Exception Name: System.NullReferenceException
      Exception Point: Microsoft.Internal.EnterpriseStorage.Dls.UI.ReportingPage.Reporting.RefreshListView
      Other: 9EAE70C3
      OS Version: 6.3.9600.2.0.0.400.8
      Locale ID: 1043
    I can succesfully browse to:
    http://dpmservername/Reports_MSDPM2012
    then i can click any report and they all work.
    Does someone know how to solve this??
    Thanks.

    Hi
    If you update to the latest rollup for DPM R2 SP1 does it work?

Maybe you are looking for

  • Software upgrade not working need help asap!

    hey all my 9360 curve is currently plugged in but is stuck on the back up proccess. i dont want to unplugged my device. what else can i do to restart the install proccess to update to new os7.

  • Problem regarding BAPI call from a webdynpro applications

    Hi,   We are trying to call a BAPI in R/3 system from a webdynpro application through the standard method. But we are getting some problems in JCO settings. We already wasted so much time in solving those problems. Is there anyway where i can access

  • External display as main display possible?

    im trying to figure this out.. driving me nuts.. how can i make my external display my main display?? is this possible?? im connecting via VGA thanks..

  • JSF Validations & Hibernate cglib

    Hi, I'm having some trouble with using Hibernate with JSF. When using hibernate, lazy loaded. The problem is that i now have a CGLIB-enhanced version of one of my domain objects. The value of which is to be compared to a list of selectitems. As it tu

  • Multi page jpg

    We received a jpg file that seems to gave 2 pages when you view it in Bridge. When we open the file in Photoshop or link it in Indesign or Illustrator we only see the 1st page or view of the file. I was very surprised to see this in Bridge, as far as