cancel
Showing results for 
Search instead for 
Did you mean: 

to add field name in se71

Former Member
0 Kudos

hii frnds,

I want to modify a form in se71....i know the program name,the field to be added but i am unable to know how to pass the values in to test program.......there are other fields in the program but how can i know from where the values are coming to the fields???

plz help me out!!

With regards,

Madhuri

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Madhuri,

You can debug your script through the driver program. For that you need to activate debugger in se71 and execute the program. Search for the variable for which you want to pass the value.

You can pass subroutine to pass value incase your driver program is standard and you can not modify it.

Just create a program and create form routine in the program with Passing structure ITCSY.

I will so you example if you need it.

Hope this will useful for you.

Feel free to ask any doubts.

Regards,

Vijay

Former Member
0 Kudos

Hi,

u want to pass the field to FORM or test program?

Regards,

Pavan

Former Member
0 Kudos

i want to pass values of the field to the form....!!!

Former Member
0 Kudos

Hi,

Assume 'Var1' is the variable whose value has to be passed to the form.

Ensure in the program VAR1 is populated with the expected value.

like .....VAR1 = 'US'

Once in the form, navigate to the text editor---import the program symbol

INSERT>Symbols>program symbols-->select the appropriate option over there.......

Or just insert the symbol----&VAR1& in the text editor.

thsi would ensure that ur form is populated with the value US

Thank you,

Jose

Former Member
0 Kudos

Hi,

Inorder to populate the value to a variable in the form do like this.

/: define &var1& = 'HI'

then var1 contains HI.

Former Member
0 Kudos

hi

go to the window where field is to be added click o text editor symbol in left hand (top) side corner.

you see the coding there. add your field thr.

Former Member
0 Kudos

know i want to pass the value for that field......i want to know from where i should pass the value!!!