2007 Dec 06 1:27 PM
I am using SMF for HR module,
and how to show NAME1 field of table t500p.
&wa_t500p-NAME1&
how to do select single
2007 Dec 06 1:31 PM
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
2007 Dec 06 1:31 PM
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
2007 Dec 06 1:31 PM
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