Hi,
I have a code that works in sql form in a stored procedure (YEAR1 is an output parameter with 2 fields YEAR and HIKE).
DECLARE var1 INTEGER;
SELECTYEAR(CURRENT_DATE) INTO var1 FROM DUMMY;
YEAR1 = select"YEAR","HIKE"from HIKE_YEAR
WHEREYEAR = :var1;
Now I want to do this in CE functions. What will be the statements in CE for the above code?
I am confused on how to convert SELECTYEAR(CURRENT_DATE) INTO var1 FROM DUMMY; into CE
Please help