‎2011 Mar 07 12:19 PM
Hi Guys
My messages are getting truncated when i pass them to the variables msgv1..msgv4 however i am passing data less that is 50 Chars which is the length of msgv1..msgv4. When i view my log results some data gets truncated.
How can i pass my data and view the entire message in the log?
regards
Isaac Prince
‎2011 Mar 07 12:28 PM
Hi,
Which FM do you use? How does your message with placeholders look like?
‎2011 Mar 07 1:02 PM
Hi
I am using the BAL* function modules
data: gt_messages type bal_t_msg.
loop at gt_messages assigning <fs_messages>.
call function 'BAL_LOG_MSG_ADD'
exporting
i_s_msg = <fs_messages>
exceptions
log_not_found = 0
others = 1.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
endloop.
If i click on detail view or view list as basic list i can see the entire message.
regards
Isaac Prince
‎2011 Mar 07 1:04 PM
Hi
I am using the BAL* function modules
data: gt_messages type bal_t_msg.
loop at gt_messages assigning <fs_messages>.
call function 'BAL_LOG_MSG_ADD'
exporting
i_s_msg = <fs_messages>
exceptions
log_not_found = 0
others = 1.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
endloop.
If i click on detail view or view list as basic list i can see the entire message.
regards
Isaac Prince
‎2011 Mar 09 1:47 PM
Hi
I had to cut short my message and place more text statically in the message definition through SE91.
regards
Isaac Prince