Learn about the new Oracle AI Agent Studio for Fusion Applications: Watch Now
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Custom Payroll Flow Pattern : Post SQL Bind isn't fetching data
Hello -
Trying to leverage the advantage of Post SQL Bind at "Task" Level. Defined a custom flow parameter as "FF_NAME" , Display - Mandatory, Type - Text.
The User will pass the Fast Formula Name as Input Parameter while submitting the flow. So, at Task Level, have used Post SQL Bind. But, System is not able to fetch or evaluate the SQL query. It is always returning the "Blank" value.
Post SQL Bind Code :
SELECT to_char(formula_id) FROM fusion.ff_formulas_vl, pay_flow_param_values fpv2, pay_flow_parameters fp2 WHERE formula_name = fpv2.flow_param_value AND fpv2.flow_instance_id (+) = :pflowinstanceid AND fpv2.base_flow_parameter_id (+) = fp2.base_flow_parameter_id AND fp2.base_flow_parameter_name = 'FF_NAME'
0