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

format message in one line

Former Member
0 Likes
444

Hi Experts

I am getting the email attachment message in one line and missing

some of the message in the report output

how to make it in perfect format so that no need to scroll at the right to see the message.

see the line in

object_content-line COLOR 2.

.......

........

on change of object_type-instid.

write: / ' Email Customer Attachment List '.

write: / '----


'.

write: / 'Customer No', object_type-instid color 7.

uline.

endon.

write: / document_data-obj_name COLOR 3.

write: / document_data-obj_descr.

LOOP AT it_object_content

INTO object_content.

**

    • There will need to be some extra code here to handle Line breaks

    • Maybe split object_content-line into a table and loop at that table

    • the hex codes that are in the line break are: X00 X23

**

WRITE: /

  • document_id ,

object_content-line COLOR 2.

ENDLOOP.

ULINE.

ENDIF.

ENDLOOP.

ENDIF.

Hi Experts

I am getting the email attachment message in one line and missing

some of the message in the report output

how to make it in perfect format so that no need to scroll at the right to see the message.

see the line in

object_content-line COLOR 2.

.......

........

on change of object_type-instid.

write: / ' Email Customer Attachment List '.

write: / '----


'.

write: / 'Customer No', object_type-instid color 7.

uline.

endon.

write: / document_data-obj_name COLOR 3.

write: / document_data-obj_descr.

LOOP AT it_object_content

INTO object_content.

**

    • There will need to be some extra code here to handle Line breaks

    • Maybe split object_content-line into a table and loop at that table

    • the hex codes that are in the line break are: X00 X23

**

WRITE: /

  • document_id ,

object_content-line COLOR 2.

ENDLOOP.

ULINE.

ENDIF.

ENDLOOP.

ENDIF.

1 REPLY 1
Read only

Former Member
0 Likes
384

This message was moderated.