J1IEX PROBLEM IN POSTING

Dear All,
User had done GRN & after that he is doing J1IEX entry as he clicks on Post cenvat invoice he gets an Error " Balance in Transaction Currency"
Now he is not able to proceed further. P.O Made for this is an  non capital One. Pl.Guide what to do ?. here in J1IEX The total BED =368.64 ,ECS=7.37, SEC=3.69 at item level,& in detail data the BED =368.64, ECS = 7.37, SEC = 3.69. THE ERROR IS GIVEN AS BELOW,
Balance in transaction currency
Message no. F5702
Diagnosis
A balance has occurred in transaction currency 'INR' with the following details:
Exchange rate '00', amount '             0.02' and currency key 'INR'.
The data in the transaction currency were transferred from the calling application.
System response
Your data cannot be processed in FI.
Procedure
The error is probably in the calling application.
Pl help ,
Thanks in advance
sap11
Edited by: sap11 on Jan 3, 2008 7:04 AM

While simulating the details are as below,
cenvat on hold /  s debit /  189.86
RG23C / SHECS / S DEBIT / 1.85
RG23C BED / SDEBIT / 184.32
RG23C ECESS / S DEBIT / 3.69
CENVAT CLEARING / H CREDIT / 379.70
Can u elaborate by above simulating doc, here in line item & detail data SHECS is not visible .
sap11
Edited by: sap11 on Jan 3, 2008 6:31 AM

