MDT(Manager's Desktop) Query

Hi,
Can anyone tell me how to view the SAP Program behind the MDT portal.?
When i try to view the source by right clicking on the portal,i get some javascript.
I am not able to understand that piece of code since i am an abaper.
Pls let me know how to view SAP Code beind the MDT portal?
Its urgent..
Regards,
Rohan

Hi Rohan,
        Program name for MDT portal is SAPLMANAGERSWORKBENCH. You can view the same by clicking System and then on Status

Similar Messages

  • MDT Manager's Desktop

    Hello!
    I customize Manager's Desktop 4.6c. My problem is to create a new szenario. I can use only redefine standard szenarios by sap. Own szenarios accept sap but don't use it. The problem is, if make sap a release what's happen with the redefine datas. According sap datas will not changed but they suggest to create a new szenario. New szenarios will not used by manager's desktop. System is  a test embeding for customizing with test datas and I have all authorisations.

    Hi Rohan,
            Program name for MDT portal is SAPLMANAGERSWORKBENCH. You can view the same by clicking System and then on Status

  • MDT manager's desktop  - possible moving objects US, P, S, O

    Hi,
    We implemented HR MDT with the workflow to transfer employees. This workflow is triggered by a change in the structure (drag and drop) to the following objects:
    O: org unit
    S: position
    US: user
    P: person
    However, I want to restrict the objects that can be moved so that only the P object could be moved. In fact, I want that admin cannot move O, S, US in the structure. Is there a way to do it quickly? We found one, but we then would have to change SAP standard code.
    Thanks in advance.

    Hi and Welcome to the Community!
    Here is a KB that discusses that error:
    KB19300 Windows Installer command line parameters information box appears when attempting to install BlackBerry Desktop Manager
    Hopefully it contains something useful! There also are multiple existing threads on this site that discuss that exact error...your review of those might prove useful, and a search of this site, using the error message, error code, or symptom, should reveal all applicable existing threads to you.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • 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.

  • Add Query To Manager;s Desktop

    Hi Everyone,
    I want to attach a Query that i have created to Manager;s Desktop.
    Can anyone please help me doing this?
    Thanks & Regards,
    Rohit Sharma

    Did you check this <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/85/da7440036f6d1de10000000a1550b0/frameset.htm">SAP Help</a> ?
    ~Suresh

  • Query on Manager's desktop

    Hi ,
    In Manager's desktop the employee name is  displayed in Japanese on English Logon.How to  change the English SAP manger approval ( in Manager's desktop) display of names from Japanese to English.
    Any help/direction on this would be appreciated.
    Thanks and regards,
    Neelima

    see manager's own data through menu item "System" -> "User Profile" -> "Own Data" or simply go to tcode SU3. See if his locale is set to Japan or Japanese language ?

  • 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.

  • 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.

  • 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

  • PPMDT Manager's Desktop Authorization

    Hello,
    We have manager' desktop setup so that manager can only see employees in their own organizations.  That is good.
    The problem is managers authorized for se16 and see info type data employees NOT in their own organizations.  That is not good.
    Does anyone know how to prevent manager access to all employees while still allowing access to thier employees in manager's desktop?
    Thanks,
    Dale

    Dale :
    Being able to view subordinates in MDT and to view data through SE16 are two separate authorization objects. In general, non-HR personnels (regular ees or managers) should not be able to view infotypes (PA* tables) through SE16. This is control by authorization object 'S_TABU_DIS' with authorization group 'PA'.
    Rgds.

  • Manager's Desktop and Time Manager's Workplace

    Hi All, we want to use TMW within MDT. TMW should start with the employees selected by the Manager's Desktop. Is it possible to do this?
    Thanks
    Gerard

    Hi, thank you for the answer. I know that I can start TMW from the Manager's Desktop platform but even if I select one employee in MDT and than I start TMW, the TMW comes up with all the employees for who I am the time administrator.
    I know I should use (or create) another selection rule but I cant find the right one. Do you have any idee?
    Thanks,
    Gerard

  • SAP note for Manager's Desktop ECC 6.0

    Hi,
    Are there any changes in Manager's Desktop in ECC 6.0 ?
    If no, is there any SAP note or any SAP document stating that there are no changes in Manager's Desktop for ECC 6.0 ?
    If yes, can someone pls share the changes.
    Thanks much....

    This is what is mention in documentation:
    22.9 PA-MA HR Manager's Desktop
    22.9.1 Conversion Program for Reporting in Manager Self-Service (MSS)
    Use
    As of SAP ECC 6.0, SAP_HR 600, the Implementation Guide for Manager's Desktop has been enhancedas follows:Under the menu path Personnel Management -> Manager's Desktop -> Customer Adjustment ->
    Convert MDT Data to MSS Reporting Launch Pad, you can now run a program that converts existing table entries from the old Manager's Desk Top (MDT) to be used on the new Reporting Launchpad.
    Effects on Data Transfer
    You must have existing entries in the following tables:
    - T77MWBS
    - T77MWBSC

  • 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

  • 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

  • Desktop manager and Desktop Software

    Is there a differnce bewteen desktop manager and desktop software?  I'm trying to find  a link to download desktop manager.  I was told by t-mobile tech support to run application loader and I need desktop manager in order to run that application.  The reason why i need to run the application is that my firewall setting is enable with the 'lock' icon and it's preventing me from running applications that need to connect to the internet.  I was told that running application loader would remove the lock icon so I can disable the firewall setting.
    Thank you,
    New BB user.  

    OK...so those instructions are...well...dated...they indeed are for the full Desktop Software. Basically they have advised you to update your BB OS to the latest version in the hopes that the lock on the firewall will be removed. They did discuss the backup, but I actually prefer to take a manual backup first, then let the automatic one go, but I still have that manual one just in case.
    I can't see what any of those jpg's are, so I'm not sure exactly what they are saying.
    Anyway, there are other possible causes, but it's not necessarily wrong to follow those steps...it's just that they may or may not work...and before you ask, it's impossible to tell you, at an internet distance, anything at 100%.
    If you prefer, here's a different method to update your OS:
    From a PC, you can install any OS package to a BB via this procedure:
    http://supportforums.blackberry.com/t5/BlackBerry-Device-Software/How-To-Reload-Your-Operating-Syste...
    Note that while written for "reload" and the Storm, it can be used to upgrade, downgrade, or reload any BB device model -- it all depends on the OS package you download and install to your PC. You can even use a different carriers OS package by simply inserting, between steps 1 and 2, the deletion, on your PC, of a file named VENDOR.XML. Be sure that you remove, from your PC, any other BB device OS packages as having more than one installed to the PC can cause conflicts with this procedure. You will also first want a clean and complete list of all of your add-on apps, including the source of them and activation keys.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Calling virtual function recursively

    Hello, I have a virtual function foo() in class A which, under certain conditions, will call itself. In a class B, which is derived from A, I am overriding foo() to call super.foo() and then execute come code. My question is: When the code in class A

  • ITunes Keeps Starting Up Attention Cappy

    Hello All This is the third post I've made about a few issues I'm having with ML and they have gone unoticed. Can someone please give me some help. Cappy if you pick up on this can you please help me? 1. iTunes for some reason keeps opening up on it'

  • WMA "Switch Free" MP3

    I read a previous post on how to switch from wma to mp3 and they recommeneded Switch Free. Only thing is I think I converted the files but now I can't find them. Can someone tell me how Switch works and where my files are Thanks Tamara

  • The "Poster" function option is disabled or greyed out.  What's the fix?

    I have a PDF that is at 8x11.  I want to enlarge and print across multiple pages (4 pages by 4 pages) but the Poster button is greyed out and won't let me select it.  I've even tried enlarging the page size but that doesn't fix the issue. 

  • Can you set up a template where information can be filled in - like in a textbox and then collected

    can you set up a template where information can be filled in - like in a textbox and then collected Like a series of questions - then the student enters the information - and the information os then collected