WHT for MIRO

Hi all,
When am posting a (frieght cost to material) document thro MIRO transaction TDS is not geeting calculated but if i try to post it thro FB60 the system is calculating the TDS.
As frieght has to been loaded to Material,i am not having the option to post the document via FB60 as the G?L code is auto posted.
Can any one let me know why the system is not calculating the TDS part in MIRO but in FB60.
Any config has to be done from MM point of view.
Regards

Hi,
Check whether the freight condition type is defined in Purchasing calculation schema and see that the steps will add the
freight cost to the basic price.
Regards,
Sadashivan

Similar Messages

  • Print out put for miro and incomming excise invoice(j1iex)

    Hi guru's
    my client need print out for miro and incoming excise invoice.Plz help me in configuring them.
    thanks
    with regards

    hi,
    Do check the NACE transaction...
    Message schema is nothing but a program which will come into action whenever there will any need of output...
    So, check your message schema...Define the output type as per your requirement...
    Condition table consist of all those Fields which will be taken into consideration, whenever you trigger the message output...and those fields will be taken into consideration for the req. output...
    Access seq. will provide you the scequence in which the fields are be read and perform an output...
    At last printer determination is main, by which you'll print output...
    hope it helps..
    Regards
    Rahul.

  • BADI/USER EXIT for MIRO.

    Hi All
    I have added a new field (GST) on MIRO screen using GUI XT.
    The requirement is such that I need to populate this field after I have entered the purchase order no (It needs to take the vendor from the PO and then its subsequent VAT no from the vendor master). I am not sure where to do this part of the coding.
    i have tried to implement BADIs
    BADI_ENJ_ALT_ADR
    INVOICE_UPDATE
    BADI_FDCB_SUBBAS01
    but it doesn't help.
    Is there any other BADI/User Exit that I can try.
    Thanks in advance.
    Harsh

    Hi,
    Bellow are the exit names for MIRO.
    <Irrelevant enhancement list removed by moderator>
    Regards,
    Goutam Kolluru.
    Edited by: Vinod Kumar on Feb 3, 2012 9:34 AM

  • Purchase Order list pending for MIRO days wise

    i want to know t.code for outstanding Purchase order list dayswise which is pending for Miro....for example payments will be in 15days 30days which is mention in P.O.
    Thanks & Regards
    Rekha Sharma

    Hello,
    Please check MR11
    Regards,
    Ravi

  • UserExit for MIRO transaction

    Dear All,
               I have to Change the Base Line Date in MIRO transaction with the GR Posting Date while booking the Incoming Invoice..i.e BSIK-ZFBDT date i have to change it with MKPF-BLDAT...
    I have tried all of the UserExits for MIRO transactions. but did not work...
    Can any body tell me any alternate way.e.g BADI or something..
    Regards,
    Rushikesh

    Have a look at below code which lists BADI for particular tcode. It might help you.
    *& Report  ZBADI                                                       *
    REPORT  zbadi                                   .
    TABLES : tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode,
    p_pgmna LIKE tstc-pgmna .
    DATA wa_tadir TYPE tadir.
    START-OF-SELECTION.
      IF NOT p_tcode IS INITIAL.
        SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
      ELSEIF NOT p_pgmna IS INITIAL.
        tstc-pgmna = p_pgmna.
      ENDIF.
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir
        WHERE pgmid = 'R3TR'
        AND object = 'PROG'
        AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir
          WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir
            WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir
            WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir
            WHERE pgmid = 'R3TR'
            AND object = 'FUGR'
            AND obj_name EQ enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
        SELECT * FROM tadir INTO TABLE jtab
        WHERE pgmid = 'R3TR'
        AND object IN ('SMOD', 'SXSD')
        AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct
        WHERE sprsl EQ sy-langu
        AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(105) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
          SORT jtab BY object.
          DATA : wf_txt(60) TYPE c,
          wf_smod TYPE i ,
          wf_badi TYPE i ,
          wf_object2(30) TYPE c.
          CLEAR : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
          LOOP AT jtab INTO wa_tadir.
            AT FIRST.
              FORMAT COLOR COL_HEADING INTENSIFIED ON.
              WRITE:/1 sy-vline,
              2 'Enhancement/ Business Add-in',
              41 sy-vline ,
              42 'Description',
              105 sy-vline.
              WRITE:/(105) sy-uline.
            ENDAT.
            CLEAR wf_txt.
            AT NEW object.
              IF wa_tadir-object = 'SMOD'.
                wf_object2 = 'Enhancement' .
              ELSEIF wa_tadir-object = 'SXSD'.
                wf_object2 = ' Business Add-in'.
              ENDIF.
              FORMAT COLOR COL_GROUP INTENSIFIED ON.
              WRITE:/1 sy-vline,
              2 wf_object2,
              105 sy-vline.
            ENDAT.
            CASE wa_tadir-object.
              WHEN 'SMOD'.
                wf_smod = wf_smod + 1.
                SELECT SINGLE modtext INTO wf_txt
                FROM modsapt
                WHERE sprsl = sy-langu
                AND name = wa_tadir-obj_name.
                FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
              WHEN 'SXSD'.
    For BADis
                wf_badi = wf_badi + 1 .
                SELECT SINGLE text INTO wf_txt
                FROM sxs_attrt
                WHERE sprsl = sy-langu
                AND exit_name = wa_tadir-obj_name.
                FORMAT COLOR COL_NORMAL INTENSIFIED ON.
            ENDCASE.
            WRITE:/1 sy-vline,
            2 wa_tadir-obj_name HOTSPOT ON,
            41 sy-vline ,
            42 wf_txt,
            105 sy-vline.
            AT END OF object.
              WRITE : /(105) sy-uline.
            ENDAT.
          ENDLOOP.
          WRITE:/(105) sy-uline.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No.of Exits:' , wf_smod.
          WRITE:/ 'No.of BADis:' , wf_badi.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(105) 'No userexits or BADis exist'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(105) 'Transaction does not exist'.
      ENDIF.
    AT LINE-SELECTION.
      DATA : wf_object TYPE tadir-object.
      CLEAR wf_object.
      GET CURSOR FIELD field1.
      CHECK field1(8) EQ 'WA_TADIR'.
      READ TABLE jtab WITH KEY obj_name = sy-lisel+1(20).
      MOVE jtab-object TO wf_object.
      CASE wf_object.
        WHEN 'SMOD'.
          SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
          CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
        WHEN 'SXSD'.
          SET PARAMETER ID 'EXN' FIELD sy-lisel+1(20).
          CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
      ENDCASE.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • BAPI for MIRO Incoming Invoice

    Hi All,
    I want BAPI for MIRO Posting ie for Incoming Invoice.
    .here MIRO is being done with Delivery Note number
    Following are the necessary entries for MIRO Posting
    Invoice date
    Reference
    Amount
    Calculate Tax
    Tax amount
    Delivery Note
    Vednor
    Business Area
    Please suggest me suitable BAPI for MIRO Incoming Invoice Posting with sample code.
    immediately.Please give some sample code for my reference.
    Rewards will be given.
    Regards.
    Ulhas

    Hi,
    BAPI for Invoice Verification: Post Invoice
    BAPI_INCOMINGINVOICE_CREATE
    The method can only carry out your function if no error messages were
    generated in the Return table. This is the case if the header data and
    all the items were processed successfully.
    Transaction control is not implemented. The calling program therefore
    has to execute the Commit Work itself after this method has been
    successfully called (in other words, if no errors were reported in the
    Return parameter).

  • Tax Ammount not coming when we are going for miro

    Dear Sap
    we have Recept material (101) Against PO then Capture & Post Excise Bill ,But when we go for MIRO that a time tex amunt not coming,while in po & Excise it have mantained as per same

    Hi, there is 2 fields of Tax code in MIRO, 1 at the item level & 1 at header level,
    If you maitain tax code in PO, it will only show at item level, whereas the header level tax code comes from the configuration that you have maintained for default tax code.
    So have you changed the header tax code as maintained in PO, and put a tick on "Calculate Tax", Check

  • E mail facility for MIRO doc from R3 to mail server.

    Dear All,
    Is ther any E mail facility available for MIRO doc from R3 to mail server?
    I want to fire e mail for each MIRO document which is posted in SAP R3 with the detail of MIRO doc number & respective PO number to concern person.
    Thanks.
    Upesh.

    hi
    checkout with ur technical consultants
    use workflow for triggering auto mails
    Re: MIRO workflow.
    regards
    kunal

  • Payment release workflow for MIRO documents

    Hi,
    I have activated payment release function and successfully able to get workflow item for payment release for FI invoices posted through F-43 and FB60, but not on RE documents which are posted through MIRO,
    Can some body provide inputs on how to trigger a payment release workflow for MIRO documents.
    Thanks
    Amanullah

    Hi Amanullah, How are you?
    Did you get an answer about this situation ? I am trying to do the same thing by FI or by MM and I'm worrying if we can to do by Standard SAP. In FI I'm trying to do via spro:
    SAP Customizing Implementation Guide=>Financial Accounting=>Accounts Receivable and Accounts Payable=>Business Transactions=>Release for Payment
    Did you remember how can you get the solution?
    Thanks and regards,
    Jeovana

  • Payment blocking for MIRO invoice.

    Hi,
        We Need to build Payment release workflow for MIRO invoice.
        If the invoice amount exceeds 10000, that line item need to be blocked and shoudl be sent a mail for approval.
        My doubt is, whether the  payment blocking is done by configuration settings or will workflow take care of that one?
        Requirement is, line item should be blocked automatically while posting the doc in MIRO.
        If it can be done by configuration, could anybody suggest the path to do so.
        Thanks,
        Shyam.

    I would try another SDN forum.

  • Problem in BDC for MIRO.....................

    Hi friends,
    I am using BDC for MIRO....In screen number 6220 where POs and items are to filled in table control where i need to fill 100 records... When i am using page down option during recording it is capturing function code as /OO .But while running BDC program this function code /OO is becoming ineffective..means page down is not happening when '/OO'  is executed....can anybody help me out in what can be done in solving the problem...
    Regards.

    Hi Raju,
    But our requirement is to to do the recording only till all the items are filled in the pop up screen..As no page-down button is available in the screen...i guess that is why page-down activity done from key-board is not working fine......Any suggestions from ur side........
    Regards.

  • Validation for MIRO

    I want" Bussines area & Section Code "
    So i created the validation for all vendor transaction ie. FB60,F-43,F-48 & MIRO.
    Validation is based on
    Tcode & Account type
    But i m not getting the compulsory field for MIRO.
    For all other transation i m getting the right validation.
    Then Why it doesnt take for MIRO?
    What will be the sollution for that?
    Plz tell me.

    Hi,
    Do you want to subsittute the GSBER in tax line item in MIRO?
    if yes, then it works as design.In general taxes should not be
    posted with business area as per note 199886. Therefore GSBER
    is coded to be deleted when postings do not happen directly in FI.
    Due to technical reasons the logic for postings directly in FI
    (such as FB60) differs: There would be no deletion.
    I recommend not to substitute the business area for tax items
    (to be conform with note 199886) but if you really want to do this in
    general you can implement the following modification on your own risk:
    function FI_SUBST_GSBER
          ELSE.
          If GSBER differs -> mark as not unique
            IF gsber_tab-gsber <> t_accit-gsber.
              CLEAR gsber_tab-flg_unique.
              MODIFY gsber_tab INDEX sy-tabix.
            ENDIF.
          ENDIF.
    >>>>>>>>>>>>>>>>>>>>>>>START-OF-DELETION>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
          IF t_accit-taxit = xon AND t_accit-xbilk = xon.
            IF brazil IS INITIAL.   "do not clear for brazil  "note 436374
              CLEAR t_accit-gsber.
              MODIFY t_accit.
            ENDIF.                                            "note 436374
          ENDIF.
    >>>>>>>>>>>>>>>>>>>>>>>END-OF-DELETION>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
        ENDIF.
      ENDLOOP.
    Hope the above informations can help to you!
    Best Regards,

  • BTE for MIRO

    Hi all,
              Is there any Business Transaction Event for MIRO. Actual requirement is, when creating an invoice relating to a purchase order for company code, the plant field of the first PO and it’s first item line quoted on the invoice needs to be copied from the PO field into the assignment field of the FI document.
         Please suggest me, if there is any other method than BTE.
    Thanks in advance.
    with regards,
    Rajeev.

    I could not find any thing in the program.
    Actually I need to link an URL to the Invoice document, once it gets posted.Thats the reason why I am looking for a BTE in MIRO.

  • To Find no og MIGOS pending for MIRO

    Hi All,
    I am developing a report to find the MIGO'S pending for MIRO's.
    Which table should i refer to find MIGO'S pending for MIRO's.including MSEG and MKPF.
    will it be done thru EKBE fro this
    can any one help........?
    TIA
    Basu

    Hi,
    Make the necessary changes according to your Data & Requirement.
      SELECT a~ebeln a~ebelp a~vgabe a~gjahr a~belnr a~buzei a~bewtp a~budat a~matnr a~werks a~xblnr a~menge a~dmbtr
      b~lifnr c~maktx d~name1  INTO TABLE it_final
      FROM ekbe AS a INNER JOIN ekko AS b ON b~ebeln = a~ebeln
                     INNER JOIN ekpo AS e ON e~ebeln = a~ebeln AND e~ebelp = a~ebelp
                     INNER JOIN lfa1 AS d ON d~lifnr = b~lifnr
                LEFT OUTER JOIN makt AS c ON c~matnr = a~matnr AND c~spras = 'E'
      WHERE a~ebeln IN so_ebeln
        AND a~werks IN so_werks
        AND a~matnr IN so_matnr
        AND b~lifnr IN so_lifnr
        AND b~bsart NOT IN ('A', 'B','C' )  " Here add Doc Type - if you have Stock transfer(from Plant to Plant) PO in your Data
        AND a~budat IN so_budat
        AND a~vgabe EQ '1'
        AND a~bewtp EQ 'E'
        AND a~bwart EQ '101'    " Check your MIGO IN mov. types
        AND e~loekz EQ ''
    " This is for MIGO Reverse - Again check your MIGO out Mov. types
        AND NOT EXISTS ( SELECT ebeln FROM ekbe WHERE ebeln = a~ebeln AND ebelp = a~ebelp AND vgabe = '1' AND bewtp = 'E'
        AND bwart IN ('102','122') AND lfgja = a~gjahr AND lfbnr = a~belnr AND lfpos = a~buzei )
    " check for Pending MIRO
        AND NOT EXISTS ( SELECT ekbe~ebeln FROM ekbe INNER JOIN rbkp ON rbkp~belnr = ekbe~belnr AND rbkp~gjahr = ekbe~gjahr
        WHERE ekbe~ebeln = a~ebeln AND ekbe~ebelp = a~ebelp AND ekbe~vgabe = '2' AND ekbe~bewtp = 'Q' AND ekbe~lfgja = a~gjahr
        AND ekbe~budat IN rg_budat AND ekbe~lfpos = a~buzei AND rbkp~tcode = 'MIRO' AND rbkp~stblg = '' )
      ORDER BY a~ebeln a~ebelp a~budat.
    "Remove Cancelled MIRO from o/p
      SELECT DISTINCT a~ebeln a~ebelp a~gjahr a~belnr INTO TABLE it_ekbe
      FROM ekbe AS a INNER JOIN rbkp AS b ON b~belnr = a~belnr AND b~gjahr = a~gjahr
      FOR ALL ENTRIES IN it_final
      WHERE a~ebeln = it_final-ebeln AND a~ebelp = it_final-ebelp AND a~vgabe EQ '2' AND a~bewtp EQ 'Q' AND a~lfbnr = '' AND a~budat IN rg_budat
        AND b~tcode = 'MIRO' AND b~stblg = ''.

  • How to check what are the enhancement done for MIRO transaction

    Hi Experts,
    Please help me out, how to check what are the enhancement done for MIRO transaction.
    Thanks in advance.
    Thanks,
    Basanagouda

    Hi
    Use the BADI
    Please refer these documents: [Enhancements required in MIGO|Enhancements required in MIGO; and
    [Enhancement in MIGO for Goods Movement|Enhancement in MIGO for Goods Movement;
    Hope this helps!!
    Regards
    Vijay

Maybe you are looking for

  • Is there a Maximum file size limit when combining pdf files

    I am trying to combine files 8 PDF files created with i Explore using Acrobat XI Standard, the process is completed but when opening the file not all 8 individual files have been combined only the first two have been combined, the process shows all e

  • When I click the MFF desktop icon Firefox takes exactly 30 seconds to load, is that right?

    ''Duplicate post, continue here -'' [/questions/752057] I have just installed Firefox and it takes 30s from clicking the desktop icon to loading the home page. Tabs only take about 2s, is this right? IE loads in 2-3 s.

  • Partner type / function for IDOC SHPMNT

    Hello all, my intention is to send a shipment to another system via IDOC SHPMNT. So i think the partner function should be a logical system (LS). But the output determination does not work, it always requires the partner function CR or (Carrier) or S

  • Accounting entries in Consignment

    Hi , Need clarifications on the following: 1>How to do MRKO? 2>What are the accounting entries happen in MRKO transaction?Is it KONS(Dr) and KONS(Cr)?If so why? 3>Which price it takes a)Inforecord b)material master?? Need your help!!!!

  • CS5 Classroom in a Book Study Group?

    Hello everyone. I just purchased CS5 design premium and am working through most (if not all) of the Classroom in a Book series. I'm currently on Lesson 12 of the Photoshop book and will be finishing the book soon, then moving on to either Illustrator