Extractor for Table BKPF

Hi ,
  I wanted to know the extractor for table BKPF . Where can i know or which is the extratcor
Regards
Ankit Vaish

Hi,
I hope, The datasource 0FI_GL_4 would be useful to you.
http://help.sap.com/saphelp_nw2004s/helpdata/en/8b/02f93abb013b0de10000000a114084/frameset.htm
With rgds,
Anil Kumar Sharma .P

Similar Messages

  • Extractor for table COBRB

    Hello Experts,
    I am looking for a BC-extractor for table COBRB containingt hese fields:
    OBJNR, BUREG, LFDNR, PERBZ, URZUO, GABJA, GABPE, GBISJ, GBISP, PROZS, AVORG, KONTY, KOKRS, BUKRS, HKONT, NLN1, ANLN2, MATNR, REC_OBJNR1.
    Any idea?
    We need the relation between COORDER and the valid HKONT for a certain moment.
    As it is possible to have more than 1 HKONT (with different percentages and in time) I guess it is a different extractor than 0COORDER_ATTR and it can not just added to this ectractor.
    Thanks in advance,
    Udo

    Hi,
    Enter your table name in SE11 in ECC.
    Click Where-Used-List
    Select Structures, Programs etc., then it will show the entire info.
    Regards,
    Suman

  • Std Extractor for table EQKT

    Can someone help me in finding the sap std extractor for the table EQKT (Equipment short texts table). I need to extract the info from the field EQKTU.
    -Tagz

    Krishna,
    To the best of my knowledge there is no standard delivered extractor for table EQBS. Try and understand the functionality of the data stored in the table and its relationships to what is specified in requirement. Is the field required in the master data of equipment or some other transaction data? Depending on the scenario you may have to enhance the master data / transaction data extractor or may be if situation warrants you may have to create a generic extractor.
    General procedure employed in finding extractors is to know what type of data is requested, which functional area then check the standard extractors in that specific application component to see if any of the extractors delivered provide the data required. Check help documentation of the extractors.

  • Extractor for table S115

    Hi,
    Im looking for a standar extractor that can obtain the information that i have in the table s115 of R/3; or its necessary to create an extractor generic?
    Thanks for the information
    Mónica

    Hi
    just create a generic extractor for this table.
    http://help.sap.com/saphelp_nw04/helpdata/en/37/4f3ca8b672a34082ab3085d3c22145/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/548c9ec754ee4d90188a4f108e0121/content.htm
    Reg's
    Edan

  • Extractor for table NAST

    Hi Folks,
    I have a requirement to determine the number of PO's that are transmitted electronically (either FAX or EDI).
    I know I use table NAST and Field KAPPL to determine a message type.
    Does anyone know if there is a standard BC extractor for this NAST table?
    Any advise is appreciated.
    Regards,
    David

    Hi,
    I hope, The datasource 0FI_GL_4 would be useful to you.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/8b/02f93abb013b0de10000000a114084/frameset.htm
    With rgds,
    Anil Kumar Sharma .P

  • BI Content extractor for table LFB1?

    HI folks,
    I'd happy to know if there is any BI content extractor which is able to extract the LFB1 table contents to BW.
    I know there is 0VENDOR_ATTR but it only seems to deal with the "standard" vendor data (like is in table LFA1).
    In fact, we are especially looking for the field ALTKN which is stored in the LFB1 table.
    Best regards,
    bivision

    Hi,
    If the field is not there in that datasource try to  enhance to the datasource.

  • Extractor for table PA2001

    hello all,
    I am new to HR extraction.I need to pull the data of table PA2001 for absentism.
    I seached all the extractors of std business content related to HR but i was not able to find it.
    Any suggestions would be greatly appreciable.
    Thanks in advance.
    regards,
    Yogesh

    See these links for mapping!
    0HR_PT_1
    http://help.sap.com/saphelp_bw30b/helpdata/en/0a/5266371849d666e10000009b38f8cf/frameset.htm
    0HR_PT_2
    http://help.sap.com/saphelp_bw30b/helpdata/en/56/3b6637bd367465e10000009b38f8cf/frameset.htm
    http://help.sap.com/saphelp_bw30b/helpdata/en/4b/26c5394dbfef35e10000000a11402f/frameset.htm
    0HR_PT_3
    http://help.sap.com/saphelp_bw30b/helpdata/en/d0/4566377c436c66e10000009b38f8cf/frameset.htm
    TIME MANAGEMENT (general)
    http://help.sap.com/saphelp_bw30b/helpdata/en/25/491d3c55a0f503e10000000a114084/frameset.htm

  • Performance for table BKFP

    Hi,
    I would like to enquire is there anyway that i can improve the performance for table BKPF from the ABAP code point of view.
    Because we have customise one program to generate report for the asset master listing.
    one of the select statement are show as below:
          SELECT SINGLE * FROM BKPF WHERE BUKRS = ANEP-BUKRS
                                      AND GJAHR = ANEP-GJAHR
                                      AND AWKEY = AWKEYUS.
    I would like to know how it different from the select statemene below:
    SELECT SINGLE * FROM BKPF INTO CORRESPONDING FIELDS OF T_BKPF
          WHERE
          BUKRS = ANEP-BUKRS
      AND GJAHR = ANEP-GJAHR
      AND AWKEY = AWKEY.
    Which of the select statements above can enhance report,because currently we have face quite bad issue on this report.
    Can i post the ABAP code on this forum.
    Hope someone can help me on this. thank you.

    Hi,
    As much as possible use the primary keys of BKPF which is BUKRS, BELNR and GJAHR. Also, select only the records which are needed so to increase performance. Please look at the code below:
    DATA: lv_age_of_rec TYPE p.
      FIELD-SYMBOLS: <fs_final> LIKE LINE OF it_final.
      LOOP AT it_final ASSIGNING <fs_final>.
      get records from BKPF
        SELECT SINGLE bukrs belnr gjahr budat bldat xblnr bktxt FROM bkpf
        INTO (bkpf-bukrs, bkpf-belnr, bkpf-gjahr, <fs_final>-budat,
              <fs_final>-bldat, <fs_final>-xblnr, <fs_final>-bktxt)
        WHERE bukrs = <fs_final>-bukrs
          AND belnr = <fs_final>-belnr
          AND gjahr = <fs_final>-gjahr.
      if <fs_final>-shkzg = 'H', multiply dmbtr(amount in local currency)
      by negative 1
        IF <fs_final>-shkzg = 'H'.
          <fs_final>-dmbtr = <fs_final>-dmbtr * -1.
        ENDIF.
      combine company code(bukrs), accounting document number(belnr),
      fiscal year(gjahr) and line item(buzei) to get long text.
        CONCATENATE: <fs_final>-bukrs <fs_final>-belnr
                     <fs_final>-gjahr <fs_final>-buzei
                     INTO it_thead-tdname.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
            client                        = sy-mandt
            id                            = '0001'
            language                      = sy-langu
            name                          = it_thead-tdname
            object                        = 'DOC_ITEM'
          ARCHIVE_HANDLE                = 0
          LOCAL_CAT                     = ' '
        IMPORTING
          HEADER                        =
          TABLES
            lines                         = it_lines
         EXCEPTIONS
           id                            = 1
           language                      = 2
           name                          = 3
           not_found                     = 4
           object                        = 5
           reference_check               = 6
           wrong_access_to_archive       = 7
           OTHERS                        = 8.
       IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
      if successful, split long text into start and end date
        IF sy-subrc = 0.
          READ TABLE it_lines TRANSPORTING tdline.
          IF sy-subrc = 0.
            SPLIT it_lines-tdline AT '-' INTO
                  <fs_final>-s_dat <fs_final>-e_dat.
          ENDIF.
        ENDIF.
      get vendor name from LFA1
        SELECT SINGLE name1 FROM lfa1
        INTO <fs_final>-name1
        WHERE lifnr = <fs_final>-lifnr.
        lv_age_of_rec = p_budat - <fs_final>-budat.
      condition for age of deposits
        IF lv_age_of_rec <= 30.
          <fs_final>-amount1 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 30 AND lv_age_of_rec <= 60.
          <fs_final>-amount2 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 60 AND lv_age_of_rec <= 90.
          <fs_final>-amount3 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 90 AND lv_age_of_rec <= 120.
          <fs_final>-amount4 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 120 AND lv_age_of_rec <= 180.
          <fs_final>-amount5 = <fs_final>-dmbtr.
        ELSEIF lv_age_of_rec > 180.
          <fs_final>-amount6 = <fs_final>-dmbtr.
        ENDIF.
        CLEAR: bkpf, it_lines-tdline, lv_age_of_rec.
      ENDLOOP.
    Hope this helps...
    P.S. Please award points for useful answers.

  • Bad Performance in a query into table BKPF

    Hi forum i have a really problem in the second query under the table
    BKPF.. some body cans help me, please
    *THIS IS THE QUERY UNDER MSEG
      SELECT tmsegmblnr tmkpfbudat tmsegbelnr tmsegbukrs tmseg~matnr
             tmsegebelp tmsegdmbtr tmsegwaers tmsegwerks tmseg~lgort
             tmsegmenge tmsegkostl
      FROM mseg AS tmseg JOIN mkpf AS tmkpf ON tmsegmblnr = tmkpfmblnr
      INTO CORRESPONDING FIELDS OF TABLE it_docs
      WHERE
        tmseg~bukrs IN se_bukrs AND
        tmkpf~budat IN se_budat AND
        tmseg~mjahr = d_gjahr AND
        ( tmsegbwart IN se_bwart AND tmsegbwart IN (201,261) ).
      IF sy-dbcnt > 0.
    I CREATE AWKEY FOR CONSULTING BKPF
        LOOP AT it_docs.
          CONCATENATE it_docs-mblnr d_gjahr INTO it_docs-d_awkey.
          MODIFY it_docs.
        ENDLOOP.
    THIS IS THE QUERY WITH BAD BAD PERFOMANCE
    I NEED KNOW "BELNR" FOR GO TO THE BSEG TABLE
        SELECT belnr awkey
        FROM bkpf
        INTO CORRESPONDING FIELDS OF TABLE it_tmp
        FOR ALL ENTRIES IN it_docs
        WHERE
          bukrs = it_docs-bukrs AND
          awkey = it_docs-d_awkey AND
          gjahr = d_gjahr AND
          bstat = space .
    THNKS

    Hi Josue,
    The bad performance is because you're not specifying the primary keys of the table BKPF in your WHERE condition; BKPF usually is a big table.
    What you really need is to create a new index on database for table BKPF via the ABAP Dictionary on fields BUKRS, AWKEY, GJAHR & BSTAT. You'll find the performace of the program will significantly increase after the new index is activated. But I would talk to the Basis first to confirm they have no issues if you create a new index for BKPF on the database system.
    Hope this helps.
    Cheers,
    Sougata.

  • Extractor for tbl CABN

    Hi ,
    Could someone tell me the std extractor for table CABN or how to find the extractor for the table.
    Thanks
    Jay.

    Hi dear,
    look at 0CRM_MKTATTR_ATTR
    http://help.sap.com/saphelp_nw2004s/helpdata/en/8d/4cb2188716e8428c84bef5140d19d1/content.htm
    Hope it helps!
    Bye,
    Roberto

  • Extractor for ANIA and/or ANKB

    Hello Everyone,
    I would like to know if there is any SAP delivered BI Content extractor for table ANIA and/or table ANKB.
    I've searched everywhere but with no success.
    Does anyone have any idea?
    Regards,
    Diogo.

    ANIA has no standard DataSource.
    ANIB has no standard DataSource.
    I know that currently it is not planned to enhance these standard extraction
    functions to integrate simulated WBS element depreciation.
    ANKA has no standard DataSource.
    ANKB has no standard DataSource.
    0FI_AA_005 only takes transactions with entries in ANEK and ANEP.
    0FI_AA_006 extracts those transactions which are stored in ANEK, ANEP
    and ANEA.
    ANLV, ANLK have no standard DataSources.
    You will need to create your own generic DataSources, in order to
    extract the datas from the tables that have no standard
    DataSources.
    Colin

  • Standard extractor for forecast & consumptions values (prow and mver table)

    Hi All,
    Is there any SAP BI standard extractor for forecast and consumptions data ?
    For information,
    ECC6 Forecast table : PROW.
    ECC6 Consumptions table : MVER.
    Thx.
    radj.
    Edited by: Radjech Radjech on Jul 27, 2011 11:13 AM
    Edited by: Radjech Radjech on Jul 27, 2011 11:25 AM

    I have created a generic extractor, in the past, with the FEBEP table. However, my requirement was to join it with the BSID and BSAD tables in order to determine payments that have been received into the lockbox but not cleared, so that the Credit Department has a more up-to-date look at customer accounts.
    If you have multiple companies you could end up with a Cartesian product when the data for this view is rendered because the Accounting Document and Fiscal Year don't uniquely identify records in BSEG and BKPF. Additionally, you wouldn't know exactly which Accounting Document Line Item is the correct record on BSEG. Both of these cases are potential sticky points for both a custom view or User Exit in CMOD, unless you've been given by the end customer a way to mitigate these. For instance, you may be able to derive the Company Code for the FEBEP entry by using the Cost Center or Profit Center, unless your Cost Centers or Profit Centers can span across companies.

  • Extractor for AUFK and AFKO tables

    Hello Experts,
    I am looking for a standard extractor for the tables AUFK (Order Master data) and AFKO (Order Header). I wanted to know if there a exists a standard extractor for the same or I have to create a generic one.
    Thanks,
    Rishi

    For internal orders (ie aufk) have a look at 0COORDER and the transaction data  0CO_OM_OP*
    and the rest of the content for IOs
    http://help.sap.com/saphelp_nw70/helpdata/en/f2/db0c3c99d56448e10000000a114084/frameset.htm

  • Extractor for FLEET table

    I need to extract some fields from the table FLEET, does any of you know if there's already a standard extractor for that?
    Otherwise I may need to enhance an existing one or create my own. If so, can you suggest any ideas about how to link the data?
    If I have to enhance, I was thinking about using 2LIS_08TRFKZ and add the missing fields there. Is this the right approach?

    HI,
    Enter this table name in SE11 ->Display->Where-Used-List->Select Stuctures, Includes, Programs etc...
    Get into ROOSOURCE table, Select A in OBJVERS, Extraction details etc..You will come to know about any Standard Extractor.
    I have no idea about your second question.
    Regards,
    Suman

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

