‎2006 Aug 04 8:37 AM
I have this sentente in a program;
IMPORT LT_DBFIELDCAT TO RT_DBFIELDCAT
LT_DBSORTINFO TO RT_DBSORTINFO
LT_DBFILTER TO RT_DBFILTER
LT_DBLAYOUT TO RT_DBLAYOUT
FROM DATABASE LTDX(LT)
ID_RS_VARKEY.
I have insert a new line in the data dictionary table LTDX but the error tells me that the program cannot interpret the IMPORT dataset.
How can I access to database LTDX to change whatever it should be changed ? What is exactly the problem?
Can anyone help me ?
‎2006 Aug 04 9:32 AM
Hello,
You have to use first EXPORT for exporting this data to memory. As LTDX is the index table you can't directly read the data which you had inserted by IMPORT.
You first EXPORT the data and then IMPORT the data
<b>EXPORT LT_DBFIELDCAT LT_DBSORTINFO LT_DBFILTER LT_DBLAYOUT
FROM DATABASE LTDX(LT)
ID_RS_VARKEY.</b>
OR
Just fire a select query for the table LTDX.
Regards,
Naimesh
‎2006 Aug 04 12:08 PM
The program which is giving me the problem is LSKBSF03 and I can not modify it. How can I modify the database ? which transaction is used ?