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

Insert statement

Former Member
0 Likes
780

Can we use insert statement with out index i.e can insert statement work's without index

5 REPLIES 5
Read only

Former Member
0 Likes
726

Hi Srinivas,

Keep cursor on Key <b>INSERT</b> in Se38.

Do F1 on.. Read details from SAP documentation.

Will learn more about the Options and limitations.

Hope This helps in future.

Manish

Read only

Former Member
0 Likes
726

Insert into a database table

- INSERT INTO dbtab [CLIENT SPECIFIED] VALUES wa.

INSERT INTO (dbtabname) [CLIENT SPECIFIED] VALUES wa.

- INSERT dbtab [CLIENT SPECIFIED].

INSERT *dbtab [CLIENT SPECIFIED].

INSERT (dbtabname) [CLIENT SPECIFIED] ... .

- INSERT dbtab [CLIENT SPECIFIED] FROM TABLE itab.

INSERT (dbtabname) [CLIENT SPECIFIED] FROM TABLE itab.

Insert into an internal table

- INSERT [wa INTO|INITIAL LINE INTO] TABLE itab.

- INSERT LINES OF itab1 [FROM idx1] [TO idx2]

INTO TABLE itab2.

Insert into a field group

- INSERT f1 f2 ... INTO fg.

Insert a program

- INSERT REPORT prog FROM itab.

Insert text elements

- INSERT TEXTPOOL prog ...FROM itab ...LANGUAGE lg.

Read only

Former Member
0 Likes
726

Hi,

Yes you can use insert without index if you specify the position using the table key fields.

Regards,

Chetan.

PS:Reward points if this helps.

Read only

Former Member
0 Likes
726

Hi

Yes, you can use insert statement without INDEX.

Insert into a database table

- INSERT INTO dbtab [CLIENT SPECIFIED] VALUES wa.

INSERT INTO (dbtabname) [CLIENT SPECIFIED] VALUES wa.

- INSERT dbtab [CLIENT SPECIFIED].

INSERT *dbtab [CLIENT SPECIFIED].

INSERT (dbtabname) [CLIENT SPECIFIED] ... .

- INSERT dbtab [CLIENT SPECIFIED] FROM TABLE itab.

INSERT (dbtabname) [CLIENT SPECIFIED] FROM TABLE itab.

Insert into an internal table

- INSERT [wa INTO|INITIAL LINE INTO] TABLE itab.

- INSERT LINES OF itab1 [FROM idx1] [TO idx2]

INTO TABLE itab2.

Insert into a field group

- INSERT f1 f2 ... INTO fg.

Insert a program

- INSERT REPORT prog FROM itab.

Insert text elements

- INSERT TEXTPOOL prog ...FROM itab ...LANGUAGE lg.

Regards,

Navneet

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
726

Hi,

You can insert thro' workarea and internal table without index.Use F1 help.