‎2008 Aug 04 1:30 PM
hi
i have created a screen based on a table and unter the part process before output in module status_2001 i want to add a selection into the fileds in the screen i created which are in the same names as in the table
i wrote:
module status_2001 output.
select single *
from (table name)
into corresponding fileds of (?????).
endmodule,
what do i need to write insted of '????' that it will show on the screen.
ami .
‎2008 Aug 04 1:38 PM
Try this:
in top include define a "tables" statement.
tables: <table name>.
select single *
from <table name>
into <table name>.
Regards,
JOy.
‎2008 Aug 04 1:38 PM
Try this:
in top include define a "tables" statement.
tables: <table name>.
select single *
from <table name>
into <table name>.
Regards,
JOy.
‎2008 Aug 04 1:42 PM
Joy,
tables: <table name>.
select single *
from <table name>
into <table name>.it is same as
tables: <table name
select single *
from <table name>."no into cluse
‎2008 Aug 04 1:48 PM
Yes u r right ..I have to give endselect here like:
tables: mara.
select * from mara
into mara
where matnr = '000000000000000001'.
endselect.
Regards,
Joy.
Edited by: Joyjit Ghosh on Aug 4, 2008 2:54 PM
‎2008 Aug 04 1:56 PM
‎2008 Aug 04 1:39 PM
Hi....Ami...
Make clear that your screen contains table control or not....!
If not.... as you know we can display one entry in the fields at a time.... so which entry o fthe table you wnat to display in your screen...
Thanks,
Naveen Inuganti.
‎2008 Aug 04 1:39 PM
hi,
Mention the variables which you have defined in the layout.
‎2008 Aug 04 1:39 PM
R u using a table control. if yes u link the fields of table control with the dictionary fields