cancel
Showing results for 
Search instead for 
Did you mean: 

what is the use of types tab in global settings in smartforms?

Former Member
0 Kudos

Hi,

Please let me know with examle, the use of Types tab in global settings in smartforms.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

we declare the structures in TYPES .

for example if we decalre

TYPES: BEGIN OF ly_chg_texts,

ebeln TYPE ekpo-ebeln,

ebelp TYPE ekpo-ebelp,

ctxnr TYPE t166t-ctxnr,

chtxt TYPE t166t-chtxt,

f_old TYPE cdshw-f_old,

f_new TYPE cdshw-f_new,

END OF ly_chg_texts.

in types tab.

then in GLOBAL DATA -


we decalre the internal table

T_CHG_TEXTS type table of ly_chg_texts.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Types like type definition in general ABAP code

you can declare here reuse wherever you need in the code or global definitions

Regards

Shiva