‎2007 Jun 29 9:47 PM
wt is wrong with below..can any one please tell me..
i m getting error like . statement 'I103' ended unexpectedly.
data : lv_subject(30) type c value 'Bid Number XXXXXXXXXX'.
constants : c_num(10) type c value ' Number',
c_accepted(10) type c value 'accepted',
c_returned(10) type c value 'returned',
c_rejected(10) type c value 'rejected'.
replace c_num in lv_subject with space.
case lv_status.
when 'I1014'.
concatenate c_accepted into lv_subject seperated by space.
when 'I1013'.
concatenate c_rejected into lv_subject seperated by space.
when 'I1042'
concatenate c_returned into lv_subject separated by space.
when others.
endcase.
please help..
‎2007 Jun 29 10:00 PM
Hi,
change the line
concatenate c_accepted space into lv_subject separated by space.
and also check the spelling of "seperated" it is "SEPARATED"
aRs
‎2007 Jun 29 9:51 PM
Hi,
when 'I1042'
please change to
when 'I1042'. "< put dot
aRs
‎2007 Jun 29 9:52 PM
hi..
thanks for your reply i have put the dot after that i m getting one more error.
Unable to interpret "C_ACCEPTED". Possible causes of error: Incorrect spelling or comma error.
please help.
‎2007 Jun 29 9:51 PM
‎2007 Jun 29 9:55 PM
Hi,
in the third option 'I1042' you nedd add '.'
Regards,
DLC
‎2007 Jun 29 9:58 PM
IN THIS PART data : lv_subject(30) type c value 'Bid Number XXXXXXXXXX'. change the period with comme.
regards
David
‎2007 Jun 29 10:00 PM
Hi,
change the line
concatenate c_accepted space into lv_subject separated by space.
and also check the spelling of "seperated" it is "SEPARATED"
aRs
‎2007 Jun 29 10:04 PM
Hi AS,
thanks for ur reply my problem got solved .. it is necessary to pass space next accepted ..
Awarded full points to u..
Thanks
Venkatesh
‎2007 Jun 29 10:11 PM
after apssing space with c_accepted entire stirng will replaced by accepted. So i m reopening this question.. please help..
‎2007 Jun 29 10:15 PM
Hi,
Then change it to
concatenate lv_subject c_accepted into lv_subject seperated by space.
aRs
‎2007 Jun 29 10:17 PM