Maybe you are looking for

  • Error when running a query against Multiprovider using 0FIGL_VC1

    Hi SAP Gurus, I'm creating a MultiProvider for FI-GL.It has 2 Cubes.one is 0FIGL_VC1 (Virtual Cube) and other one is Customised Cube.When I run Query against this MultiProvider with  the combination of basic cubes key figures,I'm getting an error 'Ab

  • Problem with my ipod mini

    Hi @ all i have a problem. I formated my ipod on windows and no i can't turn it on, everytime it shows the folder with the exclamation mark. I downloaded the iPod updater to recover it, but evertime it says: Eroror at writing on hard disk. I have no

  • JAVA_HOME on Tomcat

    how do i set the environmental variable JAVA_HOME to point to my jdk directory which is c:\\jdk1.3.1_02\ somebody please help me!! ive been trying to setup this servlet engine for 5 days now and i still cant get it to work :( i keep getting an error

  • PDF generation for Non English Characters from ADF

    Hi We are using below piece of code to generate pdf from ADF Managed bean. It works fine. However for non English Characters(eg. Japanese,Vietnamese,Arabic)  it puts I got few blogs https://blogs.oracle.com/BIDeveloper/entry/non-english_characters_ap

  • Application express certification?

    I found this beta exam for application express http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_450 is there anything newer. Thanks, Doug