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

Debuginng

Former Member
0 Likes
640

In Debugging what is the use of Insert and Append TABS

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
620

Hi

The Insert and Append functions allow you to add a new line to an internal table. If you choose Append, the new line is added to the end of the table. If you choose Insert, you can add the new line at any position in the table. To insert a new line at the end of the table:

1. Choose Append.

2. Enter a value for the first field of the line.

3. Choose ENTER . The system adds a new line to the end of the table, containing the value that you entered for the first field.

4. Enter values in the remaining fields as described above.

If you want to add a line in the middle of the internal table, place the cursor on the line after which you want to insert it. Choose Insert, then follow the procedure described above from step 2.

Reward if usefull

4 REPLIES 4
Read only

former_member386202
Active Contributor
0 Likes
620

Hi,

Insert is used to insert the record into internal table and append is used to append the row into internal table.

Regards,

Prashant

Read only

Former Member
0 Likes
621

Hi

The Insert and Append functions allow you to add a new line to an internal table. If you choose Append, the new line is added to the end of the table. If you choose Insert, you can add the new line at any position in the table. To insert a new line at the end of the table:

1. Choose Append.

2. Enter a value for the first field of the line.

3. Choose ENTER . The system adds a new line to the end of the table, containing the value that you entered for the first field.

4. Enter values in the remaining fields as described above.

If you want to add a line in the middle of the internal table, place the cursor on the line after which you want to insert it. Choose Insert, then follow the procedure described above from step 2.

Reward if usefull

Read only

Former Member
0 Likes
620

hi,

this following thread will answer for your question

reward points if useful

regards,

pavan

Read only

Former Member
0 Likes
620

hI

<b>Changing Internal Tables</b>You can change the contents of internal tables in the Debugger at runtime. You can delete, edit, or add table lines.

<b>Deleting Lines</b>

To delete a line from an internal table:

1. Open the internal table display mode.

2. In the Internal table field, enter the name of the table.

3. Choose ENTER . The system displays the contents of the table.

4. Position the cursor on the line that you want to delete.

5. Choose Delete. The line is removed from the table, and the system

automatically corrects the line numbering.

Changing Lines

The Change, Insert, and Append functions are field-specific, and can only be used for a single field at a time. Suppose you want to edit the following line:

LH001 FRANKFURT NEW YORK 145400 400 X

First, you have to decide which field you want to edit. Then:

1. Position the cursor on the relevant field in the line that you want to edit.

2. Choose Change. The field appears in input mode.

3. Enter a new value for the field.

4. Choose ENTER . The system updates the line and displays the changed contents in the table.

Inserting Lines

The Insert and Append functions allow you to add a new line to an internal table. If you choose Append, the new line is added to the end of the table. If you choose Insert, you can add the new line at any position in the table. To insert a new line at the end of the table:

1. Choose Append.

2. Enter a value for the first field of the line.

3. Choose ENTER . The system adds a new line to the end of the table, containing the value that you entered for the first field.

4. Enter values in the remaining fields as described above.

If you want to add a line in the middle of the internal table, place the cursor on the line after which you want to insert it. Choose Insert, then follow the procedure described above from step 2.

<b>Reward if usefull</b>