MSS Reporting - Cannot choose Manager's Desktop Application Category

Dear experts,
I need to add reports to Reporting in mss. I am trying to custom Reports in launchpad (fpb_launchpad_cust). I can see the reports in folder. However, I can't  add new application under Manager's Desktop Application Category.
Is there any other configuration i need to do?
We are using SAP Netweaver Portal 7.0 and ecc6.
Thanks for any assistance,
Nanie Arianie

Solution:
1. In the SAP HCM System choose:
SAP Easy Access Menu
Transaction SE38
2. In the ABAP Editor: Initial Screen enter the Program FPB_LP_WRITE_ENTRIES and choose Execute.
3. In the Report FPB_LP_WRITE_ENTRIES screen select the MSS Reporting and MSS with Folders options and deselect the checkbox Test Run.
4. Choose Execute. The sample entries are entered in the Report Launchpad in the portal.
5. Log on to the portal with User manager1 and check if the sample entries are displayed.
6. In the ECC system leave the transaction and go back to the SAP Easy Access Menu.
7. Enter transaction PWPC_CONV_MDT_TO_LPA in the Command field.
8. In the Report to convert MDT table entries to LPA table entries screen, enter the MDT Scenario RPT0 and deselect the Test run checkbox.
9. Choose Execute. The list in the next screen shows the reports which have been added to the Report Launchpad.

