cancel
Showing results for 
Search instead for 
Did you mean: 

Not alpha conforming error during data load

Former Member
0 Kudos

Hi All,

In the update routine I am using a assignment like the following:

data_package-account = '1210000'.

I get the error during the load that account is non-alpha conforming.

I tried using the FM for alpha conversion to cast the above to a alpha conforming form and

still get the same error.

Please kindly clarify the fix for this.

Thanks

Karen

Accepted Solutions (1)

Accepted Solutions (1)

former_member181964
Active Contributor
0 Kudos

Hi,

Check the following code in SE38,

You have 'CONVERSION_EXIT_ALPHA_OUTPUT' also i.e. the reverse of the follwoing FM. If you need ZEROS then use the following Code in Transfer routines, if you don't wnat to ZEROs then use 'CONVERSION_EXIT_ALPHA_OUTPUT'

REPORT  ZALPHA_INPUT.

Data: ni(4) type n,
      no(10) type n.

ni = '1500'.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    INPUT         = ni
 IMPORTING
   OUTPUT        =   no   .

Write:/   ni.
Write:/   no.

Thanks

Reddy

Answers (0)