2007 Mar 29 10:14 AM
Hi,
I want the output some like this.
When i execute the program i shud get out put '1'.
When i click the back button and again execute i shud get the output as '2'.
Again when i click back button and execute i shud get the output as '3'.
And so on...
How to do it?
2007 Mar 29 10:26 AM
simply take one field and such that u take ztable and add that ztable field by once for every execution and ud date the field value with update statement.
do u required code please reply me.
Hi,
I want the output some like this.
When i execute the program i shud get out put '1'.
When i click the back button and again execute i shud get the output as '2'.
Again when i click back button and execute i shud get the output as '3'.
And so on...
How to do it?
2007 Mar 29 10:19 AM
Hi!
You have to store these values in an own customer Z-table.
Define your table in SE11 transaction.
You can't save these values into the memory, because they lost, when you go back.
Regards
Tamá
2007 Mar 29 10:26 AM
simply take one field and such that u take ztable and add that ztable field by once for every execution and ud date the field value with update statement.
do u required code please reply me.
2007 Mar 29 11:07 AM
Hi,
REPORT ztest_count .
PARAMETERS: p_i TYPE i DEFAULT '1' NO-DISPLAY,
p_x TYPE c.
AT SELECTION-SCREEN OUTPUT.
p_i = p_i + 1.
START-OF-SELECTION.
WRITE: p_i.Thanks
Anirban M.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |