2009 Sep 14 8:43 AM
SELECT *
into table it_tab
FROM parameter at selection screen
how to do this?
ignore the fact that i need to know the table structure to be able to create the internal table.
SELECT *
into table it_tab
FROM parameter at selection screen
how to do this?
ignore the fact that i need to know the table structure to be able to create the internal table.
2009 Sep 14 8:46 AM
Try this way.
REPORT ZTEST_PROGRAM .
PARAMETERS:P_TABLE TYPE RSRD1-TBMA_VAL.
DATA IT_TAB TYPE TABLE OF T001.
SELECT * INTO TABLE IT_TAB FROM (P_TABLE).Thanks
Venkat.O
2009 Sep 14 8:48 AM
SELECT *
into table it_tab
FROM (parameter) CLIENT SPECIFIED.
i am trying this.
2009 Sep 14 9:08 AM
>
> SELECT *
> into table it_tab
> FROM (parameter) CLIENT SPECIFIED.
>
> i am trying this.
So what is your problem?
Suhas
2009 Sep 14 9:39 AM
how have you defined your parameter
parameters : parameter type tabname.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |