RBKP vs RSEG - incoming invoice w/o PO

Dear All,
Please give a hand in this issue:
I created an incoming invoice in MIRO with WBS reference (no PO was involved into this process). There was two lines in MIRO when I created the document in MIRO (WBS were the same for both lines).
1. Using the number of MIRO-invoice I can see a record in RBKP.
2. In RSEG I haven't found any record using this document number.
3. In RSEG I can find only record with PO reference.
My questions:
1. Where are stored my document lines? I thought the should be in RSEG but they aren't... How does this work?
2. How can I connect my MIRO document items (that were booked w/o PO reference) to accounting document items (BKPF, BSEG)?
Thanks in advance,
Csaba
Edited by: Csaba Szommer on Aug 26, 2008 5:31 PM

Hello
Link between RBCO and BSEG:
1. select single * from RBKP where BELNR = RBCO-BELNR and GJAHR = RBCO-GJAHR.
2. concatenate RBCO-BELNR RBCO-GJAHR into AWKEY1.
3. select single * from BKPF where BUKRS = RBKP-BUKRS and GJAHR = RBKP-GJAHR
and BLART = RBKP-BLART and BUDAT =RBKP-BUDAT and TCODE = RBKP-TCODE
and XBLNR = RBKP-XBLNR and AWKEY = AWKEY1.
4. select * from BSEG where BUKRS = BKPF-BUKRS and BELNR = BKPF-BELNR
and GJAHR = BKPF-GJAHR.

