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

getting the parameter id value

Former Member
0 Likes
577

How can I get the value over the parameter id or abap memory of this input field .

Please notice this is a dypro Input field.

data GDIM(30) type c.

Regards

sas

Please use an informative subject line. You'll get better answerws if you do.

Edited by: Rob Burbank on Feb 25, 2009 12:01 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
553

Hi,

when you declare a field in Dynpro it should reference to Dictionary field.

When creating Field through Screen painter Set the properties-->SET Parameter & GET Parameter

Or

Use Set/Get parameters

Or Import/export

Regards,

Gurpreet

3 REPLIES 3
Read only

Former Member
0 Likes
553

Hi

Use the syntax:

 GET PARAMETER ID 'XYZ' 

Please use F1....

Cheers

Ravish

Read only

Former Member
0 Likes
553

EXPORT itab TO MEMORY ID 'HK'.

IMPORT itab FROM MEMORY ID 'HK'.

Read only

Former Member
0 Likes
554

Hi,

when you declare a field in Dynpro it should reference to Dictionary field.

When creating Field through Screen painter Set the properties-->SET Parameter & GET Parameter

Or

Use Set/Get parameters

Or Import/export

Regards,

Gurpreet