IDOC for FI open items ?

Hi,
I need to export once a week a list of customer open items to a legacy system (to make it brief, this is what you get when you launch a FBL5N transaction).
Is there an IDOC that can be used as outbound for this ? If there is one , how can I trigger it ?

There is not IDOC for this purpose.
But you can simply transfer the data from table BSID (For FBL5N) to your legacy from SAP.
Regards,
SDNer

Similar Messages

  • IDOC for clearing open items

    Guys,
    Does any one know of an IDOC that we can use for clearing customer open items (F-32)?. I am able to post a financial document using ACC_Document but unable to offset the customer open item.
    Please advice
    Zaid

    There is not IDOC for this purpose.
    But you can simply transfer the data from table BSID (For FBL5N) to your legacy from SAP.
    Regards,
    SDNer

  • BAPI _ACC_DOCUMENT_POST for clearing open items

    Hi,
    I am using BAPI_ACC_DOCUMENT_POST for clearing open items.
    When i post the same in F.13 (automatic clearance ) there is no error log,when i do in BAPI_ACC_DOCUMENT_POST
    its returns two errors.
    609 Error in document: IDOC 010000008410012009 CKDCLNT140
    702 Balance in transaction currency
    Header details are given as per certain sdn suggestions.
    note: i have changed the G/L account as automatic account (if i am using original G/L account its throwing an error msg
    such as direct posting not possible).
    Can any one help to get through this??
    Edited by: sangeearvind on Dec 16, 2009 12:24 PM

    Hi
    The first problem is you're using the wrong BAPI: BAPI ACCDOCUMENT_POST is to post account document, not to clear open item.
    I don't think there's a BAPI to do it
    Max

  • Function module for customer open item aging report

    Hi all,
    Please let me know the FM for customer open item aging or which FM is used in tcode S_ALR_87012178 to get the age wise open item of customer.
    Thanks in advance
    Regards
    Puneet

    <b><u>Part4</u></b><br />
    <br />
    <pre class="jive-pre"><code class="jive-code jive-java"><font color="red">&quot;&#38;----</font>
    <font color="red">&quot;*&#38;      Form  process_data</font>
    <font color="red">&quot;&#38;----</font>
    FORM PROCESS_DATA .
      DATA : L_TOTAL_TMP(15). <font color="red">&quot; LIKE BSID-DMBTR. </font>
      CLEAR :  L_TOTAL,LPD_TOTALS.
    <font color="red">&quot;* As per Customer accumulate the amount.</font>
    <font color="red">&quot;* For overdue items.</font>
      CLEAR : L_TOTAL_TMP.
      LOOP AT L_OPENDUE_LT.
      CONDENSE L_OPENDUE_LT-DMBTR NO-GAPS.
      L_TOTAL_TMP = L_TOTAL_TMP + L_OPENDUE_LT-DMBTR.
        AT END OF KUNNR.
          LPD_TOTALS-KUNNR = L_OPENDUE_LT-KUNNR.
          LPD_TOTALS-LPD_TOTAL = L_TOTAL_TMP.
          APPEND LPD_TOTALS.
          CLEAR : L_TOTAL_TMP.
        ENDAT.
      ENDLOOP.
      CLEAR :  L_TOTAL,LOA_TOTALS.
    <font color="red">&quot;* As per Customer accumulate the amount.</font>
    <font color="red">&quot;* For Open Items.</font>
      CLEAR : L_TOTAL_TMP.
      LOOP AT L_OPENDUE_LE.
        CONDENSE L_OPENDUE_LE-DMBTR NO-GAPS.
        L_TOTAL_TMP = L_TOTAL_TMP + L_OPENDUE_LE-DMBTR.
        AT END OF KUNNR.
          LOA_TOTALS-KUNNR = L_OPENDUE_LE-KUNNR.
          LOA_TOTALS-LOA_TOTAL = L_TOTAL_TMP.
          APPEND LOA_TOTALS.
          CLEAR : L_TOTAL_TMP.
        ENDAT.
      ENDLOOP.
    <font color="red">&quot;* Get ageing data based slabs, and duedate.</font>
      PERFORM AGEING_DATA.
      LOOP AT L_BSID.
    <font color="red">&quot;* Move the data to final internal table.</font>
        MOVE L_BSID-KUNNR TO FINAL_DATA-KUNNR.
        MOVE L_LANDX TO FINAL_DATA-LANDX.
        MOVE L_PSTLZ TO FINAL_DATA-PSTLZ.
        MOVE L_NAME TO FINAL_DATA-NAME1.
        MOVE L_PHONE TO FINAL_DATA-PHONE.
        MOVE L_SORTL TO FINAL_DATA-SORTL.
        MOVE L_BSID-ZTERM TO FINAL_DATA-ZTERM.  
        MOVE L_BUSAB TO FINAL_DATA-BUSAB.        
        READ TABLE LPD_TOTALS WITH KEY KUNNR = L_BSID-KUNNR.
        IF SY-SUBRC EQ 0.
          MOVE LPD_TOTALS-LPD_TOTAL TO FINAL_DATA-LPD_TOTAL.
        ENDIF.
        READ TABLE LOA_TOTALS WITH KEY KUNNR = L_BSID-KUNNR.
        IF SY-SUBRC EQ 0.
          MOVE LOA_TOTALS-LOA_TOTAL TO FINAL_DATA-LOA_TOTAL.
        ENDIF.
        READ TABLE AGE_DATA WITH KEY KUNNR = L_BSID-KUNNR.
        IF SY-SUBRC EQ 0.
          MOVE AGE_DATA-CURAMT TO FINAL_DATA-CURAMT.
          MOVE AGE_DATA-AMT1 TO FINAL_DATA-AMT1.
          MOVE AGE_DATA-AMT2 TO FINAL_DATA-AMT2.
          MOVE AGE_DATA-AMT3 TO FINAL_DATA-AMT3.
          MOVE AGE_DATA-AMT4 TO FINAL_DATA-AMT4.
          MOVE AGE_DATA-AMT5 TO FINAL_DATA-AMT5.
          MOVE AGE_DATA-AMT6 TO FINAL_DATA-AMT6.
        ENDIF.
        ENDIF.
        APPEND FINAL_DATA.
        CLEAR: FINAL_DATA.
      ENDLOOP.
    ENDFORM.                    <font color="red">&quot; process_data</font>
    </code></pre>

  • BAPI or FM or Class for Customer open items CLEAR (F-32)

    Hi Everyone,
    Is there any BAPI or FM to CLEAR customer open items (F-32).
    Thanks,
    NK

    Hi,
    For clearing open items you can use BAPI_ACC_DOCUMENT_POST.
    but need to write extra code in BTE
    check this function module SAMPLE_INTERFACE_RWBAPI01.
    need to update below four fields of table accit.
    REBZG (document no against u want to clear)
    REBZJ (fiscal year)
    REBZZ (line item)
    REBZT
    to update these field use BTE.
    Thanks,
    Avadhut.

  • Can i use BAPI_ACC_DOCUMENT_POST for clearing open items of credit memo

    Can i use BAPI_ACC_DOCUMENT_POST for clearing open items of credit memo
    If yes kindly let me know the import parameters and what this BAPI returns

    Hi,
        Use this
    BAPI_PAYIT_POST_CLEARING
    <b>Reward points</b>
    Regards

  • How to create ABAP Query for vendor open items

    HI,
    My client has requested me to create ABAP Query for vendor open items . So that it will be usefull for the users . Could anyone help me with this. I will assign you points.Thanks in advance.

    Hello,
    Use Table BSIK <Open Items of AP > & BSAK <AP Cleared items>......
    For Query you can use SQ01.
    USE BSID & BSAD for AR open/clear items...
    LFA1, LFB1 are vendor master data tables
    This is FYI
    Hope this helps.
    Rgds
    Rajendra

  • How to Prepare Flat File for Vendor Open Items for RFBIBL00

    Hi Experts,
    I have to prepare a flat file structure for vendor open items to use in RFBIBL00.
    I tried to take structure from the structures BBKPF and BBSEG structures.
    I have 59 fields in my file and I need to map these fields with the structures BBKPF and BBSEG to prepare the structures for
    Header and Items for vendor open items.
    Can any body help me how to prepare the flat file structures.
    Thanks & Regards,
    Sudheer
    Edited by: sudheer kumar on Dec 4, 2009 11:09 AM

    RFBIBL00 has a documentation please check it

  • BAPI for clear open item in FI module

    Hiu2026
    Anybody knows if there is a BAPI for clear open item in FI module?
    Manually we can use F-03 or F-04 for clearing open item.

    http://www.se80.co.uk/sapfms/b/bapi/bapi_ctraccontractaccount_clr.htm

  • How to calculate with holding tax for the open item

    Dera all,
    Can you tel me how to simulate with holding tax for the open item? i will try do it using FI_WT_F110_CALCULATE FM  but it dosnt work. plz help me
    regard
    nawa

    Hi Sushil,
    can you please elaborate on how you resolved it. we are facing the same issue with BAPI not calculating the withholding tax data.
    Thanks,
    Sanket

  • Function for Vendor Open Items

    Hi Experts,
    Is there any function where I can get open items for a vendor, similar to FBL1N?
    Please Suggest!!!
    Rajiv Ranjan

    Hi,
    or use logical database (ldb) KDF
    and use GET BSIK / LFC1
    A.

  • Clearing problem for vendor open item

    while clearing open item of vendor through T-code F-44 i am facing the problem following problem
    Document splitting :-Item for clearing 1000/100020603/2006/005 not found,
    Daignosis as given in error:-document splittting cannot be performed clearing because it was not possible to find complete splitting information items to be cleared(company code 1000, doc. no.100020603, item 005). procedure as provided by the error massage is that the item  was not posted  with active document splitting. In this case this item or document would have to be migrated

    Dear Sweta,
    I think there is no such a table, as you expect, existing in SAP. As I know here are the
    most popular table about Accounting documents.
        Accounting documents
        BKPF                Accounting documents
        BSEG               item level
        BSID                 Accounting: Secondary index for customers         
        BSIK                 Accounting: Secondary index for vendors           
        BSIM                 Secondary Index, Documents for Material           
        BSIP                 Index for vendor validation of double documents   
        BSIS                 Accounting: Secondary index for G/L accounts
        BSAD               Accounting: Index for customers (cleared items) 
        BSAK                Accounting: Index for vendors (cleared items)   
        BSAS                Accounting: Index for G/L accounts (cleared items)
    If you need information about open line items of a certain day, you have to use ABAP.
    Regards.
    Maxielight.

  • Payment program F110 for Vendor Open Item in Foreign currency

    Dear sap Guru
    Is it possible to Ensures that no exchange rate differences are posted by the payment
    Program?  I mean: The amount in the bank posting in local currency does not result from translating the foreign currency amount at the current rate but from the total of the local currency amounts from the settled items.
    Best regards
    marco

    Dear PAtel,
    I checked and the ther eis the check box 'No exchange rate differences' anyway during the payment program execution the system is making some recalculation for open item in fc.
    Someone knows what is the coloumn "Valuation Difference" in the Dysplay Payment Proposal Open Item list?
    regards
    marco

  • Report for customer open item exclude vat

    Dear Experts,
    Is there a report in SAP which can extract the customer open items with VAT amount excluded?
    Thank you

    You have to customize a report. There is no standard report for this.

  • Credit check for oldest open item

    Hello friends
    While checking oldest open item for credit management, open line items with credit nature should not be considered. Only debit entry should be considered and based on date given for blocking the oldest due item should be followed.
    Please help me doing this.
    Urgent

    Hi Inder,
    U wish to have the invoiced items, which has to be payable by the customer,ok?
    If this is the case it is existing already in the credit management settings. No need to configure any thig specially to capture this.
    Regards,
    Ravi Duggirala

Maybe you are looking for

  • How can I change my auto-correction language from english to french?

    My system language is english, so all the default language is also in english but how can I change the auto-correction language from english to french and without changing the menu language? Message was edited by: Marixomia

  • How to edit size of Panel Splitter in portrait mode (ADF Mobile)

    ADF Mobile have attribute for "position" to setting size of navigation plane on left size only for landscape mode rather than portrait After I figure out in ADF's javascript "amx-panelSplitter.js" and found Oracle using "hard-code" in sizing in portr

  • Updating table in RFC enabled function module

    Hi Experts, I have written a RFC enabled FM in ECC which will accept a table through TABLES parameter in which two columns will be filled and will update the rest two columns. I am using modify statement to update table from work area. When I am call

  • How to not import videos in Elements 7

    Hi Everyone, By default, Elements imports both photos and videos. But I don't want videos in my catalog. Is there a way to not import videos? Else is there a way to not *display* videos? Thanks for your help..

  • 421 4.4.5 Too many messages from this host last hour

    Hi, we are in a migration process from a Kerio system to Exchange 2013. Everything is working fine, except that we have been experiencing this error on the logs and the Exchange 2013 users are getting returned emails. The remote server is 10.10.10.85