‎2007 Feb 20 4:57 AM
hi,
Do you know a functional module where we can specify an object type and name so that object can be deleted
‎2007 Feb 20 5:02 AM
HI,
APPL_LOG_INIT - This function module checks whether the specified object or sub-object exists and deletes all existing associated data in local memory.
Thanks,
Shankar
‎2007 Feb 20 5:02 AM
HI,
APPL_LOG_INIT - This function module checks whether the specified object or sub-object exists and deletes all existing associated data in local memory.
Thanks,
Shankar
‎2007 Feb 20 5:13 AM
‎2007 Feb 20 6:11 AM
This function module deletes all existing entries for the specified object an sub-object in the local memory.
Example call:
DATA: OBJECT LIKE BALHDR-OBJECT,
SUBOBJECT LIKE BALHDR-SUBOBJECT.
...
CALL FUNCTION 'APPL_LOG_INIT'
EXPORTING
OBJECT = OBJECT
SUBOBJECT = SUBOBJECT
EXCEPTIONS
OBJECT_NOT_FOUND = 01
SUBOBJECT_NOT_FOUND = 02.
‎2007 Feb 20 11:06 AM
Hi,
Thanks for the reply .. but this doesn't work.
what should be entry on sub object.
then what if a program and function module contains same name or table and program contain same name.
which object it'll will delete...