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

Error Message in selection screen Status bar is getting truncated

Former Member
0 Likes
2,345

Hi Guys,

Error Message in selection screen Staus bar is getting truncated (full message is not getting displayed).... can anybody tell me how to reslove this

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,513

Hi

Maimum we can give the error message length is 50 char. If you give more than that it will get truncated.

What you can do this split 50 and 50 like that you can give 200 chnars.

Data : Text1 type char50

Text2 type char50

If sy-surc ne 0.

Message Text1 Text2 TYPE "E'' or 'S'

endif.

Hi Guys,

Error Message in selection screen Staus bar is getting truncated (full message is not getting displayed).... can anybody tell me how to reslove this

6 REPLIES 6
Read only

Former Member
0 Likes
1,513

Hello,

Give the message by dividing in 2 seperated text elements. it will work.

Rgrd,

Vivek

Read only

0 Likes
1,513

hI,

USE THIS SYNTAX

MESSAGE 'message' TYPE 'I' DISPLAY LIKE 'S (What ever message type u want to display)'.

It will pop-up window.

so no truncation Problem.

Read only

Former Member
0 Likes
1,514

Hi

Maimum we can give the error message length is 50 char. If you give more than that it will get truncated.

What you can do this split 50 and 50 like that you can give 200 chnars.

Data : Text1 type char50

Text2 type char50

If sy-surc ne 0.

Message Text1 Text2 TYPE "E'' or 'S'

endif.

Read only

0 Likes
1,513

Thank your solution worked for me.

Read only

Former Member
0 Likes
1,513

Firslty thanx for all for quick reply.

However special thanx to Vivek and Thiruibm ... as u guys said i split message into two text symbols.... and used them in my message statement...... PROBLEM SOVLED...THANX guys

Read only

Former Member
0 Likes
1,513

This message was moderated.