Unable to interpret "RF05L-BELNR" as a number.

Hi all,
While running a BDC for TCODE FB02, I am getting an error message which says 'Unable to interpret "RF05L-BELNR" as a number'.
Please let me know how to correct it?
Thanks and regards,
Anishur

It looks to me like you are missing a couple of single quotes or have a couple extra of them. I think it is trying to put the character string 'RF05L-BELNR' into some numeric field.
Rob

Similar Messages

  • Unable to interpret "650.00u00A0 " as a number. Runtime Error : CONVT_NO_NUMBER

    Hi ,
    This is a issue which has to be resolved ASAP as all the checks are being thrown Dump in Production.
    It would be great if any of you could help me in this regard.
    I have been encountering a runtime error as "CONVT_NO_NUMBER" with
    short text as "Unable to interpret "650.00  " as a number."
    System versio : SAP ECC 6.0
    The problem is occuring at the below code
        FORM XXXXXXXX TABLES t_XXX_in  STRUCTURE itcsy
                                       t_XXX_out STRUCTURE itcsy.
          DATA: $_swnet     LIKE regud-swnet.
          DATA: $_rwbtr     LIKE reguh-rwbtr.
          DATA: $_zbukr     TYPE bukrs.        
          READ TABLE t_XXXX_in WITH KEY 'REGUH-RWBTR'.
          CONDENSE t_XXXX_in-value NO-GAPS.
    make sure the amount field is an amount.
          IF t_XXXX_in-value CA 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
            $_rwbtr = 0.
          ELSE.
    >>>>>     $_rwbtr = t_XXXX_in-value.
          ENDIF.
    Can you please help me in this regard.
    regards,
    bhima
    Moderator message: number formatting questions = FAQ, please search before posting, do not use the term "ASAP", all threads have the same priority.
    Edited by: Thomas Zloch on Nov 17, 2010 6:19 PM

    This is a FAQ. Please search before posting.
    Just to avoid dump catch the exception cx_sy_conversion_no_number . But you have to do some other changes like replacing the unwanted characters like comma,dot etc and then move it.

  • Abap dump (Unable to interpret "65000.00u00A0 " as a number.)

    hi everyone,
                           im getting the following dump error.
    Unable to interpret "65000.00  " as a number.
    previously it worked fine. after some patches moved from production server to quality server
    and from quality to production this report alone getting dump.
    DATA: pono LIKE ekko-ebeln,
          poit LIKE ekpo-ebelp,
          SNO LIKE ESSR-LBLNI,
          PIT LIKE EKPO-EBELP,
           dis LIKE konv-kbetr,
          frg LIKE konv-kbetr,
          VAL LIKE KONV-KBETR,
    FORM tax TABLES intab
    STRUCTURE itcsy outtab
    STRUCTURE itcsy.
      READ TABLE intab INDEX 1.
      pono = intab-value.
      READ TABLE intab INDEX 2.
      poit = intab-value.
      READ TABLE intab INDEX 3.
      SNO = intab-value.
      READ TABLE intab INDEX 4.
      L_CHAR1 = intab-value.
    REPLACE all occurrences of ',' in l_char1 with ' '.
      VAL = L_CHAR1.      <----
    this is the line im getting dump.  l_char1 = 65,000.00
    thanks in advance
    karthe

    KARTHE wrote:
    > Unable to interpret "65000.00  " as a number.
    >   VAL = L_CHAR1.      <----
    this is the line im getting dump.  l_char1 = 65,000.00
    you mention "65000.00  " and "65,000.00" and i guess L_CHAR1 contains "65,000.00".
    If that's the case, remove the thousand separator from L_CHAR1, so 65,000.00 becomes 65000.00
    edit: basically what Pawan mentioned.
    Edited by: Maen Anachronos on Oct 5, 2010 1:48 PM

  • Unable to Interpret "13,335.00" as number

    Hi Friends,
    Unable to Interpret "13,335.00"; as number   
    these is the runtime error what i am geting when i am trying to read the data from the list screen and copying to other variable.
    the code is at user-command
    READ  LINE sy-index FIELD VALUE W_OUT-RMWWR    INTO W_OUT2-RMWWR.
    when the above statement is executed these runtime error  iam getting.
    Regards
    Kumar M

    Hi
    Declare that as  type P and try the same
    if it wont work then convert the same into character type
    Regards
    Shiva

  • Unable to interpret "814,5 " as a number.

    Hi,
    I am receiving the message -> Unable to interpret "814,5 " as a number.
    and getting Runtime error because of an assignment:
    gv_maxpart = e_gefkat_res_tab-VERBRAUCH.
    gv_maxpart is  DEC (decimal length 10,  places 4)
    e_gefkat_res_tab-VERBRAUCH is char12
    What has to be made ? I need this assignmwnt for a multiply statement
    later.
    Regards
    ertas

    I'm really sorry but all postings were not helpful.
    =============>Sorry that my answers do not help you.
    This forum is going to be like more and more like beginners level.
    =============>Your question have been asked many time before in this forum. ==> YOU, HAVE A BEGINNER LEVEL.
    I'm missing former user.
    =============>See what, Rich HEILMAN (not a beginner level), answers to an identical question in this thread :
    Re: Convert char format to decimal format
    I have found the solutuion the right solution is:
    C14W_CHAR_NUMBER_CONVERSION
    =============>Congratulation to you.

  • ABAP Dump:  CONVT_NO_NUMBER  Unable to interpret "1.96432  " as a number

    Dear SAP friends,
    I am an FI functional consultant.  Our ABAP developer is unable to resolve this issue so I am hoping you may be able to steer me into the right direction.
    We just upgraded out SAP to SP18 and this issue exists only in production.  Our development and quality system are fine.
    We receive this error when the user executes a customer statement and a AP check run.  The ABAP program is ZFORM_SCRIPT.
    I have reviewed the forum and found a lot of helpful information including checking the user settings under SU01, etc.  Our developer has been unsuccessful in finding the solution.  Our database analyst confirmed the data is identical in all systems so that eliminates a data issue.
    Our ABAP understands there is a space behind the number.  The space character is making the new variable think it's not a number.  How do we fix it?
    Furthermore, I am confused as to how or why the 3 systems could be different?  Why do we have this issue in production and not quality, etc?  They have been upgraded and they are all a copy of production.
    If you anyone can shed some light, it would be greatly appreciated.  We are unable to print AP checks because the print program fails.  The financial posting happens but no check number is created.
    Very frustrating.  Thank you.

    From ST22
    Source Code Extract
    Line
    SourceCde
    27
    28
         -->IN_PAR     text
    29
         -->OUT_PAR    text
    30
    31
    FORM ovr_udr TABLES in_par STRUCTURE itcsy
    32
    out_par STRUCTURE itcsy.
    33
    34
    DATA: amt(20),
    35
    namt TYPE netwr.
    36
    DATA: signature(1),
    37
    len TYPE i,
    38
    pos TYPE i.
    39
    40
    LOOP AT in_par.
    41
    CASE in_par-name.
    42
    WHEN 'REGUD-SWNET'.
    43
    amt = in_par-value.
    44
    ENDCASE.
    45
    ENDLOOP.
    46
    CONDENSE amt NO-GAPS.
    47
    len = STRLEN( amt ).
    48
    pos = len - 3.
    49
    IF amt+pos(1) = '.'.
    50
    TRANSLATE amt USING ', '.
    51
    CONDENSE amt NO-GAPS.
    52
    ELSE.
    53
    TRANSLATE amt USING '. '.
    54
    CONDENSE amt NO-GAPS.
    55
    TRANSLATE amt USING ',.'.
    56
    ENDIF.
    >>>>>
    namt = amt.
    58
    IF namt > 10000.
    59
    signature = 'X'.
    60
    ENDIF.
    61
    62
    LOOP AT out_par.
    63
    CASE out_par-name.
    64
    WHEN 'SIGNATURE'.
    65
    out_par-value = signature.
    66
    ENDCASE.
    67
    MODIFY out_par.
    68
    ENDLOOP.
    69
    |   70|ENDFORM.                    "ovr_udr

  • Unable to interpret u3030u0081@ as a number - problem

    Hi,
    We've got problem with BPMs which use graphical (java) mapping. In SXI_MONITOR such processes have "Message being sent" status. In process engine workflow log it stops at mapping step with "In process" status. Technical details show that there is a tRFC call which fails with "Unable to interpret &#12336;@ as a number.". This is also visible in ST22. BPM without mapping works without any problems. Test mapping in integration repository works fine.
    Has anyone got any ideas?
    Kind regards,
    Michal Krawczyk

    Hi,
    Have you tested your mapping using the actual source message that caused the error in BPM?
    From the BPE monitor copy-n-paste the actual message into the Interface Mapping test tool.
    Regards,
    Bill

  • Error: Unable to interpret / as a number

    We have an R/3 Infoset that is used as a source for some Crystal Report queries -- basically it is pulling some revenue recognition data from GLPCA and pairing it with supporting tables such as billing documents, orders, customer, material, etc.  This has been available in Production for a few months, but recently a user has started encountering the following messages at runtime:
    Crystal Reports
    Failed to retrieve data from the database.
    Database Connector Error: 'Unable to interpret / as a number.'
    Database Connector Error: 'RFC_INVALID_HANDLE'
    So we were able to even track down the error to one specific billing document and can recreate the error when selecting only the one document number.  The report errors whenever it pulls that data and if a certain amount field is brought in to the listing.  Looking at the underlying data through an SQL query, we don't see a problem with the data and have been unable to figure out why only certain records are causing this short dump.  The abend info in ST22 shows it is related to a CONVT_NO_NUMBER runtime error in ABAP program /CRYSTAL/SAPLFLAT - procedure /CRYSTAL/BUILD_STRING.  Looking through the details did not uncover much information that would point to the problem.
    Has anyone encountered this type of problem with Crystal integration to SAP data? Any suggestions on troubleshooting or identifying the problem would be appreciated.

    Hi,
    would suggest you open a case with support and provide the details on the steps so that the support folks can directly look at your system.
    thanks
    Ingo

  • RFC_ERROR_SYSTEM_FAILURE: Unable to interpret * as a number

    Hi,
    I facing a strange problem while executing a query in bex analyzer and WAD. When I open a query it is throwing error as 'Unable to interpret * as a number'. I am getting this error before the pop-up menu itself. But all other reports are working fine. Please guide me to solve this issue.
    Regards
    Githen

    hi Githen Ronney  ,
    Is that query Standard OR customized one.
    If it is standard once check the SAP-EXIT variables.
    Thanks,
    KIran Manyam

  • TRFC Queue Error "Unable to interpret BGUA as a number"

    Hi all,
    I am getting the below error message in TRFC queue
    "Unable to interpret BGUA as a number" when i do a datamart dataload from ODS to Cube. ODS is getting data from datasource 0CO_OM_CCA_9. Can anyone help how to resolve this issue?.
    Thanks & Regards,
    Muruganand. K

    What is  BGUA ??
    I think you have mapped this field (BGUA holding infoobject) to number or key figure field.
    Check your  mapping in transformation form ODS to CUBE.
    Hope this helps.

  • ABAP DF Unable to interpret as a number

    I have a very simply ABAP data flow which joins SAP tables PA0001 and T528T together using PLANS.  If I use PA0001.PLANS in my output schema I receive the following error message:
    "RFC CallReceive error <Function Z_AW_ABAP_RUN: RFC_ABAP_MESSAGE- Unable to interpret 0    0.00 as a number."
    If I select T528T.PLANS in the output schema it works fine, but I have no idea what is causing this error message.

    Hi Tom,   If the error si correcto, it seems to be a string trying to be saved on a integer field. Change the target data type or validate it before be loaded. I amnot sure if the error is "0    0.00 " >string or "0.00 " >number,but not a integer. Regards.

  • Unable to interpret 1,000.000 as a number while posting IDOCs

    Hi All,
    I know this query has been asked multiple times but as of now I am unable to find the right match so posting this query again. We are posting an IDOC from SAP PI to SAP ECC using SAP PI IDOC Adapter. When the IDOC is sent there is one specific value in one of the fields which have value 1000.00. Now when the IDOC is received by SAP the value is received as 1,000.000. As far as I understand this is because the user configured in the RFC destination in SAP PI  (which sends the IDOC to SAP) is having in its default profile the Decimal Notation as 1,234,567.89 and hence we see the value as 1,000.00.
    But then the IDOC is not posted in SAP and the issue is: "Immediately processing not possible: Unable to interpret 1,000.000 as a number".
    As I am not much aware about ABAP being a PI consultant, would appreciate if experts can guide me on how to resolve this issue. Thanks for taking time to read through the issue.
    Thanks,
    Pratik

    Please check at abap end for the inbound parameters.
    In we20 the message type will be assigned .Double click it and you will get the process code.Double click that and you will get the required FM.
    If the inbound function module is Z ,Please do the necessary change.
    OR
    Else try WE19 to process the idoc (Existing).
    Execute and then check the Inbound function module option and then call in debugging mode to check the where the error is happening.
    Hope it helps.
    Thanks!

  • SMQ2 failure during Initial load - Unable to interpret 9.990. as number

    hi All,
    I perform the initial download of customizing objects from R/3(4.6C) to CRM 7.0.
    For object DNL_CUST_BASIS2 I received the "Unable to interpret 9.990.  as a number" error message.
    Could you give some hints how to solve this problem?
    I checked several posts with similar error messages, but none of them seemed to be related to my case.
    We just implemented note 777944 to update SMOFPARSFA in CRM to neglect the unicode check.
    I was able to download other customizing objects like DNL_CUST_BASIS, DNL_CUST_ACGRPB, DNL_CUST_ACGRPP, DNL_CUST_ADDR.
    My next step is to debug the queue, if you have further suggestions let me know.
    Thanks

    Hi,
    Please check my reply in the link
    Loading DNL_CUST_BASIS2: Unable to interpret "9.990. " as a number.
    Hope this will help.
    Thanks,
    Vikash.

  • Unable to interpret as number

    REPORT  ZTD                                     .
    tables:zmm.
    data: test1 type zmm-zerfmg value '38,499.610',
          test2 type zmm-zerfmg value '38499.610',
          test3(13) type c,
          lv_val type J_1IASSVAL-J_1IVALASS,
          lv_temp type J_1IASSVAL-J_1IVALASS value '4000.00'.
    *zerfmg is having data type as Char 13
    write test1 to test3 decimals 2.
    condense test3.
    lv_val = lv_temp * test3.
    write:/ test1,
            test2,
            test3,
            lv_val.
    I am getting an error as "unable to interpret as number ".Can anyone here let me know Where I am going wrong
    Thanks,
    K.Kiran.

    hi
    check this
    tables:zmm.
    data: test1 type zmm-zerfmg value '38,499.610',
    test2 type zmm-zerfmg value '38499.610',
    test3(13) type c,
    lv_val type J_1IASSVAL-J_1IVALASS,
    lv_temp type J_1IASSVAL-J_1IVALASS value '4000.00'.
    *zerfmg is having data type as Char 13
    write test1 to test3 decimals 2.
    condense test3.
    here is the problem which is
    lv_temp  is of type J_1IASSVAL-J_1IVALASS  which is an currency field and test 3 is char type ok .
    *lv_val = lv_temp * test3.*
    now for an multiplication both should be numric type
    thats why is is giving dump
    write:/ test1,
    test2,
    test3,
    lv_val.
    Cheers
    Snehi

  • Error "Unable to interpret '\' as number" whe run a BDC for integer data

    Dear All,
    I am trying for the BDC of the user define table and have to upload data but the system is giving error for the field whose domain i have made as QUAN Error is : "Unable to interpret '\' as number".
    Please clarify the situation and solution for the problem
    Regards,
    vishal.

    Hi Vishal,
    Check whether '\' is getting populated in any of the field on the screen in which it is giving an error. I think it is not because of your QUAN field. The error may be in some other field on the same screen.
    Regards,
    Swapna.

