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

SAP Note 1453375

Former Member
0 Likes
682

Hello ,

i am currently on the point 7 of SAP Note 1453375

____________________________________________________________________________________

7. Create the new module SEPA_MANDATE_GEN_DEFAULT_PARA in the group

SEPA_MANDATE_UI_GEN. For the interface, see the correction instructions.

After you have done this, implement the required function ("Always

determine mandate ID internally") as follows:

a) Copy the function module SEPA_MANDATE_GEN_DEFAULT_PARA to the

customer-specific module ZZ_NNN and set the parameter E_PARA-MNDIDINT = "X"

in the source code of the customer-specific module.

______________________________________________________________________________

I don't find the interface in the correction instructions.

and the module ZZ_NNN I have created, had a syntax error , Field E_PARA-MNDIDINT is unknown .

Can someone tell me where I have to declare this Data ??

FUNCTION SEPA_MANDATE_GEN_DEFAULT_PARA.

*"----------------------------------------------------------------------

*"*"Local Interface:

*"----------------------------------------------------------------------

*{   INSERT         DEVK925605                                        1

* template for the customer to default further parameter

* if mandate-ID should always be determined internally when creating a mandate,

* copy this function to your namespace, set MNDIDINT to "X" here and enter your

* function in SM30 / V_SEPA_CUST


*   E_PARA-MNDIDINT = 'X'.


*}   INSERT

ENDFUNCTION.

FUNCTION ZZ_NNN.

*"----------------------------------------------------------------------

*"*"Local Interface:

*"----------------------------------------------------------------------

*{   INSERT         DEVK925605                                        1

* template for the customer to default further parameter

* if mandate-ID should always be determined internally when creating a mandate,

* copy this function to your namespace, set MNDIDINT to "X" here and enter your

* function in SM30 / V_SEPA_CUST


  E_PARA-MNDIDINT = 'X'.


*}   INSERT

ENDFUNCTION.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
590

hello,

Where have you created the FM ZZ_NNN or whatever custom name you have given ? It should be under the FG SEPA_MANDATE_UI_GEN if you have done so. Also the field E_PARA should be declared under the Export parameters. If this is correct then you should not get the error.

best regards,

swanand

Hello ,

i am currently on the point 7 of SAP Note 1453375

____________________________________________________________________________________

7. Create the new module SEPA_MANDATE_GEN_DEFAULT_PARA in the group

SEPA_MANDATE_UI_GEN. For the interface, see the correction instructions.

After you have done this, implement the required function ("Always

determine mandate ID internally") as follows:

a) Copy the function module SEPA_MANDATE_GEN_DEFAULT_PARA to the

customer-specific module ZZ_NNN and set the parameter E_PARA-MNDIDINT = "X"

in the source code of the customer-specific module.

______________________________________________________________________________

I don't find the interface in the correction instructions.

and the module ZZ_NNN I have created, had a syntax error , Field E_PARA-MNDIDINT is unknown .

Can someone tell me where I have to declare this Data ??

FUNCTION SEPA_MANDATE_GEN_DEFAULT_PARA.

*"----------------------------------------------------------------------

*"*"Local Interface:

*"----------------------------------------------------------------------

*{   INSERT         DEVK925605                                        1

* template for the customer to default further parameter

* if mandate-ID should always be determined internally when creating a mandate,

* copy this function to your namespace, set MNDIDINT to "X" here and enter your

* function in SM30 / V_SEPA_CUST


*   E_PARA-MNDIDINT = 'X'.


*}   INSERT

ENDFUNCTION.

FUNCTION ZZ_NNN.

*"----------------------------------------------------------------------

*"*"Local Interface:

*"----------------------------------------------------------------------

*{   INSERT         DEVK925605                                        1

* template for the customer to default further parameter

* if mandate-ID should always be determined internally when creating a mandate,

* copy this function to your namespace, set MNDIDINT to "X" here and enter your

* function in SM30 / V_SEPA_CUST


  E_PARA-MNDIDINT = 'X'.


*}   INSERT

ENDFUNCTION.

2 REPLIES 2
Read only

Former Member
0 Likes
591

hello,

Where have you created the FM ZZ_NNN or whatever custom name you have given ? It should be under the FG SEPA_MANDATE_UI_GEN if you have done so. Also the field E_PARA should be declared under the Export parameters. If this is correct then you should not get the error.

best regards,

swanand

Read only

0 Likes
590

Thank you swanand,

I have created the field E_PARA with type RFSEPA_PARA in the Export parameters and now it's OK .

Thank you very much .  

best regards.

Jean-Marc  (JIM)