DBA Data[Home] [Help]

APPS.QA_JRAD_PKG dependencies on QA_CHARS_API

Line 485: OR qa_chars_api.has_hardcoded_lov(p_element_id)) THEN

481: return 'formValue';
482: ELSIF
483: (qa_plan_element_api.values_exist(p_plan_id, p_element_id)
484: OR qa_plan_element_api.sql_validation_exists(p_element_id)
485: OR qa_chars_api.has_hardcoded_lov(p_element_id)) THEN
486: return 'messageLovInput';
487: ELSE
488:
489: return 'messageTextInput';

Line 896: return qa_chars_api.hardcoded_column(p_id);

892: RETURN VARCHAR2 IS
893:
894: BEGIN
895: IF(p_id = qa_ss_const.po_number) THEN
896: return qa_chars_api.hardcoded_column(p_id);
897: END IF;
898:
899: return construct_jrad_code(p_element_prefix,p_id);
900:

Line 1024: l_vo_attribute_name := qa_chars_api.hardcoded_column(p_char_id);

1020: l_id_elem jdr_docbuilder.ELEMENT := NULL;
1021:
1022: BEGIN
1023:
1024: l_vo_attribute_name := qa_chars_api.hardcoded_column(p_char_id);
1025: l_id_elem := jdr_docbuilder.createElement(jdr_docbuilder.OA_NS, 'formValue');
1026:
1027: -- set properties
1028: jdr_docbuilder.setAttribute(l_id_elem, 'id', l_vo_attribute_name);

Line 1114: jdr_docbuilder.setAttribute(lovMap, 'resultTo', qa_chars_api.hardcoded_column(p_char_id));

1110: lovMap);
1111: -- po_header_id
1112: lovMap := jdr_docbuilder.createElement(jdr_docbuilder.JRAD_NS, 'lovMap');
1113: jdr_docbuilder.setAttribute(lovMap, 'lovItem', 'PoHeaderId');
1114: jdr_docbuilder.setAttribute(lovMap, 'resultTo', qa_chars_api.hardcoded_column(p_char_id));
1115: jdr_docbuilder.addChild(p_char_item, jdr_docbuilder.JRAD_NS, 'lovMappings',
1116: lovMap);
1117:
1118: END IF; -- PO Number

Line 1239: -- Removed these cursors so that the cached arrays of qa_chars_api

1235: -- saugupta Thu Aug 28 08:58:53 PDT 2003
1236: l_readonly_flag VARCHAR2(10);
1237:
1238: -- Bug 3769260. shkalyan 29 July 2004.
1239: -- Removed these cursors so that the cached arrays of qa_chars_api
1240: -- and qa_plan_element_api are used instead.
1241: /*
1242: CURSOR c1 IS
1243: SELECT displayed_flag, mandatory_flag, prompt, read_only_flag

Line 1260: -- Removed these cursors so that the cached arrays of qa_chars_api

1256:
1257: BEGIN
1258:
1259: -- Bug 3769260. shkalyan 29 July 2004.
1260: -- Removed these cursors so that the cached arrays of qa_chars_api
1261: -- and qa_plan_element_api are used instead.
1262: /*
1263: OPEN c1;
1264: FETCH c1 INTO c_displayed_flag, c_mandatory_flag, c_prompt, c_readonly_flag;

Line 1283: l_data_type := convert_data_type( qa_chars_api.datatype( p_char_id ) );

1279: l_display_flag := convert_boolean_flag( qa_plan_element_api.qpc_displayed_flag( p_plan_id, p_char_id ) );
1280:
1281: l_required_flag := convert_yesno_flag( qa_plan_element_api.qpc_mandatory_flag( p_plan_id, p_char_id ) );
1282:
1283: l_data_type := convert_data_type( qa_chars_api.datatype( p_char_id ) );
1284:
1285: l_item_style := compute_item_style(p_prefix, p_char_id, p_plan_id);
1286:
1287: -- Tracking Bug : 3104827

Line 1296: -- qa_chars_api.prompt because the latter would always return the prompt

1292:
1293: -- Bug 5455658. SHKALYAN 20-Sep-2006
1294: -- modified to invoke a local function which calls
1295: -- qa_plan_element_api.get_prompt instead of
1296: -- qa_chars_api.prompt because the latter would always return the prompt
1297: -- defined at the element level only and this is not desired.
1298: -- l_prompt := qa_chars_api.prompt( p_char_id );
1299: l_prompt := get_prompt(p_plan_id, p_char_id);
1300:

Line 1298: -- l_prompt := qa_chars_api.prompt( p_char_id );

1294: -- modified to invoke a local function which calls
1295: -- qa_plan_element_api.get_prompt instead of
1296: -- qa_chars_api.prompt because the latter would always return the prompt
1297: -- defined at the element level only and this is not desired.
1298: -- l_prompt := qa_chars_api.prompt( p_char_id );
1299: l_prompt := get_prompt(p_plan_id, p_char_id);
1300:
1301: child1 := jdr_docbuilder.createElement(jdr_docbuilder.OA_NS, l_item_style);
1302: jdr_docbuilder.setAttribute(child1, 'id', l_attribute_code);

Line 1400: l_data_type := convert_data_type(qa_chars_api.datatype(p_char_id));

1396:
1397: l_view_attribute_name := qa_core_pkg.get_result_column_name (
1398: l_element_id, p_plan_id);
1399:
1400: l_data_type := convert_data_type(qa_chars_api.datatype(p_char_id));
1401:
1402: -- Bug 3769260. shkalyan 29 July 2004.
1403: -- Removed the get_label function which was getting prompt from
1404: -- qa_plan_chars. Using the qa_plan_element_api function to utilize cache