Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Conversion of Varient Table InTo Data Base Table

Former Member
0 Likes
359

Hi Friends.

I am Facing the problem while Transfering Entries Of varient table Into Data Base Table It Shows me Error "Non normalised Line In Varient Table".

For This i create varient table in t-code cu61.from t-code cu62 i assign varient table to database table where i also assign varient table field to data base field.

and in t-code cu59 (Transfer varient table entries to data base table) when i run the program it show me above Error.

thanks in advance.

regards,

Bhaskar

Hi Friends.

I am Facing the problem while Transfering Entries Of varient table Into Data Base Table It Shows me Error "Non normalised Line In Varient Table".

For This i create varient table in t-code cu61.from t-code cu62 i assign varient table to database table where i also assign varient table field to data base field.

and in t-code cu59 (Transfer varient table entries to data base table) when i run the program it show me above Error.

thanks in advance.

regards,

Bhaskar

1 REPLY 1
Read only

Former Member
0 Likes
328

Hi,

The message what you are getting is from the following code .

*check if table is normalized? Begin of insertion 381045

LOOP AT TB_CUVTAB_VALC TRANSPORTING NO FIELDS

WHERE VLCNT NE '001'.

EXIT.

ENDLOOP.

Try to read the note 381045 to get the solution.

Please reward if useful.