2008 Nov 11 6:09 AM
Hi,
I have internal table, i want to do some calculation based on Internal table Row ID, wich will create system automaticlly and this id will uniq. I want to use this id in my program.
So how can i do this.
Ranveer.
Hi,
I have internal table, i want to do some calculation based on Internal table Row ID, wich will create system automaticlly and this id will uniq. I want to use this id in my program.
So how can i do this.
Ranveer.
2008 Nov 11 6:12 AM
Hi,
The field sy-tabix will give you the table index or the row id. You can use this field for validation, to carry out your calculations.
Regards,
Sharmila
2008 Nov 11 6:15 AM
Hi Sharmila,
No I dont want Sy-Tabix. Its not my solution.
Actually I want ROW id like first row and first columt (matrix ) 00, 01, 11, & 12 etc.
I have to use system generated id.
Thanks
Ranveer.
2008 Nov 11 6:14 AM
hi,
if u want to create this id automatically,use transaction SNRO,
or u can create t through programming too.eg. suppose field is 'id' in table 'customer'.
select * from from customer.
itab-id = sy-dbcnt + 1.
modify customer from itab.
u can use this id in calculations too,
2008 Nov 11 6:20 AM
Hi,
Thanks for Reply.
I want to fetch internal table row id like 00,01,11,12 etc.
How can i do this?
Ranveer.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |