‎2008 Jan 16 1:33 PM
hi,
*when i need to u the transporating in read or modify operation.... in which situation i need to u the transporating....................................*
‎2008 Jan 16 1:45 PM
Hi,
check this link
http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/frameset.htm
Regards
‎2008 Jan 16 1:48 PM
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.
‎2008 Jan 16 1:48 PM
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