‎2006 Jun 12 12:56 AM
Hi friends,
In the code shown below i used.
Data: abc like 'no error'
and i am using abc in my function module. when i run the program i need to show "no error" in my pop up window. but it is blank .
Any help on this would be appericiated,
Shejal.
if sy-subrc <> 0.
data : abc like 'no error'.
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
titel = abc
txt1 = ''
txt2 = ''
TXT3 = ' '
TXT4 = ' '
.
endif.
‎2006 Jun 12 1:01 AM
it should be
data: abc(8) value 'no error'.
Regards,
Suresh Datti
‎2006 Jun 12 1:01 AM
it should be
data: abc(8) value 'no error'.
Regards,
Suresh Datti
‎2006 Jun 12 1:06 AM
‎2006 Jun 12 1:01 AM