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

POV in module pool

Former Member
0 Likes
503

hi,

here i am using module pool

i have two fields in a screen 1.customer has 2 fixed values for search help

ram , rahul

if user selects ram then in second field type should automatically populated with 'Good' with out pressing enter.

2.Type

if the user selets customer from search help automatically the name should get populated ?

how can we handle this ?

hi,

here i am using module pool

i have two fields in a screen 1.customer has 2 fixed values for search help

ram , rahul

if user selects ram then in second field type should automatically populated with 'Good' with out pressing enter.

2.Type

if the user selets customer from search help automatically the name should get populated ?

how can we handle this ?

3 REPLIES 3
Read only

Former Member
0 Likes
454

Hi,

for question 2.

In search help give exporting two parameters and

for impoting give one parameter name as customern name .

If you give this search help this will import only the customer name to field.

Read only

Former Member
0 Likes
454

In POV, you will also find the function modules DYNP_VALUES_READ and DYNP_VALUES_UPDATE very useful as a way of accessing and outputing values in fields other than the one where the POV is triggered from... there are plenty of examples of these in SDN and elsewhere, plus (suprise bonus!) there is function module documentation provided.

Jonathan

Read only

Former Member
0 Likes
454

hi,

u need to write this in user_command module of PAI...

MODULE user_command_1000 INPUT.

CASE ok_code.

WHEN 'BACK' OR 'UP' OR 'CANC'.

LEAVE PROGRAM.

WHEN ' '.

*IF <ur first field depend on which u want sec. data> IS NOT INITIAL.*

<ur sec field> = 'Good'.

ENDIF.

ENDCASE.

ENDMODULE. " USER_COMMAND_1000 INPUT

when u press enter its ok code is space...

i cant unserdtand ur second question...

reward if usefull...