hello everyone,
i am trying to write a business rule but when running it, i am receiving the error "Cannot assign [DOUBLE] objects of different length error"
here is my code :
FIX (local, No_Reserve1, No_Reserve2, {V_Entity}, &CurrYr, @MEMBER(@PREVSIBLING({Supp_Request})))
FIX (HSP_InputValue, No_Functional, No_Fund, No_Location, Estimated_Supp)
FIX ("No Period", "No_Program/Project", "BU Version_1")
"Request_Approvals"
(
IF ( "Request_Approvals" != #Missing)
Supp_Budget_Entity->@IDescendants("Chapter-1")->{V_Functional}->{V_Fund}->{V_Location}->{V_ProgramProject}->@IDescendants(YearTotal) = #Missing ;
@RETURN(" some text message here " , ERROR);
ENDIF
)
ENDFIX
ENDFIX
ENDFIX
this error only started occuring when i wanted to use @member@PREVSIBLING commands. i need this to get the previous member from the prompt.
it was working fine before i added the @member@PREVSIBLING
why is this error occuring ?
thank you for any help.
Regards,