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

ACH File user exit modification

Former Member
0 Likes
583

Hi Experts,

I am trying to modify the userexits available for ACH.

EXIT_RFFOEXIT_103 , In this user exit , I don't find extra fields apart from the three fields for modification. If I need to modify the 13th field(Trace Number) in CTX from 1 to 8 position is there any way with a constant value provided by the bank.

Thanks

Ravi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
463

Declaration Must be as below for non existing field in the userexit EXIT_RFFOEXIT_103 for ACH

field-symbols: <CTX13> type DTAUSCTX-CTX13.

constants: c_value(8) type c value '99999999'.

  assign ('(RFFOUS_T)DTAUSCTX-CTX13') to <CTX13> .

    move c_value to <CTX13>.

Hi Experts,

I am trying to modify the userexits available for ACH.

EXIT_RFFOEXIT_103 , In this user exit , I don't find extra fields apart from the three fields for modification. If I need to modify the 13th field(Trace Number) in CTX from 1 to 8 position is there any way with a constant value provided by the bank.

Thanks

Ravi

1 REPLY 1
Read only

Former Member
0 Likes
464

Declaration Must be as below for non existing field in the userexit EXIT_RFFOEXIT_103 for ACH

field-symbols: <CTX13> type DTAUSCTX-CTX13.

constants: c_value(8) type c value '99999999'.

  assign ('(RFFOUS_T)DTAUSCTX-CTX13') to <CTX13> .

    move c_value to <CTX13>.