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 programing credit balance

Former Member
0 Likes
614

HI,

In module pool programming suppose for example i need to enter two values in two fields and in the third field the value should come automatically.

ex: amount 1000

debit 500

if i enter the above values, in the third field i need to automatically get the value for third field with calculations.

the third field should come as

credit 500.

how can i resolve this.can any one guide me.

thanks & Regards,

komal.

4 REPLIES 4
Read only

Former Member
0 Likes
589

Hi Komal,

You can use the 'ON INPUT' addition for checking whether the values are entered in the first two fields.

Once the input is given for the first two fields, the relevant code to calculate the value in the third field can be

written in that module.

Read only

suman_pr
Product and Topic Expert
Product and Topic Expert
0 Likes
589

Hi,

you can actually enable the Enter function keys in the PF Status of the screen. This way, everytime u hit enter, u will just have to check if the 2 fields contain the values -> if yes, then compute the result and display it in the third box.

Regards,

Read only

Former Member
0 Likes
589

HI,

In the PAI flow logic give this --

field : fld1,fld2 module calculation on request.

on request workes when ever u change the data in one of the two fields the module will be triggered.

write ur calculation logic in module calculation

Read only

Former Member
0 Likes
589

Hi,

thanks to all of u guys.