How to extract list of ALL Purchase Requisitions

hi to all,
is there a way to extract a list of ALL the PR's created including the PR's that were created, processed, and DELETED already.. (also showing all line items and deleted line items) if yes, what Tcode is used.
Thanks and regards.

Hi,
It is ME5J.....for PRs related to a Project. ME5A general. ME5K w.r.t an acct assignment.
thanks
Saikishore Ganga

Similar Messages

  • MRP reports for all Purchase Requisitions

    I want a SAP standard report that will give me a list of all Purchase Requisition created via MRP run, it can also include manually createed PR's. The main aim is for the Materials Mansger to view all PR's, even if he/she don't have the authorization to release it.

    Doesn't standard transactions (ME55, ME5A) suit your requirement?

  • How to default distribution account through purchase requisition, selecting the project expenditure type

    Dear All,
    How to default distribution account through purchase requisition, selecting the project expenditure type
    Thanks
    Abdul.

    Hi Abdul,
    If you meant defaulting Purchase Order distribution accounts from the (backing) requisition, then the accounts from requisitions will default into the autocreated PO.
    If you seek to default distribution accounts for Purchase Requisition using Projects, then the account generator need to have customized rules defined to default account for project enabled distributions based on the Project/Task/Organization/Expenditure Type/Date combination entered.
    This note is an extract from the user's guide, and has good detail on defaulting rules of accounts for Purchase Documents:
    How Does The Account Generator Default The Accounts In Oracle Purchasing? (Doc ID 1067139.1)
    Hope this helps.
    Vanha

  • How to read list of all files in folder on application server?

    How to read list of all files in folder on application server?

    Hi,
    First get the files in application server using the following function module.
        CALL FUNCTION 'RZL_READ_DIR_LOCAL'
          EXPORTING
            name     = loc_fdir
          TABLES
            file_tbl = int_filedir.
    Here loc_fdir contains the application server path.
    int_filedir contains all the file names in that particular path.
    Now loop at int_filedir.
    OPEN DATASET int_filedir-name FOR INPUT IN TEXT MODE ENCODING  DEFAULT MESSAGE wf_mess.
    MESSAGE wf_mess.
        IF sy-subrc = 0.
          DO.
            READ DATASET pa_sfile INTO wf_string.
            IF sy-subrc <> 0.
              EXIT.
    endif.
    close datset int_filedir-name.
    endloop.

  • How to delete no longer use Purchase Requisition

    Dear Experts,
    How to delete no longer use Purchase Requisition, thanks!
    Wilson Hong

    Hi Hong,
    Hope you are looking for archiving PR. Please refer below link.
    http://help.sap.com/saphelp_nw04s/helpdata/EN/8d/3e4c11462a11d189000000e8323d3a/frameset.htm
    As per SAP you cant delete any data....you can only archive it.
    Cheers
    Arun.

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

  • Better way how to get list of all classpath URLs in runtime

    Hello everyone,
    How to get list of all classpath items (URLs) in runtime from Java code?
    I am aware of solution based on System.getProperty("java.class.path"). Is there any alternative?
    This solution has several drawbacks. You have to parse String output. And I not sure if it contains ALL resources (JARs, class directories) loaded by ClassLoader or just reflects -cp arguments.
    Does system property "java.class.path" contain ALL loaded JARs?
    Does it contain items (JARs, class directories) loaded by bootstrap classpath?
    What about JARs loaded in runtime?
    Is the separator ":" always same on all operation systems?
    I was looking for some Java API based solution, method like List<URL> getAllClasspathItems()
    But there is nothing like this in ClassLoader, Class, Runtime or System classes.
    For curious, here is code I use.
    String classpath = System.getProperty("java.class.path");
    StringTokenizer st = new StringTokenizer(classpath, ":");
    while (st.hasMoreElements()) {
         System.out.println(st.nextElement());
    }

    For curious, here are output prints for all 3 methods:
    1) parsing system property
    2) tschodt
    3) overcast SystemClassLoader to URLClassLoader
    /home/espinosa/workspace/jboss_embedded_test1/target/test-classes
    /home/espinosa/workspace/jboss_embedded_test1/target/classes
    /opt/javalibs/javax/ejb/ejb-api/3.0/ejb-api-3.0.jar
    /opt/javalibs/javax/jms/jms/1.1/jms-1.1.jar
    /opt/javalibs/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
    package com.sun.org.apache.xerces.internal.impl.validation, Java Platform API Specification, version 1.6
    package com.thoughtworks.qdox.directorywalker
    package com.sun.org.apache.xerces.internal.parsers, Java Platform API Specification, version 1.6
    package java.util.jar, Java Platform API Specification, version 1.6
    package org.testng.internal.thread
    package com.sun.org.apache.xerces.internal.util, Java Platform API Specification, version 1.6
    package java.net, Java Platform API Specification, version 1.6
    package sun.reflect.misc, Java Platform API Specification, version 1.6
    package esp.ejb.samples1.test
    package sun.security.provider, Java Platform API Specification, version 1.
    file:/home/espinosa/workspace/jboss_embedded_test1/target/test-classes/
    file:/home/espinosa/workspace/jboss_embedded_test1/target/classes/
    file:/opt/javalibs/javax/ejb/ejb-api/3.0/ejb-api-3.0.jar
    file:/opt/javalibs/javax/jms/jms/1.1/jms-1.1.jar
    file:/opt/javalibs/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
    ...Interestingly, method 1 and 3 gives the same list, same order, same count, just format of item is a little bit different. The order is same as in Eclipse .classpath file.
    Method 2 (tschodt) give significantly more items! rougly 3x! Different order (somewhat random it seems to me). Some items contain extra information, like version and string "Java Platform API Specification".
    It prints not absolute paths but logical Java names.

  • How to extract TEXT for archived Purchase Orders ?

    Hi Friends,
    Can any one tell me how to extract TEXT for archived Purchase Orders ?
    I have used READ_TEXT but that is not fetching texts for archived PO's. Whenever I am trying to fetch data from STXH against archived PO, no value is coming and resulting SY_SUBRC <> 0.
    Any demo code will be highly appreciated.
    Thanks in advance..
    Sivaji

    Hi,
    You can see that table STXH is linked to archiving object MM_EKKO (you can see it in tcode DB15).
    My suggest is that you must get the data. See the demo object BC_SBOOK in tcode AOBJ. You can see the report to reload data. The object is get the data in an internal table. So for report SBOOKR you can see this function module:
    *   get data records from the data container
    *   SBOOK
        CALL FUNCTION 'ARCHIVE_GET_TABLE'
          EXPORTING
            archive_handle        = lv_handle
            record_structure      = 'SBOOK'
            all_records_of_object = 'X'
          TABLES
            table                 = lt_sbook_tmp
          EXCEPTIONS
            end_of_object         = 0.         "not entries of this type
    *   check lt_sbook_tmp entries against selections. Delete not
    *   requested entries
        LOOP AT lt_sbook_tmp ASSIGNING <ls_sbook>
                             WHERE carrid IN s_carrid
                               AND connid IN s_connid
                               AND fldate IN s_fldate.
          APPEND <ls_sbook> TO lt_sbook.
        ENDLOOP.
        REFRESH lt_sbook_tmp.
    The idea is that you get the same data that you handle in READ_TEXT (because you don't have the data in database) and recovery the text.
    I hope this helps you
    REgards
    Eduardo

  • How to indentify Quotation linked to Purchase Requisition?

    Hi Colleagues,
    I need very much to figure out how to identify Quotations linked to Purchase Requisition in order to develop BW extractor.
    Using t. code ME53N the "Status" tab shows the Quotations (field "Purch. Doc.") linked to PR line.
    The structure MMREQ_HISTORY gets this information. I'd like to know if there is any Transparent Table that I can get this data?
    Best Regards
    Waldemar Gonsales
    EMBRAER

    Hi
    Thanks for help.
    We have solved such question.
    There is a view M_MEKKE. We inform the PR/Item and get the Quotation/Items
    It's also possible inform the PR/Item using the table EKET and get the Quotation/Items
    Regards
    Waldemar Gonsales
    EMBRAER
    Edited by: Waldemar Gonsales on Sep 9, 2009 6:15 PM

  • How to Change delivery date of Purchase Requisition created from PM  module

    Hi all,
         We are creating service PR from PM module. There is a need that user should be able to change the
    Delivery Date of the PR. When we use ME52N , the field is grayed out.
    If the PR is created with same data manually with ME51N, we are able to change the delivery date.
    Please suggest how to do this.
    Thanks

    I´m sorry, but my english, is not better.
    Why in the Scheduling for External Procurement, the Purchase Requisition take (or picks up) as Delivery date, the Basic End Date of the Maintenance Order (PM). 
    What must I do in the customizing so that the Purchase Requisition takes (or picks up) the delivery date as the Basic End Date of the Maintenance Order.
    Please, helpme..
    Cristian Torres

  • How to convert planned order to purchase requisition

    Hi,
    We have executed MRP run with the option create purchase requisition as '2' i.e purchase requisitios in the opening period.Now the system has created some planned orders and some purchase requisitons.
    Now we want convert the planned orders in to purchase requisitions ,how to convert them in to PR.
    We have MD14 and MD15 transaction codes but don't have authorisation.
    Will the system automatically convert them to  PR in the next MRP run or we have convert them manullay?
    Is it possible to delete the palnned order and re run the MRP with the option of creation indicator as '1' and in this cas whether teh system will consider existing PR(which got created earlier)?
    How to delete the palnned order?

    Hi chinni,
    You can convert the planned orders to purchase requisitions in MD04. to avoid this check If procurement type for the materials is E then, change it to F. Now Rerun the MRP by selecting planning mode as 3 - Delete and recreate planning data and create purchase requisition as u20181u2019. All planned orders will get deleted and purchase requisitions will be generated.
    Try this and revert back for further clarifications.
    regards
    Venkat.V

  • How to restrict to unrelease the purchase requisition when po is released.

    Hi Expert's,
    please suggest me how can I restrict to unrelease the purchase requisition when Po is released.
    Pls guide me .
    Regards,
    Sanjay

    Hi,
    I don't think there is standard settings where u can restrict PR changes when the PO corresponding to this is released.
    You have 2 options: One is to restrict all the changes once the PR is released. This can be done in the release indicator (Changeability - 1). Once this is set, PR cannot be changed after release irrespective of whether PO is created or released.
    Second option is to go for an enhancement (You may use ME_PROCESS_REQ_CUST) and write a logic to see the release indicator of corresponding PO and restrict the changes.
    Regards,
    Sudeep.

  • How to find list of all open windows?

    Hi,
    I was wondering how to find a list of all open windows on the
    desktop. I have been able to use this to find the number of open
    windows in the AIR application:
    var windows:Array =
    NativeApplication.nativeApplication.openedWindows;
    test.text = String(windows.length);
    I cant seem to get the list of all open windows on the
    desktop though or the names of the windows.
    Any pointers would be appreciated.
    Thanks!

    Thanks anirudhs. I had a feeling this was the case. It just
    seemed odd that the built-in function calls like orderToBack() and
    orderToFront actually put the AIR windows behind or in front of all
    the windows on the desktop. Somehow AIR is finding the list of open
    windows on the desktop. I just didnt know if there was some way to
    access AIR's way of finding the windows. Guess it must be a
    protected function. Thanks!

  • How to find out userid of purchase requisition at each item level

    for a particular requisition at each item is released by a some user, how to find out these user name.
    ex.
    pur.requi     pur req item    ueser_id
    10092188    00001            ?
    10092188    00002            ?
    10092188    00003            ?
    10092188    00004            ?
    in the above data purchase requisition is same but purchase
    requisition items are different. in this i want to find out user
    id of releaser for each item of particul purchase requisition.

    dear friend
    in table
    there is group
    tabkle : eben
    field:    FRGGR
    you get it easily.
    rewards are expecting:
    vivek

  • How to find list of all iMessage devices

    I have been an apple user for many years and recently had a disturbing occurrence.  I stopped receiving some of my texts messages for the past month or so and when I searched all of the devices in my household, I was shocked to find that my daughter's iPhone was receiving them because the senders were using iMessage (which I don't use).  I was able to repair that situation but my bigger question is whether I can find a list of all devices using my account info to log into iMessage and remove them so that I receive every text sent to my iPhone.

    Hi mitch236,
    I see that you wish to control your iCloud account so that your iMessages and text messages only go to the devices that you desire. You will want to review the information in this article, which can show you where to find iMessage information on your devices and how to adjust your settings accordingly:
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage - Apple Support
    http://support.apple.com/en-is/HT201349
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

Maybe you are looking for

  • How can I get i phone 4s to work with a tom tom car kit

    I upgraded to an i phone 4s from an I phone 3gs.  My tom tom app worked perfectly with the tom tom car kit on my old phone but now I have managed to get it to charge when plugged into the car kit but there is only poor gps reception showing, any Idea

  • Date received time is wrong on Mail and people not getting attachments

    Since I moved to this new MacBook Pro with the intel processor from my iMac G5, this latest version of Mail seems to be more problematic than the last: I can not get the time displayed in the list of emails to be correct. It keeps displaying a time t

  • CS4 will not create a movie file, it just stops!

    Can anyone help, I am at my wits end trying to create a movie file and have tried over half a dozen formats without success. Everything appears to be going well then it just stops! It was fine the last time I tried it 3 months ago. Waiting in anticip

  • Dataset as Parameter

    Hello! I would just like to ask if there's a way to make a dataset an oracle stored procedure parameter without looping through all the rows in the dataset? Thanks guys!

  • Objective Setting and Appraisals.

    Hi Everyone, I am learning Objective setting and appraisals. Could you please shed some light on where to begin. I looked at the help documentation, but i feel i should get a overview of the whole process before going into configuration. I know it mi