How to view PO`s of all ORG

Hello
How can i enable a user to view PO`s of all organizations from his login
Currently, a user can view PO`s only from his particular org in which he falls in the hierarchy
Companys policy is that an employee dedicated for auditing the PO`s is a must
so plz tell me how can i enable a user to view PO`s of all organizations from his login
Thanks

u see there are 5 inventory ORG..all have buyers who make pur chase orders
now there is an auditing department for which i have made a user
he needs access to all PO`s from all organizations for auditinf purposes
the security level for document stand purchase order is Hierarchy..we cannot make it public nor purchasing due to security reasons.
How would tht be possible
The top most person in hierarchy can see all PO`s in all ORG, i have tested it..rest all cannot see except for thier approval assignment s flowdown

Similar Messages

  • How to view the cost of all articles at all sites in SAP using a report?

    So, here is the ask:
    I want to view the cost (could be either Std Cost or Moving Avg Price, based on price control) for all articles (materials) in all the sites (plants) in SAP. This can be a very huge number for retail clients, resulting in millions of records.
    I know that MBEW stores this information for an article site level (when site is maintained as val. area), but we need a report to handle huge volumes. Is there a standard report out there, which may leverage info structures to give this information.
    Please help!

    Hi
    For standard LIS, see Note 491519 - Standard analyses - Transaction codes and reports.
    I don't know any standard report for your requirement. Actually, I created some reports using MBEW and MBEWH tables. For understanding how MBEWH behaves, please, see SAP Note 193554 - Stock/valuation data of previous periods.
    I hope this helps you
    Regards
    Eduardo

  • How to view list of all constraints,triggers,procedures ...etc

    hi,
    how to view a list of all the available constraints, triggers, procedures, functions, packages in a database.And how to view its definition ?

    user12222356 wrote:
    And how to view its definition ?If by definition you mean DDL to create it, use DBMS_METADATA:
    SELECT  DBMS_METADATA.GET_DDL(object_type,object_name,owner)
      FROM  DBA_OBJECTS
      WHERE OBJECT_TYPE IN ('TRIGGER','PROCEDURE','FUNCTION' )
    /For example:
    SET LONG 10000
    SELECT  DBMS_METADATA.GET_DDL(object_type,object_name,owner)
      FROM  DBA_OBJECTS
      WHERE OBJECT_TYPE IN ('TRIGGER','PROCEDURE','FUNCTION' )
    DBMS_METADATA.GET_DDL(OBJECT_TYPE,OBJECT_NAME,OWNER)
      CREATE OR REPLACE PROCEDURE "SYS"."SUBPTXT2" (name varchar2, subname varchar2,
    usr varchar2,
                                 dbname varchar2, dbowner varchar2,
                                 txt in out varchar2) is
    status diutil.ub4;
    begin -- main
        diutil.subptxt(name, subname, usr, dbname, dbowner, txt, status);
        if (status <> diutil.s_ok) then
            if (status = diutil.s_subpNotFound) then
    DBMS_METADATA.GET_DDL(OBJECT_TYPE,OBJECT_NAME,OWNER)
                txt := '$$$ s_subpNotFound';
            elsif (status = diutil.s_stubTooLong) then
                txt := '$$$ s_stubTooLong';
            elsif (status = diutil.s_logic) then
                txt := '$$$ s_logic';
            elsif (status = diutil.s_notInPackage) then
                txt := '$$$ s_notInPackage';
            else txt := '$$$ s_other';
            end if;
        end if;
    end subptxt2;
    DBMS_METADATA.GET_DDL(OBJECT_TYPE,OBJECT_NAME,OWNER)
    SQL> SY.

  • How do I change the keypad From a split key view to having them all together?

    How do I change the keypad From a split key view to having them all together?

    Next to the ,?123 key on the lower right hand of you keyboard is the button that allows that feature. You need to hold that section down and the option will appear.

  • Ok somehow my sister deleted all my photos off my photo booth and now all my pictures in my iphoto i cant view them i just see white dots and boxes can anyone tell me how i can get my deleted photos back and how can view my photos again please !!!

    ok so somehow my sister deleted all my photos off photo booth and now all my photos on iphoto i cant view them i want to know how i can get my deleted photos back and how to view the rest of my photos please help !!!!

    Phonebooth is in your home folder under pictures with Iphoto and Ichat. Deleting pigtures from phonebooth should not remove any from Iphoto library. Something else had to happen.

  • How to view all attachemt in outlook for user in my network

    Hello,
    how to view all attachment in outlook for users in my network
    i am used below path:
    "C:\Users\ username \AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.Outlook"
    All attachments
    I can not find some attachments exist on the
    email did not find her on the track
    above.
    thanks

    Hello,
    You may also try this VBA solution:
    https://gallery.technet.microsoft.com/office/Save-attachments-from-5b6bf54b
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to find ?? in a view text (definition) in all schemas

    Hi
    DB Version Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    OS RHES 5U2
    I would appreciate if someone can tell me how to get a list of all the views in the database that contains ?? in the text/definition of the view.
    I tried with both DBA_VIEWS and ALL_VIEWS using following query but it returned error.
    SELECT OWNER||'.'||VIEW_NAME
    FROM ALL_VIEWS
    WHERE TEXT LIKE '%??%'
    AND owner not in ('SYS','SYSTEM','SYSMAN','DBSNMP','OLAPSYS','MDSYS','CTXSYS')
    ORDER BY OWNER;
    WHERE TEXT LIKE '%??%'
    ERROR at line 3:
    ORA-00932: inconsistent datatypes: expected NUMBER got LONG
    SELECT OWNER||'.'||VIEW_NAME
    FROM DBA_VIEWS
    WHERE TEXT LIKE '%??%'
    AND owner not in ('SYS','SYSTEM','SYSMAN','DBSNMP','OLAPSYS','MDSYS','CTXSYS')
    ORDER BY OWNER;
    WHERE TEXT LIKE '%??%'
    ERROR at line 3:
    ORA-00932: inconsistent datatypes: expected NUMBER got LONG
    Thanks

    WHERE TEXT LIKE '%??%'TEXT here is a LONG datatype, you cannot use it in an expression.
    You could do that :
    SQL> select count(*) from user_views where text like '%OPRD%';
    select count(*) from user_views where text like '%OPRD%'
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected NUMBER got LONG
    SQL> create table myviews (view_name varchar2(30), text clob);
    Table created.
    SQL> begin
      2  for i in (select view_name,text from user_views) loop
      3  insert into myviews values (i.view_name,i.text);
      4  end loop;
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> select count(*) from myviews where text like '%OPRD%';
      COUNT(*)
           136
    SQL>Nicolas.

  • I took pictures on my iphone when it was on the lock screen and now I can't view the pictures in all of my photos. How do I view them?

    I took pictures on my iphone when it was on the lock screen and now I can't view the pictures in all of my photos. How do I view them?

    If you go to the Photos app, is there content in the Photo Library? These would be pictures that are synced to the phone from the computer. Photos in the camera roll are those that you take with the phone, or save from email, MMS on the phone. What type of pictures are you trying to get rid of? If you are trying to get rid of the synced photos, you need to connect to iTunes, select the iPhone in the device pane, then go to the Photo tab in iTunes and remove the check mark by sync.

  • Can MSS Team Viewer for HR Users to See All Org?

    Hi MSS Expert:
    Our company has modified R/3 MDT scenario that specially give HR users to display all org structure and run reports through PPMDT.  We're now implmenting MSS 60.1, backend ESS 5.0, after configured the objects and data provider that's derived from MDT evalution path, we can not overwrite the team viewer that can give HR user to have full access to entire org structure view.  Is MSS team viewer only limited to line manager who has chief position?  Or can it be configured to adopt both line manager and special HR users?  Any guidance will be greatly appreciated.
    Helen

    Hi Helen,
    being chief is a pre-req for MSS..You can create custom function modules & evaluation paths to bring in different levels of employees in to the Team Viewer.. but cannot give access to a special user... one has to be a chief of an Org Unit to get access to MSS..
    Regards,
    Suresh Datti

  • How to view list of all system exceptions from standard package?

    Hello,
    How to view list of all system exceptions from standard package?
    Regards
    Krishna

    Just for fun:
    SQL> conn sys/****** as sysdba
    Verbonden.
    SQL> select cast(trim(substr(text,instr(text,'(')+1,instr(text,',')-instr(text,'(')-1)) as varchar2(30)) exception_name
      2       , to_number(replace(substr(text,instr(text,',')+1,instr(text,')')-instr(text,',')-1),'''')) error_number
      3    from user_source
      4   where text like '%pragma EXCEPTION_INIT%'
      5     and type = 'PACKAGE'
      6     and name = 'STANDARD'
      7   order by exception_name
      8  /
    EXCEPTION_NAME                 ERROR_NUMBER
    ACCESS_INTO_NULL                      -6530
    CASE_NOT_FOUND                        -6592
    COLLECTION_IS_NULL                    -6531
    CURSOR_ALREADY_OPEN                   -6511
    DUP_VAL_ON_INDEX                         -1
    INVALID_CURSOR                        -1001
    INVALID_NUMBER                        -1722
    INVALID_OBJECT_NAME                  -44002
    INVALID_QUALIFIED_SQL_NAME           -44004
    INVALID_SCHEMA_NAME                  -44001
    INVALID_SQL_NAME                     -44003
    LOGIN_DENIED                          -1017
    NO_DATA_FOUND                           100
    NO_DATA_NEEDED                        -6548
    NOT_LOGGED_ON                         -1012
    PROGRAM_ERROR                         -6501
    ROWTYPE_MISMATCH                      -6504
    SELF_IS_NULL                         -30625
    STORAGE_ERROR                         -6500
    SUBSCRIPT_BEYOND_COUNT                -6533
    SUBSCRIPT_OUTSIDE_LIMIT               -6532
    TIMEOUT_ON_RESOURCE                     -51
    TOO_MANY_ROWS                         -1422
    USERENV_COMMITSCN_ERROR               -1725
    VALUE_ERROR                           -6502
    ZERO_DIVIDE                           -1476
    26 rijen zijn geselecteerd.Regards,
    Rob.

  • How to view code of all the custom and complex folder  folder

    How to view code of all the custom and complex folder folder in EUL?

    You do not need to run all the reports.
    Also i am not sure about why do you need to see the code of every thing, i assume you will not get much from it.
    If there is a certain folder you are interested in then this is the way.
    Any way there is no way to get the code of the complex folders since they are logical join of other folders.
    to get the code of the custom folder s you can use:
    select * from eul_us.eul5_objs t
    WHERE t.obj_type='CUO'
    AND t.obj_object_sql1 IS NOT NULL;
    you should look (and concatenate) at the obj_object_sql1,obj_object_sql2.....
    Tamir

  • How to view text of all triggers?

    How to view text of all triggers?
    I tried,
    sqlplus "/ as sysdba"
    SQL> Select Description, Trigger_Body from all_triggers;
    I see only one trigger but there are more than 500 triggers.

    Perhaps you want to query DBA_TRIGGERS instead of ALL_TRIGGERS.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_4162.htm#sthref1922
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/statviews_2107.htm#sthref1297

  • How to view all pictures on a particular disk

    This might be a stupid question, but I can not figure out how to do what should be a very simple thing. I have pictures for 4 different HD's that are tied to the lightroom program. When importing I had it rename everything to a particular formate and asked it to be organized a certain way (year month day). Here is the thing I want to move the contents of a whole drive to another drive, but in lightroom there didn't seem to be a way to see pictures just from 1 particular drive. It is all just by year month and day. Is there a way to select and view in the library all images say from drive 1. In folder section just has year month and day---no actually drive location unless I right click and say show in finder, but I am not about to do that for 40,000 images. I have to be missing something---this should be such a basic thing.
    Could someone help out?
    Thanks.

    Andrew,
    While what you are saying makes sense, it's a bit vague.
    Lightroom can move files and folders anywhere around drives, but will not move a folder into a location where that folder name already exists.
    If you want to have the main drive appear as a folder, you should be able to select the root folder on the drive clicking + beside 'Folders' and choosing it.

  • How to view all photos backed up in icloud

    Hi,
    I am sorry not a real Apple Savvy, sorry for a silly question
    1. Where can I view all the photos, which I have backed up in icloud from my iphone.
    Note: I have synced my ipad, mac and iphone
    2. I am using iphone 5 now , but had iphone 4s earlier. I had backed up even that data as well, in the same cloud, how to view to view them
    3. Does iphoto have all the photos till date which I have backed up from iphone and ipad.
    Please help

    You can change the settings as well as delete old backups in "Settings > icloud > Storage & Backup > Manage Storage". I hope this solves your issue.

  • How to view ALL my files in my iPad?

    Hello,
    How to view all my files in my iPad because the "others" in my iPad is taking a lot of space.
    Thanks

    If you just want a listing, you can do this:
    select owner, object_type, object_name
    from   dba_objects
    where  object_type in ('VIEW','TRIGGER','PROCEDURE');(you don't want to see functions or packages?)
    If you want to see the code for these types, an easy way is to use the package dbms_metadata to display them:
    SQL> select dbms_metadata.get_ddl('TRIGGER','ORDERS_TRG','OE') from dual;
    DBMS_METADATA.GET_DDL('TRIGGER','ORDERS_TRG','OE')
      CREATE OR REPLACE TRIGGER "OE"."ORDERS_TRG" INSTEAD OF INSERT
    ON oc_orders FOR EACH ROW
    BEGIN
       INSERT INTO ORDERS (order_id, order_mode, order_total,
                           sales_rep_id, order_status)
                   VALUES (:NEW.order_id, :NEW.order_mode,
                           :NEW.order_total, :NEW.sales_rep_id,
                           :NEW.order_status);
    END;
    ALTER TRIGGER "OE"."ORDERS_TRG" ENABLE

Maybe you are looking for

  • Dynamic Header Values in Flat File Destination

    Hi, I have to put 'T' or 'P' as part of a header in a flat file destination. The header is sourced via a work table which defines what the header looks like. One of the columns should contain 'T' for test or 'P' for production. When the package is ex

  • Switching video from widescreen to fullscreen...

    It says quite clearly here: http://www.apple.com/ipodtouch/features.html#video +"Turn your iPod Touch to switch between widescreen and fullscreen".+ But you can't do this with videos played from the video section of the main screen (only with videos

  • What about data warehousing?

    I have attended the 10g launch, perused the CD I got there and listened to a couple of online seminars. I can easily envision how 10g benefits OLTP applications, but data warehousing seems to be ignored in the presentations. Does 10g offer anything o

  • Changing the length of my song

    In GB on the iPad Air I understand that you can add regions as necessary, but if I'm recording audio and not using loops, isn't there a way to just record for as long as I want? Right now there is a set number of measures I can record, then the playh

  • Black screen on Facebook app

    When I try to get on facebook, all I get is a black screen. This just started yesterday. All I can see is the task bar up top. I have no other problems with other apps, and everything else works fine. Any help would be greatly appeciated.