TABLE / Object name of the organisational unit

Hi,
What's the table to found the object name of the organisationel unit (T-Code : PPOM)
Thanks.

Hi,
Check T527X.
Regards,
Dilek

Similar Messages

  • Fm or metod that retrieve the lock object name from the table name

    HI ALL,
    there is FM or method that retrieve the lock object name from the table name ?
    Best regards
    Nina

    CALL FUNCTION 'ENQUEUE_REPORT'            
    EXPORTING                                
    gclient                     = sy-mandt   
    gname                       = 'RCTMV'         "Table Name
      GTARG                       = ' '       
      GUNAME                      = SY-UNAME  
    IMPORTING                                 
      number                      =           
      SUBRC                       =           
      TABLES                                  
        enq                         =  lt_seqg3
    EXCEPTIONS                               
       communication_failure       = 1        
       system_failure              = 2        
       OTHERS                      = 3

  • There was an error while writing data back to the server: Failed to commit objects to server : Duplicate object name in the same folder.

    Post Author: dmface15
    CA Forum: Administration
    I am working in a new enviorment and i am trying to save a report to the Crystal Server via the CMC. I am uploading the report from the objects tab and attempting to save to a folder. The report has 1 static defined parameter and that's it. When i click submit to save the report i receive the following error message: "There was an error while writing data back to the server: Failed to commit objects to server : Duplicate object name in the same folder." There is not a anothe report within the folder with that name. What could be causing this error message and equally important, what is the solution.

    hte message you received about duplicate user probably means something hadn't fully updated yet. Once it did then it worked...
    Regards,
    Tim

  • Oracle SQL Developer (Not seeing object names within the interface)

    Hello,
    I was finally able to perform an export/import from our production environment to our training environment. Anyway, this was done using the SYS account and for some reason, I have an issue where in Oracle SQL Developer, there are no object names being displayed, but the objects do exist within SQLPLUS if I should query the table.
    The following error message displays when I refresh any of the objects folders within SQL Developer:
    ORA-00942: table or view does not exist
    Any ideas would be greatly appreciated.
    Thank you.

    825084 wrote:
    I'm pretty new to the Oracle DBA space but not to SQL Server Ah. The first thing you need to do is check everything you think you know about rdbms at the door. The similarity between SQL Server and Oracle ends right after SELECT * FROM EMP.
    Even the term "database" has different meanings.
    First thing I see, in your original post, is that you did the export/import as SYS. Was this "as sysdba"?
    From Oracle® Database Utilities
    10g Release 2 (10.2):
    Invoking Export and Import As SYSDBA
    SYSDBA is used internally and has specialized functions; its behavior is not the same as for generalized users. Therefore, you should not typically need to invoke Export or Import as SYSDBA, except in the following situations:
    * At the request of Oracle technical support
    * When importing a transportable tablespace set
    so it's quite possible that I missed something during the import/export of the environments.
    Are there any system tables that get invoked when you click on any of the objects within the connection?

  • How can I get object name inside the object

    I'm trying to get the object name inside its pl/sql code to pass to another procedure, there must be a way to select object name from system tables ?
    Thanks for help

    Dear Garcia,
    Let me try to help you out..
    First of all let me confirm your requirement.. ie you want to get the attribute 'CONFIG_LINE_COL' of type cl_crm_bol_entity_col from the object 'ISUORDERITEM" right ?..
    try this code,
    data: lr_col type ref to cl_crm_bol_entity_col.
    lr_col = me->typed_context->isuorderitem->config_line_col.
    now you got the collection in lr_col variable.. you can play with this data now. I dont know whats your actual requirement so that i can help you further :).
    Hope it helps.
    Regards, Sudeep..
    Edited by: sudeep vd on Oct 2, 2008 7:31 PM

  • How can I set the Object Name to the file name on import?

    All-
    I've been manually typing the filename into Aperture's Object Name metadata field. Is there a way to do this automatically? I use metadata presets to fill in many other fields on import but haven't found a way to set metadata fields on a file-by-file basis.
    Perhaps there's a way to do this with the thousands of images already in my library as well...
    Thanks,
    Andreas

    Here's the cleaned-up version:
    tell application "Aperture"
    set selectedImages to the selection
    repeat with i in selectedImages
    set tName to name of i
    set value of IPTC tag "ObjectName" of i to tName
    end repeat
    end tell
    Some other related bits, which you can probably work out how to put into the above script:
    Find out the AppleScript names of the IPTC tags (but only tags which have a value for that image), the names will be listed in the 'result' pane in the Script Editor:
    tell application "Aperture"
    set selectedImages to the selection
    get name of every IPTC tag of item 1 of selectedImages
    end tell
    The same for EXIF tags:
    tell application "Aperture"
    set selectedImages to the selection
    get name of every EXIF tag of item 1 of selectedImages
    end tell
    And for any custom tags you have set up. If you haven't set up any custom tags (one of my main reasons for going with Aperture) this will just return camera and picture time zones:
    tell application "Aperture"
    set selectedImages to the selection
    get name of every custom tag of item 1 of selectedImages
    end tell
    Finally, keywords:
    tell application "Aperture"
    set selectedImages to the selection
    get name of keywords of item 1 of selectedImages
    end tell
    To grab the first keyword name try 'name of keyword 1 of...' etc.
    To grab the parent keywords for hierarchical keywording stuff try experimenting with 'get parents of keywords of'. The keywords seem to be read-only from AppleScript, so a magic script that added all parent keywords doesn't seem to be possible.
    Ian

  • How to add an variable to the object name of the arraylist

    Greetings,
    i will like to create an object for arraylist with it name concat with a variable. This is what i mean as show below.
    for i=1; i <8; i++)
    ArrayList list = new ArrayList();
    What i want when it loops, the arrayliost will auto create list1, list 2, list3 and so on until the for loops end. How do i add the variable i to the object name list?
    Thanks

    Do anyone of u mind if let me know hows the code look like?This isn't intended to be an alternative to the previous reply: in fact it's worthless unless you read the information in the link given.
    import java.util.ArrayList;
    import java.util.InputMismatchException;
    import java.util.List;
    import java.util.Random;
    import java.util.Scanner;
    public class ListListEg {
        public static void main(String[] args) {
            Scanner in = new Scanner(System.in);
            Random random = new Random();
                // create the mainList outside the for loop
            List<List<Integer>> mainList = new ArrayList<List<Integer>>();
            System.out.print("How many lists would you like? ");
            try {
                int num = in.nextInt();
                if(num <= 0) {
                    System.out.println("Smartass!");
                    System.exit(1);
                    // populate the main list inside the loop
                for(int i = 0; i < num; i++) {
                    mainList.add(new ArrayList<Integer>());
            } catch(InputMismatchException ime) {
                System.out.println("Idiot!");
                System.exit(1);
                // later do stuff with the lists, which you access with get()
            for(int i = 0; i < mainList.size(); i++) {
                for(int times = 0; times < 3; times++) {
                    mainList.get(i).add(random.nextInt());
            System.out.println("The first list is " + mainList.get(0));
            if(mainList.size() > 1) {
                System.out.println("The second list is " + mainList.get(1));
            System.out.println("The last list is " + mainList.get(mainList.size() - 1));
    }(In reality all the action would not take place in one method like this, and the exception handling would be more useful and polite.)

  • Can we change the organisational unit for a particular position?

    Hi Friends,
    Can we change the org.unit for a particular position?What is the procedure?
    Thank you very much..
    Sai

    Hi sai,
           I m not getting your question, Can u pls elaborate this one.
    This thread has been marked as answered, u can start a new thread for the same.
    Regards,
    Tomesh
    Message was edited by:
            Tomesh Sahu

  • I want the table fields name for the screen fields of transactions lm59

    Hi all
      I am enhancing transactions LM58,LM59and  LM 60
      But in that transactions underthe lable of storage bin , there are 3 input fields . I want to know the exact table fields for those 3 input screen fields .

    Ravi,
    OK.
    You can look to tables EKPO, EKKO for PO-related fields.
    Look to SE84 under   ABAP Dictionary > Fields > Table Fields   - This is search tool for existing names.  Or can create custom Y-   and  Z- fields, data elements, domains to meet your needs.
    Please reward points.

  • An object name for the command sh hardware fabric-utilization on Nexus

    Hello,
    does the customer use SNMP for the monitor a fabric-utilization on Nexus?? He wants to monitor values from the command "sh hardware fabric-utilization":
    sh hardware fabric-utilization
    > ------------------------------------------------
    > Slot        Total Fabric        Utilization
    >              Bandwidth      Ingress % Egress %
    > ------------------------------------------------
    > 1             184 Gbps          3.0       3.75
    > 2             184 Gbps          4.0       4.25
    > 3             184 Gbps          5.0       4.62
    > 4             184 Gbps          4.0       4.0
    > 5              92 Gbps          0.0       0.0
    > 6              92 Gbps          0.0       0.0
    he uses snmpwalk
    > snmpwalk -v2c -c public ip-address  -On > switch
    >
    here is the output for slot1
    >
    > .1.3.6.1.2.1.47.1.1.1.1.2.22230 = STRING: "xbar-1 Outlet  (s1)"  ==
    > ingres
    > .1.3.6.1.2.1.47.1.1.1.1.2.22231 = STRING: "xbar-1 Intake  (s2)" ==
    > egress
    > .1.3.6.1.2.1.47.1.1.1.1.2.22232 = STRING: "xbar-1 Crossbar(s3)" ==
    > total
    >
    > OIDs in the ENTITY-MIB.
    he tried to use a filter for the xbar-1 Outlet
    > ob@ns1main:~$ cat switch | grep 22230
    > .1.3.6.1.2.1.47.1.1.1.1.2.22230 = STRING: "xbar-1 Outlet  (s1)"
    > .1.3.6.1.2.1.47.1.1.1.1.3.22230 = OID: .1.3.6.1.4.1.9.12.3.1.8.29
    > .1.3.6.1.2.1.47.1.1.1.1.4.22230 = INTEGER: 32
    > .1.3.6.1.2.1.47.1.1.1.1.5.22230 = INTEGER: 8
    > .1.3.6.1.2.1.47.1.1.1.1.6.22230 = INTEGER: 1
    > .1.3.6.1.2.1.47.1.1.1.1.7.22230 = STRING: "xbar-1 Outlet  (s1)"
    > .1.3.6.1.2.1.47.1.1.1.1.8.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.9.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.10.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.11.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.12.22230 = STRING: "Cisco Systems"
    > .1.3.6.1.2.1.47.1.1.1.1.13.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.14.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.15.22230 = ""
    > .1.3.6.1.2.1.47.1.1.1.1.16.22230 = INTEGER: 2
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.1.22230 = INTEGER: 8
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.2.22230 = INTEGER: 9
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.3.22230 = INTEGER: 0
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.4.22230 = INTEGER: 0
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.5.22230 = INTEGER: 2
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.6.22230 = Timeticks: (206227326) 23 days,
    > 20:51:13.26
    > .1.3.6.1.4.1.9.9.91.1.1.1.1.7.22230 = INTEGER: 60
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.2.22230.1281 = INTEGER: 10
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.2.22230.1282 = INTEGER: 20
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.3.22230.1281 = INTEGER: 4
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.3.22230.1282 = INTEGER: 4
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.4.22230.1281 = INTEGER: -128
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.4.22230.1282 = INTEGER: -128
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.5.22230.1281 = INTEGER: 2
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.5.22230.1282 = INTEGER: 2
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.6.22230.1281 = INTEGER: 1
    > .1.3.6.1.4.1.9.9.91.1.2.1.1.6.22230.1282 = INTEGER: 1
    > .1.3.6.1.4.1.9.9.92.1.1.1.11.22230 = ""
    > .1.3.6.1.4.1.9.9.117.1.5.1.1.1.22230 = INTEGER: 2
    > .1.3.6.1.4.1.9.9.195.1.4.1.1.22230 = ""
    but there is not value which is seen in the show command.:-(
    Does any mib object exists for monitoring these values??
    Thank you.
    Roman

    i also tried cant find anything that can monitor this right now

  • No Business Partner name in the general note of a DSWP-issue

    End user has been created within a CUA-sytem and distributed to the SSM-system. Subsequently the Business Partner BP has been generated in the SSM-system succesfully with the tcode bp_gen. The BP has been attached in the organization model succesfully using tcode pposa_crm. However, the Holder name does not appear at the left lower Holder column. After some investigation it appears that the fields HRP1000-SHORT and HRP1000-STEXT of the Central Person are not filled. Hence, no Business Partner name appears in the general note of DSWP-issue and therefore different to trace who has done what.  What can be the cause of this issue?

    Just for the record...
    It appears that in some cases the Title-field was not filled in the CUA-system. Therefore this field was not transferred to the SAP Solution Manager system. The problem has been solved by entering a value in the 'Title'-field of the Business Partner [/nbp] - the Holder name in the organisational unit appears again.

  • WORKFLOW, organisational unit name

    Hi,
    I am making use of FM 'SAP_WAPI_WORKITEM_RECIPIENTS' with input as workitem id and user name. I am getting the organisational unit, but the problem is it gives only the number of the organisational unit.
    Is there any FM which after giving the organisational unit number will give me the description/short text for the organisational unit.
    Report 'RHSHOWOR' gives the description, but it takes the user name only and shows all the org unit specified for the user, I want the description for a single org unit.
    Relevant answers will be rewarded.
    Thanks in advance.
    Regards,
    Neerup.

    Thanks for the quick reply.
    The table T527X does not exist in my system.
    I am checking other stuffs from the link : http://help.sap.com/saphelp_nwpi71/helpdata/en/c5/e4b239453d11d189430000e829fbbd/frameset.htm
    Is there any standard SAP provided FM, which will give me the description, or can you please suggest some other table.
    Thanks and Regards,
    Neerup.

  • SAP table for finding Quant from the Handling unit

    Hi All,
    I would like to know the SAP table name - from the handling unit (where the stock received in the Warehouse), i would like to corresponding Quant ?
    PSS

    Hi,
    To know the QUANT for handling unit, use the table LQUA.

  • Need to get the operating unit name for AP report

    Hi,
    I'm really new to XML/BI publisher. I have to customize a oracle report called Payables Posted Payment Register. The package XLA_JELINES_RPT_PKG ties into this report. Upon reading the package it's pretty confusing. Anyway, there is a parameter called P_SECURITY_ID_INT_1 which is the operating unit. I'm trying to display the operation unit in my report but it only returns the operating unit id and I need the name of the operationg unit. So I'm guessing im going to need to grab it somehow in the XLA_JELINES_RPT_PKG. Is this correct? Any suggestions on the best approach?
    Thank you!! Your help is so much appreciated!

    Hi,
    after time elavualtion use t code PT66,  in this t.code double click on the each month(period) then you can get the internal table like ZES, SALDO, ZKO. again double click on the each internal table, you can get the information through the time types.  Like , now you want the overtime hours, 0903, 0904 with this time types you can get the each employee no. of. overtime hours.
    ZL, ZES, SALDO, TIP entries are internal table , you could not get any results from this table with using se11, se16.
    With PT_BAL00 with this report also we can get the overtime hours with the help of time events.
    Good luck
    Devi

  • Any business object for Organisation Unit Create

    is there any business object for Organisation Unit Creation. BUS0018 is available but there it is not defined. basically on saving the Organisation Unit in PP01 Transaction, a workflow should be triggered to send a mail to the Requestor intimating him that the org unit has been created.
    points will be awarded even to the slightest cues.

    Hi,
    Did you check SWEHR2 to see if there are any clues there? I found object PDOTYPE_O there. But it triggers an event for BOR BUS1221. So depending on your needs you could use one of these maybe. The problem is PDOTYPE_O doesn't have any events, so you would need to create a subtype and delegate it. In the subtype you could create your own events which you could call using SWEHR3.
    Regards,
    Martin

Maybe you are looking for