Similar Messages

  • How to export the report in HTML format for desktop application

    Hi,
    i have wrote the JRC desktop application to export the report and i am able to export it in PDF and other formats as mentioned in "ReportExportFormat" API.
    i would like to know is there any API there which can export the report in HTML format.
    i know it would be possible with web based application of JRC, but how can i do it in desktop application?

    There's no mechanism for static HTML pages that displays the report.
    You can use the CrystalReportViewer DHTML viewer, but that's 'interactive'.
    Sincerely,
    Ted Ueda

  • Cannot download Adobe Story Desktop Application

    Hello, and thank you in advanced. I'm getting started in writing and was thrilled to find Adobe Story, so much so I upgraded to Adobe Story Plus along with the Creative Cloud. Then, a desktop applocation? The one thing that was missing!
    So, when I go to download the Desktop Application I am prompted that I will need to install Adobe Air as well, as it is required for the installation. I have Adobe Air but I hit install anyways. It completes the progress bar and then switches to a dialoge stating: A download error occured. Try to download again?
    In response I try multiple times more. Sometimes it doesn't even complete the progress bar and just skips to the failure notification. I've uninstalled and reinstalled Adobe Air. I've logged in and logged out. I've waited several days between my attempts and I always get the same result.
    If there's anything you guys can do it will be greatly appreciated. Thank you so much!

    Hi,
    There is an issue with Adobe AIR installation with Chrome browser.
    Can you please try with some other browser, say firefox/safari
    Thanks
    Rohit
    Adobe Story Team

  • How do I add a new report to Manager's desktop

    Dear SDN Community,
      I am using 2004s SP12 ESS/MSS portal with ECC 6.0. Can you please tell me how do I create a new report in MDT(Manager's DeskTop, Tcode : ppmdt) and publish that report into reporting iView.
    Thanks
    Vivek.

    I didnt get a right answer for this in SDN and i have created a transaction iview and called the report in a SAP transaction and resolved this issue.

  • How to change a report in Manager's Desktop?

    Hi all,
    i want to change a report in the Manager's Desktop Compensation Management.
    Report name: Cost Center
    You can see it under this link: [www.starbulls-fotos.de/1.jpg]
    When i now run the report i can see the report, but with no selection screen. I only get a finished report with fixed selection parameters
    You can see it under this link: [www.starbulls-fotos.de/2.jpg]
    How can i change this selection parameters?
    In this example i want to change the "Cost Element Group" to an other value.
    When i run this report outside of the Manager's Desktop with the transaction code "S_ALR_87013611" i get the selection screen needed and can change the parameters.
    It would be great if anyone could help me!
    TIA!
    strobbel

    Hi Strobbel,
    Execute your report via the transaction.  Check the selection variants on that first selection screen.  You will see the default one that came up for you and others that may have been created to default for Managers' Desktop.  You can select the one that is appearing with the incorrect cost element group and change it to the correct one. Save the changed selection screen.  We also have a transaction ZZBCVARIANT that can be used to change the selection screen variants. 
    Also, remember, the manager in Managers' Desktop may be limited due to authorizations to see data from only certain cost centers (his own). 
    Paul

  • Manager's Desktop

    Hi,
    To get a custom abap report in the manager's desktop, i have done the following in IMG:
    1. Define Function Code
    2. Define Structure of Function Code : Scenario MWB1, Higher level function code HIS
    How can i ensure that the report only outputs the data for the user's (manager's) organizational unit. I can enter a variant with the right org unit selected in Define Function Code but it works for some reports and dosen't work for others. Plus, obviously the variant with org unit should not be entered in configuration.
    Can anyone point me to the right direction please? Any document would be helpful.
    Thanks
    Zubair
    [email protected]

    Zubair,
    Without knowing the details of your reports here are a couple of things to check:
    1.  When you define your function code, if you are entering the report name, I think that the report needs to be based on the PNP logical database.  If it is not, then there might be an issue passing the appropriate information into the report.
    2.  There is another configuration step that you might try.  It is called "Define Object Type-Specific Function codes".  Here you link your custom defined functions with which object they can be run with.  For instance if you want to drag and drop a position from MDT to the report.
    3.  The other option would be to call your report from a function module.  This is setup when you define the function code.  In this case you could copy one of the standard function module to ensure you have to correct importing/exporting parameters and insert your own code.  Here is a code example from the function module.  This is how we handle non-PNP reports:
    FUNCTION z_h84_xss_custom_reports.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(ACT_FCODE) TYPE  MWB_FCODE
    *"     VALUE(ACT_PLVAR) TYPE  PLVAR
    *"     VALUE(ACT_OTYPE) TYPE  OTYPE
    *"     VALUE(ACT_OBJID) TYPE  REALO
    *"     VALUE(ACT_BEGDA) TYPE  BEGDATUM DEFAULT SY-DATUM
    *"     VALUE(ACT_ENDDA) TYPE  ENDDATUM DEFAULT '99991231'
    *"  EXPORTING
    *"     VALUE(ACT_PROGNAME) LIKE  SY-REPID
    *"     VALUE(ACT_SCREEN_NO) LIKE  SY-DYNNR
    *"  TABLES
    *"      ACT_OBJECTS STRUCTURE  HRSOBID
    *"  EXCEPTIONS
    *"      FCODE_NOT_VALID
    * Range for personnel Numbers
      RANGES: r_pernr FOR pernr-pernr.
    * build a range of perner numbers
      LOOP AT act_objects WHERE otype = 'P'.
        MOVE: act_objects-sobid TO r_pernr-low,
              'I' TO r_pernr-sign,
              'EQ' TO r_pernr-option.
        APPEND r_pernr.
        CLEAR r_pernr.
      ENDLOOP.
    * Now Check Which Report is being launched
      CASE act_fcode.
    * Wage Type overview
        WHEN 'ZUS1_01'.
          SUBMIT zh84py_us_zl_overview_ess VIA SELECTION-SCREEN
    *                                 WITH p_begda = act_begda
    *                                 WITH p_endda = act_endda
                                     WITH s_pernr IN r_pernr
                                     AND RETURN.
    Hope this helps.
    Chris H.

  • Manager's Desktop Authorizations

    Hello,
    We have several custom reports configured for Manager's Desktop and the authorization object P_ORGIN is configured to allow access to the necessary HR info types.  In Manager's Desktop, manager's can only see info for their own employees.  The problem is if they have access to SE38 and run the reports directly, they can see anyone's info.
    Is there an alternative to P_ORGIN that only allows access based upon the org structure?
    Thanks,
    Dale

    Hi,
    You can go for structural authorizations for managers.
    There are lots of threads regarding structural authorizations.Have a look it it.
    Note:
    Create Tcode for reports and give authorizations for it.Dont give authorizations of SE38.
    Cheers,
    Manoj.

  • MSS Manager's Desktop Reports

    I have created a new Function code and assigned to a category under MDT. The report shows up fine under MSS>Reports however, I get this selection screen (LPA Reporting) forcing me to select employees before getting to Reports Result. Is there a way to skip this step so that the actual report is launched directly?

    in the customisation you can have a variant saved which runs for all the org unit
    usually it is tough to skip
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=199820849
    please check the customisation and report category
    You can check the code of HRWPC_RPT_FCODE_EXEC
    V_TWPC_V you can check how the evaluation path are selected
    2. Execute SPRO, then SAP Reference IMG
    3. Choose Personnel Management >> Manager's Desktop >> Enhancement of Function Codes >> Define Function Codes >> Define Function Codes for Manager's Desktop
    you can defne a variant here
    Edited by: Siddharth Rajora on Mar 15, 2011 8:20 PM

  • Cannot open application manager on desktop

    I have joined adobe cloud free trial, and adobe application maager is installed on my desktop, but I cannot open anything using the application manager.  Any suggestions?

    You will want to open the applications from either your Start menu or Applications folder depending on which operating system you are utilizing.

  • Adobe Updater shows I have 1 update but I cannot find it in the Application Manager

    Adobe Updater shows I have 1 update but I cannot find it in the Application Manager...anyone else having this issue?
    I have the CC apps installed and some CS6 apps installed as well.
    I have Creative Cloud version 1.0.0.183
    My updater says I have 1 update.  I choose "Open Updater..." and it opens my CC Application Panel..
    However all the apps I have installed say they're up to date with a green check:
    Does anyone know how I cian get rid of the update icon telling me I have 1 update?
    Thanks!!!
    -John

    Hi Artillery Media,
    In order to check your update status for CC applications, Please click on home tab. Do let me know if you are able to find your update under Home tab.
    Regards,
    Ashish

  • Looking for some help in creating dynamic rdlc report for Desktop Application

    Hello ,
     I currently have the syncfusion reportviewer running in my desktop application, now what I am looking to do is create a report where my users, can select and deselect what columns and Items they want to print out. Is there any way to do this ?
    Thanks
    David.

    Hi David,
    We can integrate Syncfusion with LightSwitch application, if you want to customize column when create a report using syncfusion reportviewer, since I didn't try this third party
    extension before, I think you could consider getting help from
    syncfusion forum, more syncfusion experts can help you on this issue.
    Thanks for your understanding.
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Creative Cloud Desktop Application Manager Unable to Update  New Version of PS CC

    Windows 7, 64 bit
    Received notification of new software for PS CC.  Desktop application manager appears, with a creative cloud note over the desktop app mgr saying:  " A new ver of CC is available.  Update now?"  I click update and launching creative cloud desk appears and disappears.  Note in bottom right tray says update to cc available and it too disappears.
    Looked for help on Adobe website and tried changing name of OOBE to OOBE_old.
    Tried to download update directly from PS CC.  Went to help; update;   It failed to update completely and left the following error message: 
    Adobe CSXS Infrastructure 4
    Installation failed. Error Code: U44M1P7
    Now PS CC has lost some of functionality.
    Marc

    Genius.
    Worked a treat, although, as Lion hides the User's Library folder I had to launch Terminal to make it visible first. Do you think the fact the Library's now invisible might've been an issue here?
    Whatever, all working now and Creative Cloud Files all synced again.
    Thanks very much Jeff.

  • Error Opening Reports (Cannot find Dimension Scenario, Error executing query: the member null doesn't exist in this application)

    Hello,
    two of our users get the following error message, when opening two specific reports:
    First Report: Cannot find Dimension Scenario.
    Second Report: Error executing query: the member null doesn't exist in this application.
    Other users can access these reports, and the same users where the problem occurs can access other reports in the same folder.
    I set the same rights for me, but i can access the reports without problems.
    Somebody encountered the same problem before?

    Hi there,
    I had the same issue a few weeks ago... not sure how it happened but it was related only with my username.
    In order to fix it:
    1. I created a report which does not require to select the scenario in advance. Try to use the default data-grid that you get when you first create a report for example.
    2. When the user runs the report, try to see if he can see the dimension. Do not use the missing dimension on rows or columns. If he can see the dimension, ask him to select one scenario. This will solve the issue.
    3. If he cannot see the dimension, try to change the layout of the report.
    Regards,
    Thanos

  • Cannot choose desktop picture in Lion

    After upgraded to Lion, I cannot choose desktop picture from the Aperture library. The Desktop system preference pane does not show the library at first on the left column. Then after severa minutes, it shows the label "Aperture", but not its contents. Then probably after a few hours, it started to show the contnts, and I could choose one of the folders, but right after I checked the change pictures box, it switched to the default picture of Lion (galaxy).

    same thing happens to me.  The previews were already set to always.
    repairing permissions didn't work either.
    Got another tip in another thread which seemedf to help:
    rm  Library/Preferences/com.apple.desktop.plist
    from: https://discussions.apple.com/thread/2646075?start=0&tstart=0

  • BW Reporting from Portal on utilizing Manager's Desktop

    Hi BW People,
    I needs an help from you.
    I posted this thread on Forum Portal side
    /thread/540267 [original link is broken]
    The question is,
    on customizing Manager's Destop
    in table <b>T77MWBBWS</b>, in the field BW Rep.Templ.ID
    is not possible utilize standard template QGL_STANDARD_TEMPLATE but it needs custom Templete.
    I'm now able to start BW report from portal but
    1) In custom Templete i insert a Query, is not possible to transport this. I have to create this custom templete directly in Production system?
    2) Before to start BW report, as standard in Manager's Desktop is, i have to select on Employee number, manager's subordinate, but on calling BW report I have one selections screen and not in the field Employee of the report the number selected.
    I have this possibility, I have at least the possibility to Skip the screen regarding Employee number selection?
    Thanks in advance for answer
    Dom

    Hi guys,
    just for your information
    Problemems are solved both:
    the first one by SAP through a customer message and
    the second one by a standard webdynpro modification.
    Kind Regards
    Dom

Maybe you are looking for