Maybe you are looking for

  • Brand new ipod classic won't sync to itunes 11.

    I just got a brand new 160gb ipod classic for Christmas, and when I tried to sync it with itunes it wouldn't work. I ran the diagnostics and it failed the sync tests, and apple's help/troubleshooting page does not give any solutions to this problem.

  • URGENT :::how to open the uploaded OpenOffice SpreadSheet in Windows

    Hi frnds, i have a doubt regarding opening a uploaded spreadsheet in windows and it is uploaded thro windows platform only . i uploaded a OpenOffice SpreadSheet (.sxc)in windows platform .now i want to download that file. But when I click that downlo

  • My Categories and sub-categories are now missing

    I installed new PSE12 on my Win7x64. I previously had PSE9 installed. My Categories and sub-categories are now missing? I need to know how to reinstall them and auto attach to my pictures? <moved by mod from downloading,installing,setting up - kglad>

  • Urgent----OC4J Hanging After every 4-5 Hours

    Respected All Oracle ADF Users, I Have Developed very large ADF (ADF BC Swing) Application i.e. One ERP Product, It Contains 300 Application Modules (Forms). I deployed this Application as EJB Session Bean on standalone OC4J which is on Fedora Core 3

  • Mail.app signature bug

    I'm attempting to edit a rather massive email signature on my iPhone 4 which I need for work (16 lines) and I have found that after I attempted to re-edit it, that I was no longer able to view the editing box on the screen fully.  The screen had jamm