‎2006 Aug 10 7:37 PM
to start an executable program
1..call transacrion
2..submit
3..leave to transaction
4..submit...and return
mark the correct
1..text elements are multi lingual
2..classes can be treated locally
3..line typr of an internal table can be another internal table
4..data from internal table is read using select statements
‎2006 Aug 10 7:39 PM
‎2006 Aug 10 7:40 PM
‎2006 Aug 10 7:50 PM
Hi vamshi,
i think by using submit, submit and return
we can start an executable program from a module pool program..
1. text elements are multi lingual.
2.Local and Global Classes
Classes in ABAP Objects can be declared either globally or locally. You define global classes and interfaces in the Class Builder (Transaction SE24) in the ABAP Workbench. They are stored centrally in class pools in the class library in the R/3 Repository. All of the ABAP programs in an R/3 System can access the global classes. Local classes are defined within an ABAP program. Local classes and interfaces can only be used in the program in which they are defined. When you use a class in an ABAP program, the system first searches for a local class with the specified name. If it does not find one, it then looks for a global class. Apart from the visibility question, there is no difference between using a global class and using a local class.
3.line type of internal can not be of the type of another int.table
4.data from int. table is not read using select statement.
but data from dbtable is read using select statements..
regards,
keerthi.
Message was edited by: keerthi kiran varanasi
‎2006 Aug 10 7:54 PM
to start an executable program
All 4 since transactions are executable pgms
mark the correct
2..classes can be treated locally