2009 Dec 02 4:41 AM
Hi Experts ,
I HAVE TWO VARIABLES OF DIFFERENT DATA TYPES li_stko-base_quan(CHAR17) AND li_bomhdr-bmeng(QUAN13 ).
now I want to populate the values li_stko-base_quan = li_bomhdr-bmeng. how I can do this . Plz tell me how I can do this data type conversion .
2009 Dec 02 5:17 AM
Hello,
As li_stko-base_quan is of char type, you can directly assign it or you can Use MOVE statement to move the contents of li_bomhdr-bmeng into li_stko-base_quan.
Thanks,
Sowmya arni
Hello,
As li_stko-base_quan is of char type, you can directly assign it or you can Use MOVE statement to move the contents of li_bomhdr-bmeng into li_stko-base_quan.
Thanks,
Sowmya arni
2009 Dec 02 5:16 AM
Hi,
This conversion will not create problem as char will accept quan data type.you can directly use
li_stko-base_quan(CHAR17) = li_bomhdr-bmeng(QUAN13 ). This will work.
2009 Dec 02 5:17 AM
Hello,
As li_stko-base_quan is of char type, you can directly assign it or you can Use MOVE statement to move the contents of li_bomhdr-bmeng into li_stko-base_quan.
Thanks,
Sowmya arni
2009 Dec 02 5:19 AM
2009 Dec 02 5:19 AM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |