Dump Error : Unable to Interpret '/'

Hello,
         we are trying to upload Material Master, where we have a Custom Field, this custom field is defined as NUMC(10) data type in BMMH1-YYD_YMANU and also in MARC table. And this field has been customized in Material Master in a seperate screen, our client our in production from long time, now we are getting problem only when migrating data. Manually it works fine.
And this field was configured in the below LSMW Program,
Object               0020   Material master
Method               0000
Program Name         RMDATIND
Program Type         D   Direct Input
Now while uploading we are getting error at statement MOVE_FIELD_SLASH statement saying cannot interpret slash(/).
But we are passing Number '1000000012' into this field. And if we pass blank then we are not getting this error, cannot reallly find what the problem is.
Can any one help.

Murali R wrote:
Hi Anand,
>
> Thanks for yor reply.
>
> The field FKDAT in source system is in YYYYMMDD format only.  The date values coming in is like 12.08.2011.
>
> Regards,
> Murali
Try this..
data:l_date type sy-datum.
l_date0(4) = FKDAT5(4).
l_date4(2) = FKDAT3(2).
l_date6(2) = FKDAT0(2).
Now use l_date to subtract from sy-datum.

Similar Messages

  • 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

  • Error:Unable to interpret "TABLE".

    When I use BTE, There is an error in FM Z_WRITE_TO_QUEUE in R/3.
    FUNCTION Z_WRITE_TO_QUEUE.
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_DATASOURCE) TYPE  ROOSOURCE-OLTPSOURCE
    *"  TABLES
    *"      I_T_DATA OPTIONAL
    TYPE-POOLS:
        sbiwa.
      DATA:
        l_exstruct TYPE roosource-exstruct,
        l_initflag TYPE roosprmsc-initstate,
        l_subrc    TYPE sy-subrc,
        lr_is_data TYPE REF TO data,
        lr_es_data TYPE REF TO data,
        lr_et_data TYPE REF TO data,
        l_t_fields TYPE sbiwa_t_fields,
        l_t_select TYPE sbiwa_t_select.
      FIELD-SYMBOLS:
        <i_s_data> TYPE ANY,
        <e_s_data> TYPE ANY,
        <e_t_data> TYPE STANDARD TABLE.
    Check to see if Delta initialization has been performed.
      SELECT SINGLE initstate FROM roosprmsc INTO l_initflag
             WHERE  oltpsource  = i_datasource
             AND    rlogsys     NE space
             AND    slogsys     NE space
             AND    initrnr     NE space.
    If initialization has taken place continue
      IF sy-subrc EQ 0 AND l_initflag EQ 'X'.
      grab the extraction structure from roosource based on the
      datasource parameter input.
        SELECT SINGLE exstruct FROM roosource INTO l_exstruct
               WHERE  oltpsource  = i_datasource
               AND    objvers     = 'A'.
        CHECK sy-subrc = 0.
        CREATE DATA lr_is_data LIKE LINE OF i_t_data.
        ASSIGN lr_is_data->* TO <i_s_data>.
        CREATE DATA lr_es_data TYPE (l_exstruct).
        ASSIGN lr_es_data->* TO <e_s_data>.
        CREATE DATA lret_data TYPE STANDARD TABLE OF (l_exstruct)._
          ASSIGN lr_et_data->* TO <e_t_data>.
        LOOP AT i_t_data ASSIGNING <i_s_data>.
          CLEAR <e_s_data>.
          MOVE <i_s_data> TO <e_s_data>.
         MOVE-CORRESPONDING <i_s_data> TO <e_s_data>.
          INSERT <e_s_data> INTO TABLE <e_t_data>.
        ENDLOOP.
        CALL FUNCTION 'EXIT_SAPLRSAP_001'
          EXPORTING
            i_datasource             = i_datasource
            i_isource                = ''
            i_updmode                = ''
          TABLES
            i_t_select               = l_t_select
            i_t_fields               = l_t_fields
            c_t_data                 = <e_t_data>
          EXCEPTIONS
            rsap_customer_exit_error = 1
            OTHERS                   = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL FUNCTION 'RSC1_TRFC_QUEUE_WRITE'
          EXPORTING
            i_isource     = i_datasource
            i_no_flush    = 'X'
          IMPORTING
            e_subrc       = l_subrc
          TABLES
            i_t_data      = <e_t_data>
          EXCEPTIONS
            name_too_long = 1
            OTHERS        = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDFUNCTION.
          FORM abs_type_to_rel_type                                     *
          The purpose of this subroutine is to convert an absolute type *
          name into a relative type name.                               *
    -->  TYPE_NAME                                                     *
    form abs_type_to_rel_type changing type_name.
      data junk(100) type c.
      split type_name at '\TYPE=' into junk type_name.
    endform.
    "CREATE DATA lr_et_data TYPE STANDARD TABLE OF (l_exstruct)" makes an Error "Unable to interpret "TABLE"."
    I don't why!
    So anbody can help me?
    Thank you!

    Hi,
    Use this statement.
    data:begin of lr_et_data occurs 0,
    include l_exstruct.
    end of lr_et_data.
    Ravi

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

  • Error  ' unable to interpret "*601" as number ' when using  CONVERT_OTF

    Hi All ,
    I am converting a Smartform to PDF in 4.7 version and I am getting an error like "  unable to interpret "*601" as number ' in Convert_otf function module here the importing parameter BIN_FILESIZE is getting *601 value in back ground of FM . Can any one help me in solving this error . Did i miss any parameter's .
    Thanks and Regards
    Syed Akbar .

    Hi.
    The asterisk can appear when field length inconsistency takes place at value assignment between two variables.
    Example:
    DATA:
      p_amount TYPE c length 15,
      l_amount TYPE p DECIMALS 2.
    WRITE: l_amount CURRENCY l_waers TO p_amount.
    If value of L_AMOUNT equal '103276149119,40-', then value of P_AMOUNT will be equal '*3276149119,40-' (asterisk appears).
    Best regards,
    George Shlyahov.

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

  • 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

  • Dump error while Testing the Workflow

    Hi Friends,
    I have developed workflow for Approve and Reject Scenerio. But when i press Approve, the user should get the mail, same for Rejected also. When Test the Workflow, I am  getting the Dump Error as
    *Dump Error*********
    Unable to read RFC destination WORKFLOW_LOCAL_320
    Long text of error message:
    Technical information about the message:
    Message class....... "SWF_RUN"
    Number.............. 617
    Variable 1.......... "WORKFLOW_LOCAL_320"
    Variable 2.......... "RFC_READ_DESTINATION_TYPE"
    Variable 3.......... "DESTINATION_NOT_EXIST"
    Variable 4.......... " "
    Thanks in Advance. Rewarded if useful.
    Naveen

    Naveen,
    It seems someone might have deleted the corresponding RFC destination (which is created automatically). Check in SM59.
    ss

  • Unable to interpret " 12,000.00 " as a number.

    Hi,
         can some one help me with this error:
    Unable to interpret " 12,000.00 " as a number.

    Hi Sanjay,
    [unable to interpret as number|unable to interpret as number]
    Here is a post in SCN which describes all the possible ways to solve your problem..
    Thanks & regards,
    Dileep .C

  • 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 IDoc interface  Error

    Hi All,
    We are getting the following error while trying to translate a X12 to IDOC , we are using Seeburger Adapters for the translation.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_WRONG_INTF</SAP:Code>
      <SAP:P1>I_867_ORDERS01_ZORDRS1X_PTD_SS</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>Unable to interpret IDoc interface I_867_ORDERS01_ZORDRS1X_PTD_SS</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    The Reason we are using a Interface rather than using a IDOC directly is because our the IDOC Structure is 867.ORDERS01.ZORDRS1x and this is a custom IDOC in ECC and when we try to directly use the structure in the Interface Determination we get the error
    Check Result for Object ARROWUS | ARROWUS_IN_AS2 | A_867_V4010_ABS | | BS_ECC_D03_DEV
    First character invalid: 8 Only a(A)-z(Z), 0-9, and "/" and "_" are permitted
    Has anyone faced a similar problem ? If so please let me know how you fixed it.
    Appreciate your help
    Regards,
    Madhu

    have you seend below threads:
    [link1|Unable to interpret IDoc interface ZSHIPDEL_packageRD;
    [link2|IDOC Error;

  • Unable to install Dreamweaver CS6 Upgrade ! from Hard Drive DUMP - Error : Adobe Genuine Software Verification Failure

    Hello,
    I am Unable to install Dreamweaver CS6 Upgrade  from CS4  from Hard Drive DUMP -
    Error :Installation Failed
    Adobe Genuine Software Verification Failure
    The product you are trying to install is not an adobe Genuine Software and appears to be counterfeit.
    Can any one help me with this issue. I earlier installed it from DVD but, i am unable to find DVD. I have a copy of full DVD Dump in network.
    Can someone help me fix the issue.
    Note: I have installed Dreamweaver CS4 with serial number.and am trying to install upgrade over cs4.
    Please help.
    Thank you,
    Sin

    It was because i was installing directly from network dump.
    I've managed to install and register software.
    Thanks and my problem is resolved.

  • We got error "System is unable to interpret the SSO ticket received"

    We got error "System is unable to interpret the SSO ticket received" on Backend system(R/3 4.7).
    We use SAP Enterprise Portal 6.0 SP15.
    Please let us know what is problems ?
    We done following steps in SAP EP.
    1. Created LOGON-METHOD (Logon Method : SAPLOGONTICKET).
    2. Export Public-key (verify.der) from SAP EP.
       (System Admin -> System config -> Keystore Administration -> Download)
    We done following steps in SAP R/3.
    3. Start STRUSTSSO2 Transaction.
       In the PSE status frame on the left, choose the system PSE.
       In the certificate section, choose Import Certificate.
         The Import Certificate screen appears.
       Choose the File tab.
       In the File path field, enter the path of the portal's verify.der file.
       Set the file format to DER coded and confirm.
       In the Trust Manager, choose Add to PSE.
       Choose Add to ACL, to add the Portal Server to the ACL list.
       In the dialog box that appears, enter follows:
         system ID    :J2E
         client       :000
         Subject name :CN=J2E
         Issuer name  :CN=J2E
         Serial number:00
       Save your entry.
    4. Set profile parameters
       login/accept_sso2_ticket = 1
       login/create_sso2_ticket = 0
    5. Restart SAP R/3 system.

    Hi,
    I faced the same problem when i am configuring the SSO,
    check the portal client number in System Administration>System Configaration->UM Configuration--->Direct Editing
    and give the same client number
    In the dialog box that appears,
    system ID :J2E
    client :000
    else check weather u r importing the certificate correctly.
    First export the verify.der and and import that using the STRUSTSSO2
    Thanks
    Ajay

Maybe you are looking for

  • 3/11/2014 - Beta - Flash Player 13.0.0.162

    Flash Player Beta Channel Update The latest Flash Player 13 builds are now available.  You can download Flash Player here: http://www.adobe.com/go/flashplayerbeta. New and Updated Features: Enhanced Supplementary Character Support for TextField  Char

  • Printing over wireless?

    Hi, I have a question for anybody that can help. I just bought a Mac Mini, my first Mac ever and I'm trying to get it to print to my HP on my PC. I can connect to the internet through my linksys wireless gateway, that's not a problem, but I'd like to

  • Multiple selection of ACCOUNT dimension not accepted by the custom logic

    Hi, In below code I am sending "ALL" accounts and time 004.2010 to 012.2010 value from the data manager from manual selection screen. I need code to be executed for all the accounts and above mentioned time periods. But when I run the package it give

  • EXS24 Editor bug?

    Hello! can anybody help me with this? - I have an empty instance of an EXS24 and I go to the editor window and choose "Extract MIDI Region and Make New Instrument" under the ReCycle Convert option, under the Instrument Menu and NOTHING HAPPENS; accor

  • NHL GameCenter audio sync issues

    NHL GameCenter audio is slower than the video on Apple TV. I even swiched to connecting the AppleTV to my Airport via Ethernet to eliminate any transfer issues. NOTE - if I watch the game on my XBox or MB Pro - no issues. Thoughts?