‎2009 Jan 13 10:41 AM
hi folks,
i would like to know about this fm "TRINT_RELEASE_REQUEST"
i would like to release the req from my abap program,
for this the above function module is will work.
some body can help how to declare the parameters while passing the paramters for this function module.
what are the mandet paramters for this function module to execute.
i would like to know declarartion for this.
thank u
‎2009 Jan 13 10:44 AM
Hi,
In the FM , only the IV_TRKORR parameter is mandatory.
you can declare it like this
data: request TYPE e070-trkorr.
CALL FUNCTION 'TRINT_RELEASE_REQUEST'
EXPORTING
iv_trkorr = wa_devc_req-request
EXCEPTIONS
cts_initialization_failure = 1
enqueue_failed = 2
no_authorization = 3
invalid_request = 4
request_already_released = 5
repeat_too_early = 6
object_lock_error = 7
object_check_error = 8
docu_missing = 9
db_access_error = 10
action_aborted_by_user = 11
export_failed = 12
execute_objects_check = 13
release_in_bg_mode = 14
release_in_bg_mode_w_objchk = 15
error_in_export_methods = 16
object_lang_error = 17.
Regards,
Venkatesh