Datasource for KB33N Tcode.

Hello BI gurus,
I want to extract data from KB33N Tcode from ECC to BI 7.0.
Can somebody please give a data source for KB33N Tcode for extraction?
is it  0CO_OM_CCA_9   or 0CO_OM_CCA_4?
With regards,
Stalin.

hi,
the relevant table for this extraction is
COBK, COEP, COEPR, COSR
so yes these all datasources are build upon these tables only.
u can use these data sources
0CO_OM_CCA_9 or 0CO_OM_CCA_4
thanks

Similar Messages

  • FS-CD / CRM - Datasource for Insurance Object

    Hello Gurus,
    Does anyone know of SAP Standard Datasource for Insurance Object.
    Insurance Object is used in FS-CD and CRM.
    The table where Insurance Object is stored is DIMAIOB and the tcode in ECC is INSODISP.
    thanks in advance

    Hi,
    I involved FS-CD implementation very long back and that to not in depth, but I remenber, we used 99% custome defined DataSources only using Function Modules.
    Check in the following links, you mayy get some information
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/84/97834071adc65de10000000a155106/frameset.htm
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/24/0d723521faee41e10000009b38f889/frameset.htm
    http://www.sap.com/africa/industries/insurance/pdf/FSRI_Release_Notes_471_en.pdf
    Thanks
    Reddy

  • ERROR - no available datasource for source system exist

    I tried to load the master for 0Bill_Type
    1) Install infoobject business content and Create infoobject
    2) Activate datasource in R/3
    3) Replicate datasource
    4) Assign infosource ---> the error said no available datasource for source system exist
    When I go to source system--> Object overview --> I don't see anything at all?
    Please advise what went wrong ?

    Hi Pandadda,
    I think you have not transferred the APPLICATION COMPONENT HIERARCHY yet. If not, then do the following:
    1. In your R/3 system execute TCODE = SBIW.
    2. Go to BUSINESS CONTENT DATASOURCES
    3. Execute TRANSFER APPLICATION COMPONENT HIERARCHY by clicking the CLOCK.
    Replicate you datasource then check it on your BW system
    R,
    Adwin

  • In RS02 why DataSource for Hierachy is not there.. plz help

    hi bw experts,
    can u plz tell me in RS02 tcode why datasource for hierarchy is not there.
    plz explain me in brief..
    thanks & regards
    vijay...

    Hi,
    In RS02 we won't have Hierarchy DataSource bocoz the OLTP system is based on the ERM (Entity Relationship Model) where we will have only ONE to ONE relation i.e., two dimensional table design. Which basically won't support the ONE to MANY Relation. If we want to connect the tables means we will connect by means on the PRIMARY KEY and FOREIGN KEY relations. which won't support Hierachy DataSource.
    I think it will help u a little bit.
    Regards
    Prabhakar

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

  • Difference between COEP & COEPR tables in realtion to KB33N tCode

    Hello Gurus,
    We are trying to extract the data same as when executed by Tcode:KB33N.I searched in Forum and found that KB33N updates COEPR table.
    My question :
    Does KB33N updates any other tables especially if it updates tables: COEP,COVP ?
    What is difference between COEP & COEPR tables in realtion to KB33N tCode.
    With regards,
    stalin.

    Hi,
    Table: COEP used to CO Object: Line Items (by Period): All the Cost Center Real Postings would be appear in this table.
    Table: COEPR used to CO Object: Line Items for Stat. Key Figs (by Period): This table is the figures of
    T.Code: KB33N Used to see the values of posted document connected with SKF, with Screen Variants and Input Types. Ex. Doc No.: XXXXXXXXX can be seen at COEPR Table and not found in COEP Table. The COEP Table contains the data of All Cost Center Postings and the other will have Allocation Cost Object documents values.
    Regards
    VG

  • Creation of DataSource for FlatFile Interface in BI 7

    Hi Y'all!
    Can anyone please give me urgent assistance in creating/defining a DataSource for the FlatFile Scenario in BI 7.0.  I've been trying to no avail.  I certain I am doing this incorrectly, as such I seek your assistance.  Can anyone please be so kind as to give me a step-by-step walkthrough of the specific individual steps (in sequence) in creating/defining DataSources...  Also can this be accepted as a character (08-MAY-07)?
    Much thanks!
    Philips

    Hi,
    The following step can help you..
    1. create a info source and assign the data source -
    2. select data source as PC File ( give any name tech & desc)
    3. create a info source structure by include all individual info objects / har. keyfig
        those are available in your file
    4. you can always take the reference of the info objects from the cube/ODS as to
        make info source staructure easy
    5. map the corresponding info objects in the trasfer structure
    6. save and activate the info source
    7. go to your info provider cube/ODS and right click - select - create update rules
        select the name of the file data source name as given above
    8. map them as defult one-to-one mapping until other wise you have some require
        ment in data manipulation through update rules.
    9. save and activate.
    10. come to the info source - create a info package - select source as .CSV file
         and preview it before you actually load.
    11. as far as date is concern in your falt file..select the entire column of the date
         then goto-format column-select 'customize' then put format as 000000 (six
         zeros ) for 0calmonth.
    12. when you lookat the date at infoprovider it shows like 20070508 but
          when you execute in a query it displays its text as 08-May-2007
    I hope it would help you to understand and get your purpose solve.
    Thanks=points.
    Cheers.

  • DataSource for FAGLFLEXT and BSEG, or New Table in ECC6?

    need to create an extractor to have all the information of FAGLFLEXT, because we need to keep the ledger information and the split of the information. However, we need to add 13 fields contained in BSEG.
    Therefore we thought to reads the line items table FAGLFLEXA, and then enhace it throught BSEG table.
    However, since we are using ECC6 and BI7. It is not support the creation of DataSources for FAGLFLEXA throught FAGLBW03.
    Is it an option to incorporate all fields into FAGLFLEXT.
    Can we creat a new table group based on FAGLFLEXT, and then adding the coding block extensions to that table -
    how does new g/l and the new table group work in parallel? Which is the procedure to do it?
    Documentation says we can create a new table group based on FAGLFLEXT --- its the how does it work in conjuction part...for example...the new g/l handles document splitting and one other thing georg referenced last night...will the split documents go into our new table group?
    BSEG does not have the document splitter information that we need (it's incomplete data). It's missing profit centers on many items, it's missing the proper split of transactions.
    Thanks for your comments.

    Here is more information about this post.
    Client situation:  Our client is implementing ECC 6 and is using the "New-GL" features.  Because of business requirements, the coding block has been extended (not insignificantly - 18 extra fields at the moment) to accommodate legal, regulatory and management reporting.  The reporting solution includes standard ECC reporting (e.g. report writer, report painter reports) as well as feeds to BW (BI 7).
    The Challenge:  Our understanding is that adding all of the coding block extensions to the New-GL tables (ie. FAGLFLEXA and FAGLFLEXT) may lead to performance degradation in the ECC system.  However, we still need to accommodate the requirement to report by the additional dimensions that are not currently included in the New-GL, so our challenge has been to find a solution that minimizes performance issues, while still allowing us to have all the necessary dimensions with which to do the required reporting.
    What we would like to know:  How have you handled this in similar situations?
    Have you added to the New-GL tables? How many fields? Performance issues encountered?
    Have you created additional table group(s) based on the New-GL and then modified that structure to have the new fields?  How does the additional table group work co-incident with New-GL (e.g. does the additional table group receive document splitting information?)?
    Have you created custom extractors for BW?  On what basis (we understand that FAGFLEXA cannot be created as a datasource to feed BW)?

  • 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

  • How to supress a warning message in BDC for ME11 Tcode

    Hi Expert,
    I am doing a BDC report for ME11 Tcode and some of warning is ignorable for this transaction code,how can we suppress these warning through BDC program, is it possible or will have to make some changes changes in TCODE(ME11) itself.

    hi,
    if the warning message coming in a pop-up window then it can be supressed in the following way.
    1. comment the lines of the code of bdc recording of that pop-up screen along with the perform of bdc ok code  '=ENTE".
    2. use the structure ctu_params and fill the correspondings fiels, particularly the field nobinpt = 'X' and then use this structure in the call transcation statement as
    call transcation 'ME11'
                            using bdcdata
                            options from opt ( structure of ctu_params )
    3. At the time of recording use the option of check box " no batch input session ".
    regards,
    Alok

  • Shall I use one datasource for multiple connection pool?

    Hi,
    I need to clarrify that, Shall I use one Datasource for multiple connection pool in distributed transaction?
    Thanks with regards
    Suresh

    No. If its transactions across multiple databases you should use different datasources.

  • How to create transaction or screen variant for custom tcode in module pool

    Hi,
              I have one module pool program with custome tcode ,i want to create transaction or screen variant for this tcode.Next time when we run this tcode we need a variant for this tcode.
    I tried by using of SHD0 but it is working only for standred tcodes.Is there any possibilty please help me.
    thanks,
    Lavanya.

    Hi,
    you created a Custom Tcode for ur module pool Pgm..if u execute the Tcode in the output screen give the input details and press Save Option then variant will be created. Then you can use that variant.
    otherwise.. while creating a Tcode..
    select an option for Tcode type Tranasction With variant ..there u will provide the variant for ur Tcode ( which is already created ).
    Regards,
    PraVeen.

  • Using a View as the DataSource for a Matrix

    Does anyone know if it is possible to use a view as the datasource for a matrix?  For example, I have created a view named 'VW1' with 4 columns (1 being ItemCode).  Here is the code that tries to set this view as the datasource for a matrix:
    tableName = "VW1";
    dbDataSource = sboForm.DataSources.DBDataSources.Add(tableName);
    // Add the bind columns
    column = columns.Add(COL_VALUE_UID, SAPbouiCOM.BoFormItemTypes.it_EDIT);
    column.DataBind.SetBound(true, tableName, "ItemCode");     
    This last line of this code hangs but if I put a try around it, the GetLastError does not return anything.  Is it because views cannot be used as datasources or is there something else I am missing?

    Hi David,
    You can use a view as a matrix datasource if you use UserDataSources instead of DBDataSources.
    UserDataSource DSSubJobID = form.DataSources.UserDataSources.Add("SubJobID", SAPbouiCOM.BoDataType.dt_LONG_NUMBER, 12);
    Col = GridMain.Columns.Item(ColSubJobID);
    Col.DataBind.SetBound(true, "", DSSubJobID.UID);
    You then need to manually set the value of the UserDataSource e.g:
    Reader = Command.ExecuteReader(CommandBehavior.SequentialAccess);
    GridMain.Clear();
    int RowNo = 1;
    while (Reader.Read())
       DSSubJobID.Value = SubJobID.ToString();
       //set other user datasources here
       //add a row the matrix
       GridMain.AddRow(1, -1);
    Regards, Lita

  • Can a web service be used as the datasource for a View Object?

    Has anyone used a web service as the datasource for a View Object?
    I am trying to do the same thing as "Publishing BC4J Components as a Web Service" example, except I want to recreate the View Objects on the client so that I can iterate through them and display them on a web page.
    I probably have two choices:
    1. Use the web service as the datasource.
    2. Use a file as the datasource with no data and then populate the View Objects from the XML from the Web Service.
    Please advise.
    Thank you.
    Richard Catlin
    SAIC

    You can adapt the examples provided in the BC4J Toy Store demo for how to build a programmatically-populated view object to create a view object that fetches its data from a web service.
    The methods that you need to override are the same for any kind of programmatically-populated view object.

  • Message "Creation of DataSources for SAP source system is not permitted"

    Hi,
    I am in DW Workbench: Modeling and I need to copy a DataSource.
    It's impossible, beacause I have this Message "Creation of DataSources for SAP source system is not permitted"!
    What can I do?
    Thks

    Hii.
    You can not copy the standard datasource to any other source system it will not allow you to do that.
    But if you want to copy you can copy it to PC FILE source system.
    It will allow you to copy there.
    Right click in Datasource->Copy-> Give Target datasource name -
    > intarget Source system tab -
    >Give Source system for File.
    Thanks
    Mayank
    Edited by: Mayank Chauhan on Sep 4, 2009 5:41 PM

Maybe you are looking for

  • Satellite P500 - Autoplay message pops up

    I have a Sony Memory card in my Satellite P500 which is dedicated to ReadyBoost. It seems to work fine but there is one minor irritation. Fairly often (=several times a day) an autoplay message pops up on the screen asking if I want to see the files

  • Variable Scope at package or interface level

    Hi, Can we set the ODI Project variable scope to package or interface level because in my project im using a last rundate refresh variable this variable value will be changed at the time of execution of each package. Thanxs Madhavi

  • Client dependent n client independent?????????/

    hi this is vinod, please explain the concept behind of script client dependent and smartforms r client independent pleaseee its urgent????????????

  • Preview saves blank black images

    When editing (mostly cropping) an image and saving it, some of my jpg images come out completely black. Not all of them turn out this way, but I noticed if I crop certain parts, they don't become a black canvas. Is the file corrupt or Preview just be

  • Intercompany billing IDoc error

    while posting AP the IDoc was not processed and throws the below error: "No reversal possible. Reverse value must be reset Message no. M8283" intercompany invoice was created previously for the same delivery no. and was posted successfully. there was