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

Module pool---Input/output field 'xxxxx' not defined

Former Member
0 Likes
3,956

Hi frens,

This is regarding a module pool programming...

In the flow logic i wanted to add a module PROCESS ON VALUE-REQUEST.

My coding is like.

process on value-request.

field vbeln module value_vbeln.

In The module of the ABAP/4 program i gave F4IF_FIELD_VALUE_REQUEST function module.

Passed the necessary parameters.Program got executed in the module pool program

Why it is showing error in the flow logic?

Must the name and text match with vbeln in the field atributes..????

Answer is awaited..

Ranjith kumar.T

Hi frens,

This is regarding a module pool programming...

In the flow logic i wanted to add a module PROCESS ON VALUE-REQUEST.

My coding is like.

process on value-request.

field vbeln module value_vbeln.

In The module of the ABAP/4 program i gave F4IF_FIELD_VALUE_REQUEST function module.

Passed the necessary parameters.Program got executed in the module pool program

Why it is showing error in the flow logic?

Must the name and text match with vbeln in the field atributes..????

Answer is awaited..

Ranjith kumar.T

7 REPLIES 7
Read only

Former Member
0 Likes
1,873

is this function used in the module valu_vbeln??

and what do u mean by matching the field and text?

Read only

0 Likes
1,873

Hi..

f4if_field_value_request is used to get the search help for a particular field.

In the field attributes in the layout of screen painter for any field..

Must i define the name the same as the internal table field.

Thank you..

Read only

0 Likes
1,873

Post the code where you called F4IF_FIELD_VALUE_REQUEST.

Chances are the FIELDNAME parameter needs to be in Quotes and in capitol letters.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,873

Is "vbeln" the field name in the dynpro and in the program ?

In F4IF_FIELD_VALUE_REQUEST did you also give the field name correctly in DYNPROFIELD parameter ?

Regards

Read only

Former Member
0 Likes
1,873

process on value-request.

field vbeln module value_vbeln.

on the screen do you have a field with name VBELN.

if not find the correct one and use that field.

Read only

0 Likes
1,873

Vijay, Yes,On the screen in the internal table i have a field called vbeln..

Raymond, on the dynpro the field name is different.It is different from the field declared in the module pool program.

Field name parameters are also given in the quotes.

Read only

Former Member
0 Likes
1,873

Hi,

go to your main program and make sure that you have declared the variable. I also faced the same issue but i realized that i had not declared the input field in main program.

Regards