Suppose if I’ve 10 records, I don’t want to update 9th
record? How can we do that?
Answer Posted / rohit arya
loop at t_records .
if sy-index = 9 .
continue.
endif.
<codes for processing other records>
endloop.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are the update types possible?
What are the differences between transparent tables, pooled tables & cluster tables? : abap data dictionary
Explain the Importance of pa20? : abap hr
What are the events we use in dialog programming and explain them?
What is the different type of projects? : sap abap hr
How can we achieve MVC ?
What are the different types of data dictionary objects? : abap data dictionary
What is the use of dequeue function module? : sap abap data dictionary
What is an rdbms?
What are the different types of operators in the sap abap?
How many ways can a sap system be accessed?
Persistent class
Explain the advantages/disadvantages of logical databases?
java script for push button in adobe forms.
I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/