DBA Data[Home] [Help]

APPS.FND_IREP_CP_PKG dependencies on WF_CORE

Line 66: v_annotation_block := '/**' || wf_core.newline;

62: begin
63: open irep_cursor;
64:
65: -- Write the string /** to show the beginning of the annotation
66: v_annotation_block := '/**' || wf_core.newline;
67:
68: LOOP
69: -- Get the parameter values into the cursor
70: fetch irep_cursor

Line 84: NVL(param_desc, param_prompt) || wf_core.newline ||

80:
81: -- Create the annotation for a single parameter. If no
82: -- description is found, the prompt value is taken as description
83: v_annotation := ' * @param ' || param_name || ' ' ||
84: NVL(param_desc, param_prompt) || wf_core.newline ||
85: ' * @rep:paraminfo {@rep:type ' || param_type || '}' ||
86: ' {@rep:displayed ' || param_disp || '}';
87:
88: if (param_req = 'Y') then

Line 92: v_annotation := v_annotation || wf_core.newline;

88: if (param_req = 'Y') then
89: v_annotation := v_annotation || ' {@rep:required}';
90: end if;
91:
92: v_annotation := v_annotation || wf_core.newline;
93: v_annotation_block := v_annotation_block || v_annotation;
94:
95: END loop;
96: