DBA Data[Home] [Help]

APPS.PA_SELF_SERVICE_DFLEX_PUB dependencies on FND_FLEX_DESCVAL

Line 216: -- Set the context value to prepare for FND_FLEX_DESCVAL.Validate_DescCols

212: l_iContextIndex := i;
213: END IF;
214: END LOOP;
215:
216: -- Set the context value to prepare for FND_FLEX_DESCVAL.Validate_DescCols
217: -- In case where only have globals then pass null
218: l_sErrorStage := 'Set the context value';
219: IF (l_iContextIndex IS NULL) THEN
220: FND_FLEX_DESCVAL.Set_Context_Value(null);

Line 220: FND_FLEX_DESCVAL.Set_Context_Value(null);

216: -- Set the context value to prepare for FND_FLEX_DESCVAL.Validate_DescCols
217: -- In case where only have globals then pass null
218: l_sErrorStage := 'Set the context value';
219: IF (l_iContextIndex IS NULL) THEN
220: FND_FLEX_DESCVAL.Set_Context_Value(null);
221: ELSE
222: FND_FLEX_DESCVAL.Set_Context_Value(
223: p_recContextsDR.context_code(l_iContextIndex));
224: END IF;

Line 222: FND_FLEX_DESCVAL.Set_Context_Value(

218: l_sErrorStage := 'Set the context value';
219: IF (l_iContextIndex IS NULL) THEN
220: FND_FLEX_DESCVAL.Set_Context_Value(null);
221: ELSE
222: FND_FLEX_DESCVAL.Set_Context_Value(
223: p_recContextsDR.context_code(l_iContextIndex));
224: END IF;
225:
226: -- Iterate only up to p_arrDFlex.Count number of times

Line 235: FND_FLEX_DESCVAL.Set_Column_Value(l_sColName, p_arrDFlex(I));

231:
232: l_sErrorStage := 'Set the values for the columns for non null fields';
233: FOR I in 1 .. p_arrDFlex.COUNT LOOP
234: l_sColName := C_strDFlexColNamePrefix || I;
235: FND_FLEX_DESCVAL.Set_Column_Value(l_sColName, p_arrDFlex(I));
236: END LOOP;
237:
238: l_sErrorStage := 'Calling FND Validate_Desccols';
239: IF (NOT FND_FLEX_DESCVAL.Validate_Desccols(

Line 239: IF (NOT FND_FLEX_DESCVAL.Validate_Desccols(

235: FND_FLEX_DESCVAL.Set_Column_Value(l_sColName, p_arrDFlex(I));
236: END LOOP;
237:
238: l_sErrorStage := 'Calling FND Validate_Desccols';
239: IF (NOT FND_FLEX_DESCVAL.Validate_Desccols(
240: appl_short_name => p_strProductName,
241: desc_flex_name => p_strDFlexName)) THEN
242:
243: -- Descriptive flexfields are not valid

Line 247: x_sErrorMessage := FND_FLEX_DESCVAL.error_message;

243: -- Descriptive flexfields are not valid
244: x_sErrorType := 'E';
245: x_sErrorStack := l_sErrorStack;
246: x_sErrorStage := l_sErrorStage;
247: x_sErrorMessage := FND_FLEX_DESCVAL.error_message;
248:
249: ELSE
250:
251: -- Successful validation