DBA Data[Home] [Help]

APPS.CZ_LC_MGR dependencies on CZ_LCE_OPERANDS

Line 182: FROM cz_lce_operands

178: SELECT lce_line_id,
179: operand_seq,
180: operand_type,
181: name
182: FROM cz_lce_operands
183: WHERE lce_header_id = p_lce_header_id
184: ORDER BY lce_line_id, operand_seq;
185:
186: v_header_cursor header_cursor%ROWTYPE;

Line 189: v_op_type cz_lce_operands.operand_type%TYPE;

185:
186: v_header_cursor header_cursor%ROWTYPE;
187: v_lines_cursor lines_cursor%ROWTYPE;
188: v_operands_cursor operands_cursor%ROWTYPE;
189: v_op_type cz_lce_operands.operand_type%TYPE;
190: v_name VARCHAR2(255);
191: v_generic_type CHAR(1);
192: v_line_type CHAR(1);
193: v_op1 VARCHAR2(255);

Line 214: lce_line_id cz_lce_operands.lce_line_id%TYPE,

210: v_prop VARCHAR2(255);
211: v_withcell_value VARCHAR2(255);
212:
213: TYPE t_operandsRecord IS RECORD (
214: lce_line_id cz_lce_operands.lce_line_id%TYPE,
215: operand_seq cz_lce_operands.operand_seq%TYPE,
216: operand_type cz_lce_operands.operand_type%TYPE,
217: name cz_lce_operands.name%TYPE
218: );

Line 215: operand_seq cz_lce_operands.operand_seq%TYPE,

211: v_withcell_value VARCHAR2(255);
212:
213: TYPE t_operandsRecord IS RECORD (
214: lce_line_id cz_lce_operands.lce_line_id%TYPE,
215: operand_seq cz_lce_operands.operand_seq%TYPE,
216: operand_type cz_lce_operands.operand_type%TYPE,
217: name cz_lce_operands.name%TYPE
218: );
219:

Line 216: operand_type cz_lce_operands.operand_type%TYPE,

212:
213: TYPE t_operandsRecord IS RECORD (
214: lce_line_id cz_lce_operands.lce_line_id%TYPE,
215: operand_seq cz_lce_operands.operand_seq%TYPE,
216: operand_type cz_lce_operands.operand_type%TYPE,
217: name cz_lce_operands.name%TYPE
218: );
219:
220: TYPE operandsTable IS TABLE OF t_operandsRecord INDEX BY BINARY_INTEGER;

Line 217: name cz_lce_operands.name%TYPE

213: TYPE t_operandsRecord IS RECORD (
214: lce_line_id cz_lce_operands.lce_line_id%TYPE,
215: operand_seq cz_lce_operands.operand_seq%TYPE,
216: operand_type cz_lce_operands.operand_type%TYPE,
217: name cz_lce_operands.name%TYPE
218: );
219:
220: TYPE operandsTable IS TABLE OF t_operandsRecord INDEX BY BINARY_INTEGER;
221: TYPE text_field_Table IS TABLE OF cz_lce_texts.lce_text%TYPE INDEX BY BINARY_INTEGER;