SAP Learning Solution offers a WebDynpro ABAP based Learner Portal in HR renewal. This is an improved version from the previously available BSP based version; the new version offers a simplified user interface along with some advanced features. In th...
Hi,1) I have created a class with its instantiation set to private.2) Declared a static attribute 'instance' in the class with TYPE REF to same class.3) In the class constructor checked if instance is initial if it is then created an object.if instan...
Hi, I have a class method, in that method I will create instances of the same class and I want return those instances as an export parameter. Is there any other way apart from creating a table type of the class and using it as the type of the ex...
Hi,I have a structure and a work area,DATA: begin of sample_struct, elem1 type xxx, elem2 type yyy, elem3 type zzz, end of sample_struct.DATA: wa_sample_struct type sample_struct.DATA: lr_rtti_struc TYPE REF TO cl_abap_structdescr...
Hi, I have an RFC call from JAVA and I need to send string data to the FM. The maximum size of the data that I can send from java is 64 kilo bytes (Functional requirement). I want to receive this data as a table's parameter in the FM. Table's para...
Hi, Though this is not possible syntactically, there is one workaround.Its not exactly what we want but just a thought.You can create Public static attribute and mark it as Read only.then you can pass the value of it directly using the classname=>a...
Hi, Use the transaction SE19 to create an implementation. For creating an implementation you need to give the implementation name in customer namespace. That is starting with Z or Y.Regards,Sesh
Hi, The value that is set using SET PARAMETER will stay in the memory as long as the user is loged-on.One way to clear the value is to just set an empty value using SET PARAETER itslef.Regards,Sesh
Hi, You can do this in the function group's TOP include for the keyword FUNCTION-POOL.You need to go to the function module's function group and then in the top-include(Include with TOP in the name) you can do this.FUNCTION-POOL zfunction_group MESSA...