How to post MIRO for services .?

Dear All ,
                                           User is doing an entry of MIRO here the total amount for service charges are 4,500 INR & serv. tax on it is 600INR ( For ex. ) now user wants that in mormal IV the amount is having the total of serv. charges + taxes but in this case user do not want to take the credit of serv. tax hence he wants that this sserv. tax should be posted to other liability G.L instead of Serv. tax credit G.L , can u pl guide how to post such MIRO .?
Rgds .
SAP2008
Edited by: sap2008 on Jan 8, 2009 10:20 AM

Hi
Create MIRO, change the tax code to V0- No Tax in the header level as well as item level, so that you can able to post amount without service tax.
Regards
Prasanna R

Similar Messages

  • Posting Difference in MIRO for Service PO

    Dear All
    We have encountered the following problem during MIRO
    Description         Amount Crcy     Amunt in LC   LCurrcy
    Customer a/c        67586-   USD   108423.84 -       AUD
    GR IR A/c             67586    USD     84604.12         AUD
    Maintenance a/c    0           USD     23819.72         AUD
    The above entry has come through MIRO for Service Order. Most of the FI documents have been created with these differences.
    What should be the likely error.
    Regards
    Ramesh

    Hi,
    This is due to change in exchange rate only between GR date and IR date. the GR/IR account is same as GR document entry and the difference in amount due to exchange rate will not flow into GR/IR clearing account and hence posted to seperate account

  • Post Invoice for Service Entry with many Service line item-MM-LIV

    Dear All,
    I have a problem to post Invoice for Service Entry with many Service line item. The problem is as follow:
    I have created 1 Service Entry which has 5 Service line item in it. Three of the service line item are subject to Value Added Tax (VAT), the others aren't. Then, i wanted to post Invoice for the Service Entry, however, it just display 1 item which amount in total. How can i segregate each service line item in Service Entry thus i can post Invoice for all Service line item with subject to VAT and all service item with not subject to VAT, if just 1 Service Entry created for it ?
    Please help me.
    Thank You

    Hi Ganda,
    If you mark the 'service based invoice verification' checkbox in your PO item, your service items will be in your invoice as seperate invoice lines. Then you can modify the taxcodes on service item level.
    Kind regards, Dick Hendriks.

  • Miro for services using bapi_incominginvoice_create

    i need to automate miro for services.
    Please help how I can do this with code using above BAPI.
    Thanks

    Dear all,
                     It will be very helpful & ll be thankful if any ideas shared to overcome below issue.
                   I was trying to create invoice using BAPI_incoming_invoice of service document type.the invoice is created but while checking in accounting data amount is gone for coin adjustment,which is wrong as per my functional.
    My code & outcome is are attached.
    REPORT ZBAPI_AUTO_MIRO_SERVICES.
    DATA: headerdata TYPE bapi_incinv_create_header,
           itemdata TYPE TABLE OF  bapi_incinv_create_item,
           ls_itemdata TYPE  bapi_incinv_create_item,
           ls_accountingdata type bapi_incinv_create_account,
           accountingdata type table of bapi_incinv_create_account,
           return  TYPE TABLE OF  bapiret2,
           ls_return TYPE bapiret2,
           invoicedocnumber  LIKE  bapi_incinv_fld-inv_doc_no,
           fiscalyear  LIKE  bapi_incinv_fld-fisc_year,
           taxdata TYPE TABLE OF bapi_incinv_create_tax,
           ls_taxdata TYPE bapi_incinv_create_tax,
           gldata  TYPE TABLE OF bapi_incinv_create_gl_account,
           ls_gldata TYPE bapi_incinv_create_gl_account,
           vsplit TYPE TABLE OF bapi_incinv_create_vendorsplit,
           ls_vsplit TYPE bapi_incinv_create_vendorsplit.
    DATA:counter TYPE i.
    DATA: it_exload LIKE alsmex_tabline  OCCURS 0 WITH HEADER LINE.
    DATA:BEGIN OF it_final OCCURS 0,
          doc_date(8),
          doc_type(2),
          ref_doc_no(20),
          pstng_date(8),
          comp_code(4),
          diff_inv(10),
          currency(3),
          gross_amount(13),
          exch_rate(6),
          header_txt(25),
          del_costs_taxc(2),
          alloc_number(20),
          bus_area(4),
          item_text(50),
          business_place(4),
          invoice_doc_item(6),
          po_number(10),
          tax_code(2),
          item_amount(13),
          po_item(5),
          quantity(5),
          po_unit(2),
          cond_type(4),
          freight_ven(10),
          INVOICE_DOC_ITEM1(6),
          SERIAL_NO1(2),
          TAX_CODE1(2),
          ITEM_AMOUNT1(13),
          QUANTITY1(5),
          PO_UNIT1(2),
    END OF it_final.
      headerdata-invoice_ind = 'X'.
       headerdata-CALC_TAX_IND = 'X'.
       headerdata-doc_type  = 'RE'.
       headerdata-doc_date    = '20150309'.
       headerdata-ref_doc_no =  'GDFGDFG'.
       headerdata-pstng_date  = '20150309'.
       headerdata-comp_code  = 'VALC'.
    *  headerdata-diff_inv   = '0000203495'.
       headerdata-currency = 'INR'.
       headerdata-gross_amount = '657.30'.
       headerdata-exch_rate = '1.00000'.
       headerdata-PMNTTRMS = '0001'.
       headerdata-bline_date = '20150309'.
       headerdata-bus_area =   '3001'.
       headerdata-header_txt = 'abcddfghvkj'.
    *  headerdata-del_costs_taxc = it_final-del_costs_taxc."'P0'.
       headerdata-alloc_nmbr = 'BVKJFDLNV'.
       headerdata-item_text = 'BJFDBVKBDSVK'.
       headerdata-business_place = '1000'.
    ls_itemdata-invoice_doc_item = '000001'.
       ls_itemdata-po_number = '6600003195'.
       ls_itemdata-po_item = '00010'.
       ls_itemdata-tax_code = 'S1'.
       ls_itemdata-item_amount = '585.00'.
       ls_itemdata-quantity = '3'."it_final-quantity.
       ls_itemdata-po_unit  = 'NO'.
       ls_itemdata-ref_doc = '1000363624'.
       ls_itemdata-ref_doc_it = '001'.
       ls_itemdata-REF_DOC_YEAR = '2015'.
       ls_itemdata-SHEET_NO = '1000363624'.
       ls_itemdata-SHEET_ITEM = '0000000010'.
       APPEND ls_itemdata TO itemdata.
       CLEAR ls_itemdata.
    PERFORM COMMIT_WORK.
    FORM COMMIT_WORK.
    *  LOOP AT taxdata.
         CALL FUNCTION 'BAPI_INCOMINGINVOICE_CREATE'
         EXPORTING
           headerdata       = headerdata
    **   ADDRESSDATA         =
         IMPORTING
           invoicedocnumber = invoicedocnumber
           fiscalyear       = fiscalyear
         TABLES
           itemdata         = itemdata
    *   accountingdata      = accountingdata
    *      glaccountdata    = gldata
    *     MATERIALDATA     = matdata
    *     TAXDATA          = taxdata
    **   WITHTAXDATA         =
    **   VENDORITEMSPLITDATA =
           return           = return.
    **   EXTENSIONIN         =
    **   TM_ITEMDATA         =
    **   NFMETALLITMS        =
       IF return IS NOT INITIAL.
         LOOP AT return INTO ls_return WHERE type = 'E'.
           FORMAT INTENSIFIED.
           WRITE: / ls_return-message COLOR 6.
           FORMAT INTENSIFIED OFF.
         ENDLOOP.
       ELSE.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
           EXPORTING
             wait   = 'X'
           IMPORTING
             return = ls_return.
         IF sy-subrc = 0 .
           FORMAT INVERSE .
           WRITE:  'Invoice & Created Successfully' COLOR 5,invoicedocnumber COLOR 5 .
           FORMAT INVERSE OFF.
         ENDIF.
       ENDIF.
    CLEAR headerdata.
    REFRESH itemdata.
    REFRESH accountingdata.
    REFRESH TAXDATA.
    *ENDLOOP.
    ENDFORM.

  • How  to  generate  Billing   for   Service Order   ?

    how  to  generate  Billing   for   Service Order   ?

    Hello,
    You may do a resource related billing from the service order,  but you need to maintain Resource Related billing profile in Service order --> Control tab. Once it is set you may generate the billing document (debit memo) from service order through DP90, provided the config is right.
    Prase

  • How to generate report for Service sheet - ECC 6.0

    Hi
    Can anyone let me know regarding how to generate reports for  service sheets entered
    regards
    Sanjay

    Hi,
    Get Service Entry Sheet with following T.codes:
    1.MSRV6
    2.ML84
    Regards,
    Biju K

  • HOW TO POST J1IEX FOR SERV ENTRY SHEET.?

    Dear All ,
                                          User had done a serv entry sheet ,
    against serv P.O in invoice the service is exciseable , pl help me how to post the J1IEX for this serv entry sheet.?
    item catogary in P.O is d & acctt assignnis P( Project )regards,
    sap11
    Edited by: sap11 on Feb 12, 2008 2:03 PM

    sir here the doc type is ZIN i.e for indivisible material & service
    i mean to say that the service provider had given us material & services both .the tax used here is for ED as Applicable + 4% VAT Raw Material , & condition maintained are as below , user had already done serv entry.
    BASB     Base Amount
         Calculated Call
         Sub total
         Service TAx Cenvat S
    JMOP     A/P BED Cenvatable %
    JMX1     A/P BED Setoff %
         Copy of Service TAX
         Total Excise Duty
         Copy Net Price
         Price +ED
         Subtotal for ECess S
         Subtotal for ECess I
    JEC1     A/P ECess Cenvat %
    JSEP     A/P SECess setoff %
    JEX1     A/P ECess Setoff%
    JHX1     A/P SECess SOTot%
         Basic Price + ED
         Basic Price + ED+ECe
         Total Value for VAT
    JVRD     A/P VAT RM Deductibl
    pl help me that in this situation what can be done OR either the P.O is made wrong .
    thanks in adv
    sap11

  • Set quantity field disabled in MIRO for Services PO

    ¿How can I do in order to disable the quantity field in MIRO transaction ? (Only for Services PO)
    Edited by: Luis  Ganoza on Oct 11, 2011 9:01 PM

    Hi,
    Please check whether you have selected service based invoice verification indicator in service PO or not. I f not selected select and see. Ultimately the quantity field will be greyed out. An alternative is use OLMRLIST transaction and Now Click on "Change" button and Confirm the Message by Pressing Enter. Here mark  Quantity (DRSEG-MENGE)
    field as "Output Only". Thanking you.

  • How to create PO for service

    Dear all,
    Can anyone please help me How to create an PO to procure services and what is whole process, After creating PO for service do we need to receive also.
    do we need to define a item in inventory as a service?I am very confuse, Please help me..

    Hi,
    You need to implement Oracle service Procurement module to create PO for services.
    First, you need to create requisitions for Rate based temp labour/Fixed Price services etc. then convert this requisition to Complex PO.
    The complex PO can be of one of the three types - Milestone based/Lumpsum Order/Rate based temp labour(Contingent worker).
    You don't need a item or recipt as you need to create work confirmation for Milestone/Lumpsum orders.
    The timecard entered in OTL by the contingent worker will be integrated with the complex PO created for Contingent worker and AP invoice will be created accordingly.
    Thanks,
    PS.

  • How to pass MIRO for imported material

    Dear  all
    HI
    i want to make a miro for imported material
    all the custom,cvd,cess,frw charges etc were alredy paid by clearing agent
    i want to pass miro for that agent
    material supplier vendor is diffrent one i want to pass miro for it also
    ple tell me the procedure for  MIRO
    thanks
    prakash

    Dear Prakash,
    While Creating Import PO, u have to maintain the Condition for clearing agent. Go for the Item detail -> condition tab,select condition one by one for which u want to pay amount to clearing agent like condition custom,cvd,cess,Freight,etc, go for detail icon and maintain the vendor (Clearing agent) .
    After Receipt of goods,while making Miro, for Clearing agent ,select Planned delivery cost at right side and select Purchase order no.it shows all the condition amount for clearing agent.clear the amount by posting MIRO.
    and for main vendor make the Miro by normal process ,it shows only basic amount and condition amont for which u did not maintain vendor(Clearing agent) at condition detail tab.
    This is the right process,I was allready work by this way.
    Rewards.....
    Regards
    Sanjay L

  • How to find attacments for service orders

    Hi Friends,
    This is regarding plant maintenance(PM).
    In IW32(change in service order). we can create attachments under service notification . for suppose there are some attacments to the service order.
    I want to know if there are any attacments to perticular service order.
    Because i want to display an icon in the script if there are any attacments to the service order.
    Are there any tables that are linked with service order and attachments?
    or is there any function module?
    Please help me friends.
    thanks in adavance.
    Regards,
    Saya

    Hi,
    you may look at thread "how to make Generic Object Services visible in screen", i think it is similar to your problem. In fact, you may look for attachments with
    SELECT * UP TO 1 ROWS
    FROM srgbtbrel
    WHERE
    instid_a = g_object_gos-objkey AND
    typeid_a = g_object_gos-objtype AND
    catid_a = 'BO' ,
    where objkey is order number an objtype is business object key of the order. To show all attachments in a list you can use methods of CL_GOS_MANAGER. It is described in sap help.
    Regards,
    Christian

  • How to update CONDITIONS for SERVICES in ME51N, ME52N.

    Hi All,
    My requirement is to update the CONDITIONS for SERVICES for the transaction ME51N, ME52N. I'm using BAPI_REQUISITION_CREATE to create the Purchase Requisition.
    Thanks.

    Hi Swetha,
    u will definitely update the condition and services by using the bapi
    *BAPIREQUISITION_CREATE*_ 
    with regards,
    Kiran.G

  • How to post GI for delivery?

    Hello
    I need to post GI for delivery ref to Sales order (that referencies production order).
    I tried MIGO_GI - Other (MIGO)  but it doesnt allow 601 MT
    I just need to generate testing data
    Thanks , I know you will help me this bloody hot day!

    Thanks
    is it possible to create GI directly (without delivery)?
    Thats what I need to get
    Sales Order
        GI
          Billing Doc

  • How to create PR for services from IW31 / IW32

    Hi,
    We are trying to create a PR for Services from Work Order IW31.
    When the PR is created automatically from Order, the PR shows "F" in the Account Assignment Category for Order but shows blank in the Item category field with the field disabled.
    Because of this we cannot enter service details in PR. We were hoping that "D" for Services will appear in the  Item category  field and the Services tab will be open for input.
    I will appreciate if i could know where am i going wrong or is there a way around.
    Thanks
    Faisal

    Hi,
    For external purchase of services
    If you want to purchase external services then in order under operation tab enter control key as PM02 for respective operation and maintain data if small window appear.
    After saving/release of order system will create Purchase requisition
    Process
    Create order - IW31 >> maintain control key PM02 in operation tab and save then PR is created-view it by ME52N >> Convert this PR in to PO by ME21N >> After performing service Accept service by ML81N
    For external purchase of material
    If you want to purchase external MATERIAL then in order under COMPONENT tab enter item category as NON STOCK for respective material and maintain data if small window appear.
    After saving/release of order system will create Purchase requisition
    Process
    Order >> maintain item category non stock for material and save then PR is created-view it by ME52N >> Convert this PR in to PO by ME21N >> Goods receipt by MIGO ..
    Kuber

  • Error in posting MIRO against service entry sheet

    Hello to all,
    I have configured JVRD for the service PO i.e. condition record have been maintained in the key combination of material/plant/vendor/tax code. All taxes are flowing till MIRO but while posting following error message is popping up:
    "Please put the correct Tax Code
    Message no. /EACA/BTA_GL021"
    Can anybody explain the reason behind it & how it can be resolved.
    Regards,
    Anisha

    Hello,
    Thanks for your prompt reply, I have check evry thing, it is assigned to company code, even the same tax code is used in std. PO. In MiRO tax is being calculated only while posting following error is popping up.
    Regards,
    Anisha

Maybe you are looking for

  • Golden Gate Schema Replication

    Guys - My requirement is fairly simple.I have two schemas, GG [Source] and GGR [Target] on the same host. Have one table called GG.SYNC_TABLE. I am having difficulties to push data from GG to GGR Below are the extract and replicat information EXTRACT

  • 2009 Toshiba 40 inch LCD TV

    I am having a problem with the television obviously every time I shut off the TV when I turn it back on I have to start over on all the programming it is insane after I do that the television works fine until I shut it off and it loses its whole memo

  • How to make part of text as bold..

    hi all, its urgent.. i have an expression in my ssrs report like =iif(passorder=1 and zoneorder<>4, iif(field!xxxx.value=3,field!xxxx.value & "is having perecntage of" & field!percentage.value, field!percentage.value) now,its having row and column  g

  • Character Mode Reports 11g

    Hello, we are upgrading to 11g, and all our reports are character mode formatted via .prt files, since character mode reports cannot be generated in pdf format, we don`t know how to access the reports, because we have dot matrix printers and the pdf

  • Sol-8 cant ping host on hme1

    ultra-10 running sol 8 with three network interfaces installed (hme0,hme1,hme2). ifconfig -a indicates all three are up, but I cannot rsh or ping hosts on hme1 or hme2 unless I ifconfig hme0 down.