in driver program it is ''ADDRESS_INTO_PRINTFORM' it is working fine
i show my code
DATA:
print_address TYPE adrs_print,
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 = wa_tvko-adrnr
sender_country = inland
number_of_lines = '7'
no_upper_case_for_city = 'X'
IMPORTING
address_printform = print_address
ENDIF.
up to this is working fine the lines are showing in print address
i.e print_address-LINE0
print_address-LINE1
print_address-LINE2
print_address-LINE3
now when iam using write_form
EXPORTING
ELEMENT = 'COMPANY_ADDRESS'
WINDOW = 'HEADING'
in form heding window i declare /e : comapny_address
&print_address-LINE0&
&print_address-LINE1&
&print_address-LINE2&
&print_address-LINE3&
and when i execute header window doesn't display any contents