Datasource for purchasing

Dear Friends,
Can you please tell me what are the datasources for
Purchasing Order Condition record and for inbound deliveries.
Thanks with regards,
Malik

Hi,
Few information for you.
Data Sources and Tables
Purchasing 
2LIS_02_SCL   [Purchaseing data Schedule Line level]EKKO, EKBE, T001, T001W, EKET, EKPA.
2LIS_02_HDR  [Purchasing Data (Header Level)] EKKO, EKBE, T001, EKPA.
2LIS_02_ITM   [Purchase Order Items]  EKKO, EKBE, T001, T001W, EKPO, TMCLVBW, T027C,  
                                                         ESSR, T147K, T147
2LIS_02_SCN   [Allocation Schedule Line with Confirmation]EKET, EKES, EKPO.
2LIS_02_CGR   [Allocation confirmation with Goods Receipts] EKBE, EKES, EKPO.
2LIS_02_SGR    [ Schedule Line with Goods Receipt] EKET, EKBE, KKPO
ODS   for Purchase:
0PUR_O01 : 2LIS_02_ITM, : 2LIS_02_SGR, 2LIS_02_CGR, 2LIS_02_SCN.
0PUR_O02  :2LIS_02_HDR, 0PUR_O01
0PUR_DS03 : 2LIS_02_SCL and 2LIS_02_SGR.
CUBE  
0PUR_C10 : 2LIS_02_SCL and 2LIS_02_SGR.
0PUR_C07 
0PUR_C08 
0PUR_C09  0PUR_O02, 80PUR_O01,  :2LIS_02_HDR
0SRV_C01 : 2LIS_02_S174
0PUR_C04 : 2LIS_02_S011, 2LIS_02_SCL, 2LIS_02_ITM, 2LIS_02_HDR
0PUR_C01 : 2LIS_02_S012, 2LIS_02_ITM, 2LIS_02_SCL
0PUR_C02 : 2LIS_02_S013
0PUR_C05  0MM_PUR_VE_01
0PUR_C06  0MM_PUR_VE_02
0PUR_C03 : 2LIS_02_S015
Hope it helps you.
Thanks.
hema
Edited by: hemav on Jan 22, 2009 6:04 AM

