DBA Data[Home] [Help]

APPS.PON_FORMS_UTIL_PVT dependencies on PON_FORMS_JRAD_PVT

Line 3103: PON_FORMS_JRAD_PVT.CREATE_JRAD procedures for all the

3099: /*======================================================================
3100: PROCEDURE : GENERATE_REPEATING_SECTIONS
3101: PARAMETERS: p_form_id: The id of the form.
3102: COMMENT : This procedure will call the COMPILE_FORM and
3103: PON_FORMS_JRAD_PVT.CREATE_JRAD procedures for all the
3104: repeating sections included in this form.
3105: ======================================================================*/
3106: PROCEDURE GENERATE_REPEATING_SECTIONS (p_form_id IN NUMBER,
3107: p_generate_mode IN VARCHAR2, -- ALL, JRAD, XSD

Line 3157: PON_FORMS_JRAD_PVT.CREATE_JRAD (v_section_id, x_result, x_error_code, x_error_message);

3153:
3154: -- if we need to generate everything or only the JRAD region
3155: IF (p_generate_mode IN ('ALL', 'JRAD')) THEN
3156: print_debug_log (l_api_name, 'Calling CREATE_JRAD for section id = ' || v_section_id);
3157: PON_FORMS_JRAD_PVT.CREATE_JRAD (v_section_id, x_result, x_error_code, x_error_message);
3158:
3159: print_debug_log (l_api_name, 'Return values from create_jrad: x_result = ' ||
3160: x_result || ', x_error_message = ' ||
3161: x_error_message || ', x_err_code = ' ||

Line 3301: PON_FORMS_JRAD_PVT.CREATE_JRAD(p_form_id ,

3297:
3298: -- if we need to generate either just the JRAD or everything
3299: IF (p_generate_mode IN ('ALL', 'JRAD')) THEN
3300:
3301: PON_FORMS_JRAD_PVT.CREATE_JRAD(p_form_id ,
3302: x_result,
3303: x_error_code,
3304: x_error_message
3305: );

Line 3327: print_debug_log(l_api_name, 'PON_FORMS_JRAD_PVT.CREATE_JRAD p_result = '||p_result);

3323: jrad_xml_region_name_disp = x_read_only_region_name_disp
3324: WHERE form_id = p_form_id
3325: AND status = 'ACTIVE';
3326:
3327: print_debug_log(l_api_name, 'PON_FORMS_JRAD_PVT.CREATE_JRAD p_result = '||p_result);
3328:
3329: print_debug_log(l_api_name, 'END '||l_api_name);
3330:
3331: END IF;