MM table for document extraction

Hi All,
I need to extract SE16 contracts and purchase orders data from ECC 6.0 with the following details:
Contract/order number, document date, delivery date, Supplier Code, material code, quantity, prices.
Can anyone help me in find out from which table I need to extract it?
Many thanks and regards,
AL

Hi :
You can use ekpo and ekko to extract the data you mentioned,and you aslo can use transaction sqvi to combine these two tables,let me know if you have further question.

Similar Messages

  • What are the tables for documents in PP Orders

    Hi all,
    What are the tables for Document Items (type D) in PP orders ?
    Regards,
    Magda

    Welcome to SCN, please refer to the rules of engagement, link at the top of every forum, please search before asking basic questions.
    Thread locked.
    Thomas

  • Tables for Documents&doc. type assigned to Equipment master

    Hi
    I need a table for Documents&d oc. type assigned to Equipment master .I have tried in ITOB, EQUI, DRAW. i could not find this
    Thanks
    Seenu

    hi
    yes you can use object key, it  is the one which relates with the equipment ( object key <b>EQUI</b>)
    regards
    thyagarajan

  • Time-stamp Table for delta extraction

    Hi SDNers,
    What are the BW Time-stamp Tables for delta extraction in Source System(R/3).
    Thanks,
    Satya

    the tables involved are :
    ROOSPRMS
    ROOSPRMSC
    ROOSPRMSF
    in the second table (ROOSPRMSC) you'll find the timestamp
    M.

  • Table for Document assigned to WBS

    In which table Document and WBS assignment is captured?
    Thx

    Hello,
    PRPS is separate table for WBS element. If you want to see it in DMS then check in object link field name in DRAW.
    Hope you are aware about the standard objects in SAP and their respective tables.
    Regards,
    Ravindra

  • Table for document type Number Range interval

    Hi,
    I want to know the number range interval for document type in the production system but I do not have authorisation for SPRO in the prd system.
    Kindly let me know the table name to check this number range interval for the document type.
    Table T003 stores only the number range and not the interval.
    Thanks
    Suresh

    Hi,
    The table which has document types is T003 but the number ranges are stored in a Structure IRDP. The number ranges are maintained directly in the production system.
    regards,
    radhika
    Edited by: kolipara radhika on Aug 25, 2008 6:01 AM

  • Table for documents

    hi experts
    iam doing report, i want to no in which table all sap documents are stored( iam talking about all modules not for one module))

    get specific.
    SAP has hundred of different documents and at least as much tables for them.

  • PS Tables for Documents, Acitivity Relationships

    Hi Frinds
    We are looking for proper talbes for the following. Can any one help us which are tables to be referred for
    <b>1.   Documents (this icon we can see in overview screen of WBS elements)
    2.  Network Relationship Activity Relationships (Besides - AFAB)
    3. Hirarchy levels of WBS elements (besdes PRHI)</b>- "Hirerchy Graphic -Icon" which enalbe users to view hierarchy levels of elements.
    4.  "system status" and "user status"
    would appreciate help in this front and suitably rewarded with points for solution.
    Look forward to hear and thanks in advance...
    Thanks
    Sudhakar
    Message was edited by: Sudhakar Pappu Rao

    Hi Pranav
    Thanks for yr information. we can select the object WBS, and shall be able to view PS texts in overview and create PS Texts.
    My requirement rather, question is, can we attach any documents without having DMS. ie., can we assign any of the Windows document which are available in hard disc?
    please thorough some light on this and thanks in advance and belated happy diwali wishes to you.
    Thanks
    Sudhakar

  • Table for Document flow

    Hi,
    I have a Sales Order. For this Sales Order i Created a Puchase Order.I made a Goods Reciept and an Account Document is created. Can any one tell the table where i can see the Document flow for this Order? I tried VBFA...but i can see only Purchase Order against the Sales Order.Thanks in Advance.
    Challa.

    VBFA is document flow for SD.
    To find receipt for purchase order, look at EKBE with key purchase order Nr and event type VGABE = '1' Goods receipt
    Then to find accounting document, you need to look to BKPF header table with keys AWTYP Reference procedure 'MKPF' and AWKEY Object key (Nr + year)
    Regards

  • Joining vbak to cdhdr table for document changes

    Hi Expert
    I am hanging for a week in this project please need some advice
    I want to join vbak table with cdhdr and select
    vbak.vkbur (plant) and want to show that vkbur in the internal table of it_cdhdr
    so as to select only those plant belong to vkbur so how can I join base on the below coding................
    REPORT ZCHGDOC
    NO STANDARD PAGE HEADING LINE-SIZE 120.
    WRITE: sy-title, 40 'Page', sy-pagno.
    ULINE.
    TABLES: CDHDR,
             CDPOS,
             t001w,
             "VKBUR,
             "VBELN,
             VBAK,
             VBAP.
    SELECTION-SCREEN BEGIN OF BLOCK DOCUMENT WITH FRAME TITLE TEXT-701.
    SELECTION-SCREEN END OF BLOCK DOCUMENT.
    SELECT-OPTIONS:
                     V1 FOR VBAK-VKBUR,
                     S_WERKS for T001W-werks,
                     objectid for  cdhdr-objectid,
                     udate for cdhdr-udate.
    PARAMETER: USERNAME LIKE CDHDR-USERNAME.
    DATA: BEGIN OF IT_VBAP OCCURS 0,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID LIKE CDHDR-OBJECTID,
             VBELN LIKE VBAP-VBELN,
              END OF IT_VBAP.
    DATA: BEGIN OF IT_CDHDR OCCURS 0,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID LIKE CDHDR-OBJECTID,
             CHANGENR LIKE CDHDR-CHANGENR,
             USERNAME LIKE CDHDR-USERNAME,
             UDATE LIKE CDHDR-UDATE,
             UTIME LIKE CDHDR-UTIME,
             FNAME LIKE CDPOS-FNAME,
             TABNAME LIKE CDPOS-TABNAME,
             TABKEY LIKE CDPOS-TABKEY,
             VALUE_NEW LIKE CDPOS-VALUE_NEW,
             VALUE_OLD LIKE CDPOS-VALUE_OLD,
    END OF IT_CDHDR.
    DATA: WA LIKE LINE OF IT_CDHDR.
    DATA: WA LIKE LINE OF IT_CDPOS.
    DATA: BEGIN OF IT_CDPOS OCCURS 0,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID LIKE CDHDR-OBJECTID,
             CHANGENR LIKE CDHDR-CHANGENR,
             TABNAME LIKE CDPOS-TABNAME,
             TABKEY LIKE CDPOS-TABKEY,
             FNAME LIKE CDPOS-FNAME,
             VALUE_NEW LIKE CDPOS-VALUE_NEW,
             VALUE_OLD LIKE CDPOS-VALUE_OLD,
    END OF IT_CDPOS.
    Move-corresponding it_cdhdr to wa.
    Move-corresponding it_cdpos to wa.
    SELECT OBJECTCLAS
            OBJECTID
            CHANGENR
            USERNAME
            UDATE
            UTIME FROM CDHDR
            INTO CORRESPONDING FIELDS OF TABLE IT_CDHDR
    WHERE OBJECTCLAS = 'VERKBELEG' or
          objectclas = 'BETRIEB'
          ORDER BY UDATE.
    WHERE OBJECTCLAS = 'VERKBELEG'
    OR OBJECTCLAS = 'BETRIEB' ORDER BY UDATE.
    Filter data based upon Plant selection criteria.
    IF NOT S_WERKS[] IS INITIAL.
    DELETE IT_CDHDR WHERE NOT OBJECTID IN S_WERKS.
    ENDIF.
    IF IT_CDHDR[] IS NOT INITIAL.
       SELECT OBJECTCLAS
              OBJECTID
              CHANGENR
              VALUE_NEW
              VALUE_OLD
              FNAME
              TABNAME
              TABKEY
              FROM CDPOS
              INTO CORRESPONDING FIELDS OF TABLE IT_CDPOS
              FOR ALL ENTRIES IN IT_CDHDR
              WHERE
              OBJECTCLAS = IT_CDHDR-OBJECTCLAS
              AND OBJECTID = IT_CDHDR-OBJECTID
              AND CHANGENR = IT_CDHDR-CHANGENR.
              "or tabname = 'VBAP'.
       SORT IT_CDPOS BY OBJECTCLAS OBJECTID CHANGENR.
    ENDIF.
    Add tables CDPOS DATA TO CDHDR.
    DATA: INDEX TYPE i.
    LOOP AT IT_CDHDR.
       INDEX = SY-TABIX.
       READ TABLE IT_CDPOS WITH KEY OBJECTCLAS = IT_CDHDR-OBJECTCLAS
       OBJECTID = IT_CDHDR-OBJECTID
       CHANGENR = IT_CDHDR-CHANGENR BINARY SEARCH.
       IF SY-SUBRC = 0.
         IT_CDHDR-VALUE_NEW = IT_CDPOS-VALUE_NEW.
         IT_CDHDR-VALUE_OLD = IT_CDPOS-VALUE_OLD.
         MODIFY IT_CDHDR INDEX index TRANSPORTING value_new value_old.
       ENDIF.
       WRITE:/ SY-DATUM,SY-UZEIT,
              50 'DOCUMENT CHANGE REPORT',
             80 'Page', SY-PAGNO,
    "  WRITE: / SY-REPID
              50 'DETAIL REPORT BY PLANT '.
       SKIP.
       ULINE.
    *& T O P - O F - P A G E *
    WRITE:/ 'UDATE:' ,SY-DATUM.
    FORMAT COLOR 4 INTENSIFIED on.
    Write: /35                           ' DOCUMENT CHANGES REPORT '.
       WRITE: /5 'DOCUMENT-NO'.
    20 'TABNAME', 30 'TEXT_CASE', 50 'FNAME'.
       WRITE: /5 'DATE',  20 'FNAME', 45 'CHANGE-NO',65 'OLD-VALUE',80 'NEW-VALUE',95 'USER-NAME'.
       ULINE.
       LOOP AT IT_CDHDR INTO WA.
       on change of wa-objectid.
       Write: / wa-objectid UNDER'DOCUMENT-NO' ."color col_key.
       ENDON.
    ULINE.
         " CDPOS-tabname UNDER'TABNAME', CDPOS-TEXT_CASE UNDER'TEXT_CASE',CDPOS-fname UNDER'FNAME'. "color col_key ,
         write: / wa-udate dd/mm/yyyy under'DATE' NO-GAP,wa-fname under'FNAME' NO-GAP,wa-changenr under 'CHANGE-NO',
         wa-value_old under'OLD-VALUE' LEFT-JUSTIFIED NO-GAP,
         wa-value_new under'NEW-VALUE' LEFT-JUSTIFIED NO-GAP ,wa-username under'USER-NAME' NO-GAP.
    ENDON.
    Move-corresponding it_cdhdr to wa.
    *Write: / wa-objectid UNDER'DOCUMENT-NO' "color col_key.
    *" CDPOS-tabname UNDER'TABNAME', CDPOS-TEXT_CASE UNDER'TEXT_CASE',CDPOS-fname UNDER'FNAME'. "color col_key ,
    *write: / wa-udate dd/mm/yyyy under'DATE' NO-GAP,wa-utime under'TIME' NO-GAP,wa-changenr under 'CHANGE-NO',
    ltrim(wa-value_old) under'OLD-VALUE' NO-GAP,
    *wa-value_new under'NEW-VALUE' NO-GAP ,wa-username under'USER-NAME' NO-GAP.
       ENDLOOP.
    ENDLOOP.

    Hai everybody.
    I am new to this forum. i got a job in abap recently. The below is my requirement.I want solution for this one. Anybody plz help me.
    The change logs were captured in DBTABLOG for table ZWPRFRUND (in transaction ZWPG).
    The only report which is currently used to get the change logs is RSVTPROT
    Now my requirement is,
    we need to display the change logs in the form of ALV.
    We should divert the changes to CDHDR table instead of DBTABLOG, then we can use the RSSCD100 to display change logs.
    The Important items for the change LOG needed in case of changes to table in “ZWPG” are,DATE ,TIME,USER,FIRST NAME,FILED NAME,OLD VALUE,NEW VALUE
    The above fields need to be displayed in the grid. In the above list “FIELD NAME” denotes any field of the table in the transaction in “ZWPG”
    Thanks & Regards,
    Sujatha.T.

  • Custom table for documents

    I want to create a table to store documents. I created a table with three columns (doc, doc_desc, and mime_type). I then created a form based on this table to upload docs. I can succesfully load docs into the table.
    My question is how can I retrieve them? I used to be able to get the item ID from the WWV_THINGS table and get the doc even though the doc was not in a Portal table. Its like a duplicate entry was being made into WWV_THINGS, but thats not the case anymore. Anyone know how I can create a table, load docs into it and get the docs out?
    I dont want to use item areas.
    Thanks

    Hi Gopal,
    As this is custom table attribute it will not be displayed on standard page. You need to enhance it with custom page.
    Creating change document object is first step. Now you need to update change document. You can use FM DPR_PROJECT_WRITE_DOCUMENT as reference for creating a FM module to update the change document with custom table attribute. Call it in update task after updating data to custom table.
    You can use the FM CHANGEDOCUMENT_READ to read the change document for custom table attribute.
    Regards,
    Alok.

  • Workflow tables for documents in FICO

    Hi all,
    Can anyone say what are the tables present in FICO, to identify whether a document is a Workflow Invoice or a non-workflow invoice?
    Thanks in advance.
    Regards,
    Swathi

    could you please explain your requirement ? please clarify what you mean by workflow invoice and nonworkflow invoice..
    workflows are triggered by events. and events are attached to BOR objects.. you have to check what BOR object you are using and what event is triggering the workflow.
    you can do a event trace to find the events.. (SWEL , SWELS)
    Welcome to SDN

  • Underlying tables for documents stored in content area

    Can someone tell me the underlying Oracle tables/views, etc... in which documents are stored when they are uploaded to a content area?
    I need this information to write my own customized search routine.
    Thanks.

    Can someone tell me the underlying Oracle tables/views, etc... in which documents are stored when they are uploaded to a content area?
    I need this information to write my own customized search routine.
    Thanks. Check out the portal30.wwv_things table. (itemtype='file') ...this is not where the actual blob file is stored, but where it is referenced and how it is linked to various items within portal. Hope this helps or at least gets you started.
    I beleive that the actual document is stored in wwdoc_document$
    Bob

  • Table for documents modifications

    I wonder, which is the table where i can read the user that modified a document?
    Thanks

    Hi,
    The change logs are strored in CDHDR and CDPOS tables.
    Regards,
    Eli

  • Table for Documents Name List

    Hello Everyone!
    I have a simple question:
    Does exists any table in B1 who gives  the document name according to its Object Type?
    Thx in advance,
    Juan Jimenez

    Hi,
    You can check this document regarding the issue reported by you:
    [Transaction Type Abbreviations|http://help.sap.com/saphelp_sbo88/helpdata/en/45/114a3129fc4805e10000000a1553f6/frameset.htm]
    Kind Regards,
    Jitin
    SAP Business One Forum Team

Maybe you are looking for

  • Can't get PersistenceUnit to work

    Hi all, I am setting up the Netbeans 6.0 IDE with JSF1.2, Tomcat 6.0 and Hibernate through JPA. I am newbie on JavaEE though not on JavaSE and Netbeans. However I am having painfully difficulties in making some tests and trials, to gain deeper knowle

  • How can I reorder more of my new IPhoto book

    How can I reorder my new IPHOTO BOOK IN A DIFFERENT TYPE?

  • Sapscript - text position

    Hi friends! I'm making some changes in a copy of Sap form medruck. I have line with text and I used ',,' to space, but por minimal adjusts I'm trying with blanks spaces, but it don't take effects....why space is not moving the text? I'm using a defau

  • Related to selection screen

    Hi Experts, There is a selection screen. in that 6 radio buttons and 2 pushbuttons should be there. 6 radio buttons are rb1=Today, rb2= current month ,rb3= current year , rb4=all ,rb5= Pats and rb6= Future. 2 push buttons are (pb1 = key date and pb2

  • Macbook pro and airdrop

    I have a Macbook pro and I had airdrop but dont know what happened to it. I clicked it and draged to my desktop and it showed a cloud and disappeared. How do I get it back??