Trigger for invoice creation after POD Entry

Hi,
Is anyone familiar with the process surrounding POD? In BW, I am trying to extract to the POD time & date, but it looks as if thats impossible as it only sits in the change header. AEDAT holds the date, but AEDAT cannot be relied on as the only date of change....
Therefore, when a POD is entered, does it in turn launch a 601 goods movement or otherwise, or some other kind of event that would be equal to the POD date?
thanks
Ian

If want immediatly after completion POD billing document or any other requirement.If you want to trigger billing document automatically then set up Billing batch job every hour then system checks delivery due documents then it will do POD.

Similar Messages

  • Automatic Invoice creation after Final Settlement (in Route Accounting)

    Hello Gurus,
    could you please advise how to customize automatic Invoice creation after the Final Settlement.
    Now when we press final settlement in COCKPIT (or in Fast Entry) transaction we have new sales order for return (in case of return), then delivery for this order and posting GI for the delivery but we cannot achieve Invoice creation. In settlement log we can see Area: Invoices but they are missing there and system does not try create invoice.
    Please advise what we missed.
    Thank you in advance
    Regards,
    Igor

    Hello,
    could you please check object /DSD/TOUR if it is useful for this?
    This is for TOUR STATUS..
    For each activity, there will be dedicated status determined by the system??
    check with your DSD functional consultant (on customization), to identify the status in which authorization needs to be blocked..
    thank you
    Venkatesh

  • Func module/bapi  for invoice creation

    Any function module for invoice creation WITH REFERENCE TO A SALEORDER. ??

    Hi,
    check this FM:GN_INVOICE_CREATE or BAPI: BAPI_BILLINGDOC_CREATEMULTIPLE
    check this link also.
    BAPI for creating sales invoice
    Regards
    Appana

  • User Exits for Invoice creation ,cancellation and sales return

    Hi Gurus,
    Pl help me it's very urgent.
    I did not find any user exit invoice creation so i wrote the following code in include program
    MV60AF0B_BELEG_SICHERN.
    This code is to update the Z*table while saving invoice ,cancellation and sales return.
    The code modification is like below
          FORM BELEG_SICHERN                                            *
          Buchen Fakturabelege                                          *
    FORM BELEG_SICHERN.
      READ TABLE XVBRK INDEX 1.
      IF SY-SUBRC NE 0.
        CALL FUNCTION 'DEQUEUE_ALL'.
        MESSAGE S032.
        EXIT.
      ENDIF.
      IF SAMH_MOD = ON.
        EXPORT XKOMFK TO MEMORY ID 'SDBILLDL'.
      ENDIF.
      DATA: CALC_TYPE.
      IF REBATE_DETERMINED = 'Y'.
        CALC_TYPE = 'A'.
      ELSE.
        CALC_TYPE = 'I'.
      ENDIF.
    *{   INSERT         RD1K903017                                        1
    Work Area*********************
    data : wa_xvbrk type VBRKVB.
    data : wa_xvbrp type vbrpvb.
    data : wa_zmigo type zmigo.
    data : wa_vbrp type vbrp.
    Internal table Creation*******
    DATA:  BEGIN OF tab_XVBRP OCCURS 100.
             INCLUDE STRUCTURE VBRPVB.
    DATA:  END OF tab_XVBRP.
    data : begin of tab_vbeln occurs 10,
           vbeln type vbrk-vbeln,
           knumv type vbrk-knumv,
           end of tab_vbeln.
    data : tab_zmigo type table of zmigo.
    data : tab_vbrp type table of vbrp.
    *****Data declaration*************
    data : v_no_of_inv type i.
    data : v_vbeln_no(10) type n.
    data : v_last_inv_no(10) type n.
    data : v_first_inv_no(10) type c.
    data : v_tot_qty type i.
    data : v_frbnr type mkpf-frbnr.
    *******Ranges*********************
    ranges : r_vbeln for vbrk-vbeln.
    *****Populating IT****************
    tab_xvbrp[] = xvbrp[].
    describe table xvbrk lines v_no_of_inv.
    *}   INSERT
      CALL FUNCTION 'RV_INVOICE_DOCUMENT_ADD'
           EXPORTING
                VBSK_I           = VBSK
                WITH_POSTING     = 'A'
                PREISFINDUNGSART = CALC_TYPE
           IMPORTING
                VBSK_E           = VBSK
           TABLES
                XKOMFK           = XKOMFK
                XTHEAD           = XTHEAD
                XVBFS            = XVBFS
                XVBSS            = XVBSS
                XVBRK            = XVBRK
                XVBRP            = XVBRP
                XVBPA            = XVBPA
                XKOMV            = XKOMV.
    *{   INSERT         RD1K903017                                        2
    data : v_count type i,v_fkimg type i .
    data : v_no_of_records(10) type n.
    wa_xvbrk = xvbrk.
    ********Selecting the last rec no from ZMIGO
          select max( sr_no ) from zmigo into v_no_of_records.
    *****If Distribution channel is not ZB*********
    if  wa_xvbrk-vtweg ne 'ZB' and ( wa_xvbrk-fkart = 'ZRIN' or wa_xvbrk-fkart = 'ZRTE' ).
    if v_no_of_inv = 1.              " Process only when there is one invoice
    loop at tab_xvbrp into wa_xvbrp  where (           matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
    v_fkimg = wa_xvbrp-fkimg .
    v_fkimg = v_fkimg / 1000.
                do v_fkimg times.
                  v_no_of_records = v_no_of_records + 1.
                  wa_zmigo-sr_no = v_no_of_records.
                  wa_zmigo-po_no = wa_xvbrk-vbeln.
                  wa_zmigo-item_no  = wa_xvbrp-posnr.
                 wa_zmigo-mblnr  = wa_xmkpf-mblnr.
                  wa_zmigo-doc_type = wa_xvbrk-fkart.
                  wa_zmigo-posting_date = wa_xvbrk-fkdat.
                  wa_zmigo-created_on = sy-datum.
                  wa_zmigo-created_time = sy-uzeit.
                 wa_zmigo-bill_lno = v_frbnr.
                  wa_zmigo-material = wa_xvbrp-matnr.
                 wa_zmigo-inv_no = wa_xvbrk-vbeln.
                 wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                  wa_zmigo-plant = wa_xvbrp-werks.
                  wa_zmigo-inv_date = wa_xvbrk-fkdat.
                  wa_zmigo-customer = wa_xvbrk-kunag.
                  wa_zmigo-unit = 1.
                  wa_zmigo-mtype = '601'.
                  insert into zmigo values wa_zmigo.
                enddo.
                clear : wa_zmigo.
    endloop.
    clear : v_count,v_fkimg,wa_zmigo.
    refresh tab_zmigo[].
    clear v_no_of_inv.
    else.                              "When there are Split Invoices
    v_last_inv_no = wa_xvbrk-vbeln.
    v_vbeln_no = v_last_inv_no - v_no_of_inv + 1.
    v_first_inv_no = v_vbeln_no.
    sort tab_xvbrp by vbeln.
    loop at tab_xvbrp into wa_xvbrp  where (           matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
    v_fkimg = wa_xvbrp-fkimg .
    v_fkimg = v_fkimg / 1000.
                do v_fkimg times.
                  v_no_of_records = v_no_of_records + 1.
                  wa_zmigo-sr_no = v_no_of_records.
                  wa_zmigo-po_no = v_vbeln_no.                      "wa_vbrp-vbeln.
                  wa_zmigo-item_no  = wa_xvbrp-posnr.
                 wa_zmigo-mblnr  = wa_xmkpf-mblnr.
                  wa_zmigo-doc_type = wa_xvbrk-fkart.
                  wa_zmigo-posting_date = wa_xvbrk-fkdat.
                  wa_zmigo-created_on = sy-datum.
                  wa_zmigo-created_time = sy-uzeit.
                 wa_zmigo-bill_lno = v_frbnr.
                  wa_zmigo-material = wa_xvbrp-matnr.
                 wa_zmigo-inv_no = v_vbeln_no.
                 wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                  wa_zmigo-plant = wa_xvbrp-werks.
                  wa_zmigo-inv_date = wa_xvbrk-fkdat.
                  wa_zmigo-customer = wa_xvbrk-kunag.
                  wa_zmigo-unit = 1.
                  wa_zmigo-mtype = '601'.
                  insert into zmigo values wa_zmigo.
                enddo.
                clear : wa_zmigo.
    at end of vbeln.
    v_vbeln_no = v_vbeln_no + 1.
    endat.
    clear : v_count,v_fkimg,wa_zmigo.
    refresh tab_zmigo[].
    endloop.
    endif.                             "End of first 2nd IF.
    clear : v_no_of_inv, v_vbeln_no.
    endif.
    ****************Sales return************************************
    if  wa_xvbrk-fkart = 'ZRRE' and wa_xvbrk-vtweg ne 'ZB'.
    loop at tab_xvbrp into wa_xvbrp where (            matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
             v_fkimg = wa_xvbrp-fkimg.
             v_fkimg = v_fkimg / 1000.
             v_tot_qty = v_tot_qty + v_fkimg.
              do v_fkimg times.
                v_no_of_records = v_no_of_records + 1.
                wa_zmigo-sr_no = v_no_of_records.
                wa_zmigo-po_no = wa_xvbrk-vbeln.
                wa_zmigo-item_no  = wa_xvbrp-posnr.
                wa_zmigo-doc_type = wa_xvbrk-fkart.
                wa_zmigo-posting_date = wa_xvbrk-fkdat.
                wa_zmigo-created_on = sy-datum.
                wa_zmigo-created_time = sy-uzeit.
                wa_zmigo-material = wa_xvbrp-matnr.
               wa_zmigo-inv_no = wa_xvbrk-vbeln.
               wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                wa_zmigo-plant = wa_xvbrp-werks.
                wa_zmigo-inv_date = wa_xvbrk-fkdat.
                wa_zmigo-customer = wa_xvbrk-kunag.
                wa_zmigo-unit = 1.
                wa_zmigo-mtype = '651'.
                condense wa_xvbrk-xblnr.
                wa_zmigo-reference = wa_xvbrk-xblnr.
    ********Bill of lading no**
               select single bill_lno from zmigo_final into v_frbnr where inv_no = wa_xvbrk-xblnr and material = wa_xvbrp-matnr.
               if sy-subrc eq 0.
               wa_zmigo-bill_lno = v_frbnr.
               endif.
                insert into zmigo values wa_zmigo.
              enddo.
              clear : wa_zmigo,wa_xvbrp , v_fkimg, v_frbnr.
    endloop.
    endif.
    *******Invoice Cancellation*****************************
    if  wa_xvbrk-fkart = 'ZRS1' and wa_xvbrk-vtweg ne 'ZB'.
    delete tab_xvbrp[] where shkzg eq 'X'.
    loop at tab_xvbrp into wa_xvbrp where (            matnr ne 'CDGSTP0001'       and
                                                       matnr ne 'CD-RW'            and
                                                       matnr ne 'CD-RW65OHS'       and
                                                       matnr ne 'CABLE'            and
                                                       matnr ne 'CD-R'             and
                                                       matnr ne 'CDQ80N4'          and
                                                       matnr ne 'GENERAL'          and
                                                       matnr ne 'NERO'             and
                                                       matnr ne 'OTHERS'           and
                                                       matnr ne 'SPARE PARTS'      and
                                                       matnr ne 'PROMO ITEM'       and
                                                       matnr ne 'PROMO-1'          and
                                                       matnr ne 'PROMO-2'          and
                                                       matnr ne 'PROMO-3'          and
                                                       matnr ne 'PROMO-4'          and
                                                       matnr ne 'PROMO-5'          and
                                                       matnr ne 'PROMO-6'          and
                                                       matnr ne 'PROMO-7'          and
                                                       matnr ne 'PROMO-8'          and
                                                       matnr ne 'PROMO-9'          and
                                                       matnr ne 'PROMO-10' ).
             v_fkimg = wa_xvbrp-fkimg.
             v_fkimg = v_fkimg / 1000.
             v_tot_qty = v_tot_qty + v_fkimg.
              do v_fkimg times.
                v_no_of_records = v_no_of_records + 1.
                wa_zmigo-sr_no = v_no_of_records.
                wa_zmigo-po_no = wa_xvbrk-vbeln.
                wa_zmigo-item_no  = wa_xvbrp-posnr.
                wa_zmigo-doc_type = wa_xvbrk-fkart.
                wa_zmigo-posting_date = wa_xvbrk-fkdat.
                wa_zmigo-created_on = sy-datum.
                wa_zmigo-created_time = sy-uzeit.
                wa_zmigo-material = wa_xvbrp-matnr.
               wa_zmigo-inv_no = wa_xvbrk-vbeln.
               wa_zmigo-inv_item_no = wa_xvbrp-posnr.
                wa_zmigo-plant = wa_xvbrp-werks.
                wa_zmigo-inv_date = wa_xvbrk-fkdat.
                wa_zmigo-customer = wa_xvbrk-kunag.
                wa_zmigo-unit = 1.
                condense wa_xvbrk-zuonr.
                wa_zmigo-reference = wa_xvbrk-zuonr.
                wa_zmigo-mtype = '602'.
    ********Bill of lading no**
               select single bill_lno from zmigo_final into v_frbnr where inv_no = wa_xvbrk-xblnr and material = wa_xvbrp-matnr.
               if sy-subrc eq 0.
               wa_zmigo-bill_lno = v_frbnr.
               endif.
                insert into zmigo values wa_zmigo.
              enddo.
              clear : wa_zmigo,wa_xvbrp , v_fkimg.
    endloop.
    endif.
    clear : v_no_of_records.
    *}   INSERT
      CALL FUNCTION 'STACK_RESET'.
      R185D-DATALOSS = SPACE.
      FOLGEAUFRUF102 = SPACE.
      PERFORM SETPAR_INIT.
    *{   INSERT         RD1K903017                                        3
    *}   INSERT
      LEAVE.
    ENDFORM.
    This program is working fine for single user but in production where no of people are creating the invoices from different places the data is not getting updated in table ZMIGO.
    sometime populating with wrong data , partial data and sometimes no updation at all.
    I have used the table locking system enqueue and dequeue FM's before n after updation but still the same
    thing is happening.
    What could be the reason.
    Looking for help very urgent any other alternate option.

    Hi,
    Go thru these..
    Enhancement
    SDVFX009 Billing doc. processing KIDONO (payment reference numbe
    SDVFX010 User exit item table for the customer lines
    SDVFX011 Userexit for the komkcv- and kompcv-structures
    V05I0001 User exits for billing index
    V05N0001 User Exits for Printing Billing Docs. using POR Procedu
    V60A0001 Customer functions in the billing document
    V60P0001 Data provision for additional fields for display in lis
    V61A0001 Customer enhancement: Pricing
    SDVFX001 User exit header line in delivery to accounting
    SDVFX002 User exit for A/R line (transfer to accounting)
    SDVFX003 User exit: Cash clearing (transfer to accounting)
    SDVFX004 User exit: G/L line (transfer to accounting)
    SDVFX008 User exit: Processing of transfer structures SD-FI
    SDVFX007 User exit: Billing plan during transfer to Accounting
    SDVFX006 User exit: Tax line (transfer to accounting)
    SDVFX005 User exit: Reserves (transfer to accounting)
    Business Add-in
    SD_CIN_LV60AU02 BADI for billing
    If it is helpful rewards points
    Regards
    Pratap.M

  • Enehancement point/BADI/exit required for CO11 save after MSEG entry

    Hi Experts,
    I need a BADI/enhancement point(or include file)/user exit for CO11 production order confirmation for the following situation:
    1. After the 'save' button is pressed for order confirmation post   And
    2. After the insertion of  entry at MSEG table for the order no. is done.   Or
    3. after It just commits the 'save'd order confirmation at last before completing the CO11.
    where the values of the structure AFRUD(or any other name but same thing) i.e. the entered value of order no. and yield quantity,scrap quantity, rework quantity are available.
    Is there any one enhancement?
    [My enhancement will be triggered after the save button is clicked for CO11 tcode and an entry at MSEG for the order is inserted]
    Many many thanks in advanced.
    with warm regards,
    Samy

    What i can suggest is you need to debug it and implement it using the implicit enhancement concept.Its very much possible.
    Just debug it and find the point where data of mseg is updated after in subroutine creat an implicit enhancement and implement the logic.
    In case you need any more help for the same please do let me know.
    Regards,
    Nabheet Madan

  • Tax Amount for Invoice Creation using BAPI_INCOMNGINVOICE_CREATE ?

    Hi,
         I am using BAPI_INCOMNGINVOICE_CREATE function module for cearting Invoice for a PO with referrence to Goods Receipt. In this case got a problem that if i did GRC for 10 Quantity for a Line Item in PO which consists 20 Quantity then i need to caliculate Tax Amount and add it to the Gross Amount of Bapi Header Structure Field Gross_Amount.
    So can any suggest me how to pass caliculate Tax for only GRC and pass to Bapi Header Gross_Amount Filed.

    I thank you, need to calculate the tax first. Add this up with your header data. You can you below function module to calculate tax:
    CALCULATE_TAX_DOCUMENT
    CALCULATE_TAX_ITEM
    Kuntal

  • BAPI for invoice creation with reference SalesOrder

    hi Mr Anjireddy,
    i am able to create invoice with the bapi BAPI_BILLING_CREATEMULTIPLE, here i'm giving the RefDocNo of the SalesOrder, the invoice is generated but i'm not gettting the NetValue, TaxValue.
    plz give the information for that prob,
    eswar

    Hi Vinod,
    This is just idea.
    Get Purchase Requisition details using
    <b>BAPI_REQUISITION_GETDETAIL</b> and then use <b>BAPI_PO_CREATE1</b>. I think there is no Direct BAPI.
    *******Poorna*********

  • E-mail trigger for BP creation

    Hi
    We have a requirement where a e-mail needs to be triggered once a BP is created.
    Please provide me some inputs as to how to achieve the same
    regards
    Subhasis

    Hi Subhasis,
    The best way to do it, is to start a workflow that start when the standard event 'CREATED' of the object BUS100605 is triggered.
    to do it
    1 - go to transaction SWO1 create a sub type for the object BUS100605 and add a a method "SendMail".
    2- Go to transaction PFTC and create a worflow that start after the event 'created' of the BUS100605.
    3- In the workflow creae a tak that call you "SendMail" method.
    I Hope that this basic explanation will help you.
    regadrs
    Jacques

  • Notification for Partner creation after Supplier pre screening

    Hi,
      Is there any statndard notification sent when a business partner is created with the Role Vendor or Bidder after Pre-screening suppliers registered through SUS?
    Thanks,
    Sivagami.R

    Hi
    I have not tried this. I guess, Yes, ideally a notification should be sent.
    <u>Refer report - RBBP_NOTIFICATION_OFFAPP (Forward work items to other mail clients)</u><b>Also See Offline Approval!</b><u>http://help.sap.com/saphelp_srm50/helpdata/en/31/ec423b4ac8d506e10000000a11402f/frameset.htm</u>
    Refer to this link as well.
    <u>http://help.sap.com/saphelp_srm50/helpdata/en/c0/7a0859ee91d54aa48a69fb5d2c4089/frameset.htm</u>
    Regards
    - Atul

  • Vendor Invoice creation through EDI (Transaction MIRO)

    Dear All,
    We want to implement Vendor Invoice creation thro EDI .(Transaction
    MIRO)
    We are not finding any suitable EDI Function Module in SAP which
    would take care of more than 20 items and run a MIRO or any
    equivalent transaction .
    Can any one please advise if any Function module exists ? We need it for
    Invoice creation with GR reference as well as without GR reference .
    Thanks
    Sanjay.

    Thanks Naren,
    I will come back after checking the fn module.
    - Sanjay

  • Trigger workflow for MIRO invoice creation

    Hello,
    In standard functionning it is not possible to trigger the workflow for documents coming from MM.
    When using transaction MIRO and selecting invoice creation the created document has following value :
    BKPF-AWTYP = 'RMRP'. whereas creating it from FB60 results to BKPF-AWTYP = 'BKPF'.
    The problem is standard code checks AWTYP is not equal to 'RMRP' before creating event to start the standard workflow for invoice validation.
    Question : why sap doesn't allow workflow creation for invoices from MIRO?
    Thanks for your answers.
    Best regards,
    Laurent.

    Hi,
    here they are...
    WS20000397 MMIVBlockedP Treatment of inv. blkd for price, Log.IV
    WS20001004 MMIVToRel Release the Completed Log. IV Document
    WS00400026 MMIVquantity Treatment inv.blocked f.quantity reasons
    WS20001003 MMIVToCompl Complete the Parked Log. IV Document
    WS00400027 MMIVprice Treatment invoic.blocked f.price reasons
    All of these workflows are a one-step / one-level of approval and needs some workflow configuration at least for the agent assignments. For a full-blown workflow you should take these workflows as an example, how you could work with it.
    The last two workflows work with preliminary posting on the miro (transaction MIR7).
    Best regards,
    Florin

  • Blocking of Service Entry for Invoice Varification(MIRO) after acceptance

    Let me know is it possible for service entry,aftet it acceptance,  for Invoice Varification.
    Regards,
    Sanjay

    hi,
    you can reverse/invoke the acceptence of service entry sheet, in transaction code. ML81N.
    hope this may help you,
    regards,
    srinivas

  • BOR method for transaction FV60 - FI invoice creation

    All,
    I want to create a workflow step to create an incoming FI invoice.
    This is done using transaction FV60. Now, I call this using BOR object BKPF method CREATE.
    But this is an async method which only triggers event CREATED from object FIPP. A different object.
    I am able to catch the event for the termination of the task, but how do I know for sure this is the correct FIPP belonging by my just-entered FV60?
    Or is there another way to call FV60 in a workflow? It has to be one of many steps.
    Situation:
    The trigger for the workflow is an incoming image from the scanner.
    Workflowstep1: display image and determine type of invoice ( MM / FI ) and send it to person 2.
    In case of FI:
    Workflowstep2: FV60 for creation invoice and send it to person 3
    Workflowstep3: FIPP-CHANGE for entering additional data and send it to person 4
    Workflowstep4: FIPP-CHANGE for checks and approval,
    In case of MM:
    Workflowstep2: MIRO for creation invoice and send it to person 3
    Workflowstep3: BUS2081-EDIT for entering additional data and send it to person 4
    Workflowstep4: BUS2081-EDIT for checks and approval
    End step: booking of the invoice.

    The process I used in my project was is this:
    the user receives the image -> creates an invoice -> links the image to the invoice
    I created an event from the change documents of the dms object, when the DMS object was changed I used a function module as the receiver of the event (DRAW.Changed) and in it checked if the dms object was linked to an invoice. if so I raised another event to close the task (DRAW.LinkedToInvoice).
    Now the terminating event will be on the DMS document and you should have it's key in the beginning of the task.
    The link to the document was done by classification of the DMS document (incoive number & year) but it can also be done by creating a dms object (there isn't a standard one).

  • Insertion of contract in PO item after invoice creation

    Hello,
    Can any help me on this topic.
    I have a PO item which is already invoiced. After that, we cancel the invoice and we want to add a contract to that PO item. But the field "Contract" in ME22N is disabled.
    Can anyone help me on this plz?
    Thanks in advance.
    Anusha

    HI,
    Check the PO Screen layout-Field settings.
    This can be done by checking the Screen Layout out ,for the document type you want to Update the contact.
    See that in the screen layout and then go to the screen layout config (Material Management->Purchasing-> Purchase order->Define Screen Layout.)
    at the in the option -> selection group-->outline agreement-
    make the setting that it is optional entry.
    also check if there is a field setting done for Me22/ Me22n ( Since at some times the Screen layout is also mantained at T code level)
    make the setting that it is optional entry.
    Hope so this would help.
    Regards
    Anjanna

  • Invoice for Service order if POD activated

    Dear all,
    I have a query regarding the invoice creation for service order.
    Scenario is like, I have activated POD for customers. when I create a sales order for a product I have to create delivery for that sales order also. but I cant create invoice as I have activated POD for that customer. So I have go for POD first then only i can cretae invoice. This is ok with me.
    But I want to know
    1)  if I create a sales order with service item for same customer can i create invoice also? as delivery wont be there for service item. Will system allow me to create invoice with the reference service order?
    2) will system allow me to create cash invoice for Cash Sales order also? (with ref of cash sales order )
    thanks in advance
    Sanju

    Hi
    You can try FB70 T code.
    Best Regards

Maybe you are looking for

  • How can I see my podcast in itunes when I download directly from my iphone Podcast App

    Hi cannot see the podcast download in my mac. However I can see in the summary that I have capacity space took that audio. How can I manage my podcast via itunes? I am sure that it is so simple that I don´t know how itunes work. Thank J

  • Windows 7: Trust Relationship Error - Local Administrator Account Locked.

    I have 2 Windows 7 Professional machines that recently locked me out citing the "Trust Relationship between this workstation and primary domain failed".  I assumed all I would have to do is log in as local administrator and remove it from the domain

  • Looking for a case!

    Hey everybody, I'm looking for an iPhone 5 case, preferably dual layer and even a little thick (I like thicker cases for some reason ). I've tried the OtterBox Commuter but I don't like how the Apple logo is exposed. I have the Defender, but obviousl

  • Safari bunches words in web pages

    I have Safari 4.0.3 and I have been having trouble with web pages such as foxnews.com and espn.com where all of the word are bunched together. in foxnews.com the descriptions of the pictures are dropped down into the main part of the article, espn.co

  • Custom script execution error

    Hello, Iam trying to execute a custom logc script through DM and get the below error "RUN_LOGIC:Cannot find document/directory" I checked UJFS and the script file is in \ROOT\WEBFOLDERS\<Appset>\ADMINAPP\<Application name>\ Let me know if i need to d