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

value pass

Former Member
0 Likes
535

hi experts...

i got one program that has a value in the selection field as PARAMETERS: PA_MMM AS CHECKBOX DEFAULT ' '.

this program call function module Y_P_GENERATE_YP20A_CLAIM_FILE. and this function module call subroutine in one of the include program LYP03F01 - PERFORM prepare_claims..

how i can pass my value PA_MMM to include program LYP03F01? help me

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
506

Hi,

Use ABAP memory ( IMPORT EXPORT ), Search in SCN you will find related topics.

Regards,

Anil

3 REPLIES 3
Read only

Former Member
0 Likes
507

Hi,

Use ABAP memory ( IMPORT EXPORT ), Search in SCN you will find related topics.

Regards,

Anil

Read only

Former Member
0 Likes
506

Hi ,

In you include program "LYP03F01".

Just declare one variable and one field-symbol.

Example----


DATA: val(20) value '(your main prg name)your parametername. eg. (MAINPRG)PA_MMM

FIELD_SYMBOLS: <fs> TYPE ANY.

ASSIGN (VAL) TO <fs>.

    • Now the <fs> will have your parameter value.*

Hope this will help you.

Regards,

Smart Varghese

Read only

faisalatsap
Active Contributor
0 Likes
506

Hi,

Please USE Meaningful Subject Line for next time Posting

Faisal