Similar Messages

  • Extractor for RSEG incoming invoice table

    Does anyone know if there is a standard extractor that includes incoming invoices from table RSEG?  Also is there documentation somewhere on all of the standard extractors?

    Dorothy,
    I'm looking for the same extractor. Have you found the answer in the meantime?
    Thanks,
    Sigal.

  • RSEG (Document Item: Incoming Invoice)

    Hi Friends !
    Requirement is to pull the Incoming Invoice from the table RSEG. Could not find any standard extractor. Is there any standard extractor which I missed seeing? or do we need to create a generic datasource? Thanks.
    With Regards
    Rekha

    use
    Invoice verification Data source. 2lis_06_inv
    http://help.sap.com/saphelp_nw70/helpdata/en/57/dad06449114814919000e27dfb255e/frameset.htm

  • Relation between J_1IEXCHDR and rbkp and rseg

    Hii all ..i'm developing alv report for purchase register and i have to fetch taxes frm J_1IEXCHDR table...
    i'm able to fetch data frm rbkp and rseg tables but not able to fetch taxes from  J_1IEXCHDR table..can anyone help me hw to relate the exicse table to anyone table which i used above...below r the fields which i want to print in report program
    RBKP-BELNR,  RBKP-BUDAT,  RBKP-LIFNR ,  RBKP-RMWWR,  RBKP-GSBER ,   RBKP-WMWST1,  Rseg-wrbtr,  RSEG-BELNR,
    RSEG-MATNR,  RSEG-WERKS, RSEG-BUKRS,  RSEG-MENGE, J_1IEXCHDR-exbed,  J_1IEXCHDR-exaed,  J_1IEXCHDR-ecs,
    J_1IEXCHDR-exaddtax1....
    Edited by: venkat akella on Sep 12, 2009 1:40 PM

    Hi, 
    I Have done this report Just go through it..
    *& Report               :ZEXISMATCH
    *& ABAP Developer      :Manish Prakash
    *& Functional Analyst  :Mr. Suresh Yadav
    report  zexismatch.
    type-pools : slis.
    **************************************DATA Decleration*********************************
    data: fcat_it type slis_t_fieldcat_alv with header line.
    data: fcat_layout type slis_layout_alv.
    data: wa_event type slis_alv_event,
         i_event  type slis_t_event,
         i_listheader     type slis_t_listheader,
         l_sort           type slis_t_sortinfo_alv,
         wa_sort          type slis_sortinfo_alv,
         i_print          type slis_print_alv.
    data it_lfa1 like standard table of lfa1 with header line.
    tables: j_1iexchdr, j_1ipart2, rseg, bkpf, bsis.
    data: begin of wa,
          fawref type j_1ifawref,
          rdoc2 type j_1iexchdr-rdoc,
          budat type budat,
          lifnr type lifnr,
          exbed type j_1iexcbed,
          exaed type j_1iexcbed,
          ecs   type j_1iexcbed,
          exaddtax1 type j_1iexcbed,
          tottax type j_1iexcbed,
          belnr type bsis-belnr,
          dmbtr type dmbtr,
          exnum type j_1iexcdtl-exnum,
      name1 type lfa1-name1,
      end of wa.
      data: it_part2 like standard table of wa with header line.
      data: it_part23 like standard table of wa with header line.
      data it_rseg like standard table of rseg with header line.
      data: begin of bk.
        include structure bkpf.
        data lfbnr type rseg-lfbnr.
        data end of bk.
      data it_bkpf like standard table of bk with header line.
      data it_bkf like standard table of bk with header line.
      data off type i value 6.
      data: begin of bss.
        include structure bsis.
        data lfbnr type rseg-lfbnr.
        data end of bss.
      data it_bsis like standard table of bss with header line.
      data it_b like standard table of bsis with header line.
      data wa_b like line of it_b.
    ***************************Selection Screem*************************************************************
    selection-screen begin of block a with frame.
    select-options: s_date for j_1ipart2-budat,
                    s_typ  for j_1ipart2-trntyp,
                    s_yer  for j_1ipart2-docyr,
                    s_exg  for j_1ipart2-exgrp.
    selection-screen end of block a.
      select a~fawref a~budat b~rdoc2 b~lifnr b~exbed b~exaed b~ecs b~exaddtax1 b~exnum
        into corresponding fields of table it_part2 from j_1ipart2 as a inner join j_1iexcdtl as b
        on a~exgrp = b~exgrp
        and a~trntyp = b~trntyp
        and a~docno = b~docno
        and a~docyr = b~docyr where a~budat in s_date and a~trntyp in s_typ and a~docyr in s_yer and a~exgrp in s_exg.
    loop at it_part2 .
      it_part23-fawref = it_part2-fawref.
      it_part23-budat = it_part2-budat.
      it_part23-rdoc2 = it_part2-rdoc2.
      it_part23-lifnr = it_part2-lifnr.
      it_part23-exnum = it_part2-exnum.
      it_part23-exbed = it_part2-exbed.
      it_part23-exaed = it_part2-exaed.
      it_part23-ecs = it_part2-ecs.
      it_part23-exaddtax1 = it_part2-exaddtax1.
    collect it_part23.
    clear it_part2.
    endloop.
    refresh it_part2.
    it_part2[] = it_part23[].
        loop at it_part2 .
        it_part2-tottax = it_part2-exbed + it_part2-exaddtax1 + it_part2-exaed + it_part2-ecs.
        modify it_part2 transporting tottax.
        endloop.
       select belnr lfbnr from rseg into corresponding fields of table it_rseg
         for all entries in it_part2 where lfbnr = it_part2-rdoc2.
    select * from bkpf into corresponding fields of table it_bkpf
       where  bukrs = '7000' and gjahr in s_yer and tcode = 'MIRO' ."AND BLART = 'RE'.
    sort it_bkpf by awkey.
    data : w_len type i.
    loop at it_bkpf .
    w_len = strlen( it_bkpf-awkey ).
    w_len = w_len - 4.
    it_bkpf-awkey = it_bkpf-awkey+0(10).
    modify it_bkpf transporting awkey.
    endloop.
    sort it_rseg by belnr.
    sort it_bkpf by awkey.
    loop at it_bkpf .
    read table it_rseg with key belnr = it_bkpf-awkey.
    if sy-subrc = 0.
       it_bkpf-lfbnr = it_rseg-lfbnr.
       modify it_bkpf transporting lfbnr.
       else.
       delete it_bkpf.
    endif.
    *CLEAR it_bkpf.
    endloop.
    it_bkf[] = it_bkpf[].
    select bukrs hkont augdt augbl zuonr gjahr buzei belnr  shkzg dmbtr from bsis
      into corresponding fields of table it_b for all entries in it_bkpf
      where belnr = it_bkpf-belnr and bukrs = '7000'   and gjahr in s_yer "AND HKONT eq '6113'
       and ( hkont = '0000006113' or hkont = '0000006123' ).
    APPEND wa_b to it_b.
    loop at it_b .
      it_bsis-belnr = it_b-belnr.
    it_bsis-belnr = it_b-belnr.
      case it_b-shkzg .
        when 'S'.
          it_bsis-dmbtr = it_b-dmbtr.
        when 'H'.
           it_bsis-dmbtr = - it_b-dmbtr.
         WHEN OTHERS.
      endcase.
    collect it_bsis.
    endloop.
    sort it_bkpf by belnr.
    loop at it_bsis .
    read table it_bkpf with key belnr = it_bsis-belnr.
    if sy-subrc = 0.
      it_bsis-lfbnr = it_bkpf-lfbnr.
    modify it_bsis transporting lfbnr.
    endif.
    endloop.
    sort it_bsis by lfbnr.
    loop at it_part2 .
    read table it_bsis with key lfbnr = it_part2-rdoc2.
    if sy-subrc = 0.
      it_part2-belnr = it_bsis-belnr.
      it_part2-dmbtr = it_bsis-dmbtr.
    modify it_part2 transporting belnr dmbtr.
    endif.
    clear: it_part2, it_bsis.
    endloop.
    select * from lfa1 into corresponding fields of table it_lfa1
      for all entries in it_part2 where lifnr = it_part2-lifnr.
    loop at it_part2 .
    read table it_lfa1 with key lifnr = it_part2-lifnr.
    if sy-subrc = 0.
    it_part2-name1 = it_lfa1-name1.
    modify it_part2 transporting name1.
    clear it_lfa1.
    endif.
    endloop.
    *SORT it_part2 by belnr.
    perform get.
    fcat_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
      exporting
        i_callback_program     = sy-repid
        i_grid_title           = ''
        is_layout              = fcat_layout
        it_fieldcat            = fcat_it[]
        it_events              = i_event[]
        it_sort                = l_sort
        i_save                 = 'A'
        i_callback_top_of_page = 'TOP_OF_PAGE'
      tables
        t_outtab               = it_part2 " IT_PART2
      exceptions
        program_error          = 1
        others                 = 2.
    *&      Form  set_pf_status
          text
         -->RT_EXTAB   text
    form set_pf_status using rt_extab type slis_t_extab.
      set pf-status 'STANDARD_4'.
    endform.                    "set_pf_status
    *&      Form  get
          text
    form get.
      clear fcat_layout.
    fcat_layout-colwidth_optimize = 'X'.
      fcat_layout-zebra     = 'X'.
      fcat_layout-no_keyfix = 'X'.
      " SET_CELL_COLOURS
      clear fcat_it.
      fcat_it-fieldname = 'FAWREF'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
      fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Ex Doc. No.'.
      append  fcat_it.
       clear fcat_it.
      fcat_it-fieldname = 'EXNUM'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
      fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Invoice No.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'BUDAT'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Excise Dt.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'LIFNR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Vendor Code'.
      append  fcat_it.
    clear fcat_it.
      fcat_it-fieldname = 'NAME1'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Vendor Name'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'TOTTAX'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'Excise'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'BELNR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'MIRO Doc. No.'.
      append  fcat_it.
      clear fcat_it.
      fcat_it-fieldname = 'DMBTR'.
      fcat_it-tabname   = 'IT_PART2'."it_ltab
    fcat_it-no_zero   = 'X'.
      fcat_it-seltext_l = 'MIRO Excise'.
      append  fcat_it.
    endform.                    "get
    *&      Form  eventtab_build
          text
         -->LT_EVENTS  text
    form eventtab_build changing lt_events type slis_t_event.
      constants:
      gc_formname_top_of_page type slis_formname value 'TOP_OF_PAGE'.
    gc_formname_end_of_list TYPE slis_formname VALUE 'END_OF_LIST'.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
        exporting
          i_list_type = 0
        importing
          et_events   = lt_events.
      read table lt_events with key name =  slis_ev_top_of_page
                               into ls_event.
      if sy-subrc = 0.
        move gc_formname_top_of_page to ls_event-form.
        append ls_event to lt_events.
      endif.
    READ TABLE lt_events WITH KEY name =  slis_ev_end_of_list
                                INTO ls_event.
    IF sy-subrc = 0.
       MOVE gc_formname_end_of_list TO ls_event-form.
       APPEND ls_event TO lt_events.
    ENDIF.
    endform.                    "EVENTTAB_BUILD
    *&      Form  top_of_page
          text
    form top_of_page.
    *ALV Header declarations
      data del(150) type c.
      data del1(150) type c.
      data: t_header type slis_t_listheader,
            wa_header type slis_listheader,
              wa_header1 type slis_listheader,
              wa_header2 type slis_listheader,
               wa_header3 type slis_listheader,
                 wa_header4 type slis_listheader,
              t_line like wa_header-info,
            ld_lines type i,
            ld_linesc(100) type c.
      wa_header-typ  = 'H'.
      wa_header1-typ  = 'S'.
      wa_header2-typ  = 'S'.
      wa_header3-typ = 'H'.
      wa_header4-typ = 'H'.
      wa_header-info = 'HINDUSTAN PULVERISING MILLS'.
      wa_header1-info = '209-210 Anupam Bhawan ,  Azadpur, Delhi - 110033'.
      wa_header2-info = '----
      wa_header3-info = ld_linesc.
      wa_header4-info = del1.
      append wa_header  to t_header.
      append wa_header1 to t_header.
      append wa_header2 to t_header.
      append wa_header3 to t_header.
      append wa_header4 to t_header.
      clear wa_header.
      wa_header-typ  = 'S'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      append wa_header to t_header.
      wa_header-typ  = 'S'.
      append wa_header to t_header.
      clear: wa_header.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = t_header.
      I_LOGO                   = 'ENJOYSAP_LOGO'.
      I_END_OF_LIST_GRID       =
      I_ALV_FORM               =
    endform.                    "top_of_page
    *slis_ev_end_of_list

  • Account assignment of the incoming invoice and the purchase order

    Hi,
    I am trying to control the account assignment of an incoming invoice against the account assignment of the purchase order used. The link I found is the field ZEKKN. I think RBCO-ZEKKN tells me what account assignment of the purchase order (EKKN-ZEKKN) I am using (just as RSEG-EBELN and RSEG-EBELP help to point the item of the PO used in the invoice). This link is working pretty well in 99% of my Pos and invoices. But sometimes when I create an assignment line in the PO, this line is created with a key EBELN, EBELP, ZEKKN = ‘02’, even if any assignment was created wit an ZEKKN = ‘01’.
    In this case, when I park an invoice on this PO, the value of RBCO-ZEKKN is ‘01’ and not ‘02’ as in the table EKKN.
    It is very annoying because the control I implement blocks the posting of the invoice..
    Any idea or any new link between tables RBCO and EKKN will be very appreciable.
    Thanks in advance

    Hi, I've got the same issue if someones has a clue it would be very helpfull

  • Creating of incoming invoice automatically when documen info record created

    Hi all,
    I apologize because I am asking many questions on this forum during the last few weeks, but I have some problems which I can't solve by myself in one project.
    So, this time the question is about incoming invoices.
    Here is the situation:
    When our customer receives incoming invoice (in paper form) we scan it and send it to one Document management system. In that system we verify the invoice and approve it. After that step the document is released to SAP (only the document info record is created and that info record points to the original document (pdf file) in that DMS).
    Now the question is:
    Is it possible to automatically create incoming invoice (parked) when the document is released to SAP (it+s document info record created) and to create link between these two SAP objects? Basically it means that at the moment when doc. info record is created, the incoming invoice is created (only with mandatory data) and saved (parked).
    We need this functionality because our client wants to have the access to original document (pdf file) when he is about to finish the incoming invoice.
    So, is it possible to set up some parameters so that incoming invoice is created automatically after the document info record is created, and linked to that document info record?

    I was not aware that u have already done coding to create DIR in SAP. In that case u don't need to rely on status triggering, u may create the invoice prior to  DIR creation and then link it to the DIR.It can be done in the way u have mentioned. I.e. linking at the time of DIR with BAPI_DOCUMENT_CREATE.
    I doubt we have any direct link to Incoming Invoice from DIR. One of the options i can think of is linking DIR to EKPO(Purchase Order Item) which is mentioned in Invoice.
    Else u may need to add another object with object table "RBKP"
    Following link will help u in creating new Object for development of new screens [http://help.sap.com/saphelp_erp60_sp/helpdata/en/c1/1c31a243c711d1893e0000e8323c4f/frameset.htm]
    BAPI_DOCUMENT_CREATE2 is  the latest BAPI instead of BAPI_DOCUMENT_CREATE.
    Points Appreciated.

  • Park Incoming Invoice Problem

    Hi friends,
    One of my user was created a park incoming Invoice and after that created real invoice base on this park incoming invoice. But when I look the invoice, It was deleted. I want to create it again. But it was created before period. Now question. When I set invoice line in RBKP stats 2 (deleted) to A for this is it possible?
    How can I fix it. I need your help.
    Thanks
    Mehmet

    If you know the Parking Invoice & it is not deleted..
    Then Go to MIR4 enter Invoice Number & on top EDIT> Display/Change..
    in the Change Mode Simulate the Document & SAve..
    If the Parking Invoice is deleted, then you have to create a New Invoice through MIRO.
    By manually entering the details of Parking Invoice...

  • Posting incoming invoice

    Hi,
    I defined a new "Terms of Payment" in configuration and defined the appropriate cash discount percentage rate.  I also created a customer master record and assigned the newly created terms of payment.  Using this new master record, I successfully posted an invoice in AR using FB70.  Now, I am trying to post an incoming invoice using F-28.  But for some reason unknown to me, the terms of payment (that I just created and assigned to the customer master record) is not being shown in the "Post Incoming Payments Process Open Items" screen in the Cash discnt field. 
    I have no problems posting the invoice without the cash discount percentage rate.  However, when I manually try to give a discount rate, I get a warning message that says Cash discount-relevant amount is zero; check entry at the bottom left corner of the screen.  When I click this warning, I get a pop-up screen with the same message and message no. F5073.
    I am sure I am missing a key configuration step in this process, but am not able to understand where.  Any light you can throw on this situation is greatly appreciated.
    Thanks,
    Vijay.

    Hi,
    In the FB70 you can see the payment term in the tab Payments in the header data.
    In F-22, the payment term is displayed in the screen where you enter the amount for customer invoice.
    For payment transaction F-28 is not relevant as payment term is entered in invoice and the discount etc for that invoice is calculated based on that payment term. In F-28 you are just making the payment for the net amount. However you can change the discount amount here.
    ( Also check that in transaction OB41, Payment term is maintained as optional field in field status group Payment Transactions for posting key 31.
    Also go to FS00 for the reconciliation account assigned to your vendor, the go to tab 'Create/bank/interest" and double click on the field status gorup.Check that in group Payment Transactions, the field Payment term is marked as optional field.)
    Regards,
    Gaurav

  • EDI - Incoming Invoice Error and GR based Invoice Verification - 51 No GR

    Hi,
    We are implementing EDI for incoming invoices and use Goods Receipts based Invoice Verification.  When processing an inbound IDOC Invoice (type INVOIC01) where the Goods Receipt has not yet been posted, then Inbound IDOC is siiting at Error Status, 51 - No GR documents found.
    Is there any way we can process this as a Parked Invoice or for Verification in the background (MIRA)?  because the current situation is a problem, as 95% of our Inbound Invoices will be received electronically before the Goods are Received. 
    The actual Vendor's delivery note is stored in the segment E1EDP02 (Qualifier 016), field BELNR.
    Currently the IDOC as to sit in error until the Vendor's Delivery Note is Goods Receipted which can be several days later - SAP OSS Note 393883 fro 2001 suggests doing this, but surely this is a common situation.  The IDOC sitting in error in WE02 in the list of IDOCs is difficult to isolate from true errors.
    If this is was mnaul Invoice it could be processed through MIRA for background Invoice Verification later with program RMBABG00.
    We havd SAP version ECC 6.0
    I have spotted OSS Note 501524 which implies that is possible automatically Park Incoming EDI IDOC Invoices, has anyone tried this?  and what would be the transaction/program that could be used to post several at once when the GR has been processed (similar to RMBABG00)

    Hi ,
    You can use the program   RBDMANI2   which will reprocess all the IDOCs (EDIinvoices )that have failed . You can schedule this program in the background and it will post all failed invoices which have the GR posted later .
    We had the same scenario and we have scheduled this program as a daily job at night .
    Regards,
    Hari.

  • Error in BAPI while creating incoming invoice

    Hi Experts,
    Im creating incoming invoice by using the BAPI,  'BAPI_INCOMINGINVOICE_CREATE'.
    when im going to posting my invoice it is showing the error like 'EDI: Error in customizing for differential invoicing'.it is a urgent requirement and need to solve this ASAP.Pls help me out with this error
    Im passing following parameters to BAPI:
    wa_header-invoice_ind = 'X'.
    wa_header-doc_date   =  sy-datum.   "Enter the document date
    wa_header-pstng_date = sy-datum .   "Enter the posting date
    * wa_header-ref_doc_no = '5000008590'.
    wa_header-comp_code = '1000'.
    *wa_header-gross_amount = '50.11'.  "Enter the gross amount(aft. tax) for the invoice
    *wa_header-calc_tax_ind = 'X'.
      wa_header-currency = 'INR'.
      wa_header-INV_TRAN = 'X'.
      wa_header-SIMULATION = 'X'.
    wa_item-invoice_doc_item = '000001'.
    wa_item-po_number = '3700000557'.    "Enter the PO number
    wa_item-po_item = '00010'.           "Enter the PO item number
    * wa_item-ref_doc = '5000008590'.      "Enter the GR number
    * wa_item-ref_doc_year = '2014'.       "Enter the GR fiscal year
    * wa_item-ref_doc_it = '0001'.         "Enter the GR item number
    * wa_item-tax_code = 'V0'.             "Enter the tax code applicable
    wa_item-item_amount = '50.60'.     "Enter the item amount
    * wa_item-quantity = '2380'.           "Enter the invoice quantity
    * wa_item-po_unit = 'EA'.              "Enter the UoM
    APPEND wa_item TO it_item.
    CALL FUNCTION 'BAPI_INCOMINGINVOICE_CREATE'
       EXPORTING
         headerdata                = wa_header
    * *   ADDRESSDATA               =
      IMPORTING
        invoicedocnumber          = g_invno
        fiscalyear                = g_fyear
       TABLES
         itemdata                  = it_item
    * *   ACCOUNTINGDATA            =
    * *   GLACCOUNTDATA             =
    * *   MATERIALDATA              =
    * *   TAXDATA                   =
    * *   WITHTAXDATA               =
    * *   VENDORITEMSPLITDATA       =
         return                    = it_ret
    * *   EXTENSIONIN               =
    IF g_invno IS NOT INITIAL.
       CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT          = 'X'
    * *   IMPORTING
    * *     RETURN        =

    Thanks every one for your valuable solutions.
    Issue is Solved by unchecking the flag.
    wa_header-INV_TRAN = 'X'.
    Thanks & Regards,
    Ramjee.

  • F-28 incoming Invoice Posting Discount Splitting

    Hi All,
    I am using BDC for F-28  T Code to post incoming Invoice posting
    but the issue is while posting the discount amount if i send 60 Rs through file it is splitting into 30 and 30
    Not exactly  50-50
    I am unable to get on what basis the amount is splitting.
    I hvae to asssign Cost and Profit Center to the Discount amount .
    But how many parts the Dicount amount is splitting is th issue.
    Pls Help Me.
    regards
    Venu Madhav

    pls. send u r code if possible..
    Thanks,
    Mahesh Kumar.

  • DMS document attachment with Incoming Invoice

    Hi All,
    We are creating one DMS document and want to attach it to an Incoming Invoice (MIRO).
    We are using the bapi BAPI_DOCUMENT_CREATE.  What are the fields to pass in Objectlink.
    Please help us to achieving it.
    Thanks

    We have created an Incoming Invoice already using 'BAPI_INCOMINGINVOICE_CREATE'. We are now creating a DMS document using 'BAPI_DOCUMENT_CREATE' and want it to be linked to the existing Invoice. For this we are trying to use the 'OBJECTLINKS' table.
    The linked document should be visible in T-Code FBL1N. Can you please throw some light on how to do this?
    Edited by: Himansu.P on Jun 14, 2011 3:06 PM

  • Incoming invoice from third party system

    Hi All,
    Could you please help in choosing functional module or bapi or badi's for incoming invoices that are receiving from third party system. I have no ideal about that but the SAP has to be loaded using idocs. what is the reason to choose the above ones
    Thanks in advance for response.

    Why not starting with docu?
    The general process  is explained well in help.sap.com
    As a service, put this into your Google: vendor invoice edi site:help.sap.com

  • Calculate due on date in incoming invoice based on p.date of purchase order

    We would like to calculate due on date in incoming invoice based on posting date of purchase order position. We want to be able to see the posting date of the purchase order lines from miro transaccion. Then we would add 85 days to calculate the due on date. I have tried to create an "item list variant" from OLMRLIST transaccion (Customizing - Logistics invoice verification) and add the posting date but it is not possible to access this value.
    Thanks in advance.

    Hi,
    have a look at badi MRM_PAYMENT_TERMS.
    Check as well OSS Note 1156325 - BAdIs in the Logistics Invoice Verification environment
    Best regards.

  • Capture the Freight charges from incoming invoice

    Hi Guru,
    The requirement is to capture the Freight charges from incoming invoice . Is it possible to capture that amount in INVOIC01 idoc.
    The Analysis what I have done is INVOIC01 IDOC type is having only two segments (E1EDS01,E1EDP26)  with Amount field . Based on the qualifier the value is getting populated . My assumption is, if we find the right qualifier for freight this may get resolved .Please let me know if there is anyother way or rigt qualifier for capturing thefrieght charge
    The FM to post is ZIDOC_INPUT_INVOIC_MRM.Pls find the attached screenshot too.

    Hope you have not read the Invoice Idoc type whcih is used for EDI invoice.
    The Invoice idoc type does not support the functionality of Planned delivery costs ( Freight )
    Please go through the link
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/44/f50abcea3b11d194dc0000e83dd751/content.htm

Maybe you are looking for

  • Remove duplicates in "Compilations" folder

    I have found a lot of duplicate files in the ~/Music/iTunes/iTunes Music/Compilations folder. Most of the discussions I have found ignore files in the Compilations folder. Are there any utilities to handle this chore, I have over 4,000 songs. Also wh

  • Photostream and iCloud Photo Library Mutually Exclusive??

    I turned on the iCloud Photo Library on Monday after upgrading my devices to iOS 8.1.  I recently noticed that the Photostream portion of the Photos app disappeared, and I can no longer see any of my wife's photos in my library (she is not using iClo

  • Where are all the new DVD's that were releasd this week?

    Am I missing something? Indiana Jones was releases on DVD on May Ft. I thought that as of May 1st all new releases were going to be available on Apple TV at the same time.

  • Firefox won't start due to bookmarks

    Thank you for your help. In order to get Firefox to start on my computer, I have to open the program multiple times (killing the process in between tries). To troubleshoot why this is occurring I backed up my settings, created a new profile, and tran

  • Query Tune - Expensive Window sort.

    I want some advise to tune this query. My database version: SQL> SELECT * FROM v$version; BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi PL/SQL Release 10.2.0.5.0 - Production CORE    10.2.0.5.0      Production TNS for IBM/AI