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

reg : abap code

Former Member
0 Likes
405

hi,

*when i need to u the transporating in read or modify operation.... in which situation i need to u the transporating....................................*

3 REPLIES 3
Read only

Former Member
Read only

Former Member
0 Likes
387

Hi,

take a situation lik eyou have a table contol. you are editing it. You want to insert the edited data to the dbtable. If so you may frist modify the internal table transporting the values from the screen and then modify the dbtab from the internal table.

Regards,

Renjith Michael.

Read only

Former Member
0 Likes
387

Following Keywords have TRANSPORTING addition.

MODIFY,

READ and

LOOP

TRANSPORTING here facilitates you that all the fields that you want to change are given with the TRANSPORTING addition. All other fields are not at all changed.

****************************************************

Transporting no fields is used when u want to check some condition based on which u need to do some action

after,

read table itab with key kunnr = 1000 transporting no fields.

if 1000 value exists then sy-subrc is equal to zero or else sy-subrc = 4.

Regards

Vasu