cancel
Showing results for 
Search instead for 
Did you mean: 

The argument XXXX cannot be interpreted as a number

former_member553099
Participant
0 Kudos


Dear all,

Pls suggest solution for the below error.

Diagnosis

    An error occurred while executing a transformation rule:

    The exact error message is:

    The argument 1A02 cannot be interpreted as a number

    The error was triggered at the following point in the program:

    GP4VJ36D0TMYJ8LKPOEV9Z3WWC2 1879

System Response

    Processing the data record has been terminated.

Procedure

     The following additional information is included in the higher-level
    node of the monitor:

  o   Transformation ID

  o   Data record number of the source record

  o   Number and name of the rule which produced the error

Procedure for System Administration

Update terminated in accordance with error handling setting

The argument 1A02 cannot be interpreted as a number

An exception has occurred

Error in substep

Data package processing terminated

Two info objects are used 0PLANT and YLAGORTVR are used in this

Regards,

U.Linganathan

Accepted Solutions (0)

Answers (4)

Answers (4)

former_member553099
Participant
0 Kudos

Dear all,

we are populating the data to one Z info object XXXX

Data Type: CHAR

Length:8

using concatenate function Two infoobjects 0PLANT and YLAGORTVR

Conc(0PLANT & 'U' & LEFT(YLAGORTVR,2)

in one cube transformation

During the transformation from cube to DSO the error exist.

0PLANT:

Data Type: CHAR

Length:4

YLAGORTVR:

Data Type: CHAR

Length:4

Regards,

U.Linganathan

sriramvijay_ravidoss
Contributor
0 Kudos

Please post your routine here, lets check.

RamanKorrapati
Active Contributor
0 Kudos

Hi,

for output how many digit/values your passing? 8 or 4?

it results showing as 4(1A02), in this value what's the plant name. actually plants holds 4 digit.

the custom z info object(target) what conversion routine you used?

Please recheck/debug your routine which you used to fill target info object at target level.

Thanks

anshu_lilhori
Active Contributor
0 Kudos

Map 0PLANT and YLAGORTVR to the infoobject in which you need to concatenate the value.

Rule type routine.


Concatenate Source_fields-Plant 'U' Source_fields-/BIC/YLAGORTVR+0(2) Into Result .

Try this.

Regards,

AL

former_member182998
Active Participant
0 Kudos

Hello Linganathan,

That seems to be a Data mismatch Issue ! Means program ha encountered a character where it was expecting purely a number .

Please check the data record(s) accordingly and revert .


Hope this helps !


Regards

YN

sriramvijay_ravidoss
Contributor
0 Kudos

Hi,

YLAGORTVR - is this a Key figure? or it should be a charater type of NUMC.

then you cannot load characters like "A" in it.

-Sriram

RamanKorrapati
Active Contributor
0 Kudos

Hi,

Is it direct mapping?

what is source and target objects?

have same length and types?

if your source object is quantity or amount related then you need to map related units and currencies respectively.

this is the value at source 1A02, please find which field/object have this value?

At which step your facing this issue?

psa to cube or dso to cube?

Thanks