R/3 note no. 355585 ________________________________________________________________________ Number 0355585 Version 0001 from 07.11.2000 Status Für Kunden freigegeben Set by SAP AG on 07.11.2000 Language EN Short text BTRD: Work item execution in the Web cannot be set Administrator SAP AG Component BC-BMT-WFM ________________________________________________________________________ Long text Symptom For the work item execution with the BTRD service you had to activate a checkbox up to Release 4.6B so that the system could execute the work item. When you use the SAOGui for HTML, you can execute every work item. You can no longer set the checkbox during the task, however, it is still evaluated in the BTRD service. Additional key words BTRD, execute, work item Cause and preconditions You want to execute work items in the Web. However, you are always using the SAPGui for HTML and not the entered service. Solution Implement the attached source code corrections. Source code corrections ________________________________________________________________________ Valid releases R/3 Standard 46C - 46D ________________________________________________________________________ Registered objects for installation 0020087912 TADIR object Registration key ______________________________________________________________ R3TR FUGR BW02 11892433722396082630 ________________________________________________________________________ Assigned correction instructions ________________________________________________________________________ *$*$----------------------------------------------------------------$*$* *$ Correction Instr. : 0120061532 0000216186 $* *$ Software Component : SAP_APPL SAP Application $* *$--------------------------------------------------------------------$* *$ Validity : 46C All Patches $* *$*$----------------------------------------------------------------$*$* *&---------------------------------------------------------------------* *& Object REPS SAPLBW02 *& Object Header FUGR BW02 *&---------------------------------------------------------------------* *& FORM 1320_GET_WORKITEM_DATA *&---------------------------------------------------------------------* ... WHEN w2_fol. *---- set the different buttons for the Workflow-resubmission *-------------------------------------------------------------- tab_wf_action-text = 'Wiedervorlage beenden'(a11). tab_wf_action-code = web_wi_resub_end. APPEND tab_wf_action. WHEN OTHERS. "in_fol. *---- set the different buttons for the Workflow-inbox *------------------------------------------------------- * check execute. IF workitem-executable EQ 'X'. *---------Check whether task is web-enabled and read the * corresponding transaction/service. *>>>> START OF DELETION <<<<< IF workitem-web_enabled IS INITIAL OR workitem-web_service IS INITIAL. *>>>> END OF DELETION <<<<<<< *>>>> START OF INSERTION <<<< IF workitem-web_service IS INITIAL. *>>>> END OF INSERTION <<<<<< ... *&---------------------------------------------------------------------*