Clearing charges not flowing in MIR7

hi all
can anybody clarify me , while doing the invoice verification for import PO for clearing charges.
In Import PO allthe conditions i have maintained properly. but
The values are not flowing in MIR7.
what might be mistake , how to identify .
Than ks
sap-mm

hi
as we are not doing  GR based IV ,system will not pick values for customs duty u have to maintain it manually only
now u have to capture the excise in J1IEX only as we r doing miro first and then GR and also we dont maintain the excise tax code (we have to maintain zero taxcode)
plz check following process
Import scenario
1.Create material master of import goods.
2. Create vendor master record of import vendor and Customs clearing vendor.
3. Maintain CIN settings.
4. Maintain J1id.
5. Maintain Pricing procedure SAP standard JIMPOR.., maintain required conditions..JCDB, JCV1...
6.Assign the schema to respective import vendor in purchasing view of VMR.
7. Create import PO, check in conditions of JCDB, JCV1 the customs clearing vendor(Indian vendor) and percentage is assigned. This can be done by In condition tab select condtion then click on display, then enter.
Save the PO.
8. MIRO --Capture Bill Of Entry.(Commercial Invoice No.,).Customs clearing first .Here CVD will be converted to BED (manual entries).
9. capture Excises invoice--j1iex.
10.MIGO.
12.Post Excise Invoice.
13.MIRO...Payment to vendor(import vendor)
regards
KI

Similar Messages

  • While doinh Miro Cenvat clearing excise not flowing.

    Dear all ,,
    we have one po in that we maintained same material with qty 10.we maintained J1ID for that material.
    we have received migo two times first time 5 qty and second time 5 qty we have updated part1 and part2 also posted,
    we received two excise invoice and updated part2 also .
    ANd we have received two good invoice ,while miro for first invoice excise is coming in Cenvat clearing ,,
    But for second invoice excise is not flowing to CENVAT CLEARING,,
    Kidly suggest me what may be the reason .
    Thnaks in advance
    Thanks and Regards
    Girish.

    Dear all...
    any suggestion,,

  • HT1766 Upgraded iPad 2 w/IOS 7. Battery drains to 0% even with iPad in sleep mode.  Called Apple-they had me clear it.  Battery charge held that night.  Restored from iCloud. Charge not holding again.  Any similar events?  What to do?

    Upgraded iPad 2 w/IOS 7. Battery drains to 0% even with iPad in sleep mode.  Called Apple-they had me clear it.  Battery charge held that night.  Restored from iCloud. Charge not holding again.  Any similar events?  What to do?

    Upgraded iPad 2 w/IOS 7. Battery drains to 0% even with iPad in sleep mode.  Called Apple-they had me clear it.  Battery charge held that night.  Restored from iCloud. Charge not holding again.  Any similar events?  What to do?

  • SAP Note 1486147 - TDS line item details not flowing in Form 16 A Samrtform

    1.     Old Form 16 certificate is printed before 01.04.2010 and new certificate after 01.04.2010. (its correct SAP has written code in such a manner Old one is SAP script and new on is Smartform.)
    Old FORM 16 A gets Acknowledgement No details correctly.
    2.     Acknowledgment No details are not flowing in the NEW Smart Form of Form 16 A.
    When I debug the program I can see PARTNER No details are copied in PAN NO field in TABLE : IT_LFA11[]
    BUT PARTNER NO details are copied to PARTNERNO field  in TABLE IT_LAFA1[].
    TDS line item details on Smart Form is printed based on Partner no. here partner no. is blank as IT_LFA11 table is passed to smartform..
    Program name : J_1IEWT_CERT
    Include name : J_1IEWT_CERT_F01.
    Code:
    FORM CALL_FORM .
      DATA: h_formname TYPE tdsfname,
              h_fmname TYPE rs38l_fnam,
              h_output_info  TYPE  ssfcrescl,
              h_spoolids TYPE LINE OF ssfcrescl-spoolids,
              h_output_options TYPE ssfcompop,
               spoolno(10) TYPE c.
      DATA : it_lfa11 TYPE STANDARD TABLE OF J_1I_LFA1 INITIAL SIZE 0,
             it_printtab TYPE STANDARD TABLE OF J_1I_PRINTTAB INITIAL SIZE 0,
             it_deduc TYPE STANDARD TABLE OF J_1I_DEDUCTEE INITIAL SIZE 0,
             it_qrtrtab TYPE STANDARD TABLE OF J_1I_QRTRTAB INITIAL SIZE 0,
             it_challan TYPE STANDARD TABLE OF J_1I_CHALLANDETAB INITIAL SIZE 0.
      SORT challandetab BY j_1iextchdt DESCENDING.
      it_lfa11[] = it_lfa1[].
      it_printtab[] = printtab[].
      it_deduc[] = it_deductor[].
      it_qrtrtab[] = qrtrtab[].
      it_challan[] = challandetab[].
      h_output_options-tdnewid    = 'X'.
      h_formname = layout.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = h_formname
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
       IMPORTING
         fm_name                  = h_fmname
    * EXCEPTIONS
    *   NO_FORM                  = 1
    *   NO_FUNCTION_MODULE       = 2
    *   OTHERS                   = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION h_fmname
    EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
       OUTPUT_OPTIONS             = h_output_options
    *   USER_SETTINGS              = 'X'
    IMPORTING
    *   DOCUMENT_OUTPUT_INFO       =
       job_output_info            =  h_output_info
    *   JOB_OUTPUT_OPTIONS         =
        TABLES
          it_lfa1                    =   it_lfa11
          it_printtab                = it_printtab
          it_deductee                = it_deduc
          it_qrtrtab                 = it_qrtrtab
          it_challandetab            = it_challan
    * EXCEPTIONS
    *   FORMATTING_ERROR           = 1
    *   INTERNAL_ERROR             = 2
    *   SEND_ERROR                 = 3
    *   USER_CANCELED              = 4
    *   OTHERS                     = 5
      IF sy-subrc = 0.                                          "1375614
        CLEAR :spoolno,h_spoolids.
        READ TABLE h_output_info-spoolids INTO h_spoolids INDEX 1.
        IF h_spoolids IS NOT INITIAL.
          spoolno  = h_spoolids.
          CONDENSE :spoolno.
          MESSAGE i155(id_wt) WITH spoolno.
          PERFORM update_cert_tables.
        ENDIF.
      ENDIF.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.     
    Can anyone Please help me to get TDS details on the Smartform.
    Regards,
    DivyaLalwani.
    Edited by: kishan P on Feb 23, 2011 1:28 PM

    Hi,
    Achnowledgement details comes in table it_qrtrtab at run time in the smartform, you can dibug the program j_1iewt_cert and smartforms J_1iewt_cert where at run time you will able to see data avaialability, If values are not available in this internal table then check related notes given by SAP, I have already implemented this note and also faced same issue but my FI consultant has given me the related note and my issue was resolved.
    Please checkout related notes and data population in the dibugger.
    Regards,
    Umang Mehta

  • WBS, Business Area and Profit Center not flowing in GR/IR Account

    Hello Experts,
    I have come across a very strange situation. I have two MIGO documents which are showing different posting characteristics:
    1) FI Document 5000000553
    In this document, the Business area and profit center is flowing in GR/IR Clearing Account (15660000) but WBS element is not flowing to this line item.
    Screen shot is as follows:-
    As you can see from the above screen shot  that, for GR/IR Account 15660000. Only Business Area and Profit Center are flowing and WBS Element is not coming.
    2. FI Document 5000015602
    In this document, the WBS element is going in GR/IR Clearing Account (15660000) but Business area and profit center is not flowing to this line item
    Screen Shot is as follows:-
    From the above screen shot, Business Area and Profit Center are not flowing but WBS Element is coming.
    Could you please let me know what could be the possible reason for this behavior of both the documents.?
    Regards,
    Amit

    Hi Saurabh,
    Its great to see your reply. Yes, I know that currencies and posting dates are different. But that's the way it is. One document is for fiscal year 2014 and other is for 2013. There is nothing related to currency and posting date which was causing the strange behavior of the system.
    However, our team analyzed the issue and found that only for service material having a special valuation type related to services is causing the problem and still we are diagnosing the other possible root cause as well.
    Thanks for your co-operation and suggestion.
    Regards,
    Amit

  • Taxes not flowing to Service entry sheet

    Hi,
    Service tax is not flowing to Service entry sheet but It is appearing in the PO. Kindly suggest how to get the same,
    Regards,
    Sathya.

    Hi
    Means what ? You want to add service tax ammunt at service consumption ammount or cleared at MIRO,
    If you use Tax code at Po for Service tax then this ammount is cleared at Invoice (MIRO) only .
    If you maintain service tax at Pricing procedure then it is added at service consumption ammount at service entry sheet.
    Regards
    sanjay L

  • Values are not flow to COPA

    Can you please clear some point.-
    1.According to my understanding, From SD data will flow through condition type,which is assign with value field and condition types are assign with Pricing Procedure.
    In my problem, Condition type-YREC(Packing tax) is in Pricing Procedure and YREC assign with value field VV031 but amount is not flow to COPA.
    2.Please tell me the FI flow to COPA
    Please help me.

    <b>Pl try KE4ST billing transfer simulation</b>
    Simulate Billing Document Transfer
    In the activity "Simulating the Transfer of Documents from Billing", you have the option of simulating the transfer of billing document data into Profitability Analysis.
    Simulation occurs on the basis of the Customizing settings valid at the time it is carried out. You can view the characteristics and value fields of the line item to be written to COPA.
    The function "Valuation analysis" allows you to perform an analysis of the valuation strategy valid for valuating billing document data.
    You can also restart the simulation of document transfers for billing documents that have already been transferred. This option should simplify in particular the analysis of error situations that have arisen.
    Performing this simulation causes no data to be posted to COPA or to other modules.
    <b>Check tcode KEAT also</b>
    Check Value Flow in Billing Document Transfer
    In this activity, you can compare your actual data in Profitability Analysis with the data posted in Financial Accounting (FI). This makes it possible to analyze the flow of values from SD billing documents to CO-PA, find and analyze any differences between the different applications.
    Billing data is stored by condition types in SD, accounts in FI, and value fields in costing-based CO-PA. The reconciliation report yields a list of the balances for value fields, condition types, and profit and loss accounts.

  • Table J_1IEXCDTL - EXBAS isnt updated -Excise Base Amt not flowing to ARE1

    Dear Friends,
    This is in continuation to the earlier post.......Excise Duty Base Amount is not flowing into ARE1...Iam here briefing up the earlier post details:
    When  I am creating ARE-1 for the Exports Excise Invoice, Excise Duty Base Amount is not flowing into ARE1 but BED and other cess conditions are flowing into ARE1
    Liable to AT1 and  Indicator NCCD is checked and in  my pricing procedure NCCD condition is not maintained as its not required.
    The latest patch updated in my system is SAPKH600011 (Logistics and Accounting).....
    Most importantly the Excise base amount field is not seen in the Excise Invoice but in ARE1 this field is in display mode and Excise base value is not flowing into the Table J_1IEXCDTL field EXBAS.
    Someone Pl help me on this issue.
    Thanks
    Sasi
    Edited by: j sasi on Jul 9, 2008 7:13 AM

    Sasi,
    I think you are making a mistake between manual and mandatory. IN the pricing procedure MAN stands for manual condition and mdt stands for mandatory. Now in the standard, the PR00 is an automatic entry and JASS is a manual and a statistical condition. It is not mandatory. PR00 being the base value for calculation of gross price/nett price it is mandatory.
    Most of the customers prefer a manual pricing procedure where PR00, discount, surcharge everything is manual.
    In such a case change the appropriate condition type to the manual condition with manual has priority in the settings for condition type.
    But here you need to enter the prices and all the conditions manually.
    Here you should have only one condition type for pricing condition with the category as basic price. PR00 is normally that condition and so is the P101 which is a Price ( STO). Now if there are several select all others to statistical and only PR00 with an account key assignment to ERL.
    Ensure that JASS the assesable value as statistical and manual.
    If however you want the JASS as the excise base amount then PR00 will be used for calculation of discounts and and NETT price only but JASS will be the one for Excise base amount.
    BAsed on this excise base amount which you will find in the table J_1IEXCHDR the values for BED, ECS and SECS gets calculated.
    Either way is O.K but one word of caution. There is an assessable value in the J1ID transaction where you maintain the Assessable value for materials. Its mostly used in TAXINJ. DO not use it or even if that field is filled ensure that you give the JASS assessable value manually at the time of calculating SAles ordr pricing.
    If you don;t then there will be an error.
    Also check in the analysis whch condition basis value is being taken for calculated in your excise conditions.
    This should solve your problem.
    Remember calculating assessable value is not a small thing but customers prefer it because reversing excise or paying additional excise is a pain for them. If thats the case then so be it.
    But ensure that assessable value is calculated nett of discounts and given there.
    In one case I came across where otehr charges, finance charges and transportation were added to the basic price and only on the total excise duty was added and discount was given after calculation of excise duty. Please check your scenario in line with your requirement. Any questions. My pleasure to reply.
    regards
    Jude

  • Cutoms miro - value not  flowing

    Hi,
    When i'm doing miro for customs vendor, the values (cvd, ed, se cess) which we mentioned in the po its not flowing into values column in miro??? pls suggest how to correct it ?

    hi
    u cant get values in MIRO for customs as the GR has not been yet done
    u have to feed them manually only
    u can find the value for each line item at right side of the line item (scroll at right )
    hope it clears
    regards
    kunal

  • Charger not supported asha 201

    Ever since yesterday my charger has been working fine then today i plugged my Nokia asha 201 in to charge and it showed charger not supported, i tried two other charges the same thing i need help please

    helpme2014 wrote:
    Ever since yesterday my charger has been working fine then today i plugged my Nokia asha 201 in to charge and it showed charger not supported, i tried two other charges the same thing i need help please
    Remove the battery and wait for about 30 minutes before placing it back. Then try to charge it again.
    Check the charging port if it is clear from dust or moisture. Otherwise, you might need to send the phone to a Nokia Care Centre to get it evaluated.
    Good luck

  • PS: WBS is not flowing for a Material, while creating delivery from Project

    Hi,
    While creating delivery from Project thro CNS0, WBS is not flowing for a Material in delivery, in turn WBS is not flowing in Billing document for same material, in turn not allowing to Post the Billing document to Accounting.
    Error while releasing Billing to the Accounting: Accounting Entry is not generated. Error Message:Assign Condition type
    YMRG in COPA.
    Pls let me know, what can be the reason ?
    Thanks.
    Amit.

    Hi Kuldeep,
    Check this note,
    Note 159387 - Message BP603: incorrect line item is displayed
    Its valid only till 4.6. Might give you some idea but.
    Regards,
    Gokul

  • Cleared items not appearing When  we click cleared items in T.code FBL3N

    Hi all,
            We have prepared one ABAP program, to clear all open items for a particular GL account, company code, period, fiscalyear,
             When we run this program, the open items are clearing but not appearing in cleared items,
             Can any one help me out on this........
    Appreciated with points...
    Regards,
    sai........

    Hi,
    Check the cleared items in table BSIS, if the items are clearing then those items should appear in this table. Otherwise i doubt your program is not working?
    Debug the program and check from which tables its selecting the data  ie it should select the GL open items from table BSIS.
    Raj

  • How to print note tab of mir7

    Hi all,
    My customers are entering certain tax details like TDS, Mobilization Advance, Previous Payments,  blah blah blah in the Note Tab of tcode MIR7 for Parked Documents. These details could be either manually typed by the end-user or uploaded from an Excel/Word Document.
    Now I will be developing a custom Smartform for a "Certification of Payment", wherein I would have to pull up this text from the Note tab of MIR7.
    Any pointers how I can fetch that?
    PS: If i double click on the text, it doesnt take me anywhere, hence no info abt Text-ID et al.
    PPS: All search efforts have come to a naught.
    Thanks for hearing me out.
    pk

    Vijay,
    Thanks for the reply. I just talked to some end-users(in the purchase dept) here and they tell me that, FB60 comes at a later stage with Accounts dept. Which means, even before the FB60 is done they want to take the print out. So would the text ids and objects you gave, hold good??
    pk
    PS: I havnt started the development yet, so not in a position to test. Just curious abt the outcome before i start it. Will give you a feedback once i start with the development tommarow.
    Edited by: prashanth kishan on Aug 26, 2008 5:57 PM

  • Excise values are not flowing  in MIGO

    Dear All,
    I am facing a problem during MIGO.
    THERE IS STOCK TRANSFER BETWEEN 2 PLANTS AND 2 PLANTS ARE UNDER DIFFERENT COMPANY CODES.
    1 I have created a PO.
    2.Delivery through VL10D
    3.Picking-vl02n
    4.Created Bill-VF01
    5.Created Invoice and saved it
    When I am doing MIGO the excise values are not following.in migo SCREEN.I I want to know do i need to post EXCISE INVOICE and how to do the same.
    Pl let me know anything is missed out so that excise invoice is not flowing in MIGO screen.
    Regards
    Manash

    Hi,
    Have you miantained Tax code in STO ? if yes, then have you mainatained Settoff as 100% for that Tax Code in FV11 for which combination you are using
    SETOFF Must Be Maintained:-
    JMX1 --     IN: A/P BED setoff
    JEX1 ---      Ecess Setoff Sta
    HX1     IN: A/P SECess SOTot       
    If it is there please follow the Following steps for STO
    1.     Create Purchase Order(STO)  using ME21N
    2.     Create Outbound Delivery using VL10B
    3.     Create Billing Document using VF01
    4.     Create Excise Invoice using J1IIN
    5.                   GR with respect to Inbound delivery and in Excise Invoice give number of VF01.
    Hope Help U !
    Regards,
    Pardeep Malik

  • Excise Values Not Flowing in J1IIN-(export Excise Invoice)

    Hai ALL,
         I have gone through the previous threads,
    with those replies, my purpose hasnt solved.
    req: -
    " I am creating Export Excise invoice - J1IIN ( wrt : Export Invoice-VF01), Maintained "Subtransaction type- EX Exports"-
    did the rel config: specify G/L accounts for ETT.
    - Excise values flowing from VF01- J1IIN for domestic sales, but the same is not flowing into Export Excise Invoice-" -
    my doubt is: Do the Excise Values flow to Export Excise Invoice from Comm.Invoice. ( As in Exp.Exc.Invoice, system will not generate any accounting entries).

    IN export sales,
               I have maintained ED cond types as "Statistical" so that the values should not considered in Net value calculation. - which is working fine & Accounting documents for ED wont generate.
    I have created Exp.Exc Invoice-J1IIN (with ref to- Comm.Invoice & Sub transaction type - EX_exports)- ED values in Comm Inv- flowing to Exp Exc Invoice. - In utilization tab- when change "Exc.Invoice type" - LoU, values become Zero- ( as MBS said, will take help of ABAPer to write the code "Suppress_calculation - "X"- )
    But, can you confirm, that when we save Exp Exc Invoice- will accounting doc's generated or not-
    ( I expect, A/c'g docs will not generate- am i rite?)
    after this, I have updated RG1-J1i5 (with Classification - IWE, RMA is done when GR from Production), Extract/print-RG1 - J2I5/J2I6.
    Now create ARE-1 - J1IA101 ( wrt : Exp Exc Invoice) - mark the "Print ARE document"- Entered the "Bond" details in "BOND UT-1" tab.  & save.
    next, Post ARE-1 , Update ARE-1 & finally Close ARE-1.
    "When we close ARE-1"?
    is my understading above is rite??
    pls suggest
    Edited by: SAP Consultant- on Jan 28, 2009 4:31 PM

Maybe you are looking for

  • Remote not working on dvr but works on other boxes

    I have a Dvr box in the back of the house, It was working fine today earlier. I went back in the room and poof the remote dosent work on the box. It still works the tv. So I took it out to the other boxes in the house and it works fine on the other b

  • I installed creative cloud desktop app and my apps wont download

    I'll selected the apps I want to download in my creative cloud desktop manager and they are just sitting idle at 0% nothing is running I have a good connection to the internet. I'm on a company network could this be causing any interference?

  • Replacement of Function Module RH_AHQ_INT_BUILD_WHERE_CLAUSE

    In 4.5B ver I am using Function module <b>RH_AHQ_INT_BUILD_WHERE_CLAUSE</b> for generating dynamic where clause for select statement. But In 4.7 ver this Function does not exit please let me know any other FM is there which will satisfies my requirem

  • Syncing bookmarks question?

    When I first got my iPhone, I synced my IE bookmarks. After that, I left it unchecked. I noticed today that the IE bookmarks were gone. If I do a snyc without bookmarks being checked, does it remove my bookmarks? I saw no need to sync them every time

  • What does Apple Care cover?

    I'm going to be making the switch to Apple and getting a Macbook and I'm curious as to what exactly Apple Care covers. If something happens and it accidentally breaks, will it still be covered even if it was my fault?