Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

iw33 userexit?

Former Member
0 Kudos

The requirement is in iw33 transaction,

after entering an order num, we go inside

and click on tabstrip components

then some entriees will be thr

in the table control. then we go to menu - edit - display deletions,

on is enabled and off is disabled.

We found the user exit. IWO10006

we want it in the reverse mode like On disabled, Off enabled.

In the usual mode, when On is enabled, and we click on it,

some entries will come to table control which were earlier deleted

Similarly in our case when we make on disabled,

those entries of the tabl ctrl which were deleted also

shud come while we click on components tab

thanks & regards

8 REPLIES 8

peter_atkin
Active Contributor
0 Kudos

As standsard OFF is disabled becasue that is the current setting i.e. do not show any deletions.

What you want to do is also disable the ON selection.

This should be possible via IWO10006 (FCode exclusion)

See [here|https://forums.sdn.sap.com/click.jspa?searchID=16578227&messageID=6126261] and [here|https://forums.sdn.sap.com/click.jspa?searchID=16578359&messageID=6220933] for similar posts.

PeteA

0 Kudos

thanks for the reply

yeh that exit is correct but iam not getting the functinality ?

can u help me to get it plssssss

thanks @& regards

lakshmi

0 Kudos

This user-exit is to stop the users using certain functions in the order by disabling the FCodes.

PeteA

0 Kudos

hi petea

FIELD-SYMBOLS:<lfs_tab_excl> TYPE ANY TABLE,

<lfs_excl> TYPE cuafcode.

if sy-tcode = 'IW33' and STATUS = 'KUA'.

ASSIGN ('(SAPLCOIH)FTABEXL[]') TO <lfs_tab_excl>.

LOOP AT <lfs_tab_excl> ASSIGNING <lfs_excl>.

IF <lfs_excl>-fcode = 'DOB0'.

<lfs_excl>-fcode = 'DOB1'.

endif.

ENDLOOP.

ENDIF.

i tried with this code but iam not getting the exat functionality

pls have a look at it n help me

thanks & regrads

lakshmi

0 Kudos

Here's some code I have used previously:


* check screen groups
  case bldgr.
    when 'VU' or 'A1' or 'KU' or 'VD'.
      fcode_exc_cust-fcode = 'DISP'.
      append fcode_exc_cust.
    when others.
  endcase.

0 Kudos

hi

i tried a lot but iam not getting the functionality

plzzzz any one help me

thanks & regards

lakshmi

0 Kudos

lakshmi,

i tried a lot but iam not getting the functionality

I don't understand your question..

PeteA

Former Member
0 Kudos

Hi Kuladeep,

Your issue can be resolved very easily

Lakshmi