2008 Mar 27 12:24 PM
Hi guys,
final is a string type.
And final should be inserted with value
CALL FUNCTION 'GUI_DOWNLOAD'
This is how I tried to code it as
{
call = 'CALL FUNCTION '.
apos = '''.
gui = 'GUI_DOWNLOAD'.
concatenate call apos gui apos into var.
}
but it was pointing the error at the stmt
-
>apos = '''.
so how can i do it.
*Points will be rewarded if needful.
Regards,
Sreekanth.
2008 Mar 27 12:29 PM
Hi Sreekanth,
you must write 4 apostrophes:
apos = ''''.
This should work. Best regards,
Alvaro
Hi guys,
final is a string type.
And final should be inserted with value
CALL FUNCTION 'GUI_DOWNLOAD'
This is how I tried to code it as
{
call = 'CALL FUNCTION '.
apos = '''.
gui = 'GUI_DOWNLOAD'.
concatenate call apos gui apos into var.
}
but it was pointing the error at the stmt
-
>apos = '''.
so how can i do it.
*Points will be rewarded if needful.
Regards,
Sreekanth.
2008 Mar 27 12:29 PM
Hi Sreekanth,
you must write 4 apostrophes:
apos = ''''.
This should work. Best regards,
Alvaro
2008 Mar 27 12:29 PM
2008 Mar 27 12:32 PM
2008 Mar 27 12:34 PM
Hello,
Four Appastraphy will give one '.
Try like this.
DATA: OUT TYPE STRING.
CONCATENATE '''' 'a' '''' INTO OUT.
WRITE OUT.
Cheers,
Vasanth
2008 Mar 27 1:17 PM
Hi,
Check the following code:
data: cal(20) type c,
apos(4) type c,
gui(50) type c,
stm(100) type c.
cal = 'call function'.
apos = ''''.
gui = 'gui_download'.
concatenate cal apos gui apos into stm.
write:/ stm.
Regards,
Bhaskar
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |