cancel
Showing results for 
Search instead for 
Did you mean: 

raegarding form

Former Member
0 Kudos

hai,

can any body tell me how do handle this fm

'ADDRESS_INTO_PRINTFORM'

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hello,

ADDRESS_INTO_PRINTFORM is a FM which gives u the exact address format to be used depending on the parameters u provide.

For e.g., u can give the Address No. and the Address Type (1 = Company, 2 = Private, 3 = Contact Person) as Importing Parameters in the FM and it will return you the exact address in print format in the Exporting Parameter ADDRESS_PRINTFORM.

Also check other Importing Parameters like SENDER_COUNTRY, STREET_HAS_PRIORITY, COUNTRY_NAME_IN_RECEIVER_LANGU, etc. and check the effect it has on the address in print format in Exporting Parameter ADDRESS_PRINTFORM. I feel the parameter names are self-explanatory.

For further understanding of the FM, read its documentation which is really very good and helpful in implementing the FM.

Former Member
0 Kudos

Data: ADDRESS_TYPE LIKE SZAD_FIELD-ADDR_TYPE,

INLAND LIKE RFPDO-ALLGINLD.

address_type = '1'.

CALL FUNCTION 'ADDRESS_INTO_PRINTFORM'

EXPORTING

ADDRESS_TYPE = address_type

ADDRESS_NUMBER = kna1-adrnr

SENDER_COUNTRY = INLAND

  • RECEIVER_LANGUAGE = ' '

  • NUMBER_OF_LINES = ADRS-ANZZL

IMPORTING

ADDRESS_PRINTFORM = adrs_print.

Former Member
0 Kudos

yaa,

thanks for it .

Former Member
0 Kudos

Hi

Go through the documentation of the FM in Se37.

Regards,

Vishwa.

Former Member
0 Kudos

This message was moderated.

amit_khare
Active Contributor
0 Kudos

Refer to links , might be helpful -