Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

data table sequence?

Former Member
0 Likes
489

Hi,

i have created a data table with the transaction se11.

For this table i want to create a sequence.

Is this possible?

Thanx

Tony

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
394

It is possible to create a table sequence. Here you will be having one table which will have a foreign key relation to the other table.

An already existing example of such a tables would be spfli, sflight and sbook.

2 REPLIES 2
Read only

Former Member
0 Likes
394

If you want to create a sequence so that the value of a particular column of your table gets filled up automatically, you have to do it in your maintenance logic. There is no automatic way to do it. You can create a custom number range, call that number range to get next number in the sequence and put that into this column everytime there is a new record to be inserted.

Read only

Former Member
0 Likes
395

It is possible to create a table sequence. Here you will be having one table which will have a foreign key relation to the other table.

An already existing example of such a tables would be spfli, sflight and sbook.