Similar Messages

  • Problem while posting to accounts.posting period  002 2010 not open

    Hi experts,
    Im facing problem while posting to accounting.
    I ran the live payroll run and  while posting im got the incorrect document.
    System is showing the error message that  ""Posting period 002 2010 is not open"""
    How we have to open the periods.
    Please advice.
    Vi Sai.,

    Hi vicky,
    Goto t-code OB52.
    Variant :Posting Period variant, Account Type : +, From Account : space, To Account : ZZZ..Z, From Period : 2,Year :2010, To Period :2, Year : 2010
    Save.
    Regards,
    Dilek

  • Document Splitting problem while posting asset acquisition using F-90

    Hi,
    We are using ECC 6.0 with document splitting functionality and are facing problem while posting asset acquisition using F-90.
    The transaction entry details are as below:
    Document Type - KR
    Vendor Line Item PKey - 31
    Amount - 10000
    Asset Line Item with PKey - 70, Transaction Type - 100
    Amount - 10000
    The Document Splitting Rule - 0000000012 is used and the Field Status Group for the Vendor Reconciliation Account and Asset Reconciliation account have Cost Center, Profit Center and Segment as "Optional" field.
    The Balance Sheet Item - Asset Reconciliation Account has been created as
    Secondary Cost Element - 90.
    The Profit Center and Segment field have been made mandatory and zero balancing is also set in the settings for Document Splitting.
    While posting asset acquisition using F-90, we are getting the error message - "Balancing Field "Profit Center" in line item 001 not filled"
    The first line refers to the Vendor Line item.
    Please let me know how to overcome this error.
    Regards,
    Ramanand

    Please follow the below path and do config :-
    IMG>FA>Asset Accounting>Integration with the General Ledger>Additional Account Assignment Objects>Specify Account Assignment Types for Account Assignment Objects
    here you have to put KOSTL (Cost center) for both against APC and Dep run for each Dep area.
    Thanks
    Pyare

  • Getting problem while posting Invoice

    Hi all,
            Ofcourse this problem is related functional thing, i am posting in ABAP group. we are getting problem while posting invoice through f-43 transaction. The error is "Fiscal year 0000 not allowed for year-dependent commitment items". Please let me know if u have any solution.
    Thanks in advance.
    chandrasekhar.

    Hi chandrasekhar,
    pls post some infos:
    1) application aerea of the message and message no.
    2) document date / posting date
       and ohter date-fileds of the document
    3) SAP-Release
    Have you search in SAP-OSS with the message no. or
    message text ?
    regards Andreas

  • Problem in posting Service Entry Sheet for PO containing unplanned services

    Hi Experts,
    I am facing an issue with Service POs which are uploaded by a program as a part of Data Migration activity.
    Scenario-
    PO Document Type--> Framework Order
    Account Assignment Cat--> Unknown
    Limit Tab in Service PO--> Overall Limit and Expected Value are mentioned
    Service Tab- No planned service maintained
    Error Msg No- SE366
    Problem-
    While posting SES against this PO - I get a error msg- "No limit for unplanned services amounting to xxx.xx exists" (where xxx.xx is the amount).
    Trials-
    1) I have manually created the same PO in system which allow me to post SES without any problem.
    2) Considering this a a bug I tried to rebuild the PO with report - RMBESTK3 but no success.
    Can anyone please suggest?
    Regards,
    Amit

    Thanks all for prompt reply.
    The issue is resolved now. The porblem was under 'limit' tab there is a tab 'Other Limit'. Under this tab there is a check box 'No Limit' - if we manually create such PO then the box is automatically checked which the uploaded POs were lacking. After checking this box manually the problem is resolved.
    Thanks once again for suggestions.
    Regards,
    Amit

  • Problem in posting multiple documents in FB70 through BDC...

    Hi,
       I am facing a problem while posting multiple documents from a flat file in FB70 thourgh BDC batch input by using session method. However, the session is getting terminated after posting the first document. Please clarify my problem.
    Below is a sample of the data in my flat file -
    Customer,Invoice Date,Posting Date,Amount,G/L Account,Amount in doc. Curr.
    34,03.06.2009,03.06.2009,100,211000,100
    34,03.06.2009,03.06.2009,200,211000,200
    34,03.06.2009,03.06.2009,300,211000,300
    And below is the sample code of my program.
    REPORT ZANI2_BDC_FB70
           NO STANDARD PAGE HEADING LINE-SIZE 255.
    TYPES: BEGIN OF TY_STR_FB70,
             ACCNT(20)      TYPE C,     "Customer
             BLDAT(20)      TYPE C,     "Invoice Date
             BUDAT(20)      TYPE C,     "Posting Date
             WRBTR(20)      TYPE C,     "Basic Data - Amount
             HKONT(20)      TYPE C,     "G/L Account
             ITEM_WRBTR(20) TYPE C,
             "Line Item Amount In Document Currency
           END OF TY_STR_FB70,
          BEGIN OF TY_STR_FILEDATA,
             FIELDS TYPE STRING,
          END OF TY_STR_FILEDATA.
    *   data definition
    *       Batchinputdata of single transaction
    DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE,
    *       messages of call transaction
            MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
    DATA: IT_STR_FILEDATA TYPE STANDARD TABLE OF TY_STR_FILEDATA,
          WA_STR_FILEDATA TYPE TY_STR_FILEDATA,
          IT_STR_FB70 TYPE STANDARD TABLE OF TY_STR_FB70,
          WA_STR_FB70 TYPE TY_STR_FB70,
          G_STR_FILENAME TYPE STRING,
          G_FLG_ERROR TYPE I,
          G_INDEX TYPE I,
          G_STR_INDEX TYPE STRING,
          G_STR_FIELDNAME TYPE STRING.
    SELECTION-SCREEN BEGIN OF BLOCK INPUT.
    PARAMETERS: P_FILE TYPE IBIPPARMS-PATH,
                P_SES  TYPE APQI-GROUPID.
    SELECTION-SCREEN END OF BLOCK INPUT.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = SYST-CPROG
          DYNPRO_NUMBER = SYST-DYNNR
          FIELD_NAME    = 'P_FILE'
        IMPORTING
          FILE_NAME     = P_FILE.
    Continued in the next thread..

    ...Continued from the previous thread.
    PERFORM OPEN_GROUP.
        G_INDEX = 1.  
        LOOP AT IT_STR_FB70 INTO WA_STR_FB70.
           PERFORM BDC_DYNPRO      USING 'SAPMF05A' '1200'.
          PERFORM BDC_FIELD       USING 'RF05A-BUSCS'
                                         'R'.
         "Customer
          PERFORM BDC_FIELD       USING 'INVFO-ACCNT'
                                         WA_STR_FB70-ACCNT.  
          "Invoice Date
          PERFORM BDC_FIELD       USING 'INVFO-BLDAT'
                                        WA_STR_FB70-BLDAT.                               
          "Posting Date
          PERFORM BDC_FIELD       USING 'INVFO-BUDAT'
                                        WA_STR_FB70-BUDAT.                                
         "Basic data - Amount
          PERFORM BDC_FIELD       USING 'INVFO-WRBTR'
                                        WA_STR_FB70-WRBTR.     
          PERFORM BDC_FIELD       USING 'INVFO-WAERS'
                                        'EUR'.
          G_STR_INDEX = G_INDEX.
          IF G_INDEX < 10.
            CONCATENATE '0' G_STR_INDEX INTO G_STR_INDEX.
          ENDIF.
          CONDENSE G_STR_INDEX NO-GAPS.
          CLEAR G_STR_FIELDNAME.
          CONCATENATE  'ACGL_ITEM-WRBTR(' G_STR_INDEX ')' INTO
          G_STR_FIELDNAME.
          PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                                        G_STR_FIELDNAME.
                                        "'ACGL_ITEM-WRBTR(01)'.
          "G/L Acct
          CONCATENATE  'ACGL_ITEM-HKONT(' G_STR_INDEX ')' INTO
          G_STR_FIELDNAME.
          PERFORM BDC_FIELD       USING  G_STR_FIELDNAME       
                                         WA_STR_FB70-HKONT.    
            "Amount .
          CONCATENATE  'ACGL_ITEM-WRBTR(' G_STR_INDEX ')' INTO
          G_STR_FIELDNAME.
          PERFORM BDC_FIELD       USING G_STR_FIELDNAME   
                                        WA_STR_FB70-ITEM_WRBTR.
          "PERFORM BDC_DYNPRO      USING 'SAPMF05A' '1200'.
          PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                                        '=BU'.
          CLEAR WA_STR_FB70.
        ENDLOOP.
        IF G_FLG_ERROR IS INITIAL.
          PERFORM BDC_TRANSACTION USING 'FB70'.
        ENDIF.
        IF G_FLG_ERROR IS INITIAL.
          PERFORM CLOSE_GROUP.
          MESSAGE 'Session created successfully.' TYPE 'I'.
        ENDIF.
      ENDIF.
    Continued in the next thread..

  • Problem on Posting Parked Invoices during MIRO

    Hi SAP Gurus!
    Good day! I'm experiencing a problem during posting Parked Invoices thru MIRO. First I've parked invoices thru MIR7, then when I go to MIRO to post the invoices, the Parked Invoices are not reflected in the "Worklist". What is the possible problem here?
    Hope you can help! Thank you.
    Mik

    Hi Gurus!
    Thanks for the input, but I want the parked documents to be reflected in the posting of invoices (MIRO).
    Actually, in both DEV and QAS servers, the parked invoices are reflected, but in PROD server it is not reflected. I don't know what happened. Can you please help.
    Thank you.
    Mik

  • Problems with posting iDocs from MDM in SAP R3

    Hi,
    I am an MDM consultant, with limited knowledge about SAP R3.
    We send material master data from MDM, via PI to R3 using iDocs.
    We are having problems with posting MATMAS, and it seems the problems are with updating already existing materials.
    In BD87 we get the following warnings:
    The field MARA-ERVOE is not ready for input and was therefore not initialized
    The field MARA-ERVOL is not ready for input and was therefore not initialized
    The field MARA-FERTH is not ready for input and was therefore not initialized
    The field MARA-KZGVH is not ready for input and was therefore not initialized
    The field MARA-XCHPF is not ready for input and was therefore not initialized
    With the last message being:
    No changes made
    I have checked the MDM syndicator, and none of these idoc-fields are linked to the MDM repository.
    So they are syndicated blank.
    If we try to resend the material, it is again stopped and in BD87 I see the same messages.
    Please help me understanding how to solve these issues.
    Thanks,
    Thomas

    Hi,
    Please refer the below threads which talks about the similar problem
    http://scn.sap.com/thread/3180116
    http://scn.sap.com/thread/1374222
    Generally the basic view of the material to be created first. Then the sales, purchasing and other views to be created.
    There are few fields in the other views which gets values from the basic data view.
    Regards,
    Antony

  • Problem in post installation of PI7.1

    Hi All expert  ,
    I facing problem in post installation of PI7.1 ,
    I have tried  to run net weaver initial setup with the help of configuration wizard we are facing given  following problem .
    During 60% of instatllation I have got error u201CChoose a password that is different from your last 5 passwordsu201D I  have changed it in ABAP side but still getting same error
    When I skip this step then second error
    : Choose a password that is different from your last 5 passwords 'PI_JCO_RFC'
    AI_RUNTIME_JCOSERVER
    RFC_ERROR_LOGON_FAILURE: Password logon no longer possible - too many failed attempts
    Is it any way to change all standard user(i.e. created during installation ) like PI*,  password in one shot in both ABAP side and  JAVA side .
    Regards,
    Amit

    Hi,
    that problem is resolved now m facing other problem during initial setup of configuration wizard .
    please see detail log .
    NetWeaver initial setup > PI UT initial setup > PI initial setup > Configure IntegrationServer > Initial setup of functional unit IntegrationServer > Initial setup of functional unit IntegrationServer > This wizard will execute Postinstall steps of technical configuration > Executing BAPI SXMB_SET_ROLE_TO_IS
    Executing BAPI SXMB_SET_ROLE_TO_IS
    Description
    No specified detailed description
    State
    START_ACTION
    Support Information
    Type of Action
    InvokeServiceDebug Events
    error message
    Error: Execution of Function SXMB_SET_ROLE_TO_IS ends with an error (cause:ONLY_ONE_CENTRAL_XMB:100, error code:092).
    error message
    Error: Execution of Function SXMB_SET_ROLE_TO_IS ends with an error (cause:ONLY_ONE_CENTRAL_XMB:100, error code:092).
    InvokeService:Executing BAPI SXMB_SET_ROLE_TO_IS
    Library: sap.com/tclmconfig~content
    SourcePath ./NetweaverProcess/PIJavaConstraint/PIJavaProcess/IntegrationServerRootProcess/IntegrationServerProcess/IntegrationServerProcess/SXMB_SET_ROLE_TO_IS/INVOKESERVICEBAPIIS
    Time 2009/07/31 at 14:30:47
    WSDL content/Netweaver/PI/IntegrationServer/service/BAPIConfiguringRoleOfIS.wsdl
    Destination parameters
    user : PISUPER
    password : % secure content %
    host : ctsgvcsapbl03
    sysnr : 10
    client : 001
    language : en
    function name: SXMB_SET_ROLE_TO_ISInput
    <Input>
    <NAME>EGAL</NAME>
    </Input>
    InvokeService- Result: Failed
    Exception Message:Execution of Function SXMB_SET_ROLE_TO_IS ends with an error (cause:ONLY_ONE_CENTRAL_XMB:100, error code:092).
    Exception Class:com.sap.tc.lm.ctc.metamodel.exception.ActionExecuteException
    Stacktrace
    com.sap.tc.lm.ctc.cul.serviceimpl.process.InvokeServiceControllerDefault.execute(InvokeServiceControllerDefault.java:171)
    error message
    Error: Execution of Function SXMB_SET_ROLE_TO_IS ends with an error (cause:ONLY_ONE_CENTRAL_XMB:100, error code:092).
    Regards,
    Amit

  • Problem with posting message in forum

    This question was solved.
    View Solution.

    Hi dkpb,
    The problem here was that IE9 at the time was incompatible with the forum software.  That has since been fixed.  What is your issue now?  It helps if you describe your specific problem with posting so we can look into it for you.
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • J1IEX - Excise capture / Post entries

    Dear All,
    I want to write a validation for making the decimal values even during J1IEX - Excise capture / Post entries.
    Please guide me to the badi /enhancement for writing the validation.
    Edited by: goenkavishal on Jun 8, 2011 1:20 PM

    Hi Venkat,
    Check whether the remaining items are excisable or not. If they are not exicisable it will not be captured.
    regards
    Anand.C

  • Is anyone having problems playing music on their iPhone? At times, particularly when you've got headphones in songs sound like a badly scratched CD, continually skipping in various sections of the song. Problem occured post-IOS 5 update.

    Is anyone having problems playing music on their iPhone? At times, particularly when you've got headphones in songs sound like a badly scratched CD, continually skipping in various sections of the song. Problem occured post-IOS 5 update.

    Is anyone having problems playing music on their iPhone? At times, particularly when you've got headphones in songs sound like a badly scratched CD, continually skipping in various sections of the song. Problem occured post-IOS 5 update.

  • Problem in posting excise invoice(part2)

    hello gurus,
    i am facing one serious problem. i am using 46c version.
    in case of import procurement . i am not able to post excise invoice .the step i am following are as follows
    1.after doing  MIRO i captured excise for CVD through j1iex with refernce to purchase order , pop up menu appears , i put MIRO number and years. system generated internal excise invoice no.
    2.GR process done with refernce to PO.
    3.than i create part1 through j1i5.
    than after i am trying to post part2 by tcode j1iex again but it shows message that no part1 exist .
    how i can solve this problem, can any one tell me whole cycle for import purchase in sap 46c.
    one more question while making MIGO with refernce to PO one pop up screen should appear for entring MIRO no for reference (as it appears in SAP47c and above), but it is not coming in sap46c. can any one help me whether it is possible in sap46c or not.
    regards
    ashwani tripathi

    Hi,
    Generally, for Import procedure folowed is.
    - PO created without GR/IR Unchecked and for Customs duties conditons are correctd with Custom vendor number
    - MIRO done for the Customs Vendor ( after the receipt of Goods )
    - MIGO done for the Goods ( when Tcode is excuted it will display the Doc number Generated in the MIRO run, or you have to input the correct number )
    - J1IEX done for the part2 posting
    Regards

  • Problem with posting free goods delivery

    I need some help,
    when I'm posting the goods issue in VL02N I'm receiving following error:
    <i>Item   Material           Description                                   Delivery qty UoM Batch                                                                               
    000001 XAK 256 N50 CB P35 CN UR V35/ AUTOALARM DOG 50                             1  ST       
           E KO 014                                                                               
    Order 2000574 cannot carry revenues</i>     
    First I don't know why the order no is 2000574 when the delivery was done to order  2065030645, but it's not a problem to me, the problem is why I'm getting the error 'the order cannot carry revenues' because the delivery is made to an free goods order and the order has values of 0 in pricing conditions.
    Looking forward to reciving some help
    regards,
    Martin

    Hi Marcin
    Check the following:
    Free Goods
    Also referred as discount in kind. Business can consider to offer discount not in monetary terms but in the form of free goods, ie goods provided without any charge when a particular quantity of material is purchased by the Customer. SAP provides two methods:
    a)     Inclusive
    b)     Exclusive
    IMG—SD—Basic functions—Free Goods
    Condition technique for free goods
    Select maintain Pricing procedure
    Standard procedure
    Copy as ur Pricing procedure
    Copy all
    Save
    The Pricing procedure  contains the Condition Type as NA00—free goods
    NA00 has the Access sequence as NA00
    Select activate free goods determination
    Assign the procedure to sales areas using document procedure and customer procedure
    Select your sales area and assign
    S002      SB     SX          A     1     ZA0001
    Save
    A= Document Procedure (determined based on doc)
    1= Customer procedure (Determined from customer master)
    We have to maintain free goods condition records
    SAP menu—Logistics—SD—Master data—Conditions—Free Goods—VBN1 Create
    Discount type: NA00
    Continue
    Enter sales org, distribution channel and Customer
    By default the entry screen is for Inclusive, Select Exclusive button to maintain Condition Record for Exclusive
    Inclusive: Continue, as it is to maintain the record
    Material: Product ID
    Min Qty: Minimum qty required to be ordered (10)
    From: From how many units free goods are considered ie 10
    Unit=Unit of measurement of ordered product
    Are free Goods: quantity free
    Add= The unit of measurement of free goods item
    Calculation: 1 Prorata
    save
    What is the other requirement?
    The pricing procedure should contain the Condition type R100 that is free goods condition type. This condition type in the Procedure has requirement as 55
    (55 means only if the item is free goods then only value of R100 to be used in the calculation. Value= controlled by Alt condition base value 28 which states that discount should be 100%)
    Check whether your pricing procedure is created from scratch then you have to maintain the Condition type R100, requirement as 55 and altcbv= 28
    If you have copied from RVAA01 there is no need to maintain R100, as it is already available
    Create the order
    Ordered qty is split into two items
    M1               30 Pcs
    This will be split as
    M1          27---Item cat TAN—regular pricing
    M1          3—Item cat as TANN eligible for 100% disc
    How the item category is determined
    Main item:
    Z1OR + NORM+TAN
    Sub item
    Z1ORNORM Usage= Free + Higher level item cat as TAN= TANN as sub item – Item category
    Exclusive
    VBN1
    Select Exclusive
    The screen fields are same as inclusive except here there is a provision to add the material number of free good material, which is different from the material ordered. If left blank system takes both as same material
    Reward if useful to u

  • Problem in posting Er PF Wage Types generated through Retro

    Hello all,
    I am running India Payroll in ECC 6.0 with HR Package level 52.
    We have revised wages for two employees in the month of June with effect from 13.04.2010.
    Retro has run successfully for two months April & May and all the wage types are calculated and passed on for FI Posting correctly except Employer PF Wage Types.
    I am getting error while posting wages to FI as Employer PF Contribution & Employer Pension Contribution generated for April & May are not considered for FI Posting.  Only current month values are taken into account.  Whereas I don't have any problem with Employee Contribution.  /ZF5 is generated with total of past two months contribution and also passed on to FI.
    What might be the problem with Er PF Wage Types /3F3 & /3F4?
    We have not posted June salary till now due to above said posting error.  Now July Payroll is also started.
    Experts, please help me to sort out the issue.
    Thanks in advance.
    Regards,
    Hema

    Hi,
    Thanks for quick reply.
    The error is "Posting balance not cleared".
    We have changed all the components including basic salary.  Payroll program has taken PF Basis correctly and calculated PF amounts, both for Employee & Employer contribution correctly for individual months.
    As I mentioned for all the three months Employee Contribution is considered for FI posting through regular wage type for current month and through /ZF5 for last two months.
    But for Employer Contribution only June amount is considered for posting even though the correct amounts are shown for other two months in RT (three lines for /3F3 & /3F4 each).
    Due to this, total amount for Balance Sheet Accounts is less where as Expense Accounts is shown higher as Employer Contribution is not considered for April & May, causing imbalance in Accounting entries.
    GL Accounts are mapped correctly.  Otherwise even the current month amount will not be carried to FI.
    Hope my explanation is clear.
    Thanks & Regards,
    Hema

Maybe you are looking for