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: 

Smart form -user

Former Member
0 Kudos
69

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

Former Member
0 Kudos
46

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

Former Member
0 Kudos
46

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

Former Member
0 Kudos
47

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