cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

hello experts!!!

i want to write some code in form layout ....(purchase order)

i mean address details,compant tax details, po ....etc

how to wirte code pls help me anybody

0 Likes
View Entire Topic
former_member196280
Active Contributor
0 Likes

If you have driver program in control modify the driver program, if driver program and display address details,compant tax details, po ....etc

if you don't have driver program in your control call external sub-routines and get this values...

Example:

Go through this example

Ex.

/: PERFORM <Subroutine name> IN PROGRAM <subroutine prog name>

/:USING &<field name>&

/:CHANGING &<field name1&

/:ENDPERFORM

Then create subroutine pool program and you have to write the code.

FORM ><subroutine name> tables int_cond structure itcsy

outt_cond structure itcsy.

data : value(20), value1(20). "do your own declarations

Read int_cond table index 1.

value = int_cond-value.

value1 = value1 + value.

Read outt_cond table index 1.

outt_cond-value = value1.

Modify outt_cond index 1.

ENDFORM.

Just rough idea given above.

Regards,

SaiRam