Bookmark Subscribe Mute Subscribe to RSS Feed Permalink Print Report Inappropriate Content 2011 Dec 20 10:15 AM 0 Kudos 3,246 SAP Managed Tags: ABAP Development Hi, Modify using Transporting with this 2 fileds amt_plan, qty_plan. it will works. Regards, Sanjay Gogikar Reply ...
SAP Managed Tags: ABAP Development hi When you use this statement it will modify the record using the field DATE. LOOP AT I_TABLE_TEMP INTO W_TEMP ... ... MODIFY I_TABLE_TEMP FROM W_TEMP TRANSPORTING DATE. ... .. ENDLOOP. In the above code even if you are going to modify som...
For access using table keys, index access tosorted tablesand when the additionTRANSPORTINGis used, thewawork area must becompatiblewith the row type of the primary internal table. Only in the case of insertion using the table index instandard tableswithout the additionTRANSPORTINGcanwabe incompatible...
If the optional addition TRANSPORTING is specified, the columns listed after it are modified wa expects a structure that is compatible with the line type of the last path node. No key fields of primary or secondary table keys in the last path node can be overwritten. The return code sy-sub...
ABAP 740 has many new features. This new feature Table Expressions are also powerful and reduce the “code clutter”. There are two type of them: For Reading the data– These are known asReader Positions. This would do the same job as you do with the READ statement, but without using ...
Include transporting statement . MODIFY dbtable FROM TABLE itab transporting <fields>. Reply Former Member 2007 Feb 07 9:20 AM 0 Kudos 10,893 SAP Managed Tags: ABAP Development Hi, Check whether entries are there in the internal table. Also check for the structure. MODIFY dbtab...
SAP Managed Tags: ABAP Development Hi Kulbir Paji Hope it wil help you. modify itab_lcplanning from wa_struct transporting tasstdate tasenddate where phcode = wa_struct-phcode and wpcode = ' ' and actcode = ' ' and tascode = ' ' and fitgapcd = ' ' and subtascd = ' ' an...
SAP Managed Tags: ABAP Extensibility Hi Liu, One more clarification, is it in debugging mode to change the release version in table EDISDEF? Will it not create any consequences while transporting to other systems like tst and production? Regards,Siva. Reply DavidLY Product and Topic Expert ...
If the additionUSING KEYis not used, the additionINDEXcan only be used withindex tablesand determines the row to be modified from theprimary table index. If a row specified usingINDEXis modified without the additionTRANSPORTING, all components of the row are transported. If it is known statical...
SAP Managed Tags: ABAP Development There seems to be no way to MODIFY a DB table from an internal table TRANSPORTING only certain fields. It seems a pity to loop through the internal table and do thousands of MODIFY commands. Or, as show below, loop through the itab and load from the...