Similar Messages

  • Require Standard DataSources for Purchase Orders

    Hi,
    Please provide me the standard datasources for purchase orders to get the data updated automatically in a BI System.
    I have to display report containing the purchase orders details of each day.
    Regards
    Sunil Kumar

    Hi,
    Following link will give you complete details of purchase order deports and data sources.
    http://help.sap.com/saphelp_nw70/helpdata/en/df/cfb839f6a7a307e10000000a11402f/frameset.htm
    Regards,
    Vishnu

  • MD datasource for Purchase orders in Procurement(MM)

    Hi Friends,
    Do I need to activate all the MD datasources under MM or are there any particular MD datasource for Purchase Orders ....
    Points will be awarded

    Hi,
    Follow this link in SAP's marketplace to Best Practices in Purchasing:
    http://help.sap.com/bp_biv170/index.htm
    Depending on the InfoCube you are planning to use, review appropriate Best Practices document.  In addition to step-by-step procedure on how to activate and fill the InfoCube, it will list which InfoObjects are necessary. 
    Regards,
    Stan

  • Datasource for Purchasing Source List

    Hello Guys
    i need to find datasources for "purchasing source list" that are stored in EORD table ( you can see these data with transaction ME03, ME01).
    Any one knows the datasources to keep these data in BW ?
    thanks in advance
    Boris

    Hi,
    Please find the code below .
    REPORT ZSOURCE.
    TABLES: EORD,
            EINA,
            MARC.
    Batch Input Name
    PARAMETERS P-BTCHSN(12)            DEFAULT 'ME01'.
    Vendor Code
    PARAMETERS P-LIFNR LIKE LFA1-LIFNR DEFAULT 'XXXXX'.
    Material Group
    PARAMETERS P-MATKL LIKE MARA-MATKL DEFAULT 'XXXXXXX'.
    Plants
    PARAMETERS P-WERKS LIKE EORD-WERKS DEFAULT 'XX'.
    Tick Block/Untick Unblock
    PARAMETERS P-NOTKZ LIKE EORD-NOTKZ DEFAULT 'X'.
    Auto / Manual run the Batch Input Program
    PARAMETERS P-RUN   AS CHECKBOX     DEFAULT 'X'.
    INTERNAL TABLE FOR DATA
    DATA:  BEGIN OF ULTAB OCCURS 50,
             MATNR LIKE EORD-MATNR,   "Material No.
             WERKS LIKE EORD-WERKS,   "Plants
             ZEORD LIKE EORD-ZEORD,   "NO
             LIFNR LIKE EINA-LIFNR,   "Vendor Code
           END OF ULTAB.
    INTERNAL TABLE FOR BATCH INPUT DATA
    DATA: BEGIN OF IPUTTAB OCCURS 50.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF IPUTTAB.
    INTERNAL TABLE FOR BATCH INPUT ERROR MESSAGE.
    DATA: BEGIN OF MESSTAB OCCURS 50.
            INCLUDE STRUCTURE BDCMSGCOLL.
    DATA: END OF MESSTAB.
    DATA: C_TAXKM LIKE MG03STEUER-TAXKM VALUE '1',
          W-LINE-NO TYPE I.
    REFRESH ULTAB.
    SELECT * FROM EINA WHERE LIFNR = P-LIFNR
                         AND LOEKZ = SPACE.
      SELECT SINGLE * FROM MARC WHERE MATNR = EINA-MATNR
                                  AND WERKS = P-WERKS.
      CHECK MARC-LVORM = SPACE.
      CLEAR ULTAB.
      SELECT * FROM EORD WHERE MATNR = EINA-MATNR
                           AND WERKS = P-WERKS
                           AND LIFNR = P-LIFNR.
         ULTAB-MATNR = EORD-MATNR.
         ULTAB-WERKS = EORD-WERKS.
         ULTAB-ZEORD = EORD-ZEORD.
         ULTAB-LIFNR = EORD-LIFNR.
         APPEND ULTAB.
      ENDSELECT.
      IF SY-SUBRC = 4.
         ULTAB-MATNR = EINA-MATNR.
         ULTAB-WERKS = P-WERKS.
         ULTAB-ZEORD = ''.
         ULTAB-LIFNR = EINA-LIFNR.
         APPEND ULTAB.
      ENDIF.
    ENDSELECT.
    CHECK WHETHER TABLE IS EMPTY
    IF ULTAB[] is initial.
       WRITE: / 'TABLE EMPTY'.
    ENDIF.
    Create Batch session
      PERFORM CRE-BATCH-SESS.
    LOOP TABLE TO CREATE SCREEN INPUT
    SORT.
    LOOP AT ULTAB.
      REFRESH IPUTTAB.
      PERFORM SCREEN1.
      PERFORM SCREEN2.
      PERFORM PRN_ULTAB.
      PERFORM CLOSE-SESS.
    ENDLOOP.
    CALL FUNCTION 'BDC_CLOSE_GROUP'.
    END OF MAIN PROGRAM
    FORM SCREEN1.
    SCREEN #1: INITAL SCREEN FOR MAINTAINING SOURCE LIST
      CLEAR IPUTTAB.
      IPUTTAB-PROGRAM = 'SAPLMEOR'.
      IPUTTAB-DYNPRO  =  '200'.
      IPUTTAB-DYNBEGIN = 'X'.
      APPEND IPUTTAB.
    Source List : Material No.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-MATNR'.
      IPUTTAB-FVAL =  ULTAB-MATNR.
      APPEND IPUTTAB.
    Source List : Plants.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-WERKS'.
      IPUTTAB-FVAL =  ULTAB-WERKS.
      APPEND IPUTTAB.
    ENDFORM.
    FORM        : SCREEN1                                               *
    FORM SCREEN2.
    Modify screen for SOURCE LIST
      CLEAR IPUTTAB.
      IPUTTAB-PROGRAM = 'SAPLMEOR'.
      IPUTTAB-DYNPRO  =  '205'.
      IPUTTAB-DYNBEGIN = 'X'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-VDATU(1)'.
      IPUTTAB-FVAL = '01.01.2001'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-BDATU(1)'.
      IPUTTAB-FVAL = '31.12.9999'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-LIFNR(1)'.
      IPUTTAB-FVAL = P-LIFNR.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-EKORG(1)'.
      IPUTTAB-FVAL = 'ALL'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-NOTKZ(1)'.
      IPUTTAB-FVAL = P-NOTKZ.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-AUTET(1)'.
      IPUTTAB-FVAL = '1'.
      APPEND IPUTTAB.
    Specify that we are now done with this screen (Save it with F11)
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'BDC_OKCODE'.
      IPUTTAB-FVAL = '/11'.
      APPEND IPUTTAB.
    ENDFORM.
    FORM        : CLOSE-SESS                                            *
    DESCRIPTION : CLOSE THE SESSION                                     *
    FORM CLOSE-SESS.
    closing the session.
    IF P-RUN = 'X'.
    Auto run the Batch Input Program
    CALL TRANSACTION 'ME01'
              USING  IPUTTAB
              MODE   'E'
              UPDATE 'S'
              MESSAGES INTO MESSTAB.
    ELSE.
    Maual run the Batch Input Program
    CALL FUNCTION 'BDC_INSERT'
           EXPORTING
                TCODE     = 'ME01'
           TABLES
                DYNPROTAB = IPUTTAB.
    ENDIF.
    ENDFORM.
    FORM        : PRN-ULTAB                                             *
    DESCRIPTION : PRINT OK TABLE                                        *
    FORM PRN_ULTAB.
      WRITE: / ULTAB-MATNR, ULTAB-WERKS, ULTAB-ZEORD, ULTAB-LIFNR.
      W-LINE-NO = W-LINE-NO + 1.
    WRITE: '      RECORD# ', W-LINE-NO.
    ENDFORM.
    FORM        : CRE-BATCH-SESS                                        *
    DESCRIPTION : CREATE BATCH SESSION                    *
    FORM CRE-BATCH-SESS.
    Create BTCI session **
    CALL FUNCTION 'BDC_OPEN_GROUP'
         EXPORTING
              CLIENT = SY-MANDT
              GROUP  = P-BTCHSN
              USER   = SY-UNAME
              KEEP   = 'X'.
    ENDFORM.
    Regards,
    Marasa.

  • Standard Datasource for Purchase Order master data

    Hi Experts,
    Is there any Standard datasource for extracting attribute information for Purchase Orders. Some master data datasources.
    Iam  particularly after the name of the person who released the PO.
    Thanks,
    DV

    Hi,
    These are standard Master Data Datasources
        0CRIT_MAIN_TEXT                   Key for Appraisal Criterion
        0CRIT_SUB_TEXT                    Subcriterion
        0CRIT_TYP_TEXT                    Scoring Method
        0DCINDIC_TEXT                     Debit/Credit Indicator
        0DISMM_ATTR                       MRP Type
        0DISMM_TEXT                       MRP Type
        0INDSPECSTK_TEXT                  Text Indicator Special Stock Valuation
        0INFO_REC_ATTR                    Number of Purchasing Info Record
        0INFO_REC_TEXT                    Number of Purchasing Info Record
        0INFO_TYPE_TEXT                   Purchasing info record category
        0MATL_CAT_TEXT                    Material Type
        0MATL_GROUP_TEXT                  Material Group
        0MAT_TYPE_VA_ATTR                 Control of Quantity/Value Update
        0MAT_VEND_ATTR                    Material Number Compounded to vendor
        0MRP_CONTRL_TEXT                  MRP controller
        0PRICE_CTRL_TEXT                  Price control indicator
        0PRICE_TYPE_TEXT                  Price type
        0PURCH_ORG_TEXT                   Purchasing Organization
        0PUR_GROUP_TEXT                   Purchasing Group
        0PUR_REASON_TEXT                  Reason for ordering
        0SERVICE_ATTR                     Service Master (Attributes)
        0SERVICE_TEXT                     Service number
        0STOCKCAT_TEXT                    Stock Category
        0STOCKTYPE_TEXT                   Text for Stock Characteristic
        0STOR_LOC_TEXT                    Storage Location
        0STRGE_SECT_TEXT                  Storage section for stock removal, placemen
        0STRGE_TYPE_TEXT                  Storage Type
        0STRGE_UNIT_TEXT                  Storage unit type
        0VENDOR_ATTR                      Vendor Number
        0VENDOR_LKLS_HIER                 Vendor number
        0VENDOR_TEXT                      Vendor Number
        0WHSE_NUM_TEXT                    Warehouse number / warehouse complex
        0WM_MVT_TYP_TEXT                  Movement type for Warehouse Management
    Regards,
    Marasa.

  • SRM - Datasource for Purchase Order Response

    Hi All,
    Is there any standard data source exists for Purchase Order Response in SRM? 
    Since Purchase Order and Purchase Order Documents are different, we require to instal separate data source for POR Document.
    Please help in this regard.
    Thanks,
    Anil

    Found that there is no standard data source for POR Documents, which needs to be extracted with generic extractor.
    Delta will be populated by the FM 'BBP_BI_DELTA_UPDATE' in SRM, which wont support POR object type.
    Reference:
    http://help.sap.com/saphelp_nw70/helpdata/en/ba/a4daa0fe7c4b558206db120b31e555/content.htm
    Thanks,
    anil

  • Extracting Down Payment and Payment for Purchasing Order to BW

    Hi Gurus,
             2LIS_02_ITM purchasing datasource brings GR, IR value, quantity and amount only base on Process Key.
            Anyone know how to extract Downpayment (Prepayment) and Payment documents to the BW of the data?
    Thanks and regards,
    Raymond

    Hi Sachin,
                Does downpayment includes on AP datasources?
               Do you know the name of the datasource for those Downpayment and payment?
                Also how can I check for the EKBE-VGABE (Transaction Type/Event) from R/3 on BW? The value of Transaction Type/Event will say if the VGABE if the amount is IR, GR, Downpayment and payment.
    Thanks and regards,
    Raymond

  • Extractor for Purchasing Conditions for tables EKKO, EKPO and KONV

    Hi Experts,
    I want to know if there is an Extractor for Purchasing Conditions with fields in tables of Origin: EKKO, EKPO and KONV.
    Or, at least an extractor with the table KONV.
    Or, how I can look for it.
    Any feedback, will be really apreciated.
    Thanks in advance

    Hi David,
    Adding to what said above.
    Observe the Fileds in the Datasources and the details.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5c/8ea0e626e442efb109232830faded9/frameset.htm
    Regards,
    Ram.

  • LO DataSource for Goods receipt and Invoice receipt

    Hi all
    In LBWE, under Purchasing there are few DataSources available for Goods receipt and Invoice receipt. Is there any DataSource for both Goods receipt and Invoice receipt. What are the DataSources available for Goods receipt and Invoice receipt. Please clarify the difference.
    Thanks.
    Zak.

    Try to use the PROCESSKEY standard infoobject (BWVORG in R3/ECC) to discriminate the good receipt from the invoice one...
    An other option is create a custom generic data source with a view on EKBE table and use the EKBE-VGABE field to discrimate them.
    Regards.

  • Invoice Recipt document for Purchase order

    Dear Gurus,
    I have a requirement to extract Invoice Recipt Document number & Invoice date for every purchase order into BW.
    I know that For purchase order details we used 2 datasources 1. ) 2LIS_02_SCL & 2.) 2LIS_02_ITM. Both the datasource do not have Material document number (BELNR) field. But these datasource read data from EKKO, EKPO & EKBE table and material document number field is availble in EKBE.
    I also know that this field along with PO purchase order category (BEWTP)= 'Q' we can get the invoice document no. But I am not sure if we can enhance this 'Material document number' field to datsources 2LIS_02_SCL & 2LIS_02_ITM.
    If we can, should the field be apended to both the datasource or can this requirement be facilitated by appending to any one of the datasource. Not sure about this. Can somebody help me or guide with how to proceed with this requirement.
    Thanks in advance,
    Sandeep.

    Hi Sandeep,
    I have not worked on this datasource but yes technically you can do it.
    As I understand, 2LIS_02_SCL is for header details of PO and PO has one to one relationship with Material Doc number.
    Therefore, if you requirement is to only bring in the header details for this Material doc, only enhance this datasource.
    Append this field to the datasource, then write the customer exit for this datasource.
    In this customer exit, you can write your code for deriving the Material doc number from EKBE based on the details available in e_t_data (for this datasource).
    But, if your requirement is to fetch line item details as well, you need to append the other datasource as well. And by writing the exit you can again derive the details from the table.
    Please note that the appended fields cannot be used to trigger any deltas, so if your requirement includes to trigger the delta if your material document changes, it cannot be done.
    Hope this helps.

  • ESLL - Datasource for this table ESLL???

    Hi gurus!
    Somebody knows any datasource for ESLL table???
    Thanks a lot!
    BR

    Hi Leticia,
    No there is not unfortunately, suggested solution is to create a DB view on tables like ESKN,ESSR,ESLL,EKPO (SE11) so data can be linked up properly to Purchasing doc and then build a generic Datasource on top of that (RSO2).
    Hope this helps.
    Grtx
    Marco

  • HT204053 What's the best way to set up a family of devices in order to use one apple id for purchases on itunes and the app store?

    we are trying to face time between devices, but it won't work whn multiple devices are tied to one apple id.
    How do you designate one id to pay for purchases and one so that we can facetime from device to device?

    The ID used for purchasing is in Settings>Store.  This ID does not need to be the same one used for other services such as FaceTime, iMessage, etc. (in fact you're far better off if you use separate Apple IDs for these other services).  To change the ID used for iMessage, go to Settings>Messages>Receive At, tap the ID at the top, sign out, then sign back in using a separate (and unique) ID.  You can similarly change the ID used for FaceTime in Settings>FaceTime.  To sycn data with iCloud such as calendars, contacts, etc., without merging your data across devices, set up different iCloud account with different Apple IDs for each device.  You can go to Settings>iCloud and turn off syncing for your data, and when prompted, choose to keep the data on the device.  Then scroll to the bottom and tap Delete Account.  Then set up a new iCloud account using a different Apple ID for each device and turn data syncing back on in Settings>iCloud.
    This article may be of interest: http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/.

  • HT204053 I have one apple ID for purchases and then my mobile me ID where I use for email.  So I have set my cloud with my mobile me name, while keeping my purchases the original name.  Will my purchases be recognized as purchases when backup is finished.

    I have one apple ID for purchases and then my mobile me ID where I use for email.  So I have set my cloud with my mobile me name, while keeping my purchases the original name.  Will my purchases be recognized as purchases when backup is finished.

    Welcome to the Apple community.
    So long as you are logged into the iTunes Store, using the correct ID and password (settings >store), then you will always have access to your apps, books, music, TV shows etc etc bought via the iTunes Store on that account.

  • Currently have ipod touch 4 and am getting an iphone 5c. Want to transfer data to new phone. Currently all our family devices on one apple ID for purchases and it is the same for icloud. I want to create a new one for icloud for this iphone. What do I do?

    Currently have ipod touch 4 and am getting iphone 5c this weekend. Currently our family has several apple devices and they have the same apple ID for itunes and it is the same ID that we use for icloud. I want to set up a separate icloud ID so that it is only on my new device. I still want to keep the same apple ID for purchases. Can I do this and better yet when do I do this...before the purchase, after the purchase and backing up of data. Where do I go to create a new one?

    Figured it out. Thanks.

  • I downloaded 11.1 but now can't access the store, can only view my library. I've reinstalled but still get a blank, white screen when I try to go to the itunes store. How can I get to the store for purchases?

    I downloaded 11.1 but now can't access the store, can only view my library. I've reinstalled but still get a blank, white screen when I try to go to the itunes store. How can I get to the store for purchases?

    In iTunes prefs>Store - is the Store check box unchecked?
    Did you repair pemissions with Disk Utility?
    MJ

Maybe you are looking for

  • Hi, please i did instal BBM on my new iphone 5c since then i couldn't register in and keep freezing. please help

    please i did installation BBM and regesiter with them but anytime am try to login it keep freezing,, and i have try my best don't know what to do anymore,, can anyone help please?

  • Slowness in moving, sending, typing & receiving emails

    Hi, Been using Thunderbird for over a year having migrated from Eudora. Recently, I have had recurrent and intermittent slowness in typing email content, sending, receiving as well as moving emails to other folders and opening and closing of Thurderb

  • Creative Suite Windows version on a MAC?!?!

    Hi, I purchased a "Education Edition" of Creative Suite 6 for Windows version. I just bought a MAC how can i install this?

  • Adobe CS6 and SSD

    Can I install Adobe CS6 on SSD drive? And how to configure it for normal operation? To become much more productive system? Or better is needed for disk cache? (for Premier Pro and After Effects). Where you can read about it? Thanks in advance.

  • Flash in Captivate

    Can I import flash animations, i.e., material (motions, media players, simple animations) I created in flash into Captivate?  I want more than flash videos, nothing fancy, but maybe a little more than what Captivate has. Thanks