I have this formula that attends an azur doc intelligence model, i have this master that indicates the model depending on the trigger, whats the problem is when i tried getting this formula from the get items and put it into a compose the formula arrives as a text instead of recognizing it and evaluating to extract the value from the model. but when i put the sam exact formula directly into the Compose it evaluate the formula and extract the value without any problem: this is the formula when i get it from the list
"@if(contains(outputs('Analyze_Document_for_Prebuilt_or_Custom_models_(v3.x_API)')['body']['analyzeResult']['documents'][0]['fields']?['Inv_vendor']?['valueString'], 'Maersk'), outputs('Analyze_Document_for_Prebuilt_or_Custom_models_(v3.x_API)')['body']['analyzeResult']['documents'][0]['fields']?['Inv_date']?['content'], if(contains(outputs('Analyze_Document_for_Prebuilt_or_Custom_models_(v3.x_API)')['body']['analyzeResult']['documents'][0]['fields']?['Inv_vendor']?['valueString'], 'RANSA'), outputs('Analyze_Document_for_Prebuilt_or_Custom_models_(v3.x_API)')['body']['analyzeResult']['documents'][0]['fields']?['Inv_date']?['valueDate'], if(empty(outputs('Analyze_Document_for_Prebuilt_or_Custom_models_(v3.x_API)')['body']['analyzeResult']['documents'][0]['fields']?['Inv_date']?['content']), '01/01/1900',replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(outputs('Analyze_Document_for_Prebuilt_or_Custom_models_(v3.x_API)')['body']['analyzeResult']['documents'][0]['fields']?['Inv_date']?['content'], 'ENE', '01'), 'FEB', '02'), 'Nº', '03'), 'ABR', '04'), 'MAY', '05'), 'JUN', '06'), 'JUL', '07'), 'AGO', '08'), 'SEP', '09'), 'OCT', '10'), 'NOV', '11'), 'DIC', '12'))))"
when i put it directly i get the actual value of the date.