Application Development 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: 

Table for test data saved in SE37 (Test data directory)

Former Member
0 Kudos

Hello Experts,

When we save the test data in SE37 its going to be saved in test data directory, in which table of the data base its going to saved?

Thanks in advance,

Sandhya

4 REPLIES 4

GauthamV
Active Contributor

Check this table.

EUFUNC.

Also check this FM.

RS_TESTDATA_GET.

Former Member
0 Kudos

HI,

This is Where it stores,,

EXPORT te_datadir
        fdesc_copy
        struc_info_table_copy
        g_no_save
        d102_fname TO DATABASE eufunc(fl) ID d102n_exportkey.

Find the declarations in LSEUJTOP include

Former Member
0 Kudos

Hi Sandhya,

The test data will be stored in a table called 'EUFUNC'

But it is a cluster table if you want to fetch the data from that table you can use macros to fetch the data.

Here is the macro syntax for your reference.

data : d102n_exportkey like functdir.

data : begin of te_datadir occurs 10,

dataid like eufunc-nummer, "Schlüsselnr. für Testdatenimp.

stepid(3), "PBO/PAI-Eintrag

seqid like eufunc-seqid,

datum like sy-datum,

uzeit like sy-uzeit,

title(40),

end of te_datadir.

te_datadir is a internal table

d102n_exportkey-area = p_file.

d102n_exportkey-progid = p_fname.

d102n_exportkey-dataid = dataid.

IMPORT te_datadir

FROM DATABASE eufunc(fl) ID d102n_exportkey.

Regards

Krishna

Former Member
0 Kudos

Done Thanks SDN