Application Development 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: 

migo

Former Member
0 Kudos

hi experts ,

pbo: i have written this code in pbo .my requirement is in AO4 mode i.e display ,it should display the values .but in AO5 mode

it should me in modifiable mode, so ihave used this code is not working,mean while when i entering the material doc in migo ,

previous data is comming to my custom fields i.e zfields

even i used clear below in code.

tell me how to clear memord id for set and get parametrs,,

and tell the location where i have to use this free statement in pbo,or pai.

clear :ztransport_migo.

if ( <fs4> = 'A04' and <fs5> = 'R02' ) or ( <fs4> = 'A06' and <fs5> = 'R02' ).

LOOP AT SCREEN.

SCREEN-INPUT = 0.

MODIFY SCREEN.

ENDLOOP.

get parameter id 'TNO' field ztransport_migo-tpno.

get parameter id 'PNO' field ztransport_migo-perno.

elseIF ( <fs4> = 'A05' and <fs5> = 'R02' ).

loop at screen.

screen-input = 1.

modify screen.

endloop.

*sundar on 24.07.2010

get parameter id 'TNO' field ztransport_migo-tpno.

get parameter id 'PNO' field ztransport_migo-perno.

2 REPLIES 2

former_member75463
Participant
0 Kudos

You can use FREE MEMORY ID <id no> or DELETE FROM MEMORY ID id.

0 Kudos

hi sunil,

can u tell where that free memory statement is used, in my code...