DBA Data[Home] [Help]

APPS.QA_JRAD_PKG dependencies on QA_CHARS_API

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

490: return 'formValue';
491: ELSIF
492: (qa_plan_element_api.values_exist(p_plan_id, p_element_id)
493: OR qa_plan_element_api.sql_validation_exists(p_element_id)
494: OR qa_chars_api.has_hardcoded_lov(p_element_id)) THEN
495: return 'messageLovInput';
496: ELSE
497:
498: return 'messageTextInput';

Line 926: return qa_chars_api.hardcoded_column(p_id);

922: RETURN VARCHAR2 IS
923:
924: BEGIN
925: IF(p_id = qa_ss_const.po_number) THEN
926: return qa_chars_api.hardcoded_column(p_id);
927: END IF;
928:
929: return construct_jrad_code(p_element_prefix,p_id);
930:

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

1050: l_id_elem jdr_docbuilder.ELEMENT := NULL;
1051:
1052: BEGIN
1053:
1054: l_vo_attribute_name := qa_chars_api.hardcoded_column(p_char_id);
1055: l_id_elem := jdr_docbuilder.createElement(jdr_docbuilder.OA_NS, 'formValue');
1056:
1057: -- set properties
1058: jdr_docbuilder.setAttribute(l_id_elem, 'id', l_vo_attribute_name);

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

1140: lovMap);
1141: -- po_header_id
1142: lovMap := jdr_docbuilder.createElement(jdr_docbuilder.JRAD_NS, 'lovMap');
1143: jdr_docbuilder.setAttribute(lovMap, 'lovItem', 'PoHeaderId');
1144: jdr_docbuilder.setAttribute(lovMap, 'resultTo', qa_chars_api.hardcoded_column(p_char_id));
1145: jdr_docbuilder.addChild(p_char_item, jdr_docbuilder.JRAD_NS, 'lovMappings',
1146: lovMap);
1147:
1148: END IF; -- PO Number

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

1265: -- saugupta Thu Aug 28 08:58:53 PDT 2003
1266: l_readonly_flag VARCHAR2(10);
1267:
1268: -- Bug 3769260. shkalyan 29 July 2004.
1269: -- Removed these cursors so that the cached arrays of qa_chars_api
1270: -- and qa_plan_element_api are used instead.
1271: /*
1272: CURSOR c1 IS
1273: SELECT displayed_flag, mandatory_flag, prompt, read_only_flag

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

1293:
1294: BEGIN
1295:
1296: -- Bug 3769260. shkalyan 29 July 2004.
1297: -- Removed these cursors so that the cached arrays of qa_chars_api
1298: -- and qa_plan_element_api are used instead.
1299: /*
1300: OPEN c1;
1301: FETCH c1 INTO c_displayed_flag, c_mandatory_flag, c_prompt, c_readonly_flag;

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

1316: l_display_flag := convert_boolean_flag( qa_plan_element_api.qpc_displayed_flag( p_plan_id, p_char_id ) );
1317:
1318: l_required_flag := convert_yesno_flag( qa_plan_element_api.qpc_mandatory_flag( p_plan_id, p_char_id ) );
1319:
1320: l_data_type := convert_data_type( qa_chars_api.datatype( p_char_id ) );
1321:
1322: l_item_style := compute_item_style(p_prefix, p_char_id, p_plan_id);
1323:
1324: -- Tracking Bug : 3104827

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

1329:
1330: -- Bug 5455658. SHKALYAN 20-Sep-2006
1331: -- modified to invoke a local function which calls
1332: -- qa_plan_element_api.get_prompt instead of
1333: -- qa_chars_api.prompt because the latter would always return the prompt
1334: -- defined at the element level only and this is not desired.
1335: -- l_prompt := qa_chars_api.prompt( p_char_id );
1336: l_prompt := get_prompt(p_plan_id, p_char_id);
1337:

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

1331: -- modified to invoke a local function which calls
1332: -- qa_plan_element_api.get_prompt instead of
1333: -- qa_chars_api.prompt because the latter would always return the prompt
1334: -- defined at the element level only and this is not desired.
1335: -- l_prompt := qa_chars_api.prompt( p_char_id );
1336: l_prompt := get_prompt(p_plan_id, p_char_id);
1337:
1338: -- Bug 10372289.
1339: -- Added code to display hints when quality data is entered

Line 1343: l_data_entry_hint := qa_chars_api.data_entry_hint(p_char_id);

1339: -- Added code to display hints when quality data is entered
1340: -- during EAM work order transaction.
1341: -- hmakam.
1342:
1343: l_data_entry_hint := qa_chars_api.data_entry_hint(p_char_id);
1344:
1345: child1 := jdr_docbuilder.createElement(jdr_docbuilder.OA_NS, l_item_style);
1346: jdr_docbuilder.setAttribute(child1, 'id', l_attribute_code);
1347: jdr_docbuilder.setAttribute(child1, 'rendered', l_display_flag);

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

1453:
1454: l_view_attribute_name := qa_core_pkg.get_result_column_name (
1455: l_element_id, p_plan_id);
1456:
1457: l_data_type := convert_data_type(qa_chars_api.datatype(p_char_id));
1458:
1459: -- Bug 3769260. shkalyan 29 July 2004.
1460: -- Removed the get_label function which was getting prompt from
1461: -- qa_plan_chars. Using the qa_plan_element_api function to utilize cache