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

HOW to GET EXPORT/IMPORT

Former Member
0 Likes
498

Export <field> to parameter ID <XXX>

IMPORT <field> from Parameter ID <XXX>

How to get XXX value it can be 3 character or any specific value like

GET PARAMETER ID <KUN> field KUNNR. where KUN is the paramete ID given at the definition of data element

Export <field> to parameter ID <XXX>

IMPORT <field> from Parameter ID <XXX>

How to get XXX value it can be 3 character or any specific value like

GET PARAMETER ID <KUN> field KUNNR. where KUN is the paramete ID given at the definition of data element

2 REPLIES 2
Read only

Former Member
0 Likes
477

TYPES:

BEGIN OF tab_type,

para TYPE string,

dobj TYPE string,

END OF tab_type.

DATA:

id TYPE c LENGTH 10 VALUE 'TEXTS',

text1 TYPE string VALUE `IKE`,

text2 TYPE string VALUE `TINA`,

line TYPE tab_type,

itab TYPE STANDARD TABLE OF tab_type.

line-para = 'P1'.

line-dobj = 'TEXT1'.

APPEND line TO itab.

line-para = 'P2'.

line-dobj = 'TEXT2'.

APPEND line TO itab.

<b>

EXPORT (itab) TO MEMORY ID id.

IMPORT p1 = text2

p2 = text1 FROM MEMORY ID id.</b>

Read only

Former Member
0 Likes
477

Hi

Pls go to SE11/SE12 give database name, and see the data element!

Regards,

Mehfuze