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

how to modify address window in sapscript

Former Member
0 Likes
544

Hello All,

I have two doubts...

1 hw do we modify address window ? is there any standard procedure

2, hw do we dynamically assign selection screen values.

Thanks,

Vibha

Hello All,

I have two doubts...

1 hw do we modify address window ? is there any standard procedure

2, hw do we dynamically assign selection screen values.

Thanks,

Vibha

3 REPLIES 3
Read only

Former Member
0 Likes
465

Re: Regarding Address Window

Posted: Apr 27, 2007 12:59 PM in response to: Subramanyam Ses... Reply E-mail this post

hi,

goto->page->right click->select address

in the screen select the type of address which you want to display

1 organizational

2 Personnel

3 Work place

4 determine dynamically

select one of it

they goto address number ->specify the number by clicking f4

2. What you can do is to define fields which are initially in invisible mode and dynamically change them to visible on the button click.

at selection-screen output.

if sy-ucomm = <Button Fcode>

loop at screen.

if screen-group1 = <screen group name for all the field>

screen-invisible = 0.

screen-active = 1.

modify screen.

endif.

endloop.

endif

<b>Reward points</b>

Regards

Read only

Former Member
0 Likes
465

hi,

1 hw do we modify address window ? is there any standard procedure

I didn't under ur question,modifying address window means do u want to modify address window of standard ,form in that case u have to copy the form to xform and make neccessary changes.

goto se71->utilities copy from client-.specify form and ur zform and save.

now goto particular address window if u want to modify field displaying goto edit-> text element->chage what ever u want -.save activate

2, hw do we dynamically assign selection screen values.

Read only

Former Member
0 Likes
465

solved by my own