Dears,
I have used @return function in a business Rule , when i run the business rule from Tools -> Business Rule it works properly , and the message of the @Ruturn Function is shown.
But when I attached the business rule to the form , it gives meĀ the following error :
" An error occurred while running the specified calc script . ADF_FACES-60097: For more information, Please see the server's error log for an entry beginning with :ADF_FACES-60096: Server Exception during PPR,#26"
The following is the business rule that i am using :
SET FRMLBOTTOMUP ON;
Var _Ceilings;
Var _Budget;
FIX ( &BudYr )
FIX ( "Estimated" )
FIX ( "IC_Total")
FIX ( "E_$$$")
FIX ( Local )
FIX(D_$$$)
HSP_Inputvalue
(
_Ceilings =HSP_Inputvalue->"A_$$"->"D_$$"->"YearTotal"->"Total_Administratives"->"Total_Institutions"->"Total_G"->"$$$$$-Ceilings";
_Budget= HSP_Inputvalue ->"A_$$"->"YearTotal"->"Working_$$$$"->"Total_Administratives"->"Total_Institutions"->"Total_G";
IF (_Ceilings < _Budget )
@RETURN( "$$$$$$$$$$$$$$$$$$", ERROR);
ENDIF
)
ENDFIX
ENDFIX
ENDFIX
ENDFIX
ENDFIX
ENDFIX
Thank you in advance.