former_member333493
Participant
Member since ‎12-08-2016

User Statistics

  • 22 Posts
  • 0 Solutions
  • 33 Kudos given
  • 3 Kudos received

User Activity

While SAP systems have the 'Source-code based' button in SE24, customer systems lack this. So is there any way to download and then upload the class source code? Or any way to release a transport with the class locked in it from the source system, th...
In the public section of my class, I have: TYPES: ty_t_tadir_detail TYPE SORTED TABLE OF dbtab. In the private section, I have: DATA: gt_tadir_detail TYPE ty_t_tadir_detail. When I try to activate, I get the error: "TY_T_TADIR_DETAIL" is a ...
I have an event handler DELETE_LOCAL_AFTER_COMMIT whose code is as follows: METHOD delete_local_after_commit. "line no. 1 LOOP AT gt_del_obj_tab INTO DATA(ls_del_obj_tab). TRY. CALL METHOD cl_ilm_tadir_api=>tadir_for_local_object EXPORTING iv_objec...
PEFORM subroutine on COMMIT executes the subroutine before the actual commit happens. Is there any way to call a function module or subroutine AFTER the actual commit happens?
I have a public static method in my class which returns a variable of type BOOLE_D. Once I save the method parameters, I'm unable to set a default value as that column gets greyed out. Why does this happen? Does it have something to do with returning...