Conversion error in J1iin transaction

Hi experts,
We have activated the TAX2 field means AT2 field in J1IIN transaction.
Now we are getting dump as conversion error . Tax2 field is getting negative value for that its giving conversion error.
That's mean the domain value of the tax2 field is not accepting the negative value .
Please suggest me how can i have to rectify this problem
Regards
Madhu

Hi Madhu,
Please try Using the Conversion Fm Have a few below
EXTERNAL_S_CURRENCY_CONVERSION
K_PRICE_CURRENCY_CONVERSION
COPA_CURRENCY_CONVERSION
KPFP_CURRENCY_CONVERSION
RKD_CURRENCY_CONVERSION
CURRENCY_CONVERSION_0603
CONVERT_CURRENCY_BY_RATE
CONVERT_COUNTRY_CURRENCY
CONVERT_AMOUNT_TO_CURRENCY
CONVERT_TO_FOREIGN_CURRENCY
CONVERT_TO_LOCAL_CURRENCY
Hope that will Help you.
Thanks
Kalyan

Similar Messages

  • Conversion Error in J1IIN

    Hi experts,
    We are getting dump as conversion error in J1IIN . BED field is getting negative value for that its giving conversion error.
    That's mean the domain value of the BED field is not accepting the negative value .
    Please suggest me how can i have to rectify this problem.
    Thanks in Advance
    - Neha.

    hi,
    Use conversion exit before saving the data
    regards
    vivek

  • Conversion error in J1IEX transaction

    HI all,
    We are doing upgrade from 4.6C to ECC 6.0. After upgrade, when we tried to execute the tcode J1IEX, it returns the following error.
    That is, in J1IEX, we select Capture Excise Invoice -> Goods Receipt -> GR number. After entering this GR number and pressed ENTER key, we get the following error.
    " Conversion error
    Error analysis
        The program has been interrupted and cannot resume.
        Program "SAPLJ1IEX" attempted to display fields on screen 0200.
        An error occurred during the conversion of this data.
    How to correct the error
        There was a conversion error in the output of fields to the screen.
        The formats of the ABAP output field and the screen field may not match.
        Some field types require more space on the screen than in the ABAP
        program. For example, a date output field on the screen requires two
        more characters than the corresponding field in the ABAP program. When
        the date is displayed on the screen, an error occurs resulting in this
        error message.
                      Screen name.............. "SAPLJ1IEX"
                      Screen number............ 0200
                      Screen field............. "J_1IEXITEM-AVB_CREDIT_QTY"
                      Error text............... "FX015: Sign lost."
        Other data:
    Pls help me in correcting this error.

    Hi all,
    Is the DYNPRO_FIELD_CONVERSION error in J1IEX transaction (field conversion error in AVB_CREDIT_QTY field under "Exceise Invoice" tab) due to the negative value passed to this AVB_CREDIT_QTY screen field.
    If so, how to correct the negative value problem?

  • Patch for J1IIN transaction.

    Hi, I'm trying to convert the Invoice value from Foreign currency to INR in the J1IIN transaction. I don't see a provision for it as of now. I've learnt that this can be done if a patch is applied. I need to know the patch number for the above conversion in the J1IIN transaction. Can some one help me with this.

    Note 957377 - Excise base appears in foreign currency in J1IIN for TAXINN

  • Error while saving Excise Invoice in J1IIN Transaction.

    Hi All,
    While saving Excise Invoice in J1IIN Transaction, am getting the following errors.
    1.Balance in Transaction Currency.
    2.System failure during locking G/L account 7000 by 61110.
    Pls provide me the solution.
    Regards,
    Sasi.

    Hi SASIKANTH,
      Go thru the below issues, hope would be helpful.
    1. Balance in Transaction Currency
    Balance in transaction currency
    Re: Balance in  Transaction Currency
    2.System failure during locking G/L account 7000 by 61110
    System failure during locking GLaccount (the Company Code) by (GLaccount no
    System failure during locking GL 401000
    System failure during locking GLaccount 1000 by 43000130
    Thanks,
    Swamy H P

  • Transaction currency error in J1IIn

    Hi,
    I am getting Error in transaction currency while executing T.code J1iin. I have seen all the sdn replies and have tried.
    Excise GL accounts determination are done and SAP patch notes are also applied.
    Could anybody add further more inputs to solve this error?
    Thanks in advance.
    Regards
    Uma

    Hi,
    Did you check the following note
    Note 1018071 - Error "Balance In transaction currency" (F5 702) in j1iin
    Note 978186 - Utilization of negative balance allowed in PLA in J1IIN such note is the prerequisite for the above note
    Also check this note
    Note 845822 - Error "Balance In trnsaction currency" (F5 702) in j1iin
    if your configuration settings are correct then above mentioned notes should definitely work.
    Regards,
    Jigar

  • Runtime error in J2IUN -  "DYNPRO_FIELD_CONVERSION" / "Conversion Error*"

    Hi All,
    I am facing run time error problem during Transaction J2IUN "DYNPRO_FIELD_CONVERSION" / "Conversion Error"
    Error analysis:
    The program has been interrupted and cannot resume.
    Program "J_1IRUTZN" attempted to display fields on screen 9000.
    An error occurred during the conversion of this data.
    There was a conversion error in the output of fields to the screen.
    The formats of the ABAP output field and the screen field may not match.
    Some field types require more space on the screen than in the ABAP
    program. For example, a date output field on the screen requires two
    more characters than the corresponding field in the ABAP program. When
    the date is displayed on the screen, an error occurs resulting in this
    error message.
    Screen name.............. "J_1IRUTZN"
    Screen number............ 9000
    Screen field............. "UTIL1-REM_BAL"
    Error text............... "FX015: Sign lost."
    Other data:
    Kindly guide me to resolve the issue.
    Regards,
    P.S.Chitra

    Hi,
    Here comes the solution...
    Please implemet the SAP note 1252418...
    Looking very much relavent to your problem...
    Regs,
    Lokesh.

  • Numeric or value error: hex to raw conversion error , pls help

    I am having problem with a sproc which accepts a Raw parameter.
    I have a table called Profile:
    CREATE TABLE PROFILES
    PROFILEID INTEGER NOT NULL,
    USERID INTEGER NOT NULL,
    PROFILE RAW(255)
    and a sproc named addprofile
    CREATE OR REPLACE PROCEDURE addprofile
    profile IN RAW,
    userName IN VARCHAR2
    AS
    userId INT;
    BEGIN
    GetUserIdByName( userName, userId);
    INSERT INTO Profiles
    ( ProfileID,userId , profile )
    VALUES ( Profiles_ProfileID_SEQ.NEXTVAL,AddProfile.userId ,
    AddProfile.profile );
    END;
    I am calling the Ent Library's Insert profile method which is part of DbProfileProvider.cs (Security App block). It is trying to persist a serialized profile object into the database.
    private void InsertProfile(string userName, byte[] serializedProfile,
    Data.Database securityDb, IDbTransaction transaction)
    DBCommandWrapper cmd = securityDb.GetStoredProcCommandWrapper
    (SPAddProfile);
    cmd.AddInParameter("userName", DbType.String, userName);
    cmd.AddInParameter("profile", DbType.Binary, serializedProfile);
    securityDb.ExecuteNonQuery(cmd, transaction);
    I get the following error:
    Any suggestion on what needs to be changed to get this working? thanks!
    Exception Details: Oracle.DataAccess.Client.OracleException: ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error ORA-06512: at line 1
    Stack trace:
    [OracleException: ORA-06502: PL/SQL: numeric or value error: hex to raw conversion error
    ORA-06512: at line 1]
    Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src, String procedure)
    Oracle.DataAccess.Client.OracleException.HandleError(Int32 errCode, OracleConnection conn, String procedure, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, Object src)
    Oracle.DataAccess.Client.OracleCommand.ExecuteNonQuery()
    Microsoft.Practices.EnterpriseLibrary.Data.Database.DoExecuteNonQuery(DBCommandWrapper command)
    Microsoft.Practices.EnterpriseLibrary.Data.Database.ExecuteNonQuery(DBCommandWrapper command, IDbTransaction transaction)
    Microsoft.Practices.EnterpriseLibrary.Security.Database.DbProfileProvider.InsertProfile(String userName, Byte[] serializedProfile, Database securityDb, IDbTransaction transaction)
    Microsoft.Practices.EnterpriseLibrary.Security.Database.DbProfileProvider.SetProfile(IIdentity identity, Object profile)
    [InvalidOperationException: Error saving the profile for the following user 'test'.]
    Microsoft.Practices.EnterpriseLibrary.Security.Database.DbProfileProvider.SetProfile(IIdentity identity, Object profile)
    EntLibSecuritySample.DFO.Security.SecurityHelper.SetUserProfile(IIdentity identity, Object Profile) in C:\DFO\Sample\Security\EntLibSecuritySample\SecurityHelper.vb:285
    [ApplicationException: An error has occurred saving profile object to Datastore. See stack trace for further information]
    EntLibSecuritySample.DFO.Security.SecurityHelper.SetUserProfile(IIdentity identity, Object Profile) in C:\DFO\Sample\Security\EntLibSecuritySample\SecurityHelper.vb:287
    EntLibSecuritySample.ProfilePage.cmdSaveProfile_Click(Object sender, EventArgs e) in C:\DFO\Sample\Security\EntLibSecuritySample\profile.aspx.vb:59
    System.Web.UI.WebControls.Button.OnClick(EventArgs e)
    System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
    System.Web.UI.Page.ProcessRequestMain() +1292

    Harsh,
    I am not a user of the Enterprise Library so I can not speak to the specifics of that. However, here is a short sample that is based on the information you've provided. Perhaps it will be useful.
    Database:
    create table profiles
      profileid integer not null,
      userid    integer not null,
      profile   raw(255)
    create or replace procedure addprofile
      p_profileid in integer,
      p_userid    in integer,
      p_profile   in raw
    as
    begin
      insert into
        profiles (profileid, userid, profile)
        values (p_profileid, p_userid, p_profile);
    end;
    /C# code:
    using System;
    using System.Data;
    using System.Text;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    namespace HarshTest
      /// <summary>
      /// Summary description for Class1.
      /// </summary>
      class Class1
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main(string[] args)
          // connect to local db using o/s authentication
          OracleConnection con = new OracleConnection("User ID=/; Pooling=False");
          con.Open();
          // create command object and set properties
          OracleCommand cmd = new OracleCommand();
          cmd.Connection = con;
          cmd.CommandText = "ADDPROFILE";
          cmd.CommandType = CommandType.StoredProcedure;
          // parameter object for profileid
          OracleParameter p_profileid = new OracleParameter();
          p_profileid.OracleDbType = OracleDbType.Int32;
          p_profileid.Value = 1;
          p_profileid.Direction = ParameterDirection.Input;
          // parameter object for userid
          OracleParameter p_userid = new OracleParameter();
          p_userid.OracleDbType = OracleDbType.Int32;
          p_userid.Value = 1;
          p_userid.Direction = ParameterDirection.Input;
          // create a byte array for the raw value
          ASCIIEncoding encoder = new ASCIIEncoding();
          byte[] byteArray = encoder.GetBytes("TestProfile");
          // parameter object for profile
          OracleParameter p_profile = new OracleParameter();
          p_profile.OracleDbType = OracleDbType.Raw;
          p_profile.Value = byteArray;
          p_profile.Direction = ParameterDirection.Input;
          // add parameters to collection
          cmd.Parameters.Add(p_profileid);
          cmd.Parameters.Add(p_userid);
          cmd.Parameters.Add(p_profile);
          // execute the stored procedure
          try
            cmd.ExecuteNonQuery();
          catch (OracleException ex)
            Console.WriteLine(ex.Message);
          // clean up objects
          p_profile.Dispose();
          p_userid.Dispose();
          p_profileid.Dispose();
          cmd.Dispose();
          con.Dispose();
    }Maybe the part about creating the byte array is what you are missing...
    - Mark

  • Character conversion error when installing Java Portlet Container Preview

    I'm trying to tets out JSR 168 portlets on our Oracle 10g server. I'm following the instructions at http://portalstandards.oracle.com/
    I download and try to install the "Java Portlet Container Preview Release 2", and I get the following error:
    [oracle@jupiter home]$ java -jar ~/wsrp-install.jar ~/jwsdp-1.3
    File "/home/oracle/jupiter_mid/j2ee/home/config/global-web-application.xml" modified successfully
    oracle.webdb.utils.PortalExceptionImpl: Error transforming file "config/server.xml"
    at oracle.portal.PortalException.<init>(PortalException.java:66)
    at oracle.webdb.wsrp.server.install.InstallException.<init>(InstallException.java:31)
    at oracle.webdb.wsrp.server.install.Main.applyTransformation(Main.java:387)
    at oracle.webdb.wsrp.server.install.Main.install(Main.java:122)
    at oracle.webdb.wsrp.server.install.Main.main(Main.java:98)
    Caused by: javax.xml.transform.TransformerException: Character conversion error: "Unconvertible UTF-8 character beginning with 0x92" (line number may be too low).
    at org.apache.xalan.transformer.TransformerImpl.fatalError(TransformerImpl.java:739)
    at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:715)
    at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1129)
    at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1107)
    at oracle.webdb.wsrp.server.install.Main.applyTransformation(Main.java:371)
    ... 2 more
    caused by: ; SystemID: http://xmlns.oracle.com/ias/dtds/application-server-9_04.dtd; Line#: 1; Column#: -1
    javax.xml.transform.TransformerException: Character conversion error: "Unconvertible UTF-8 character beginning with 0x92" (line number may be too low).
    at org.apache.xalan.transformer.TransformerImpl.fatalError(TransformerImpl.java:739)
    at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:715)
    at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1129)
    at org.apache.xalan.transformer.TransformerImpl.transform(TransformerImpl.java:1107)
    at oracle.webdb.wsrp.server.install.Main.applyTransformation(Main.java:371)
    at oracle.webdb.wsrp.server.install.Main.install(Main.java:122)
    at oracle.webdb.wsrp.server.install.Main.main(Main.java:98)
    [oracle@jupiter home]$
    This is what the server.xml looks like:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <!DOCTYPE application-server PUBLIC "-//Oracle//DTD OC4J Application-server 9.04//EN" "http://xmlns.oracle.com/ias/dtds/application-server-9_04.dtd">
    <application-server localhostIsAdmin="true"
    application-directory="../applications"
    deployment-directory="../application-deployments"
    connector-directory="../connectors">
    <rmi-config path="./rmi.xml" />
    <sep-config path="./internal-settings.xml" />
    <jms-config path="./jms.xml" />
    <javacache-config path="../../../javacache/admin/javacache.xml" />
    <log>
    <file path="../log/server.log" />
    </log>
    <transaction-config timeout="30000" />
    <java-compiler name="javac" in-process="false" extdirs="/home/oracle/jupiter_mid/jdk/jre/lib/ext" />
    <global-application name="default" path="application.xml" />
    <application name="BC4J" path="../applications/BC4J.ear" auto-start="true" />
    <application name="BC4JManager" path="../applications/BC4JManager.ear" auto-start="true" />
    <application name="IsWebCacheWorking" path="../applications/IsWebCacheWorking.ear" auto-start="true" />
    <application name="jdev_test2" path="../applications/jdev_test2.ear" auto-start="true" />
    <global-web-app-config path="global-web-application.xml" />
    <web-site default="true" path="./default-web-site.xml" />
    <cluster id="1214162165" />
    </application-server>
    server.xml looks ok, and I've tried tweaking it to no avail. Anyone know what could cause this?

    Could you make sure you don't have any extra Apache libraries hanging around in your global classpath, i.e. ensure there is nothing extra in <J2SE Home>/jre/lib/extThere's a xercesImp.jar under mid/j2ee/OC4J_Portal/applications/jpdk/jpdk/WEB-INF/lib/xercesImpl.jar, but there's also one under jwsdp-1.2/jaxp/lib/endorsed/xercesImpl.jar. Is that supposed to be in there?
    Neither of these are getting loaded, though; running java -verbose shows that all of org.apache.xalan.* is being loaded from mid/jdk/jre/lib/rt.jar
    FWIW, ../../lib/xmlparserv2.jar does exist, but doesn't look like it's being loaded. :-\

  • RSWUWFML2 - CONVERSION ERROR sending workitem out via SCOT

    Hi there,
    Please help, I am using report RSWUWFML2 to send workitems to outlook, the email gets to outlook but it seems like there is a CONVERSION error that occurs in SAP that results in no workitem ATTACHMENT being in the email.
    The error in the email is: "Message cannot be processed as it cannot be converted"
    I turned on the trace in SCOT and this is the log....look at the sections in BOLD to see what happened:
    SX_PERFORM_RFCSEND               G  <b>Formats supported: ALI INT OBJ OTF PDF RAW SCR URL     </b>
    SX_OUTGOING_VERSION_BUILD        G  Read contents of document RAW32000000034669            
    SO_OBJECT_DATA_FOR_SEND_GET      G  Object transferred                                     
    SX_OUTGOING_VERSION_BUILD        G  <b>Converting document RAW32000000034669 from TXT to INT  </b> SX_OUTGOING_VERSION_BUILD        G  Read contents of document EXT32000000011065            
    SO_OBJECT_DATA_FOR_SEND_GET      G  Object transferred
    SX_OUTGOING_VERSION_BUILD        G  <b>No suitable conversion found for SAP                   </b> SX_GENERATE_NDR                  G  <b>Message cannot be processed as it cannot be converted  </b>
    My apologies for the bad formatting above, was the best I could do from copy and paste from SCOT....
    I have also looked at the "conversion rules" in SCOT.....could this be the problem? It seems to want to convert type "SAP" to something.....but there is no "SAP type" in the conversion rules?
    PLEASE help, I really need to get over this obstacle
    Thanks
    Lynton

    Not sure if this will confuse matters more but if I look in the LOGS further in transaction SLG1 I see the following:
    Typ Message text                                                                               
    Selection Setting: p_jobsuf = 2                           
        Selection Setting: p_tasks = TS00007986                   
        Selection Setting: x_sc_inb =                             
        Selection Setting: x_sc_dis =                             
        Selection Setting: x_sc_exe = X                           
        Selection Setting: p_s_nac = SWU_NOTIF                    
        Selection Setting: p_s_nan = 002                          
        Selection Setting: p_prol = SWU_NOTIF_PROLOG1             
        Selection Setting: p_epil = SWU_NOTIF_EPILOG2             
        Selection Setting: p_logon =                              
        Selection Setting: p_fromd = 03.12.2007                   
        Selection Setting: p_fromt = 08:00:00                     
        Selection Setting: p_user =                               
        Selection Setting: x_err_tr =                             
        Selection Setting: x_alw_tr = X                           
        Work item 000001389473 being edited                       
        SAPoffice document RAW32000000034669 sent                 
        Work item 000001389473: Send ok                           
        Work item 000001389473 sent to [email protected]     
    So this log looks fine BUT the previous trace from SCOT looks bad.....
    Any ideas?
    Lynton

  • Material Conversion Error

    Hi gurus,
    i have executed a query and i have tried to drill on material then i got an error saying that
    internal system error....BMG135
    which says material conversion settings not found...
    how to solve this error and fix so that i can see the material in my report.
    thanks
    Neel

    Hi,
    take a look
    0MATERIAL conversion exit
    execute report (transaction se38) RSCC_V_TMCNV helps.
    Set the length of 0MATERIAL and change conversion to alpha:
    Re: Error Installing 0MATERIAL from Business Content
    oss note 555675
    Solution
    Make the settings for the material number conversion.
    In BW Release 2.1C, the settings are maintained for the material number conversion via report RSCC_V_TMCNV.
    As of BW Release 3.0A, the settings are maintained for the material number conversion via transaction OMSL.
    Select the same settings as the settings made in the OLTP system.
    Note that you must also perform the setting in client 000 if the error occurred while you were importing a transport request.
    hope this helps.
    Go to transaction OMSL in BW and set the length of material number same as that in transaction OMSL in R/3, should resolve the problem.
    hope it helps
    Regards,
    San!
    Message was edited by: San!

  • Error: -5012, Unbalanced Transaction  SBO 2005 A SP1 PL16

    Hi everyone,
    I am working with an add-on program that creates journal vouchers from a 3rd party database.  Before 2005 A SP1, the add-on worked as designed.   Once SP1 was installed, if the add-on tries to create a journal voucher with more than one transaction, the error -5012, Unbalanced Transaction occurs. 
    No Add-on code was changed.  I am using 2005 A SP1, PL16.
    On System Initialization>Document Settings, Per Document tab for Journal Entry, the "Block Unbalanced RC Journal Entry" is unchecked, along with all the other checkbox on this tab. (Form 228, Item 36, OADM, FcNoBlnc)
    On the Journal Voucher Form, Form Settings, Document tab, General tab, the "Allow Unbalanced Transaction if FC" checkbox and the "Allow Multi-Currency Transactions" checkbox are checked by default.  On the Table tab of the Document tab, both "From LC Field" and "From FC Field" are unchecked.
    I know the system currency handing in exchange rate & conversion changed from SP0 to SP1, but I don't know what technical changes I have to make to the DI code or if there is a setting in the program I need to change.   I have searched for this issue, but I have not found a resolution.  I know other areas of the program have had this issue in the pasted, but they have be resolved in previous patches.
    Any help would be greatly appreciated.

    This issue was resolved in 2005 A SP23.  See SAP note 1012754.
    I am now using SP41 and all my transactions are being included as one.  Still trying to fiqure out what the problem is now.
    Edited by: Greg Stratakes on Mar 6, 2008 2:54 PM

  • Quantity conversion error

    Hi,
    In me21n transaction , I am trying to create an purchase order for a specific material. But I get an error saying ''Quantity conversion error in net price calculation'' . I have checked the quantity conversion for that material but it seem to be right. Do anybody have any solution for this?
    Regards,
    Bhagyashree

    Hi Andy,
    Check the below document which helps u...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/g-i/how%20to%20report%20data%20in%20alternate%20units%20of%20measure
    Also check these threads:
    /thread/366900 [original link is broken]
    Quantity Conversion Function Module
    Unit of measure
    Hope these helps u...
    Regards,
    KK.

  • Open PO LSMW Quantity conversion error in net price calculation

    Hi gurus,
    I encountered an error as I was tring to upload purchase orders - "Quantity conversion error in net price calculation". What does this mean and how do I fix this?
    Please help
    Thanks

    Hi Jürgen,
    Where in the Material Master can I find the conversion ratio between both units?
    Also, I am trying to upload POs for Spare Parts and that's when I get the error. But when I try to use other materials like FGs, everything is ok. I can proceed with the upload without any problem
    Please help

  • How to custom a conversion error in JSF page in JDeveloper

    According to the book "Core JavaServer Faces" p213 (fifth edition), if I add the following line to messages.properties file, and specifiy it in the faces-config.xml and .jsp file, then the displayed conversion error message should be my tailored one instead of the default. However, I still get the default error message. Besides, I didn't find "CONVERSION" variable in UIInput class. Is the book wrong? And what's the correct way?
    javax.faces.component.UIInput.CONVERSION=Please correct your input

    I didn't choose any special in JDeveloper IDE. I just selected "new" to create a file called "message.properties" and put the line there. I didn't specify converters excepts declaring the type in the Jave Beans. I guess the converting is done by the JSF framework automatically. It must be a JSF converter since I created the page as a JSF page.

Maybe you are looking for