cancel
Showing results for 
Search instead for 
Did you mean: 

address window

Former Member
0 Kudos

Hi all,

plz give me clear picture about address window . How I can customize address window? how it is printing data??

how exactly it is working??

thanks

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

There is one more way to do this.

Suppose u know ur name of the Text Element in the Address window which holds the code for printing.

U can try this:

1. Call "OPEN_FORM" function MOdule.

2. Call "WRITE_FORM" function Module.

In this mention the window name nd text element in the import parameters.

3. Call " write _form" and give Window Name: Main...

SInce u need to call write form With MAIN Window for the Layout to appear.

4. Call "CLOSE_FORM" with corresponding import parameters.

Hope this helps you......!

Former Member
0 Kudos

hi rajesh,

we have a node address in forms.

SAP has developed all the formats for address, we have diff types like personal, professional etc. for each type also we have diff formatd. all those formats will be stored in a table "ADRC".

in form -> address -> we have a fiels Address number, here we will give a no, which exist in that table. so that the data will be printed in that format.

hope it helps u.

reward if helpful.

Former Member
0 Kudos

Thanx Mytri

one thing more...can I remove or add extra line to the address or not? if ys how??

Thanks

Former Member
0 Kudos

In form

/: ADDRESS PARAGRAPH AS

/: TITLE &LFA1-ANRED&

/: NAME &LFA1-NAME1&, &LFA1-NAME2&, &LFA1-NAME3

/: STREET &LFA1-STRAS&

/: POBOX &LFA1-PFACH& CODE &LFA1-PSTL2&

/: CITY &LFA1-ORT01&, &LFA1-ORT02&

/: POSTCODE &LFA1-PSTLZ&

/: COUNTRY &LFA1-LAND1&

/: REGION &LFA1-REGIO&

/: FROMCOUNTRY &T001-LAND1&

/: ENDADDRESS

IN Program

use the function module

ADDRESS_INTO_PRINTFORM

and pass address no and country and address type

If helpful give me the nuts