Application Development and Automation 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: 
Read only

user exit

Former Member
0 Likes
1,039

Hi all,

i have a questions for things that i dont know even how to start - i hope you can help me.

i have a few transactions, that i have to check if there is a possible to add tabs.

the transactions are:

1. FOE1- i need to check if there a possible to add tabs in tab that already exist "user field".

2. FOXG - i need to check if there a possible to add tabs in tab that already exist "additional data".

3. FOIM - i need to check if there a possible to add tabs .

i dont know how to check it, i really appreciate that if you just lead me how to do this.

thank you very much,

dana.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
897

hi

good

CHECK WITH THESE USER EXITS

FOE1->

FVCH0001 CH-specific enhancements: Esp. POR

ISRE0001 Determine bank procedure account no.

ISRE0002 IPD reporting data retrieval

FOXG->

F67A0001 User Exit Loans Master Data Enhanced Menu I

F67A0010 User Exit Loans Master Data Overview Data

F67A0011 User Exit Loans Master Data Enhanced Menu II

F67A0012 User Exit Loans Master Data Enhanced Menu III

F67A0013 User Exit Loans Master Data Updates Additional Data

F67A0014 Screen Enhancement in Loans/Syndicated Data

F67A0016 User Exit for finance project number Loans

F68SCHKS Check documents to be reversed

F68SDATB User Exit for Reversal Transaction - Default for Date "To"

F68SDATV User exit for reversal transaction - default date "from"

F68STOBE Reversable documents can be modified

FDBFVDB1 Transfer loans subledger for premium reserve fund processing

FVBB0001 Determine calculation bases TZFB

FVD20001 User Exit Postprocessing IP Enhanced Loan Selection

FVDA0001 User exit: Loans disbursement at time of PAI

FVDA0002 User exit: Disbursement at time of PBO

FVDB0002 TR-TM-LO: User-Exit Posting Interface, Account Determination

FVDD0001 User-Exit in FM TEXT_INTERFACE

FVDD0002 User exit for document selection

FVDD0003 User exit for selection of correspondence activity

FVNBO001 Transaction activity - Default value for field

FVP50001 F4 help for clerks (who are stored on VDZSB)

FVPB0001 User exit - Posting interest on arrears

FVVD0001 User Exit Loans Updates

FVVDCF01 ISIS Loans - CASH_FLOW_CONSTRUCT_LOAN

FVVDCF02 ISIS Loans - CASH_FLOW_CONSTRUCT_SECURITY

FVVDK001 User Exit for manual postprocessing of SAPscript documents

FVVDP001 Rollover: Create/remove/print offer: Update

FVZF0001 Release: Excluse individual records from loans list

FVZZEV User Exits for incoming payment distribution MARK

LFVZF001 TR-TM-LO: Exit contract-specific checks FB01

thanks

mrutyun^

7 REPLIES 7
Read only

Former Member
0 Likes
897

first check customizing if any additional tabs are available for these transactions.

for so far I can see you can add user fields for this object.

good luck

Read only

Former Member
0 Likes
897

The person who asked me do this, she is responsible for the customizing - she tried and didnt find that there is a possible,

and i - as a programmer should check if there is a possible to do this.

i dont know how to do this?

is it through transaction smod/cmod?

Read only

Former Member
0 Likes
898

hi

good

CHECK WITH THESE USER EXITS

FOE1->

FVCH0001 CH-specific enhancements: Esp. POR

ISRE0001 Determine bank procedure account no.

ISRE0002 IPD reporting data retrieval

FOXG->

F67A0001 User Exit Loans Master Data Enhanced Menu I

F67A0010 User Exit Loans Master Data Overview Data

F67A0011 User Exit Loans Master Data Enhanced Menu II

F67A0012 User Exit Loans Master Data Enhanced Menu III

F67A0013 User Exit Loans Master Data Updates Additional Data

F67A0014 Screen Enhancement in Loans/Syndicated Data

F67A0016 User Exit for finance project number Loans

F68SCHKS Check documents to be reversed

F68SDATB User Exit for Reversal Transaction - Default for Date "To"

F68SDATV User exit for reversal transaction - default date "from"

F68STOBE Reversable documents can be modified

FDBFVDB1 Transfer loans subledger for premium reserve fund processing

FVBB0001 Determine calculation bases TZFB

FVD20001 User Exit Postprocessing IP Enhanced Loan Selection

