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

Smart form -user

Former Member
0 Likes
380

I am using SMF for HR module,

and how to show NAME1 field of table t500p.

&wa_t500p-NAME1&

how to do select single

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
357

Hi

You can create command node and use normal ABAP statement to select data from table into a structure.

And use &structure-<field_name>& to display the contents.

eg: &wa_t500p-name1&

Regards

Raj

2 REPLIES 2
Read only

Former Member
0 Likes
357

Hi Nick,

First get the ADRNR from the required table ex. if it is Customer, get from KNA1, Vendor get from LFA1....

Then

Select Single name1 from T500P into gv_name1 where adrnr = <adrnr got above>.

Pass this gv_name1 to form interface variable.

Regards,

Satish

Read only

Former Member
0 Likes
358

Hi

You can create command node and use normal ABAP statement to select data from table into a structure.

And use &structure-<field_name>& to display the contents.

eg: &wa_t500p-name1&

Regards

Raj