‎2013 Jul 25 4:00 PM
Hi!
How would you create a report, which requires not a parameter, not a range (select-options) but a table.
I mean, the user should be able to select:
Article A in Plant B and
Article C in Plant D and
...so on...
Using select-options will retrieve 4 entries: (2 articles x 2 plants).
Regards
‎2013 Jul 26 6:46 AM
Hi Ivan,
Create an Internal table with Plant and Material as 2 Fields
Display this table in a Table control on screen.
Get the values from the user via this table control.
Use this table in PAI to write your query with for all entries on the second table and process it
Regards
‎2013 Jul 25 4:52 PM
Hi,
Once I needed to do something like that. What I did was:
- Create a Z-table with maintainance view
- Create the report, which first reads the Z-table and can use the data for other selections, through FOR ALL ENTRIES.
Martin
‎2013 Jul 25 5:04 PM
Hello,
My suggestion, use Dialog programming. Create a screen with the table as input then depending on that process further to display next screens.
Best Regards,
swanand
‎2013 Jul 26 6:46 AM
Hi Ivan,
Create an Internal table with Plant and Material as 2 Fields
Display this table in a Table control on screen.
Get the values from the user via this table control.
Use this table in PAI to write your query with for all entries on the second table and process it
Regards
‎2013 Jul 29 4:45 PM
Hi!
Thanks,
I will explore the dialog programming.
I want to avoid creating new tables.