FVDA0001 User exit: Loans disbursement at time of PAI

FVDA0002 User exit: Disbursement at time of PBO

FVDB0002 TR-TM-LO: User-Exit Posting Interface, Account Determination

FVDD0001 User-Exit in FM TEXT_INTERFACE

FVDD0002 User exit for document selection

FVDD0003 User exit for selection of correspondence activity

FVNBO001 Transaction activity - Default value for field

FVP50001 F4 help for clerks (who are stored on VDZSB)

FVPB0001 User exit - Posting interest on arrears

FVVD0001 User Exit Loans Updates

FVVDCF01 ISIS Loans - CASH_FLOW_CONSTRUCT_LOAN

FVVDCF02 ISIS Loans - CASH_FLOW_CONSTRUCT_SECURITY

FVVDK001 User Exit for manual postprocessing of SAPscript documents

FVVDP001 Rollover: Create/remove/print offer: Update

FVZF0001 Release: Excluse individual records from loans list

FVZZEV User Exits for incoming payment distribution MARK

LFVZF001 TR-TM-LO: Exit contract-specific checks FB01

thanks

mrutyun^

Read only

0 Likes
897

thanks mrutyun,

i will try to check them.

dana.

Read only

0 Likes
897

i tried all the user exit that you gave me to transaction FOE1 and non of them was good.(i think).

what i did is: put break point on each U.E and when i was in the transaction,i point to the tab that i need to see if there is a user exit- and it didnt enter to non of the U.E.

what i did is ok?

Am i suppose to do something else?

how did you find all this list?

if there are any suggestion how to solve this problem, i will appreciate.

thank you,

dana.

Read only

0 Likes
897

hi,

Copy & paste this code in trx - se38

u will get all the exit for the t-code.

&----


*& Report ZTEST_USER_EXIT

*&

&----


*&

*&

&----


REPORT ztest_user_exit NO STANDARD PAGE HEADING.

TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.

TABLES : tstct.

DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.

DATA : field1(30).

DATA : v_devclass LIKE tadir-devclass.

PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.

SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.

IF sy-subrc EQ 0.

SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'

AND object = 'PROG'

AND obj_name = tstc-pgmna.

MOVE : tadir-devclass TO v_devclass.

IF sy-subrc NE 0.

SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.

IF trdir-subc EQ 'F'.

SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.

SELECT SINGLE * FROM enlfdir WHERE funcname =

tfdir-funcname.

SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'

AND object = 'FUGR'

AND obj_name EQ enlfdir-area.

MOVE : tadir-devclass TO v_devclass.

ENDIF.

ENDIF.

SELECT * FROM tadir INTO TABLE jtab

WHERE pgmid = 'R3TR'

AND object = 'SMOD'

AND devclass = v_devclass.

SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND

tcode EQ p_tcode.

FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.

WRITE:/(19) 'Transaction Code - ',

20(20) p_tcode,

45(50) tstct-ttext.

SKIP.

IF NOT jtab[] IS INITIAL.

WRITE:/(95) sy-uline.

FORMAT COLOR COL_HEADING INTENSIFIED ON.

WRITE:/1 sy-vline,

2 'Exit Name',

21 sy-vline ,

22 'Description',

95 sy-vline.

WRITE:/(95) sy-uline.

LOOP AT jtab.

SELECT SINGLE * FROM modsapt

WHERE sprsl = sy-langu AND

name = jtab-obj_name.

FORMAT COLOR COL_NORMAL INTENSIFIED OFF.

WRITE:/1 sy-vline,

2 jtab-obj_name HOTSPOT ON,

21 sy-vline ,

22 modsapt-modtext,

95 sy-vline.

ENDLOOP.

WRITE:/(95) sy-uline.

DESCRIBE TABLE jtab.

SKIP.

FORMAT COLOR COL_TOTAL INTENSIFIED ON.

WRITE:/ 'No of Exits:' , sy-tfill.

ELSE.

FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.

WRITE:/(95) 'No User Exit exists'.

ENDIF.

ELSE.

FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.

WRITE:/(95) 'Transaction Code Does Not Exist'.

ENDIF.

AT LINE-SELECTION.

GET CURSOR FIELD field1.

CHECK field1(4) EQ 'JTAB'.

SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).

CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.

Cheers

Alfred

Read only

0 Likes
897

thank you all,

you been really helpfull.

dana