Question:
We're on 4.7 and I'm wanting to automatically populate the SU01 fax field with the userid rather than remember to do it manually. I thought there might be a user exit for SU01 save where I could do this via custom ABAP code, but per note 367660 these are the only SU01/SU10 user exits:
SAP_EXIT_USER_COPY
SAP_EXIT_USER_DELETE
SAP_FULL_USERPROF
SAP_SAVE_AUTH_DATA
SAP_SINGLE_USERPROF
SAP_USERS_TRANSFER
Is there no user exit for SU01 save? Thanks...
Answer:
Those appear to be the only ones and you can update the fax number in any of these you just have to know how. If you do a SE11 where-used on SSM_CUST you will verify if these are all the exits.
Most all of them have to do with the authorizationand there is sample code of the exit. To get the fax number to be updated you need to create separate function module of type "UPDATE" and enter it in any of the exits. You feed the data to your function module and as SU01 Hits a COMMIT WORK ( which there are several) SAP will execute the function module you call "IN UPDATE TASK" (look in the ABAP help on the details)
Answer:
I don't know where the user exits you are talking about are but if it is fax number you want there are user exits, bAdis, for address management that can help here. The definition name is address update. I believe that the correct method to use is ADDRESS3_SAVED.
_________________
bwSecurity
Answer:
Could someone give me details on the user exits for address management (i.e. how to implement)? Thanks...