Fast Formula is not working on Move Conditions based on RMI
We have a requirement to perform move conditions based on Request More Info is complete, however, it's not working.
Here is the fast formula. Is this formula correct?
DEFAULT_DATA_VALUE FOR IRC_CSP_REQUEST_INFO_STATUS_CODE IS 'NOT_FOUND'
CONDITION_RESULT = 'N'
i = 1
WHILE IRC_CSP_REQUEST_INFO_STATUS_CODE.EXISTS(i) LOOP
(
CSP_REQUEST_INFO_STATUS = IRC_CSP_REQUEST_INFO_STATUS_CODE[i]
IF (CSP_REQUEST_INFO_STATUS = 'ORA_SUBMITTED') THEN
CONDITION_RESULT = 'Y'
i = i + 1
)
L_STATUS = add_rlog (-1 , -1 , 'DPT_VS1:'|| CSP_REQUEST_INFO_STATUS)
return CONDITION_RESULT