Skip to Content
Author's profile photo K Jogeswara Rao

Restrict Operation changes after Order Release (user exit IWO10009)

As the title indicates, this post is to utilize the very useful user-exit IWO10009 for the purpose of preventing changes in Operation tab. In fact utilizing this exit for control over Components tab and Operation tab is not  straight forward, because here tables are involved, listing number of Components or number of Operations. For such requirements we need to know the respective program and the run-time memory (internal table). During such requirement in components tab by a member in the past, some research was done and the required program and the internal table were found to access the runtime memory of the program for Components tab. The program was SAPLCOBC and the internal table was RESB_BT . Using this information the control desired by the member was achieved and later this code was preserved in the post Specify conditions for Components in PM Order (User Exit IWO10009) .

In a similar way, recently one more member was asking for control over Operations tab, such as he should be able to Restrict changes in Operations tab once the Order has been released.

So things are similar, only thing is to know the Program and internal table corresponding to Operation tab. After I searched net, including SCN, I could get the information on this. The program is SAPLCOBO and the internal table is AFVG_BT. Once we knew this information a simple code (given below) in the include ZXWOCU07 of user-exit IWO10009, would prevent any changes in Operations tab after Order Release.


IF CAUFVD_IMP-IPHAS <> '0' AND SY-TCODE = 'IW32'.

   FIELD-SYMBOLS: <FS_AFVG> TYPE ANY.

   DATA: BEGIN OF I_AFVG OCCURS 100.
           INCLUDE STRUCTURE DFPS_AFVG_BT .
   DATA:END OF I_AFVG.

   ASSIGN ('(SAPLCOBO)AFVG_BT[]') TO <FS_AFVG>.
   I_AFVG[] = <FS_AFVG>.

   LOOP AT I_AFVG.
     IF I_AFVG-VBKZ <> ''.
       MESSAGE: 'Operation changes not permitted after Order release' TYPE 'E' DISPLAY LIKE 'I'.
     ENDIF.
   ENDLOOP.
  ENDIF.
























This throws the following pop-up error at the Save event, when user makes some changes in Operations tab.

error.JPG

There can be many deeper requirements for the users, to specify some conditions for changes in Operations tab, in stead of completely preventing changes. All these requirements will be now possible for an ABAPer by developing the above code. The key information is the program SAPLCOBO  and the internal table AFVG_BT  which has been already known to us.

Alternatively, a Function module to do the same job:

I was further researching and found a Function Module in this area to capture the runtime memory of the Operations tab. The FM is CO_BO_AFVGBT_GET.


So, I experimented and good results are there with the following code. This way we can make use of this FM to detect changes in specific fields of operations tab. In the later part of the following code this was illustrated through a field ARBEI (work involved in the activity).


IF CAUFVD_IMP-IPHAS <> '0' AND SY-TCODE = 'IW32'.
   DATA: VBKZ TYPE AFVGB-VBKZ.

   DATA: I_AFVC TYPE STANDARD TABLE OF VIAUF_AFVC,
         WA1 LIKE LINE OF I_AFVC.

   SELECT * FROM VIAUF_AFVC INTO TABLE I_AFVC WHERE AUFNR = CAUFVD_IMP-AUFNR.


   DATA: BEGIN OF I_AFVG OCCURS 100.
           INCLUDE STRUCTURE AFVGD.
   DATA:END OF I_AFVG.

   DATA: WA LIKE LINE OF I_AFVG.

   CALL FUNCTION 'CO_BO_AFVGBT_GET'
     EXPORTING
       AUFNR_IMP  = CAUFVD_IMP-AUFNR
     TABLES
       AFVGBT_EXP = I_AFVG[].


   LOOP AT I_AFVG.
     IF ( I_AFVG-PHFLG = '' AND I_AFVG-VSTTXT+0(3) = 'DLT' )
       OR
       I_AFVG-OBJNR+0(2) <> 'OV'.
       MESSAGE 'Operation addition /deletions not permitted after Order release' TYPE 'E' DISPLAY LIKE 'I'.
     ENDIF.
   ENDLOOP.


   LOOP AT I_AFVC INTO WA1.
     READ TABLE I_AFVG INTO WA WITH KEY AUFPL = WA1-AUFPL APLZL = WA1-APLZL.
     IF SY-SUBRC = 0.
       IF WA1-ARBEI <> WA-ARBEI.
         MESSAGE 'Operation changes not permitted after Order release' TYPE 'E' DISPLAY LIKE 'I'.
       ENDIF.
     ENDIF.
   ENDLOOP.

 ENDIF.













The code from line 23 to 29, detects any operation deletion / additions and throws an error pop-up that  ‘Operation addition /deletions not permitted after Order release’ ,  whereas the code from lines 32 to 39 identifies any changes done to the ARBEI field (Work), and if so throws an error pop-up that  ‘Operation changes not permitted after Order release’


Thus this FM brings every field in the Operations tab to user control for use in the user-exit IWO10009. Hope users will be benefited with this post. The main objective of post like this as I use to say, is to preserve this recently acquired piece of knowledge at a place, to be able to find easily (even by me), whenever needed.

—————————————————————————————————————————————————————-

12/02/2016

The discussion below is another case where a member had the requirement of preventing changes in texts of Confirmed operations.


Restrict end user to change confirmed operations texts in a  work order


————————————————————————————————————————————————

Author’s other posts

————————————————————————————————————————————————

Thank you

KJogeswaraRao

Assigned Tags

      9 Comments
      Comments are closed.
      Author's profile photo Former Member
      Former Member

      Hi,

      I have a requirement to add operations(task lists)  based on Equipment number automaticaaly while creating Workorder using IW31...

      Please help me , how can i do that....

      Thanks & Regards

      Subba

      Author's profile photo K Jogeswara Rao
      K Jogeswara Rao
      Blog Post Author

      This you need to explore using user-exit IWO10020. I haven't yet explored this.

      Author's profile photo Former Member
      Former Member

      Hi,

      I checked  with user-exit IWO10020 , But it's not having any Export or Table or Changing parameters to  export task list  data to syatem code...

      Still i wondered how can i achieve this requirement...

      Thanks & Regards,

      Suba

      Author's profile photo K Jogeswara Rao
      K Jogeswara Rao
      Blog Post Author

      Yes, By title meant clearly for this purpose, I suggested this, and I used the word explore because of the observation made by you. Do one thing. Post your query in ABAP space.

      Author's profile photo K Jogeswara Rao
      K Jogeswara Rao
      Blog Post Author

      The solution was found later by me and documented here: Automatic Tasklist transfer to PM Orders: User Exits IWO10020,21

      I remember you had already gone through.

      Author's profile photo Former Member
      Former Member

      NIce work. Thanks for posting this.

      Author's profile photo K Jogeswara Rao
      K Jogeswara Rao
      Blog Post Author

      Thank you Jeff 🙂

      Author's profile photo Meenakshi Raina
      Meenakshi Raina

      Hi Jogeswara,

      Can we disable the entire line item (change to display mode) once the order is saved ?

      Regards

      Meenakshi

      Author's profile photo K Jogeswara Rao
      K Jogeswara Rao
      Blog Post Author

      Go through this post: IW32 to Display mode Perhaps your requirement is in the same lines. If it is similar but different, then you can achieve it in the same manner. Just exlpore the Implicit Enhancement.

      Regards

      KJogeswaraRao