2009 Apr 08 8:47 PM
I am getting into runtime error as the the program is timing out as time taken to process is more than teh runtime.
My code goes as below:
if s_oifpbl-lgort+0(2) = 'WP'.
concatenate s_final-zeubcd s_final-mvgr1 into lv_wascode separated by space.
else.
lv_wascode = ' '.
endif.Will it solve the problem if I write it
concatenate s_final-zeubcd s_final-mvgr1 into lv_wascode separated by space.
if s_oifpbl-lgort+0(2) <> 'WP'.
lv_wascode = ' '.
endif.As the problem only started after I added this code part in the program .The program was runnig fine before addition of this.
Thanks
2009 Apr 08 8:56 PM
> I am getting into runtime error as the the program is timing out as time taken to process is more than teh runtime.
> My code goes as below:
>
if s_oifpbl-lgort+0(2) = 'WP'. > concatenate s_final-zeubcd s_final-mvgr1 into lv_wascode separated by space. > else. > lv_wascode = ' '. > endif.
I don't think above said "concatenate" giving you the runtime dump. i think it because of some other code.
a®
> I am getting into runtime error as the the program is timing out as time taken to process is more than teh runtime.
> My code goes as below:
>
if s_oifpbl-lgort+0(2) = 'WP'. > concatenate s_final-zeubcd s_final-mvgr1 into lv_wascode separated by space. > else. > lv_wascode = ' '. > endif.
I don't think above said "concatenate" giving you the runtime dump. i think it because of some other code.
a®
2009 Apr 08 8:55 PM
HI,
Try this way..
CONCATENATE s_final-zeubcd s_final-mvgr1 INTO lv_wascode
SEPARATED BY space.
IF s_oifpbl-lgort+0(2) EQ 'WP'.
CLEAR lv_wascode .
ENDIF.
2009 Apr 08 8:56 PM
> I am getting into runtime error as the the program is timing out as time taken to process is more than teh runtime.
> My code goes as below:
>
if s_oifpbl-lgort+0(2) = 'WP'. > concatenate s_final-zeubcd s_final-mvgr1 into lv_wascode separated by space. > else. > lv_wascode = ' '. > endif.
I don't think above said "concatenate" giving you the runtime dump. i think it because of some other code.
a®
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |