‎2005 Aug 02 6:07 AM
Hi,
which of these calls to GUI_UPLOAD is more efficient?
CALL METHOD cl_gui_frontend_services=>gui_upload
or
CALL FUNCTION GUI_UPLOAD
‎2005 Aug 02 6:11 AM
both does the same job. if you look at the code inside the method cl_gui_frontend_services=>gui_upload
it would be calling GUI_UPLOAD function.
in terms of performance efficiency, there will be a very negligible differece and call function will be slightly better in my opinion.
Regards
Raja
‎2005 Aug 02 6:12 AM
Hi, I think these two one is same in the efficency.
You can find that the cl_gui_frontend_services=>gui_upload directly call FUNCTION GUI_UPLOAD in the method code.
the cl_gui_frontend_services is developed for envelop the exists functions, to meet the OO develop requirement.
Thanks
‎2005 Aug 02 6:45 AM
Hi,
The function module GUI_UPLOAD can be used as per the same input parameters which were used in WS_UPLOAD. GUI_UPLOAD is the new version of WS_UPLOAD.
Regards
Abhishek