What is occurs in internal table?
What are the names of the function modules that will be generated upon activation of a lock object?
Hi Everyone, Can one any explain the situation where we can exactly use the events and also explain the diff. between LIKE AND TYPE. Am new one of sap-abap. Thanks in advance Jaya DS
what is version in reports?
Whether Project contains enhancement or Enhancement contains Projects?
how to replacing the BDC with the BAPI, wherever possible
In selection screen I have three fields- Plant, Material No, and Material group.If i insert plant how do i get the material no and material group based on plant dynamically?
Can we specify the next screen number with a variable?
What is the use of PROTECT and ENDPROTECT?
In the process of creating a delivery tere is a firld date which needs to be saved, there is an userexit available but that exit does not have that date field in it, how would you overcome this. You have the delivery no that got created instead
How to handle Error in LSMW. This is urgent anybody know this answer plz post me...
do 4 times. sy-tabix,sy-index. end do. what is the output ?
what is the output of given code? data : f1 type i, f2 type i. write : / f1, f2. do 2 times. perform addfld. enddo. write : / f1, f2. form addfld. data : f1 type i, f2 type i. add 1 to f1. add 1 to f2. write : / f1 , f2. endform. int : f1 , f2.