‎2008 Jan 18 10:50 AM
Hello!
What's here wrong? My program says there is a error.
SELECT MAX( price ) INTO wa2 FROM zaa_sflight.
Thanks!
‎2008 Jan 18 10:52 AM
Hi,
try this.
data l_max type zaa_sflight-price.
SELECT single MAX( price ) INTO l_max FROM zaa_sflight.
Regards,
Niyaz
Sorry: Change data type.
Edited by: Niyaz Ahamed on Jan 18, 2008 4:41 PM
‎2008 Jan 18 10:52 AM
Hi,
try this.
data l_max type zaa_sflight-price.
SELECT single MAX( price ) INTO l_max FROM zaa_sflight.
Regards,
Niyaz
Sorry: Change data type.
Edited by: Niyaz Ahamed on Jan 18, 2008 4:41 PM
‎2008 Jan 18 10:59 AM
hi,
SELECT MAX( price ) INTO wa2 FROM zaa_sflight.
in the above statement write like this..
MAX( space price space )
‎2008 Jan 18 11:01 AM
‎2008 Jan 18 11:10 AM
Hi,
Check the following code:
tables: sflight.
data: airfare like sflight-price.
select MAX( price ) into airfare from sflight.
write airfare.
Regards,
Bhaskar
‎2008 Jan 18 11:14 AM
hi,
check that u have missed period for the above statement
regards
zubair