Manager Desktop - No objects found

Hello,
I am actually trying to implement the manager desktop in my client but it is not working. When I enter in the transaction "PPMDT" and select Personal Data I was expected to see the direct subordinate employees, and the directly reporting employees, but nothing appears. The system gives the follow message: "No objects found"; message number 5A224.
I have created, for an employee, the IT 105 and associate the user to him. The IT0001 is also created and my employee is the director of an organization unit and has people under him.
In the SPRO, the configuration is the standard delivered by SAP. My client has the R/3 4.7 version installed
Could anyone help me on this?
Best regards
Sérgio Pinto

Hi,
I have solved the problem. When assigned the IT105 to the user it is obligatory use the sub-infotype 0001, otherwise it dowsn't work.
best regards.
Sérgio Pinto

Similar Messages

  • No interface objects found in interface determination

    Hi Experts,
                  i am configuring the  multiple idoc to flat file.
                 for this, i am not using the bpm.
                i refer the following blog.
               https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/4443. [original link is broken] [original link is broken] [original link is broken]
           According to this blog, we can make the scenario as file to file. xi will pick the idoc-xml file.
        for this, could you please let me know the source data type?
       i exported standard idoc and made occurances as unbounded and import to name space.
       for the imported external defination, i creared the message interface as outbound and used as sender interface.
    i made the mapping between external deficnation to flat file structure.
    my IR part is ok.
    i have problem with ID.
    when i configure the interface determination, i found it as no interface objects found.

    Hi,
    Normally we dont require to create DT , MT MI incase we are using IDOC.
    But in your case you imported the idoc and exported it to ur desktop and changed the Occurance of that IDOC.
    Then again you imported that as External Def.
    This case you need to create the MI for this IDOC, why because we dont have the option to select the External def directly with out creating the MI at the time of creation of Interface mapping.
    But in case of IDOC means we have the provision to select the IDOC derectly at the time of Interface mappimg
    Regards
    Seshagiri

  • How to manage Arrays as Object members

    I found a realy strange behavior with the instanciation of a
    Class which contains an Array member.
    Here is the code wich is self explanatory.

    Create the array instance in the constructor.
    class MyObj {
    public var tab:Array;
    function MyObj(index) {
    this.tab= new Array();
    "Chris_007" <[email protected]> wrote in
    message
    news:[email protected]...
    > I found a realy strange behavior with the instanciation
    of a Class which
    > contains an Array member.
    >
    > Here is the code wich is self explanatory.
    >
    >
    >
    >
    >
    > class MyObj {
    > //
    > public var tab:Array = new Array();
    > private var objectName:String;
    > private var theIndex:Number;
    > //
    > // Constructeur
    > function MyObj(index) {
    > this.theIndex = index;
    > // Object name
    > this.objectName = "name#" + index;
    > for (var i = 0; i < 3; i++) {
    > this.tab
    = index * 3 + i;
    > }
    > }
    > //
    > function printObject() {
    > trace(" Printing Object name --> " +
    this.objectName);
    > for (var i = 0; i < 3; i++) {
    > trace(" tab[" + i + "] : " + this.tab);
    > }
    > }
    > //
    > function getClone() {
    > return new MyObj(theIndex);
    > }
    > }
    >
    >
    > // And the main scenario code
    > //
    > var index:Number = 0;
    > //
    > var objArray:Array = new Array();
    > //
    > var oob:MyObj;
    > //
    > function printMyArray(arr:Array):Void {
    > for (var i = 0; i < arr.length; i++) {
    > trace(" tab[" + i + "] : " + arr
    > }
    > }
    > //
    > // Filling in the Array
    > for (var i = 0; i < 4; i++) {
    > oob = new MyObj(index);
    > // oobj = oob.getClone();
    > trace("-- New object #" + i + " created. MyObj[" + index
    + "]");
    > oob.printObject();
    > objArray = oob;
    > trace("-- Now entered into the array -- printing from
    object #" + i );
    > objArray
    .printObject();
    > trace("-- or printing from the scenario -- objArray[" +
    i + "] is realy
    > stored");
    > printMyArray(objArray.tab);
    > trace("____________________________________");
    > index += 1;
    > }
    > //
    > // Printing the array of pointers to MyObj
    > trace("___________________________________________");
    > trace("And now, all in one...\nPrinting the array of
    pointers to MyObj
    > trace("___________________________________________");
    > for (var i = 0; i < 4; i++) {
    > objArray
    .printObject();
    > }
    > trace("------ Or directly from the scenario -------");
    > for (var i = 0; i < 4; i++) {
    > trace(" Printing from scenario Object name --> " +
    objArray.objectName);
    > printMyArray(objArray
    .tab);
    > }
    > trace("___________________________________________");
    > trace("They are all the same ?!\nIt seems to have lost
    something !!!!");
    > trace("___________________________________________");
    > //
    > //
    > trace("\nAmazingly, the array's elements do not refer to
    the same
    object\n");
    > //
    > trace("objArray[0] == objArray[0] ? -->" +
    (objArray[0] == objArray[0]));
    > trace("objArray[0] == objArray[1] ? -->" +
    (objArray[0] == objArray[1]));
    > trace("objArray[0] instanceof MyObj ? -->" +
    (objArray[0] instanceof
    MyObj));
    > trace("");
    > //
    > trace("\nThey realy seem to point different objects
    !\n");
    > //
    > // So, why do they have different outputs ?
    > //
    > //
    > //
    > // It seems the 'new' constructor creates a new Object
    'MyObj'
    > // which always resides at the same memory location.
    > // 'oob' is in fact a pointer, and objArray[] an array
    of pointers,
    > // as so an array of memory addresses.
    > // The objArray[] elements are pointers which always
    refer to the
    > // the same memory zone, which in fact contains the last
    content of the
    > object.
    > //
    > //
    > // And then manualy
    > //
    >
    trace("**********************************************************");
    > trace("\nAnd then another way to create each new object
    manualy\n");
    >
    trace("**********************************************************");
    > //
    > //
    > var otherObjArray:Array = new Array();
    > //
    > var oob0 = new MyObj(100);
    > trace("-- New object created #100");
    > oob0.printObject();
    > otherObjArray[0] = oob0;
    > trace("-- Now entered into the array --
    otherObjArray[0]");
    > otherObjArray[0].printObject();
    > //
    > var oob1 = new MyObj(200);
    > trace("-- New object created #200");
    > oob1.printObject();
    > otherObjArray[1] = oob1;
    > trace("-- Now entered into the array --
    otherObjArray[1]");
    > otherObjArray[1].printObject();
    > //
    > var oob2 = new MyObj(300);
    > trace("-- New object created #300");
    > oob2.printObject();
    > otherObjArray[2] = oob2;
    > trace("-- Now entered into the array --
    otherObjArray[2]");
    > otherObjArray[2].printObject();
    > //
    > trace("___________________________________________");
    > trace("And now, all in one...\nEnjoy the show !!!!");
    > trace("___________________________________________");
    > otherObjArray[0].printObject();
    > otherObjArray[1].printObject();
    > otherObjArray[2].printObject();
    > //
    > trace("\nThe problem seems to reside in the way the
    Arrays members are
    managed
    > by the Objects !\n");
    > trace("\nHELP me please to find the bug\n");
    > //
    >

  • Error message "multiple objects found"

    Hi,
    I run into a new issue and durig role creation of design-time-roles. I get since a few days the message
    "test:testrole.hdbrole": multiple objects found
    my simplified role: (worked out before hundred times)
    test::test
    extends role test::testrole
    The role exists as design-time-object (one entry in "_SYS_REPO"."ACTIVE_OBJECT" and also only one entry in "SYS"."ROLES")
    Other roles can be granted as as usual - just a bunch of them make trouble.
    I dropped the roles (afterwards 0 entries in the mentioned tables) ... when activating testrole.hdbrole it says no object found - as expected. created the role again and the message appears again. Pretty weird.
    Did one of you had the same issue and solved it?
    Thanks for your answers in advance!
    Regards,
    Marcus
    P.S: Running HANA SP7 Rev 72 (DB+Studio+Client)

    Hi Mika
    Can you check your  : HKLM\SOFTWARE\Microsoft\Office\xxxx\Outlook\InstallRoot\Path
    For each key under HKLM\SOFTWARE\Microsoft\Office, apparently HKLM\SOFTWARE\Microsoft\Office\xxxx\Outlook\InstallRoot\Path has a "Outlook.exe" file at the location.
              If more than 1 file paths are found, then it appears that multiple versions of the outlook are installed.
    You might want to re install office if more thaqn one appears

  • In Configuration of Adapter,forselecting adapter type i gotno objects found

    In Configuration of Adapter,forselecting adapter type i gotno objects found.
    Default Adapters not Appear.please send me description to solve this problem.

    Have you done a fresh installation? If so, you need to import the SWCV SAP BASIS in your IR. To do this, you need to download the component corresponding to your SP from service.sap.com.
    You can find the components here
    https://websmp205.sap-ag.de/~form/handler?_APP=00200682500000001943&_EVENT=SEARCH&HIDE=&SEARCH_SPAT=X&SEARCH_BPAT=X&SEARCH_CD=X&SEARCH_P=X&SEARCH_PV=X&SEARCH_C=X&SEARCH_CV=X&SEARCH_TA=&SEARCH_V=&HIDE_EXPERT_SEARCH=X&SEARCH_MAX_RESULT=20
    Make sure, you downloading the component for your corresponding SP.
    This has to placed in import directory and you can download it in IR after this...
    Regards,
    Jai Shankar.

  • Integration Directory | Choose Adapter Metadata - No objects found!

    Hi friends.
    I'm new in XI and I wanted to test some simple scenarios. At the beginning I had a problem with the SLD. We made some post-installation steps and everything was allright. Thus my problem is now: In the Integration Directory I try to create a communication channel - I choose Scenario->Service Without Party -> Business System -> <myBusinessSystem> -> Communication Channel and do a right click on it. I choose NEW and create a new communication channel. But when I use display input help for Adapter Type, it is loading for a while but the list of Adapter engines is empty and there is written - No objects found!. I didn't install XI on our machines and I don't know which installation / post installation steps were done. Adapter Engine in integration server is installed for sure. I looked for some threads on the forum, but I didn't find nothing more specific for my problem. Probably I need to set up something somewhere to obtain a list of adapters for the communication channel. Any help will be rewarded.
    Thanks
    Ondrej

    Ondrej,
    You need to import SAP BASIS Software Component Version into Integration Repository.
    You need to download it from service market place.
    https://websmp205.sap-ag.de/~form/handler?_APP=00200682500000001943&_EVENT=SEARCH&HIDE=&SEARCH_SPAT=X&SEARCH_BPAT=X&SEARCH_CD=X&SEARCH_P=X&SEARCH_PV=X&SEARCH_C=X&SEARCH_CV=X&SEARCH_TA=&SEARCH_V=&HIDE_EXPERT_SEARCH=X&SEARCH_MAX_RESULT=20
    In Search Term Enter "SAP BASIS <version>".
    Then put this in the import directory: \usr\sap\<SID>\SYS\global\xi\repository_server\import\
    Now in IR, <b>TOOLS ---> Import design objects</b> and import it.
    After import you should be able to see the namespace under it.
    Regards,
    Sarvesh

  • Trex error: No embedded object found in document (Errorcode 14037)

    Hi,
    we have following problem with our crawler:
    in the crawler 50 % of documents are returning the error "No embedded object found in document (Errorcode 14037)" and are not displayed in the trex monitor. All other documents are indexed correctly an are in the trex monitor in "OK".
    We are on Stack 14 Patch 4.
    Regards,
    Gerhard

    Hi Gerhard,
    Typically, errors codes 14XXX are related to filter problems during the preprocessing of documents. Details about TREX error codes are explained in the help portal and in the note 898404.
    Unfortunatelly, filter problems could not be easily fixed. However, a good starting point would be to use a newer TREX release. If this doesnt help please open a Customer Message and attach documents, which causes the mentioned error. Please attach only not sensible documents!
    Kind regards,
    Roland

  • ** Interface Mapping - No Objects Found - IDoc is receiver

    Hi Friends,
    In our scenario, sender is File & receiver is IDoc. For each record in file, we need to created one IDoc.  IDoc is CREMAS.CREMAS05.  For this as usual we exported XSD and changed the occurrence of IDOC node as minOccurs="0" maxOccurs="unbounded"  (as explained in Michael Blog - 2762) and did the message mapping successfully.
    While create Interface Mapping, (Message interface (OB) for File, no message interface for IDoc, we directly use CREMAS.CREMAS05 in the target interface) and 'Read Interfaces' and select the Message Mapping option' it shows 'No Objects Found'.  What could be the problem ?
    Note that earlier it was working fine (Some times ago), now it is showing this error 'No Objects Found".  I am very confused why this error is coming.
    Kindly help me friends, to solve this.
    Kind regards,
    Jegathees P.

    Friends,
    Thanks for all your reply. When we click Read messages button automaticlly our source message (type) and target message (type) will be selected. Then, we select Mapping Program which is suitable for the Source & Target Message. When we do like this, it is showing the error 'No Objects Found'.
    I want to check with you Is this due to what reason ? (Because, earlier it was working fine)
    Eventhough we select 'Any' to 'Any' and select the mapping, save. After that If we do consistency check , it will show an warning message about the namespace issue.

  • "No Objects found" in Interface Mapping

    Hi,
    I am working on a simple BPM synchronous scenario as follows
    File>XI>RFC (request)
    RFC (Response)>XI>File
    I have done almost everything fine, but while configuring the Receiver determination, I am able to choose the Inbound interfcae, but when I try to select the "Interface Mapping" for the same inbound interface,
    it says "No Objects found".
    Can anybody help me out in this regard?
    I would very much appreciate your help in this regard.
    Thanks in advance.
    Regards,
    Rambabu

    Hi Shravan,
    I have resolved the issue. In fact there is no mistake done in Repository. In Configuration, I haven't selected the appropriate service, because of this, I wasn't able to see the objects.
    Thanks & Regards,
    Rambabu

  • Skiping initial selection criteria screen of HR report for Manager Desktop

    Dear All,
    The reports are configured using a custom scenario (Z Scenario) for Manager Desktop and used over the Portal through MSS. I have a requirement where for only one report (named Expired Qualifications) the initial selection criteria screen which comes when accessed through portal needs to be disabled or skipped and directly the transaction S_AHR_61015536 for this report needs to be called.
    Please provide the inputs if it can be done and how for one report only.
    Regards,
    Samir

    Dear Sen,
    I have checked the thread suggested by you but the report here is not independent transaction integrated using iView. It is a part of Scenario which makes the reports available to the managers. It uses MSS Standard iView "Reports" and "Selection Criteria". Both iViews are in one page as delivered by SAP. The reports iView displays all the reports configured in the scenario for Manager Desktop and Selection Criteria iView is launched first in the portal content area when the report ( "Expired Qualifications") link is clicked from the Reports iView.
    Regards,
    Samir

  • Agent Determination: Responsibilities - No objects found Message no. 5A244

    I'm trying to create a responsibility with Object abbr. MATKL_001, but when I enter I get error message as in subject line.

    Thanks Susan for your reply
    The transaction is PFAC_CHG - Change Rules for Agent Assignment. Within tab "Responsibilities" I'm trying to "Create" a responsibility but then get error No objects found Message no. 5A244 when I enter Object abbr. "MATKL_001". I'm just not sure where this ties up?
    The Object Abbreviation "Contains an abbreviation of up to 12 characters. The abbreviation represents, or identifies, a specific object (for example, an organizational unit). Objects may also be identified by the object ID." I'm trying to add a rule with responsibilities for Material Group, but I'm not sure how this all ties up. Do I have to create for instance an HRP1000 object entry for object type Material Group before performing this step? And how to do this? Also, which object type should be used?
    p.s. ST05 system trace produced access list to the following tables: DD01L, NRIV,PLOGI, HRP1000, UST12, DD08L, HRSOBJECT, DD05S, HRS1000, TBPROGREF, HRS1002, HRS1203, TADIR, TDEVC, TBD72, TLOCKCIO, TLOCK, E070, TMSCSYS, TMSPVERS, TMSPCONF, TADIR, TDEVC, D020T, HRP1240
    Best regards,
    Adrian

  • No objects found when searching for a subset of tablespaces on a RAC db

    I'm creating a rule to monitor metric Tablespace Space Used % on a RAC database but I do not want to include certain partioned tables. However, when I click on the search selected objects, it tells me that no tablespaces ('No Objects Found') are found. This is the only database that is on a RAC environment that I'm having this issue. Any ideas?

    If you wanna kill all processes (those currently running, well said) which names are in the CSV file, then do:
    @(Import-Csv 'KillThem.csv') | kill -ErrorAction Ignore
    Those processes that are not running won't be killed (of course) and won't mess the display with error messages, because they'll be ignored.
    Important: the Import-Csv object must have the property Name.

  • The internal Id Of preferred Enterprise Manager could not be found

    Hi Experts,
    I am getting error (The internal Id Of preferred Enterprise Manager could not be found) in phase "Generate System level metric" in step 8 of Managed System configuration through solman_setup. I have checked both Enterprise Manager as well as SMD agent is running.We have LM service 7.10 SP10.
    Please suggest.
    Thanks
    Aditya Roushan

    Hi Aditya,
    Please check the below SAP Notes -
    1836087 - The internal id Of preferred Enterprise Manager could not be found
    1842544 - Generate System Level Metrics ended with Enterprise Manager missing error
    Best Regards,
    Tanmeya

  • No Objects Found error during Sender agreement in ID

    I created all objects, activated in IR and refreshed Cache with SXI_Cache.
    Created Scenario in ID.
    During Sender agreement creation,  I gave Sender Service ( Which doesn't have to be in SLD ). Then Iam trying to pick Interface from drop down. Surprisinglt I cant see any object instead it throws error "No Objects Found" .
    What should I do to see the Interfaces from Design?. Any suggestion here ?
    Iam doing File to File scenario with Business Service.
    Thanks

    S T,
    from what you've said, you're using Business Services and not Business Systems.
    Business Services are simpler (in the sense that you don't need to refer them in SLD and all), but the catch is that they don't have some useful stuff that Business Systems have.
    One of these is that, for Business Systems, all the interfaces that are in SWCVs which belong to that BSy are automatically considered as valid interfaces for that BSy.
    As for Business Services, you have to define all the interfaces that you want in the BSe, one by one. The good news is that you can use the Message Interfaces of any SWCV of Integration Repository, without having to specifically add the SWCV to the BSe (which can be a pain in the @$$ some times...).
    To see and/or include message interfaces for a Business Service, just double click on it on Scenario or Objects tabs of Integration Directory.
    Regards,
    Henrique.

  • Version Management of ABAP objects in Workbench

    Dear Friends,
    Can any one give idea about document, blog or link, which gives brief explanation about "Version Management of ABAP objects in workbench" with screen dispaly?
    Regards,
    Nilay

    Hello,
    Please see these: [https://websmp101.sap-ag.de/slm], [/people/manish.agarwal4/blog/2007/04/04/sap-centric-enterprise-architecture--part-3--software-lifecycle-manager] and [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/fbec764c-0601-0010-c7a4-cbb73e7fe2eb].
    Regards.

Maybe you are looking for

  • Error in Deploying the web service process

    Hi all, I will working on web service process in ebs server. In this server i had executed the web service process successfully. After Restarting my ebs server i checked again the web service process , but it throws following error running the "Asant

  • The VCC property was not found on the resource

    Hi all, I used a subversion to download/upload process in one of my application. At a point it give an error like this. svn: The VCC property was not found on the resourceCan someone tell me what that error means, and how to fix it. Thanks in advance

  • How do you edit the HTML export template?

    Fireworks HTML and images export does not render correctly when viewing in IE9 due to the default browser padding values.  I'm a little disappointed the Fireworks dev team didn't see this coming and add some code to prevent this rendering issue.  Any

  • CV01N - Attached PDF document printing through programmatically

    Hi all My requirement is to print PDF document which is attached through CV01N transaction programmatically. I searched all the ways. Still I didn't get it. Kindly help me to achive PDF document printout programmatically. Thanks in advance. Thanks an

  • Copy Japanese text without dots: why can't I copy the text in reader without having actual text copied, not dots?

    I have tried to download japanese adobe, yet I can only have one adobe file, as the computer stops download. Is there a way to allow multiple adobe for each language you need? I read about OCR and DRM, yet the apps on the itunes store are only for ip