Value error during type conversion (KONP-KBETR to packed nos).

Hi,
I am using TYPE KONP-KBETR whose data element is 'KBETR_KOND'. Its Length is 11 and decimal Places is 2.
Now I want to store this value in a variable with 3 decimal places.
For this I have taken a variable with type P.
Eg : DATA  : VALUE2(7) type P decimals 3.
When I store the value of KONP-KBETR in var VALUE2, I get some confusing value.
For Eg: if KONP-KBETR = 300.00 and I pass this value to var VALUE2, then VALUE2 becomes 30.000.
Ideally VALUE2 should have been 300.000.
Can anybody tell why this is so and what needs to be done to get the correct value.?
Thanks.

Hi Kumar,
TABLES KONP.
data: val1 TYPE KONP-KBETR value '300.00',
      VALUE2(7) type P decimals 3.
value2 = val1.
write: val1,
       value2.
the output of the above code, 300.00     300.000.
i didn't get any problem.. check it out once..
Ram

Similar Messages

  • Error during currency conversion and consistency check in a sales order

    Hi Experts,
    I am facing the below error in the sales order. The sales order is having so many items. The below error is coming for few items only. I have checked the currency exchange rates also. All are maintained properly.
    Please advice me how to fix this error or which class,methods are responsible for checking the above details while saving the order.
    Thanks,
    Sri

    Hi Christophe,
    FYI
    Error during currency conversion frm &1 to &2 (date &3, ref. curr. &4)
    Message Class - CRM_CUMULATED_I
    Message No     - 013
    Error during currency conversion for &1 and &2
    Message Class - CRM_CUMULATED_I
    Message No     - 008
    Consistency check: Logical key does not match
    Message Class - CRM_CUMULATED_I
    Message No     - 011
    Thanks,
    Sri

  • Warning: Compiler errors during type creation

    Hello all,
    when I run the following little script in my Oracle 8.1.7 SQL plus spreadsheet I get the following error message:
    "Warning: Compiler errors during type creation". (This is my offhand translation from German, since I have a German version)
    There is no further hint as to what the nature of the error is or how I can fix it, but for sure I can't use the type I tried to define.
    Can anybody help?
    Here is the code:
    set serveroutput on ;
    create or replace type DataPoint as object(
    name varchar2(20)
    create or replace type DataPointList as table of DataPoint ;
    create or replace type ElementType as object (
    TypeName varchar(20),
    Datapoints DataPointList
    create or replace type ElementList as table of ElementType ;
    Regards,
    Norbert Ploett
    null

    create or replace type DataPoint as object(
    name varchar2(20)
    create table DataPointList of DataPoint ;
    create or replace type ElementType as object (
    TypeName varchar(20),
    Datapoints DataPointList
    create table ElementList of ElementType ;
    This should work in the given case
    Ravi
    Regards,
    Norbert Ploett
    Regards,
    Norbert Ploett
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Norbert.Ploett:
    Hello all,
    when I run the following little script in my Oracle 8.1.7 SQL plus spreadsheet I get the following error message:
    "Warning: Compiler errors during type creation". (This is my offhand translation from German, since I have a German version)
    There is no further hint as to what the nature of the error is or how I can fix it, but for sure I can't use the type I tried to define.
    Can anybody help?
    Here is the code:<HR></BLOCKQUOTE>
    null

  • Error during unicode conversion

    Dear all,
    we are facing one issue during unicode conversion. the code is as follows:
    FIELD-SYMBOLS : <n> TYPE X,
                                 <c> TYPE C.
    DATA : a TYPE i.
    DATA : x TYPE x.
    MOVE <n> TO a.
    a = a + 22.
    MOVE a TO x.
    ASSIGN x TO <c> CASTING TYPE c
    and we are getting the following error:
    ERROR : the length of "X" in bytes must be a multiple of the size of a Unicode character (regardless of the size of the unicode character
    please guide on how this can be resolved in ECC.
    Regards,
    N.Jain

    Hi,
    here is some code to do it:
    FIELD-SYMBOLS : <n> TYPE x,
                    <c> TYPE c.
    DATA : a TYPE i.
    DATA : x TYPE x.
    MOVE <n> TO a.
    a = a + 22.
    MOVE a TO x.
    DATA:
      buffer TYPE xstring,
      conv TYPE REF TO cl_abap_conv_in_ce,
      x_char.
    buffer = x.
    conv = cl_abap_conv_in_ce=>create(
           encoding = 'NON-UNICODE'
           input = buffer
    CALL METHOD conv->read(
      EXPORTING
        n    = 1
      IMPORTING
        data = x_char
    ASSIGN x_char TO <c>.
    Regards
    Walter Habich
    Edited by: Walter Habich on Jun 10, 2008 4:09 PM

  • Error during Unicode Conversion at DDNTF table

    Hello
    We are doing a Unicode Conversion for our CRT systems. This system now
    is a SAP CRM 7.0 SR1 ABAP.
    We have performed preparatory steps (SPUMG, checks, updating R3load,
    R3ldctl, R3szchk, dboralib, ...),
    but when we start Import process we get an error in SAPSDIC package.
    The error looks like:
    *************************+
    (RTF) ########## WARNING ###########
    Without ORDER BY PRIMARY KEY the exported data may be unusable
    for some databases
    (EXP) INFO: table DDNTF will be exported with sorting
    (RSCP) ERROR: 'DDNTF' in UMGCCTL: Guess has illegal value.
    (RSCP) WARN: DDNTF: Missing in UMGSTAT,
    ERROR in nametab conversion
    conversion of nametab table 'DDNTF ':
    rscpMCStartTab: rc = 128
    (CNV) ERROR: data conversion failed. rc = 2
    (DB) INFO: disconnected from DB
    /usr/sap/CRT/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/CRT/SYS/exe/run/R3load: END OF LOG: 20091229193651
    Any idea??
    Thanks in advance
    Regards

    Yes I executed this Report using Menu Tool Bar.
    The first execution gave me some errors regarding some tables existing at database level but  not in DDIC. We ignored this errrors because those tables are not important.
    But the last try, we decided solve this inconsistencies deleteting those tables at database level, repeting report RADUCNT (in this case no errors appeared) and repeting the export with the same error..
    Now, we have seen in Tabscript STATUS of SPUMG there are some errors regarding DDNTF inconsistency found at table control. Reason 4.  But this reason means that faillback codepage missing at table control for this table. But as far I know, I can't fill failbak field for this kind of table...
    So know I'm reseting SPUMG, and reestarting again..
    But I don't understand what is the problem
    In a few minutes I will you inform about results
    Meanwhile is anybody have any suggestion or idea... please let me know
    Thanks!

  • ORA-01722: invalid number - Error during implicit conversion (10g vls 11g)

    I am facing oracle error for few SELECT queries in 11g which were working fine in 10g environment.
    Oracle Version:
    10g - 10.2.0.5.0
    11g - 11.2.0.3.0
    We are storing numeric values under CHAR or VARCHAR2 column in few tables. This is known design issue & it can't be changed for now.
    I know this will work fine until all the data is numeric in those columns for respective table. Because by some reason, if any row got character value for that column then implicit string to number conversion will fail and this error can occur. But I have verified that there is no data issue.
    But I can see difference in the execution plan! But not able to recognize the reason issue.
    Any other pointers on why the queries are failing in 11g would be of great help..
    Example SQL:
    Note that table structure and data is same in both the environments.
    View Definition -
    CREATE OR REPLACE FORCE VIEW CIMSOS.LC_LOCATIONS
    (   COUNTRY_ID,    PRODUCTID,
       LANGUAGE_ID,   LOCATION_NAME,
       LOCATION_SHORT_NAME,   TAG_ID,   LOCATION_DEFINITION,
       COMPOSITEKEY,   GLOBAL_LOCATION_KEY,
       CPRODUCTKEYID,   CMODVERSION)
    AS
       SELECT
              CCOUNTRY_ID AS COUNTRY_ID,
              CPRODUCTID AS PRODUCTID,
              CLANGUAGE_CODE AS LANGUAGE_ID,
              CLOCATION_NAME AS LOCATION_NAME,
              CLOCATION_SHORT_NAME AS LOCATION_SHORT_NAME,
              CTAG_ID AS TAG_ID,
              CLOCATION_DEFINITION AS LOCATION_DEFINITION,
              CCOMPOSITEKEY AS COMPOSITEKEY,
              CGLOBAL_LOCATION_KEY0 AS GLOBAL_LOCATION_KEY,
              cproductkeyid,
              cmodversion
         FROM mct_35193, goldencopy
        WHERE     cproductkeyid = productkey
              AND cmodversion = version
              AND catalogid = 35193;Facing issue for SQL query based on above view:
    ** In 10g Env
    SELECT * FROM LC_LOCATIONS WHERE productid = 75;
    -- It executes successfully and provide required results.
    Explain Plan:
    SELECT STATEMENT  ALL_ROWSCost: 12  Bytes: 416  Cardinality: 4                 
         4 NESTED LOOPS  Cost: 12  Bytes: 416  Cardinality: 4            
              1 INDEX RANGE SCAN INDEX CIMSOS.GOLDENCOPY_INDX1 Cost: 10  Bytes: 30,225  Cardinality: 2,015       
              3 TABLE ACCESS BY INDEX ROWID TABLE CIMSOS.MCT_35193 Cost: 1  Bytes: 89  Cardinality: 1       
                   2 INDEX UNIQUE SCAN INDEX (UNIQUE) CIMSOS.XPK_MCT_34342 Cost: 0  Cardinality: 1  ** In 11g Env
    SELECT * FROM LC_LOCATIONS WHERE productid = 75;
    ORA-01722: invalid number
    Explain Plan:
    SELECT STATEMENT  ALL_ROWSCost: 40  Bytes: 8,692  Cardinality: 82            
         3 NESTED LOOPS  Cost: 40  Bytes: 8,692  Cardinality: 82       
              1 TABLE ACCESS FULL TABLE CIMSOS.MCT_35193 Cost: 22  Bytes: 819  Cardinality: 9 
              2 INDEX RANGE SCAN INDEX CIMSOS.GOLDENCOPY_INDX1 Cost: 2  Bytes: 135  Cardinality: 9 
    -- Executes when value is passed as character.
    SELECT * FROM LC_LOCATIONS WHERE productid = '75';

    The problem doesn't appear to be related to the Oracle version, at least not directly. If your query plan does the string to number conversion before eliminating the rows that have non-numeric data, you'll get an error. If the query plan eliminates the rows that have non-numeric data before doing the conversion, the query will succeed. It is entirely possible that you'd get the "bad" plan in 10g or the "good" plan in 11g.
    You can capture the query plans from your 10g database and move them over to the 11g database. Oracle has a nice white paper on upgrading from 10g to 11g that walks you through that process.
    Of course, you really don't want to be dependent on the optimizer picking the "right" plan, you really want to fix the underlying data model issue.
    Justin

  • SAPInst Export Error during Unicode Conversion

    Hello,
    I started SAPInst, to export the source instance (for unicode conversion).
    During the export preparation phase, I get the following error (in SAPInst)
    ERROR
    CJS-00030: Assertion failed: in component: NW_getDBInfo step: fillContextat this point the dbtype has to be != ind
    ERROR
    MUT-03025 Caught ESAPinstException in Modulecall:
    ESAPinstException: error text undefined
    ERROR
    FCO-00011 The step fillContext with step key
    |NW_Prepare_Export| ind| ind | ind | ind |0 |0 |NW_GetSidromProfiles |ind |ind |ind |ind |2 |0 |NW-getDBInfo |ind |ind |ind |4 |0 | fillContext was executed with status ERROR
    Please help me how to rectify this error.
    Thanks,
    Haleem

    Hello,
    I recently experienced this problem, and it seems that when executing this step the <sid>adm account needs to be defined to use C shell.  If its already set up to use C shell, check the <sid>adm logon scripts to make sure all the environment variables are being set correctly.
    Regards,
    Brad

  • Error during Unicode Conversion - Import

    Hi,
    I am doing a Unicode conversion, done with the system export, while doing the
    import during the Import ABAP phase system is throwing the error with R3load.
    R3load -testconnect fails with following error.
    emalonsbx002:wuuadm 18% R3load -testconnect
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    R3load: START OF LOG: 20071113095228
    R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#14 $ SAP
    R3load: version R7.00/V1.4 [UNICODE]
    Compiled Oct 20 2007 06:20:06
    R3load -testconnect
    DbSl Trace: OCI-call 'OCISessionBegin' failed with rc=1033
    DbSl Trace: CONNECT failed with sql error '1033'
    DbSl Trace: OCI-call 'OCISessionBegin' failed with rc=1033
    DbSl Trace: CONNECT failed with sql error '1033'
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: OCI-call 'OCISessionBegin' failed with rc=1033
    DbSl Trace: CONNECT failed with sql error '1033'
    DbSl Trace: OCI-call 'OCISessionBegin' failed with rc=1033
    DbSl Trace: CONNECT failed with sql error '1033'
    (DB) ERROR: DbSlErrorMsg rc = 99
    R3load: job finished with 1 error(s)
    R3load: END OF LOG: 20071113095230
    Please let me know if anybody have any idea on this.
    Thanks in advance.

    Your database isn´t fully started yet (in shutdown or startup) - check your alert.log
    Also see
    Note 655240 - Composite SAP note: ORA-01033
    Markus

  • Getting invalid-attribute-value Error during Delta Import on Call-based ECMA2

    I'm developing an ECMA2 MA to which supports delta imports.  I have found very few samples of working code to do delta imports, so my attempts are created
    using a lot of trial and error... Any samples of working Call based MA's with delta support would be much appreciated :-)
    The data is located in a SQL server and the schema (for delta) is like this (simplified):
    EmpID string
    Status string
    UPDATESTATUS string (<-- This is the update column with values New/Update/Delete)
    For each EmpID, there may be multiple Status values, i.e. Status should be imported into a multi value attribute in FIM.
    For the full import this is working as expected, but I run into issues when attempting to do the delta imports
    The code for the delta import
    private
    GetImportEntriesResults GetImportEntries_Delta(GetImportEntriesRunStep importRunStep)
    GetImportEntriesResults importReturnInfo;
    List<CSEntryChange> csentries =
    new List<CSEntryChange>();
    string employeeID =
    null;
    string appStatus =
    null;
    string currEmployeeID =
    CSEntryChange csentry =
    null;
    List<string> appStatusList =
    new List<string>();
    string changeMode =
    for (int i = currentReadRecord; i <= da.Tables["AppStatus"].Rows.Count - 1; i++)
    if (currEmployeeID != da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(0).ToString().Trim())
    if (currEmployeeID !=
    "") // this should be true except for the first run
    csentry.AttributeChanges.Add(AttributeChange.CreateAttributeUpdate("IdentityStores", appStatusList));
    csentries.Add(csentry);
    appStatusList = new
    List<string>();
    if (csentries.Count >= m_importPageSize)
                  currentReadRecord = i;
    importReturnInfo = new
    GetImportEntriesResults();
    importReturnInfo.MoreToImport = (i <= da.Tables["AppStatus"].Rows.Count - 1);
    importReturnInfo.CSEntries = csentries;
    return importReturnInfo;
    changeMode = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(2).ToString().Trim();
    csentry = CSEntryChange.Create();
    csentry.ObjectType = "ApplicationIdentity";
    employeeID = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(0).ToString().Trim();
    currEmployeeID = (string)employeeID;
    switch (changeMode)
    case "New":
    csentry.ObjectModificationType = ObjectModificationType.Add;
    csentry.AttributeChanges.Add(AttributeChange.CreateAttributeAdd("EmployeeID", employeeID));
    break;
    case "Update":
    csentry.ObjectModificationType = ObjectModificationType.Update;
    csentry.DN = employeeID;
    break;
    case "Delete":
    csentry.ObjectModificationType = ObjectModificationType.Delete;
                         csentry.DN = employeeID;
    break;
    default:
    throw new
    UnexpectedDataException(string.Format("Unknown modification type: {0}", changeMode));
    appStatus = da.Tables["AppStatus"].Rows[i].ItemArray.GetValue(1).ToString().Trim();
    appStatusList.Add(appStatus);
    // save the last object
    if (csentry != null)
    csentry.AttributeChanges.Add(AttributeChange.CreateAttributeUpdate("IdentityStores", appStatusList));
    csentries.Add(csentry);
    importReturnInfo = new
    GetImportEntriesResults();
    importReturnInfo.MoreToImport = false;
    importReturnInfo.CSEntries = csentries;
    return importReturnInfo;
    The code compiles and executes, but the delta import fails with the "invalid-attribute-value" message per csentry.
    From the eventlog I have the following message
    The server encountered an unexpected error while performing an operation for a management agent.
    "System.InvalidCastException: Unable to cast object of type 'System.Collections.Generic.List`1[System.String]' to type 'System.String'.
       at Microsoft.MetadirectoryServices.Impl.Ecma2ConversionServices.AddAttributeToDImage(CDImage* pdimage, String attributeName, AttributeModificationType
    attributeModificationType, IList`1 attributeValueChanges, Int32 escapeReferenceDNValues)
       at Microsoft.MetadirectoryServices.Impl.Ecma2ConversionServices.ConvertToDImage(CSEntryChange csEntryChange, CDImage** ppDImage, Int32 escapeReferenceDNValues)
       at Microsoft.MetadirectoryServices.Impl.ScriptHost.InvokeExtMA_ImportEntry(UInt32 cBatchSize, UInt16* pcszCustomData, UInt32 cFullObject,
    _OCTET* rgoctFullObject, UInt32* rgomodt, UInt32* pcpcszChangedAttributes, UInt16*** prgpcszChangedAttributes, Int32 fIsDNStyleNone, UInt16** ppszUpdatedCustomData, _OCTET* rgoctCSImage, Int32* rgextec, UInt16** rgpszErrorName, UInt16** rgpszErrorDetail, Int32*
    pfMoreToImport)"
    To me it seems as if FIM is unable to process the List of strings that is returned when processing the delta. Remember that this works OK when doing the full import. 
    Do you have any suggestions as to why this fails?
    Kjetil

    Hi,
    Thank you Søren! I got some good clues for the right direction from your answer. If anyone would be looking same answers the correct solution would be down below. I hope it would be help for someone else too.
    Get-Shema.ps1
    $obj
    = New-Object
    -Type PSCustomObject
    $obj
    | Add-Member
    -Type NoteProperty
    -Name "Anchor-Id|String"
    -Value 1
    $obj
    | Add-Member
    -Type NoteProperty
    -Name "objectClass|String"
    -Value "user"
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "IsLicensed|Boolean"
    -Value $true
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "FirstName|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "LastName|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "mail|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "immutableId|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "DisplayName|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "UsageLocation|String"
    -Value ""
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "ProxyAddresses|String[]"
    -Value ("","")
    $Obj
    | Add-Member
    -Type NoteProperty
    -Name "Licenses|String[]"
    -Value ("","")
    $obj
    Import.ps1
    #Always pass objects as hash table in pipeline
    foreach ($User
    in $Users)
    $obj = @{}
    $obj.Add("Id",
    $User.UserPrincipalName)
    $obj.Add("objectClass",
    "user")
    $obj.Add("IsLicensed",
    $User.IsLicensed)
    $obj.Add("FirstName",
    $User.FirstName)
    $obj.Add("LastName",
    $User.LastName)
    $obj.Add("mail",
    $User.UserPrincipalName)
    $obj.Add("immutableId",
    $User.immutableId)
    $obj.Add("DisplayName",
    $User.DisplayName)
    $obj.Add("UsageLocation",
    $User.UsageLocation)
    $obj.Add("ProxyAddresses", ($User.ProxyAddresses
    -ne ""))
    $obj.add("Licenses", ($User.Licenses.AccountSkuId))
    $obj
    Marti

  • Error in TYPE conversion in Unicode

    Hi exprts,
    I have got problem in Unicode conversion.
    DATA esc_char TYPE x VALUE '1B'.
    How to convert above to CHAR format, can anybody pls help on this.
    Regards,
    Zakir.

    DATA esc_char TYPE C VALUE '1B'.

  • Error during Content conversion

    Hi,
    The scenario is file to file. Inbound and async. The encrypted data is coming from third party. we are decrypting it and doing the content conversion. Earlier there was only 1 node. now the requirement is that they will be sending the header also. now there are 2 nodes with children. earlier there was only 1 node with children and the data was processing successfully. now when I have added header the fields of the header are not getting the value. Like header has the fields like Number_of_records, sbm_system_date etc.. but the fields of the header are getting replaced by the fields of the other node. I have attached the screenshots for the same. let me know if you need any more information. The payload is like below
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_BillingData_SBM xmlns:ns="http://pspcl.com/xi/SBM/IF0043_BillingData_100"> 
    - <BillingData_SBM> 
    <SUB_DIVISION_CODE>11</SUB_DIVISION_CODE> 
    <MRU>16/08/2014</MRU> 
    <Connected_Pole_INI_Number>11:26:09</Connected_Pole_INI_Number> 
    <NEIGHBOR_METER_NO>I0027G14_14082014112726.enc</NEIGHBOR_METER_NO> 
    <STREET_NAME>1</STREET_NAME> 
    <INSTALLATION>I0027G14</INSTALLATION> 
    </BillingData_SBM>
    - <BillingData_SBM> 
    <SUB_DIVISION_CODE>4272</SUB_DIVISION_CODE> 
    <MRU>MR60BM</MRU> 
    <Connected_Pole_INI_Number>J-DP06-FL12-031-004_G-1-P07</Connected_Pole_INI_Number> 
    <NEIGHBOR_METER_NO /> 
    <STREET_NAME /> 
    <INSTALLATION>5000057583</INSTALLATION> 
    <MR_DOC_NO>200000001829984</MR_DOC_NO> 
    <SCHEDULED_MRDATE>25-04-2014</SCHEDULED_MRDATE> 
    <METER_NUMBER>10089749</METER_NUMBER> 
    <MANUFACTURER_SR_NO>3376181</MANUFACTURER_SR_NO> 
    <MANUFACTURER_NAME>Capital Meters</MANUFACTURER_NAME> 
    <CONTRACT_ACCOUNT_NUMBER>100106763</CONTRACT_ACCOUNT_NUMBER> 
    <CONSUMPTION_KWH>16430.000</CONSUMPTION_KWH> 
    <CONSUMPTION_KWAH>18256.000</CONSUMPTION_KWAH> 

    Hi,
    Thanks for the reply. I have used the parameters in FCC which I have posted above. are they correct?
    I am not getting the desired result. There may be issue with the input file/Parameters.
    I am getting the below result in which the header values are not coming.
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_BillingData_SBM xmlns:ns="http://pspcl.com/xi/SBM/IF0043_BillingData_100"> 
    - <BillingData_SBM> 
    <SUB_DIVISION_CODE>4272</SUB_DIVISION_CODE>  
    <MRU>MR60BM</MRU>  
    <Connected_Pole_INI_Number>J-DP06-FL12-031-004_G-1-P07</Connected_Pole_INI_Number>  
    <NEIGHBOR_METER_NO />  
    <STREET_NAME />  
    <INSTALLATION>5000057583</INSTALLATION>  
    <MR_DOC_NO>200000001829984</MR_DOC_NO>  
    <SCHEDULED_MRDATE>25-04-2014</SCHEDULED_MRDATE>  
    <METER_NUMBER>10089749</METER_NUMBER>  
    <MANUFACTURER_SR_NO>3376181</MANUFACTURER_SR_NO>  
    <MANUFACTURER_NAME>Capital Meters</MANUFACTURER_NAME>  
    <CONTRACT_ACCOUNT_NUMBER>100106763</CONTRACT_ACCOUNT_NUMBER>  
    <CONSUMPTION_KWH>16430.000</CONSUMPTION_KWH>  
    <CONSUMPTION_KWAH>18256.000</CONSUMPTION_KWAH>  
    <CONSUMPTION_KVA>0.000</CONSUMPTION_KVA>  
    <CUR_METER_READING_KWH>0.000</CUR_METER_READING_KWH>  
    <CUR_METER_READING_KVA>0.000</CUR_METER_READING_KVA>  
    <CUR_METER_READING_KVAH>0.000</CUR_METER_READING_KVAH>  
    <CUR_METER_READING_DATE>13-08-2014</CUR_METER_READING_DATE>  
    <CUR_METER_READING_TIME>182427</CUR_METER_READING_TIME>  
    <CUR_METER_READER_NOTE>D</CUR_METER_READER_NOTE>  
    <PRV_METER_READING_KWH>19170.000</PRV_METER_READING_KWH>  
    <PRV_METER_READING_KVA>0.000</PRV_METER_READING_KVA>  
    <PRV_METER_READING_KWAH>0.000</PRV_METER_READING_KWAH>  
    <PRV_METER_READING_DATE>30-06-2011</PRV_METER_READING_DATE>  
    <PRV_METER_READING_TIME />  
    <PRV_METER_READER_NOTE />  
    <OCTROI_FLAG>Y</OCTROI_FLAG>  
    <SOP>95465.00</SOP>  
    <ED>7636.92</ED>  
    <OCTROI>1643.00</OCTROI>  
    <DSSF>4773.08</DSSF>  
    <SURCHARGE_LEIVED>0.00</SURCHARGE_LEIVED>  
    <SERVICE_RENT>0.00</SERVICE_RENT>  
    <METER_RENT>292.00</METER_RENT>  
    <SERVICE_CHARGE>0.00</SERVICE_CHARGE>  
    <MONTHLY_MIN_CHARGES>11638.20</MONTHLY_MIN_CHARGES>  
    <PF_SURCHARGE>0.00</PF_SURCHARGE>  
    <PF_INCENTIVE>0.00</PF_INCENTIVE>  
    <DEMAND_CHARGES>0.00</DEMAND_CHARGES>  
    <FIXEDCHARGES>0.00</FIXEDCHARGES>  
    <VOLTAGE_SURCHARGE>0.00</VOLTAGE_SURCHARGE>  
    <PEAKLOAD_EXEMPTION_CHARGES>0.00</PEAKLOAD_EXEMPTION_CHARGES>  
    <SUNDRY_CHARGES>0.00</SUNDRY_CHARGES>  
    <MISCELLANEOUS_CHARGES>0.00</MISCELLANEOUS_CHARGES>  
    <FUEL_ADJUSTMENT>0.00</FUEL_ADJUSTMENT>  
    <BILL_NUMBER>I002714H131824001</BILL_NUMBER>  
    <NO_OF_DAYS_BILLED>1141</NO_OF_DAYS_BILLED>  
    <BILL_CYCLE>2</BILL_CYCLE>  
    <BILL_DATE>28-08-2014</BILL_DATE>  
    <DUE_DATE>26-08-2014</DUE_DATE>  
    <BILL_TYPE>2</BILL_TYPE>  
    <PAYMENT_AMOUNT>0.00</PAYMENT_AMOUNT>  
    <PAYMENT_MODE />  
    <CHECK_NO />  
    <BANK_NAME />  
    <PAYMENT_ID />  
    <IFSC_CODE />  
    <MICRCODE />  
    <PAYMENT_DATE />  
    <PAYMENT_REMARK />  
    <TOT_BILLAMOUNT>109970.00</TOT_BILLAMOUNT>  
    <SBM_NUMBER>I0027G14</SBM_NUMBER>  
    <METER_READER_NAME>USER1</METER_READER_NAME>  
    <INHOUSE_OUTSOURCED_SBM>PSPCL</INHOUSE_OUTSOURCED_SBM>  
    <TransfromerCode />  
    <MCB_RENT>156.00</MCB_RENT>  
    <LPSC>9591.00</LPSC>  
    <TOT_AMT_DUE_DATE>119561.00</TOT_AMT_DUE_DATE>  
    <TOT_SOP_ED_OCT>109518.00</TOT_SOP_ED_OCT>  
    <KeyField>P</KeyField>  
    </BillingData_SBM>
    - <BillingData_SBM> 
    <SUB_DIVISION_CODE>4272</SUB_DIVISION_CODE>  
    <MRU>MR60BM</MRU>  
    <Connected_Pole_INI_Number>J-DP06-FL12-031-004_G-1-P06</Connected_Pole_INI_Number>  
    <NEIGHBOR_METER_NO />  
    <STREET_NAME />  
    <INSTALLATION>5000057703</INSTALLATION>  
    <MR_DOC_NO>200000001830038</MR_DOC_NO>  
    <SCHEDULED_MRDATE>25-04-2014</SCHEDULED_MRDATE>  
    <METER_NUMBER>10089869</METER_NUMBER>  
    <MANUFACTURER_SR_NO>8</MANUFACTURER_SR_NO>  
    <MANUFACTURER_NAME>Saraf Industries</MANUFACTURER_NAME>  
    <CONTRACT_ACCOUNT_NUMBER>100106883</CONTRACT_ACCOUNT_NUMBER>  
    <CONSUMPTION_KWH>5429.000</CONSUMPTION_KWH>  
    <CONSUMPTION_KWAH>6032.000</CONSUMPTION_KWAH>  
    <CONSUMPTION_KVA>0.000</CONSUMPTION_KVA> 

  • Excise Value Error during MIRO

    Dear Frinds,
    During Excise capture and post (J1iex), my user is manually filling up   excise  duty values  and not capturing the  excise value which the system is showing in the condition table(as per tax code rate). Now,in MIRO,  for all the excise duties they  want the excise values they have entered manually  during J1iex.
    This is happening for all the input tax codes  except for those having Additional Excise duty (AED) along with other excise duties. For tax codes having AED, the system is picking up the values as per the tax codes and not the values the user have manually entered during J1iex.
    Please guide to solve this problem

    Hi Mathur,
    Thanks for your reply...But when i am trying to capture it is asking for Profit center which is not available to input.
    it is showing only cost center and Business Area fields and it is giving ABAP DUMP when i forcefully trying to save after entering CC & Business area.
    please find the dump.

  • IDoc transfer error - Message Type Conversion

    Hi,
    While trying to transfer an IDocs from a 46C system, i get the following STATUS message in transaction BD87
    Message type RPM_TIME could not be converted
    Message no. EA 694
    Diagnosis
    Conversion entry between long and short names missing.
    System Response
    IDoc cannot be processed without this entry.
    Procedure
    Create an appropriate entry for logical message RPM_TIME.
    Could you anyone let me know the reason as to why it occurs.
    Regards,
    Roshith

    The problem is the FM for that action is trying to use a material movement to make the transfer.  You can't use standard material movements to transfer into QI once you have activated any of the materials inspection types.
    What inspection lot is generated by your current action box?  I'm guessing an 89.  I can't remember.
    Have an ABAP'er trace the FM and determine how it is doing the stock transfer.  If it is using a 322 it won't work with QM active.  You will have to have you ABAP'er modify it to use a 311 or 411 which will then use the 08 inspection type.  I suggest you use a copy of 411 or 311 for this.
    Craig

  • ERROR DURING BDLS CONVERSION

    Hi Markus and Friends,
    We have done BDLS conversion on pre-production after system copy from the production, when we tried to BDLS conversion between the logical system say PRHCLNT200(which is Production ECC 5.0 System) to QRHCLNT200 (which is preprod ECC5.0 System) with Oracle 9.0.0.7 database and AIX 5.4.
    Some of the tables got error like :
    Table Name  Field Name       Number of Relevant Entries    Number of Converted Entries
    For the tables:
    TBD05,TBD06,TBD20,TBD30 ===>  Error in field  of table . Manual correction required.
    I checked those tables and related to distribution model settings (BD64)....
    Please let me know to solve the issue.
    Thanks in advance....
    Regards,
    SAM

    Hi Kenny,
    Thanks for your response..We ran it once again but the same issue , when i check the logs for the bdls it clearly shows that the above mentioed tables are with the icon of >>>> and it means we need to correct it manually.... but how to rectify it.
    Please let me know what changes i need to do.
    Cheers,
    SAN

  • MaxDB error during install SAP NetWeaver 7.0 pack 2

    I always get the following error while installing SAP NetWeaver 7.0 including Enhancement
    Package 2:
    An error occurred while processing option
    SAP NetWeaver 7.0 including Enhancement
    Package 2 > SAP Application Server ABAP
    > MaxDB > Central System
    > Central System( Last error reported by
    the step :Assertion failed:
    com.sap.dbtech.rte.comm.RTEException:
    Cannot connect to host localhost:7210
    [Connection timed out: connect], -813.).
    You can now:
    Choose Retry to repeat the current step.
    Choose View Log to get more information about the error.
    Stop the option and continue with it later.
    Log files are written to C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/.

    Hi
    >
    jorisvanmolle wrote:
    > Log files are written to C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/.
    Post your logs here.
    Thanks
    Siva

Maybe you are looking for