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

error in database ltdx(lt)

Former Member
0 Likes
721

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 ?

2 REPLIES 2
Read only

naimesh_patel
Active Contributor
0 Likes
537

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

Read only

0 Likes
537

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 ?