‎2009 Jun 25 3:50 PM
Hi i have this code and in the 6.0 version is obsolete, i need do the same with other code, can you help me please?,
IMPORT text-version
ptext
FROM DATABASE pcl1(tx)
ID tx-key
USING pcl1_exp_imp(sapfp50p).
thanx a lot.
‎2009 Jun 25 4:08 PM
Welcome to SCN!
At least part of the problem may be due to the way text-version and tx-key are defined. Can you post their declarations please?
Rob
‎2009 Jun 25 4:20 PM
You have to Use
To WA (workarea)after
FROM DATABASE pcl1(tx)......Ex: data wa_pcl1 like line of pcl1.IMPORT text-version
ptext
FROM DATABASE pcl1(tx)
to wa_pcl1
ID tx-key
USING pcl1_exp_imp(sapfp50p).
Kanagaraja L
Edited by: Kanagaraja Lokanathan on Jun 25, 2009 5:20 PM
Edited by: Kanagaraja Lokanathan on Jun 25, 2009 5:22 PM
‎2009 Jun 25 4:20 PM
i have this
DATA: BEGIN OF text-version,
nummer TYPE x VALUE '02',
END OF text-version.
DATA: tx-key LIKE pskey.
thanx.
‎2009 Jun 25 4:26 PM
Try text_version instead of text-version and tx_key instead of tx-key. The use of dashes is not allowed in field names. That should get rid of a couple of the problems.
Rob