SAP READ Statements...
Hello Blog Readers, This blog is for those who would like to know about the SAP ABAP READ statement varieties. And, I hope you would enjoy this blog!! :-). Please correct/suggest if any wrong observed/found. Read Statement: In simple understanding Read statement is used to perform certain operations(Append/Modify/Delete) to internal table/fetch corresponding record from internal table based on condition/index etc.. From below examples, Before ABAP 7.40 Code ** Read Statement using Index Read Table <itab> into <wa> index <no>. *** From above statement, It is clear to understand, that a internal table <itab> ***record is fetched into <wa> based on given Index number. *** Make sure, the records exists else handle with exception cases to avoid run-time *** errors. **Read Statement using with key & non binary search Read Table <itab> into <wa> with key <Field1><operator><value>. *** From above statement, It is obse...