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

operation

Former Member
0 Likes
409

how to divide fields from diffenent table

how to do this

konv-kawrt/ekpo-menge*mseg-menge.

3 REPLIES 3
Read only

Former Member
0 Likes
389

Exract values and do

answer = ( konv-kawrt/ekpo-menge ) * mseg-menge.

Read only

Former Member
0 Likes
389

hi rajan

create temp.varibles and caluculate it

because menge is the quntity field to caluculate and fill it

assign these temparary values to internaltable

Read only

Former Member
0 Likes
389

Hi rajan,

Create some variables and assigned the data base values into that Variables.

Example :

Data : KNOV1 like konv-kawrt,

Ekpo1 like ekpo-menge,

menge1 like mseg-menge,

result Type I.

select single kawrt from knov into KNOV1.

"Do same thing for all fields as you want.

Reault = ( KNOV1 / Ekpo1 ) * menge1 .

Thanks.