‎2007 Jun 06 10:25 AM
Hi iam concatenating error messages into a string. While displaying i would like to seperate it by new lines.Can anyone please tell me how to do that.
‎2007 Jun 06 10:34 AM
Hi,
first of al you will be having error messages.
display the error messages in new line.
like
write: / msg 1,
/ msg 2,
/ mgs3 .
like this you can get the output.
reward points if helpful
regards,
venkatesh
‎2007 Jun 06 10:35 AM
‎2007 Jun 06 10:36 AM
hi
there should be some separator in your string , or /
data : begin of itab occurs 0,
text(100),
end of itab.
split errmsg_string at '/' into table itab.
loop at itab.
write / text.
endloop.
if helpful, reward
Sathish. R
Message was edited by:
Sathish
‎2007 Jun 06 10:44 AM
Actually i need to show my error message as an pop up window and i don;t know how many messages will be there.It is picked by from the application log
‎2007 Jun 06 10:46 AM
hi
pass your itab to fm POPUP_WITH_TABLE_DISPLAY_OK to display itab in a popup
if helpful, reward
Sathish. R
‎2007 Jun 06 1:31 PM
Hi Sathish,
Thanks very much for your reply. I just need one more thing do you know how to change the heading in that pop up window? I have put my heading in TITLETEXT parameter but still it is not reflecting.It comes as Register in that pop up window