BAPI to get Invoice Details based on PO Number

HI,
Is there any BAPI to get Invoice Details based on PO number. If so could you pls let me know that.
Regards,
Ramesh

Hi Ramesh  ,
there is no Direct BAPI to get the List of Invoices ,But based on the Vendor list u can get the List .
pass Vendor list , Document Dates.
<b>BAPI_INCOMINGINVOICE_GETLIST</b> for more info check the Documentation of this FM.
Regards
Prabhu

Similar Messages

  • FM or BAPI to get Policy Details based on BP

    Hi All,
    Do any one know a Function Module or Bapi that I can use to find out the Policy Details Like
    Policy number,
    Brand,
    Status,
    Coverage,
    Inception date.
    Based on Business Partner.
    Thanks in advance
    Divya.

    Hi Ramesh  ,
    there is no Direct BAPI to get the List of Invoices ,But based on the Vendor list u can get the List .
    pass Vendor list , Document Dates.
    <b>BAPI_INCOMINGINVOICE_GETLIST</b> for more info check the Documentation of this FM.
    Regards
    Prabhu

  • Function Module to get PO details based on Plant and PO date

    Hi
    1. Is there any Function Module to get PO details based on Plant and PO date?
    2. Is there any Function Module to get Material document details based on PO number?
    Thanks
    Narendra

    hi,
    check these standard reports.
    ME2L - By vendor
    ME2M - By material
    MSRV3 - By service
    ME2K - By account assignment
    ME2C - By material group
    ME2B - By tracking number
    ME2N - By PO number
    ME2W - By supplying plant
    also chck this func module.
    REPL_LIST_PURCHASE_ORDER_READ
    reward if hlpful.

  • How to get Invoice Details in 11i ?

    Hi All,
    Can anyone please suggest a query to get Invoice Details consisting PO Number and requester Name that are shown in notification of Oracle Apps Version 11i. I have created a query to get all other details consisting of Invoice Number, Supplier, Supplier Site etc except Po Number and Requester Name.
    Currently I am getting following values for PO:
    PO Number: Multiple POsCan anyone please suggest from where 'Multiple Pos' is fetched?
    Regards,
    Meghana

    HI Meghana,
    Can anyone please suggest a query to get Invoice Details consisting PO Number and requester Name that are shown in notification of Oracle Apps Version 11i. I have created a query to get all other details consisting of Invoice Number, Supplier, Supplier Site etc except Po Number and Requester Name.please see if this can help you
    http://www.oracleerp4u.com/2010/06/ap-po-technical-link.html
    http://www.club-oracle.com/forums/invoice-payment-query-t2336/
    to get PO number against invoices at header level only
    ;) AppSmasTi ;)
    Sharing Is Caring

  • BAPI for getting contract details

    Hi,
    I need a BAPI for getting contract details. Please let me know if there is any such BAPI.
    Regards,

    hi,
    Check this FM FI_DOCUMENT_READ

  • How to get MRP Details based on OPEN PO's

    Hi Experts,
    Could you please help me in getting details related to open purchase orders based on MRP Exceptions and MRP line items.
    I need develop a report based on plant, I have found one function module "MD_MRP_LIST_API" to get these details, but this works only with the combination of material and plant.
    kindly tell me whether we have any tables other than FM's, so that I can pull out the report based on plants.
    BR/Sathya.

    Hi Puneetb,
    If you want data directly from the 0material infoObject in BW you can do 2 things:
    1. Edit the updaterule to your destination cube and determine the values in an ABAP routine
    2. Change the attributes to navigational in both infoObject and cube so you can use them in queries (in this scenario you allways display the current attribute values instead of the values when loading the data.
    Is this what you were looking for?
    Kind regard,
    Alex

  • BAPI to get PO details of a VENDOR

    Hi All,
    Is there any BAPI to get the PO details of a VENDOR ?
    While executong the BAPI it should ask for VENDOR number and for that vendor number it should show all the PO numbers.
    Let me know if their any BAPI similar to the above requirement.
    Thanks & Regards,
    Sabu

    Hi,
    try this FM  WRB_PO_GET_DETAILED_VENDOR
    here u'll get PO Detail of that vendor and other detail also.
    hope it'll help u.
    Regards,
    Sneha.
    Edited by: sneha kumari on Jul 8, 2009 2:52 PM

  • Function module to get invoice details ...

    Hi friends ...
    I need function module to get sales invoice details including items ....
    Thanks & Regards ..
    Ashish

    Hi Ashish,
    Try LB_BIL_INV_OUTP_READ_PRTDATA function module, this will help you..
    Regards,
    S. Sudagar

  • What's the bapi for getting document details ?

    hi,
    i'm trying to do F-22 things through BAPI, but there's one field in some screen that i can't find relative field in any structure of BAPI para., so i tried to get the details of the document created by F-22 to find where the field i'm looking for is stroed.
    so would you please tell me the bapi for getting document info.?
    thanks!

    Hi,
    Have you solved your problem?
    If not:
    Have you tried to debug your application and see what you have in your object just after doing GetByKey?
    The GetByKey method returns true if it founds the object, false if the key does not exist.
    In the DI Help File it is specified the key for a payment is the DocEntry...
    Regards
    Trinidad.

  • PM Work Orders Details based on  Equipment number

    Hi Friends
    I need some help on finding BAPI or FM for
    Plant Maintenance <u>Work Orders list </u><b>AND</b> <u>Work Orders Details </u>based on  Equipment Number [ if i proved  the Equipment Number as input result is  Work Orders Details of  Equipment no ] any doc....
    Thanks in advance ,
    Regards
    Ram

    Hi,
    I think you can get from AFIH Table.
    Regards,
    Satish

  • How to get ATINN value based on material number and Class Type ?

    I have below SELECT stmt code which gives the correct value of atwrt based on materil no and ATINN.
    However in quality system, it is failing because in quality system "atinn" value is not 0000000381. It is different.
    So how can I get ATINN(Internal characteristic) value based on material number and Class Type?
    -Obtain the batch characterstic value for the Material******************
      SELECT atwrt
        UP TO 1 ROWS
        INTO v_charvalue
        FROM ausp
       WHERE objek = mcha-matnr
         AND atinn = '0000000381'   " 'US80_FRENCH_ON_LABEL'
         AND klart = '001'.
    THANKS N ADVANCE.

    Hi SAm,
    use the Below function module to get the Atinn for Atwrt for thr Class and MAterial combination..
    CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
          EXPORTING
            classtype          = '023'       "Class type
            object             = w_object  "Material number with Leading zeros
            no_value_descript  = 'X'      "Default X
            objecttable        = 'MCH1'    "Table name Mara or MCH1 or MARC
          TABLES
            t_class            = t_class   "It return the Batch class available for the above combination
            t_objectdata       = t_char  "Return Batch characteristics(ATWRT) and their value ATINN in this table
          EXCEPTIONS
            no_classification  = 1
            no_classtypes      = 2
            invalid_class_type = 3
            OTHERS             = 4.
    Regards,
    Prabhudas

  • BAPI to get inbound delivery from material serial number

    BAPI to get inbound delivery number from material serial number?
    input---material serial number.
    output--inbound delivery number.

    Perhaps instead of using a BAPI you can code it like this.
    DATA:serial(10) TYPE n VALUE '0000340078',
    pos TYPE i VALUE 1.
    START-OF-SELECTION.
      WHILE pos <= 10 AND serial+pos(1) = 0.
        pos = pos + 1.
      ENDWHILE.
      REPLACE ALL OCCURRENCES OF '0' IN serial(pos) WITH space.
      WRITE serial.

  • How to get invoice price based on order date or delivery date?

    Hi,
    Our system is configured to create invoices with pricing based on date of delivery.
    But we have a number of customers who get pricing based on date of order.
    Right now, people are manually changing the price and then generating the invoice.
    Is it possible to:
    1) add a ZZ field in the customer master that indicates which pricing date to use?
    2) have SAP generate the invoice with the correct pricing date based on this selection?
    Thx.
    Andy Jacobs

    Hi Andrew,
    We do have the exact same problem.
    One solution would be to create a new order type. Within that new type you can specify what date should be proposed as pricing date by SAP.
    Unfourtantely, here we are not able to add a new type. Does anyone know how this can be solved in another way?
    Thanks,
    Tim

  • SAP standard FM or BAPI for getting customer details from condition record

    Can someone suggest some SAP standard BAPI or FM with the help of which we can get the customer details of all it's pricing conditions maintained in condition tables provided we have the condition record number with us.

    Hi,
    look at the below BAPI's
    BAPI_CUSTOMER_DISPLAY
    BAPI_CUSTOMER_GETDETAIL2
    Regards
    Sudheer

  • How to get Material details based on 0material in 0figl_o02 DSO

    Hi
    In Financial Accounting we have DSO for General Ledger: Line items (0FIGL_o02)  It contains Material no. for each transaction record but other material details like Qty used and price for that material and other related details are not present and also not in the Datasource 0fi_gl_4. Pls let me know the logic so that using the Material no. I can get the related details of material from any other infoprovider in BI.
    Thanks

    Hi Puneetb,
    If you want data directly from the 0material infoObject in BW you can do 2 things:
    1. Edit the updaterule to your destination cube and determine the values in an ABAP routine
    2. Change the attributes to navigational in both infoObject and cube so you can use them in queries (in this scenario you allways display the current attribute values instead of the values when loading the data.
    Is this what you were looking for?
    Kind regard,
    Alex

Maybe you are looking for

  • Sharepoint foundation 2013 search service crawl log

    Hi all, Whenever I try to open the crawl log in sharepoint foundation 2013 I am getting the following error. The error says nothing about the reason of failure to open the log. If just shows the co-relation ID in technical details. Correlation ID: d8

  • Blackberry PIN on my phone that got stolen

    I wanted to know, if my blackberry's PIN is linked with my blackberry account with Fido (Canadian company), does that mean that no one else can register that blackberry on the network? I just wanted to know since my unlocked blackberry curve 8900 was

  • Problem with ADO

    I have defined a view to get the data from an XMLTYPE table into relational form. I have a problem with opening this view with ADO and Delphi 6. If I define my view like this: CREATE OR REPLACE VIEW xml_test (versionsnr) AS SELECT extractValue(value(

  • Download Oracle Application Server 9.0.3

    Hi, I want to download Oracle Application Server 9.0.3(Enterprice Edition) which support Oracle forms and Reports. I go through the DOWNLOAD page in OTN, But It dircted to the Application Server 9.0.2. Where I can DOWNLOAD 9.0.3 version. Please help

  • Best Way to Transfer Data

    My 5 year old iMac recently died. I just purchased a new one and it arrived today. I have time machine back ups from the old iMac. Mt question is what is the best way to transfer the data from my time machine back up to my new mac? Should I use time