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
data : <b>abc(30) type c value 'no error'</b>.
if sy-subrc <> 0.
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
<b>titel = abc " It will show on the titlebar
txt1 = abc " It will show in the box here</b>
* txt2 = ''
* TXT3 = ' '
* TXT4 = ' '
.
endif.Regards,
Rich Heilman
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
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |