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 〰@ 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

Similar Messages

  • 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.

  • Error Unable to interpret C00 as a number while doing intial download

    Hi Guys
    When I am doing the initial download of DNL_CUST_CNDALL the following error has occurred in the Inbound Queue of CRM “Unable to interpret C00 as a number Message no. SR053”
    Can anybody suggest me how to over come?
    Thanks

    Here is the solution. (SAP Note 1042818 pointed me in the right direction...even though I'm not working with CRM.)
    CONVERT_OTF export parameter BIN_FILESIZE has no type and is pass by value.  You must code this parameter into your importing parameters in the calling program even if you don't use it.  The receiving variable should be of type integer.
    DATA: BIN_FILESIZE TYPE I.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                      = 'PDF'
        IMPORTING
          BIN_FILESIZE                = BIN_FILESIZE
        TABLES
          otf                         = otf
          lines                       = it_pdfdata
        EXCEPTIONS
          ERR_MAX_LINEWIDTH           = 1
          ERR_FORMAT                  = 2
          ERR_CONV_NOT_POSSIBLE       = 3
          ERR_BAD_OTF                 = 4
          OTHERS                      = 5.
    I guess I figured I didn't need bin_filesize, so I didn't include in my original call...

  • Short dump - Unable to interpret "USD " as a number

    Hi,
    I am trying to pass 'price unit' to BAPI -> BAPI_PO_CREATE1
    But while executing below statement, i got a short dump -> Unable to interpret "USD " as a number
    wa_poitem-price_unit    = wa_data-peinh
    here wa_poitem of type BAPIMEPOITEM-PRICE_UNIT, which is DEC. legth 5
    and wa_data-peinh of type CHAR, which is uploaded data from excel

    Hi
    Something is uncorrect in your file or in your program
    It seems you're transfering the currency (USD) to the field for unit price: here u need to indicate which the unit price is
    The Unite Price should be = Net Price / Quantity
    The currency should be transfered in the header data: BAPIMEPOHEADER-CURRENCY
    Max

  • 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.

  • CONVT_NO_NUMBER Unable to interpret "*0" as a number.

    Hi gurus,
    I am encountering this dump while running a report in background. The report takes process order numbers as input and updates a Z-Table accordingly. However, this dump occurs only when the report is run in background. When run in foreground the report executes flawlessly.
    Also, when the report is run for multiple process orders in background the dump is displayed.. On debugging the job i  found the process order number relevant to the dump. However, when i executed the job in background for just this process order, the report was executed successfully.
    Deparately in need of help!!!
    Regards,
    Xineohpi.

    SAP has precisely pointed out the problem, so ignore the background noise and  concentrate your efforts on finding precisely the field and the data value that causes your error.
    Since '*0' is NOT a number, find the field in the dump that has that value in it and figure out how that value is getting there...the asterisk would appear to indicate an overflow condition, in which the input value exceeds the length of the numeric field. For example, I would expect to see this happen if I had a field(2) type n and my input was '100'.   Check to see if that is what is happening to you, and why, based upon your input.
    See other posts re: CONVT_NO_NUMBER errors....it's because a numeric field contains something other than digits, a decimal and a sign.
    Edited by: DaveL on Jun 29, 2011 2:28 PM

  • Unable to Interpret "32" as a number

    Hi all,
    I am getting # into the internal table despite am using follwoing code
    ECC 6.0
    FORM DATA_SELECTION .
      DATA : L_MENGE(17).
      OPEN DATASET P_FILE FOR INPUT IN TEXT MODE ENCODING UTF-8.
      IF SY-SUBRC = 0.
        DO.
          READ DATASET P_FILE INTO WA_ITAB.
          IF SY-SUBRC = 0.
            SPLIT WA_ITAB AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB INTO ITAB-WERKS
            ITAB-MATNR
            ITAB-EKGRP
            ITAB-LIFNR
            ITAB-EVERS
            L_MENGE.
            TRANSLATE L_MENGE USING '# '.
            CONDENSE L_MENGE.
            ITAB-MENGE = L_MENGE.
            APPEND ITAB.
            CLEAR  ITAB.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
      ENDIF.
      CLOSE DATASET P_FILE.

    Hi,
    Check that this may be because of UNICODE related problems.
    Regards,
    Anji

  • Unable to interpret "M" as a number.

    data: l_period(6) type n.
    data:        g_cols type i ,                     " number of columns
                 g_rows type i,                      " Number of Lines
                 g_dc(5) type c,                     " Date format
                 g_count type n,                     "Period Value Count
                 g_sta_col(6) type i.                   "Start Column
    move g_sta_col to l_period.
          move g_sta_col to wa_colno.
         move wa_colno to wa_flname.
          concatenate g_dc wa_colno into wa_flname.
    Set up fieldvalue
          read table it_total
              with key matnr = gk_final_ok-plantno customerno = gk_final_ok-customerno+gk_final_ok-custcolor spmon = l_period.
          if sy-subrc eq 0.
            fieldvalue = it_total-kwmeng.
          else.
            fieldvalue = ''.
          endif.
    当我调试时此行报错,哪位大哥知道是什么原因呀?
    read table it_total
              with key matnr = gk_final_ok-plantno customerno = gk_final_ok-customerno+gk_final_ok-custcolor spmon = l_period.

    你说的对,+ 的地方错了,
    不知道你的 gk_final_ok-custcolor 是个什么东西,为什么要把颜色字段当作一个偏移量来使用?
    我这里是客款+客色加错了,两个字段不能直接连接.中间有个#分隔,
    thanks!

  • Data Type Conversion - DUMP - Unable to interpret "ABC1234 " as a number.

    Hi Experts,
    Am getting dump, my code is,
    data:
    it_asset-anln1 type anla-anln1. (here its CHAR 12).
    unpack it_asset-anln1 to it_asset-anln1.
    here, when am getting the the values as ABC1234 into it_asset-anln1----
    > am getting DUMP, so, let me know that, How to fix it?
    thanq

    Pretty sure that you can not unpack a value when it has non-numeric characters, so you will want to check it before doing the UNPACK.
    if it_asset-anln1 CO '1234567890. '.
    unpack it_asset-anln1 to it_asset-anln1.
    endif.
    Regards,
    Rich Heilman

  • 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

  • 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.

  • 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.

  • HR : Unable to interpret "40#6411000000#7" as a number

    Hi,
    We upgraded our system from 4.6C to ECC 6.0 Unicode.
    In HR, there is a problem after uploading a file.
    DATA total TYPE p DECIMALS 2.
    DATA : BEGIN OF itab OCCURS 1500,
       clco(2),      "Clé de comptabilisation
       compte(10),   "Numéro de compte
       c_cout(8),    "Center de coût
       montant(15),  "Montant
       texte(55),    "Texte du poste
    END OF itab.
    LOOP AT itab.
          ADD itab-montant TO  total.
    ENDLOOP.
    the output of itab-montant comes as 40#6411000000#7 so it can't be put in total...
    The error message is :
    Unable to interpret "40#6411000000#7" as a number.
    How can I solve this problem??
    It's very urgent! please help me...
    Tarick.

    hi,
    as far as i understood..u uploaded some data from a file....
    and it shows an error ....unable to interpret..but when exactly are u getting this error...
    and what should the value look like instead of 40#6411000000#7..can u be some more specific?
    shud there be some vlaues instead of #?
    rergards,
    sampath
    Edited by: sampath pilla on Apr 29, 2008 8:06 PM

Maybe you are looking for

  • Can't fast forward songs?  Help please

    HELP! 10.1.2.17 is the iTunes version I have. I did not do the new update yet. I have a question. When you play a song. On the top middle it usually shows how many seconds, minutes you are into the song. You can drag the little bar and say go from 0.

  • Trackball not working properly

    I purchases 8900 in Feb 2010 and from past 10 - 15 days my trackball is not working properly. It is only working in Horizontally. When i move trackball vertically it moves but the cursor does not move it and is stationed at one place only. Can you pl

  • RMAN-03002 RMAN Error !

    Hello,For testing purposes I am duplicating my database from 11gR1 to 11gR2 on Windows XP. The Oracle Sid of my database SOurce, which is in 11gR1 is : DB01. The Oracle Sid of my auxiliary database , which is in 11gR2 is : DB02. I am using RMAN for t

  • Why Windows server 2003 enterprise edi is the recommended OS for Netweaver?

    Hi All, I am in a client discussion stage and the client is a huge enterprise going for SAP installation. In order to implement SAP Netweaver 2004 S, the recommended OS is Windows Server 2003 Enterprise Edition? I need to be equipped about the differ

  • SAP Best Practices High Tech 1.6 error implementing building block 32

    Hi, We are currently implementing a building block 32. Choosen the country DE but system throws an error. The error occured at USER SETTINGS - SET DECIMAL NOTATION AND DATE FORMATTING. @5DQWarning@     Failure during Activation. Reactivate the projec