2008 Feb 29 6:06 AM
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 ?
2008 Feb 29 6:16 AM
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.
2008 Feb 29 7:24 AM
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
2008 Feb 29 10:10 AM
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...
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |