How to catch due Items for open Items for vendors

hello everybody,
How to catch due open Items amounts for vendors
for 0-30 30-60 60-90
regards
Mave

Hi
Mave
You have to get the open items from BSIK and then calculate the due date (there's only the baseline date, ZFBDT, in BSIK), you can use fm NET_DUE_DATE_GET to do it:
LOOP AT I_BSIK.
CALL FUNCTION NET_DUE_DATE_GET.
   EXPORTING
     I_ZFBDT =  I_BSID-ZFBDT
     I_ZBD1T =  I_BSID-ZBD1T
     I_ZBD2T =  I_BSID-ZBD2T
     I_ZBD3T =  I_BSID-ZBD3T
     I_SHKZG =  I_BSID-SHKZG
     I_REBZG =  I_BSID-REBZG
     I_KOART =  'K'
   IMPORTING
     E_FAEDT =  DUE_DATE
Now you can calcultate the range:
   DELTA_DAY = SY-DATUM - DUE_DATE.
   IF DELTA_DAY < 30.
ENDLOOP.
Max

Similar Messages

  • Calculate due date for vendor payment

    hi friends,
    In my project i need to calculate the due date for vendor payment.as my client maintain different payment terms for different vendors am not able to pick the payment key from t052 table and calculate the due date.
    do anyone have a solution for this......
    prajith

    Hi
    You can insert Payment terms in Vendor master and also you can change or assign payment term while making transaction.
    But first of all you should have payment term.
    IMG -- Financial Accounting -- Accounts Receivable and Accounts Payable -- Outgoing Invoices/Credit Memos -- Maintain Terms of Payments
    Regards,
    Amit

  • How can i maintain conditions for vendor sub-ranges

    Hi All,
    How can i maintain conditions for vendor sub-ranges. These conditions apply to all materials from vendor's sub-range.
    Eg: vendor X has the two subranges R1 & R2. I want to maintain separate conditions for R1 & R2. When ever i created PO with ref to particular subrange that Vendor conditions has to be appeared.
    How can i achieve this?
    Could u pls suggest?
    Thanks & Regards
    Anilkumar Dalai

    Hi,
    First Create a Condition Table with field "Vendor sub-range" in M/03
    Then create an Access Sequence using this Condition Table in M/07
    Then assign this Access Sequence in the Gross Price Condition Type in M/06
    Then assign this Condition type in Calculation Schema in M/08
    Then maintain condition record for this condition type in MEK1
    And then select the appropriate VSR Code in ME21N and check the Pricing.

  • 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

  • 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 Assign Business partner for Vendor Organisation

    Hi,
    We are in SRM upgrade from SRM 3.0 to SRM 7.0.
    For Vendor organisation say 0 50002381  there is no Business partner assigned.
    Under this organisation there are 200 vendors .
    When i run the report: BBP_XPRA_ORGEH_TO_VENDOR_GROUP
    it is showing an error -No partner assigned
    How to assign the Business partner for the organisation .
    Please give your inputs
    Regards
    G.Ganesh Kumar

    Hi Muthu,
    Thanks for the reply
    Already the SAP NOTES : 1372409 is applied.
    I am running the Migration report: BBP_XPRA_ORGEH_TO_VENDOR_GROUP. I am getting an error
    " Check mode 9: :Invalid Object on supplier node"
    How to resolve this issue.
    Already one more thread is open for this issue
    Regards
    G.Ganesh Kumar

  • How to download payment terms for vendors?

    hi
    I need to download term of payment for vendors.
    DNL_CUST_PRICE object only downloads payment terms defined for Customer.
    Have you guys seen a similar situation?
    Regards,
    Ime

    Hi
    Go to the Define pament terms through the path as mentioned by.
    1. Click on New entries
    2. Enter a 4 digit Alpha Numeric code
    3. Select the account type as vendor
    4. In default for baseline data box select Document date if the no of the days are to be from document date.
    5. In the payment terms box in S.No.1  in the No. of days column enter the reqd. days and save.
    Follow the same for different payment days.
    Regards
    Dev

  • How we do the dunning for vendors

    hi sap guru's,
    can any one help this.
    Thanks in advance,
    RAVI

    No separate configuration for vendors.
    Standard configuration will applicalble for both customers and vendors.
    Only at the time of Dunning texts step you have to select Vendor and have to maintain the settings.
    Rgds
    Murali. N

  • How to catch the event for change dropdown value in alv

    it has a column output by dropdown in alv. the dropdown type cl_salv_wd_uie_dropdown_by_idx.
    now the problem is if change the dropdown value, i want to catch the event to change another column value.
    how can i do it?

    This part contains other ALV initialization code
    *... init ColumnSettings
      DATA:
            lr_column_settings TYPE REF TO if_salv_wd_column_settings.
      lr_column_settings ?= wd_this->r_table.
      DATA:
            lt_columns TYPE salv_wd_t_column_ref.
      lt_columns = lr_column_settings->get_columns( ).
      DATA:
            ls_column     TYPE salv_wd_s_column_ref,
            lr_col_header TYPE REF TO cl_salv_wd_column_header,
            l_tooltip     TYPE string.
      LOOP AT lt_columns INTO ls_column.
        CASE ls_column-id.
          WHEN 'PLANETYPE'.
            DATA:
                  lr_drdn_by_key TYPE REF TO cl_salv_wd_uie_dropdown_by_key.
            CREATE OBJECT lr_drdn_by_key
              EXPORTING
                selected_key_fieldname = ls_column-id.
            lr_drdn_by_key->set_key_visible( abap_true ).
            ls_column-r_column->set_cell_editor( lr_drdn_by_key ).
          WHEN OTHERS.
        ENDCASE.
    ENDLOOP.
      DATA:
            node_info TYPE REF TO if_wd_context_node_info,
            lt_valueset   TYPE STANDARD TABLE OF wdr_context_attr_value,
            l_value       TYPE wdr_context_attr_value.
      node_info = wd_context->get_node_info( ).
      node_info = node_info->get_child_node( 'FLIGHT_INFO' ).
    data : lt_sflight type STANDARD TABLE OF sflight,
           ls_sflight like LINE OF lt_sflight.
    SELECT * from sflight into TABLE lt_sflight.
    LOOP at lt_sflight into ls_sflight.
      l_value-value = ls_sflight-planetype.
      l_value-text  = ls_sflight-planetype.
      INSERT l_value into TABLE lt_valueset.
      ENDLOOP.
      node_info->set_attribute_value_set(
      name = 'PLANETYPE'
      value_set = lt_valueset ).

  • How to add email option for vendor.

    Hello all,
    I looked for adding an email to the vendor in xk01, but there was no option of email field. I want to post FCEM output to test whther the output working fine thorugh email.
    Plz advice.

    Hi,
    If you are using sap delivered vendor account group, system defualt shows email address in vendor master data.
    In address tab, communication segment you can see the vendor email address.
    Or Goto OMSG t.code choose vendor account group, double click on general data.
    double click on communication, check the Internet mail address field and save.
    Regards,
    Chandra

  • How to Assign Customized Form for Vendor Balance Confirmation - F.18

    Dear All,
    While executing the transaction code f.18. System is showing vendor balances with IDES logo. I want to assign the customized form. Can anybody tell me where to assign form fro F.18.
    Regards
    Sreenivas

    kindly check in the configuration
    SPRO-Financial Accounting-Accounts Receivable and Accounts Payable-Business Transactions-Closing-Count-Balance Confirmation Correspondence-Make and Check Settings for Correspondence-Define Form Names for Correspondence Print
    Select the program "SAPF130K" which one is for balance confirmation. against this the form is attached

  • Marketplace Adapter, how to set recipient IDu00B4s for vendors

    Dear SDN Community,
    currently we use SAP BusinesswConnector/MarketSet Connector for Marketplace communication and have plans to migrate to SAP XI/Marketplace Adapter. I cannot find any place in the Marketplace Adapter where to put the recipient ID´s (MPID) for our vendors.
    XI allows to define only one DDID per each service, but to create per each vendor a service makes no sense.
    Is there a way to put the MPID or DDID dynamically during runtime into the MML header ?
    Any hints ot ideas are appreciated.
    Thanks and regards,
    Holger Baumann

    Hi Holger,
    >>>>>>>Do I have to setup one partner or per each vendor/MPID a partner ?
    Yes.
    >>>>>>>Which values do I have to put in the fields agency, schema and name in idenfifiers tab ?
    In case of Vendor Number for R/3, you have to specify the fields as shown below.
    Agency: BS_SR5( Business System for backend R/3)
    Schema: ALE#<Partner type>#<Partner function>(For example:ALE#LI#LF>
    Name: 0001004000(Vendor Number in the Backend R/3)
    Hope this helps.
    Regards,
    Sam Raju

  • MM-Check Double Invoice functionality for Vendor Invoices

    Dear All,
    How Check Double Invoice functionality for Vendor Invoices can be implemented in SAP?
    We have implemented Check double invoice with the standara sttings for it however if i give my referenece text differently it will aloow me to post double invoices and against vendor open items are shown for payment?
    Is there any other efficient way to do it?
    Thanks and Regards
    Shrinivas

    dear SAPian friend,
    go through the below link and you will find the solution with the screenshots.
    http://sapfunctional.com/MM/Duplicate/Invoices.htm
    U can also do the setting using the SPRO t-code:-
    path is
    >>SPRO
    >>SAP Reference IMG
    >>Materials Management
    >>Logistics Invoice Verification
    >>Incoming Invoice
    >>Set check for duplicate invoices

  • Can v run dunning for vendors

    Hi ,
    where can v link dunning area and dunning procedure
    and how can v use dunning for vendors
    Points wil b assigned
    Umesh

    Hi Mahesh,
    Yes we can dunn the vendor also. Vendors with debit balances are subject to dunning. Debit balances are the result of credit memos posted to the vendor account due to circumstances such as returned goods.Once vendor credit memos exceed vendor invoices, the payment due will be shifted back to the vendor. Therefore, dunning will be run to check for delinquent balances.
    Menu Path
    From the SAP R/3 screen, select the path:
    Accounting >> Financial accounting >> Accounts payable >>
    (new menu) Periodic processing >> Dunning
    Fast Path
    At the Command Line, enter: /NF150.
    Regards,
    shashikanth.
    Assign points if usefull.

  • Partial payment for Vendor down payment request

    Hi Gurus
    How to do partial payment for vendor down payment request  using F-48
    If i enter partial amount next time same request is not appearing in the list.
    Pls guide me. Reply will be appreciated with full points
    Thanks in advacne
    Sneha

    Hi Ravi
    Thanks for info
    My doubt is MM is creting Down payment request using F-47 For ex  Rs100000
    for this request using F-48 i want to pay partialally means for Rs50000
    Balance i want to pay it later, How this can be done.
    Pls guide me
    Rgds
    Sneha

Maybe you are looking for

  • Can't display data that exist in cupe

    Hi All, I get a problem which is thar even i entered data in the cube i cant display with charecteristics. When i go to bw and display data if i say select charecteristics i can see any data but if i dont select charecteristics i can display data. Al

  • Report Query returning "No Data Found" with bind variables

    I put a simple query into Report Query: Select "bluefish". "name" as "name", "bluefish"."primary_flag" as "primary_flag", "bluefish"."status" as "status", "bluefish"."ID" as "ID" from "bluefish" "bluefish" where "bluefish"."ID" = :P3_XPRINTID When I

  • Problems with letter type

    Problems with letter type homepage www.JO-qigong.nl When I want to make another type it changes the whole page? Why?

  • Trouble transfering phonebook via bluetooth to Alpine Blackbird B200 GPS

    I recently purchased the Alpine Blackbird PMD-B200 and the first thing I did was to pair it up with my blackberry curve to check out the bluetooth.  It paired fine and a test call worked.  Then I tried to transfer the phonebook from the curve and it

  • I'm hearing audio when the website I'm on doesn't have any audio or video links.

    Firefox version 27.0.1, laptop computer. Home page is CNN. I did not click on anything on that page, but did a Google search for quilting information. Now no matter what page I'm on, I hear several news stories repeating - the first one is about Barb