DBA Data[Home] [Help]

APPS.MSC_SCE_LOADS_PKG dependencies on FND_GLOBAL

Line 2938: ': ' || t_log_err_msg(j) || fnd_global.local_chr(10) ;

2934: ': ' || t_log_item_name(j) || ', ' ||
2935: substrb(get_message('MSC','MSC_X_UI_SDD_ORDER_TYPE',p_language),1,500) ||
2936: ': ' || t_log_order_type(j) || ', ' ||
2937: substrb(get_message('MSC','MSC_X_UI_LSD_ERROR', p_language),1,500) ||
2938: ': ' || t_log_err_msg(j) || fnd_global.local_chr(10) ;
2939:
2940: log_message(l_log_message);
2941: end loop;
2942: end if;

Line 3153: err_buf := err_buf || fnd_global.local_chr(10) ||

3149: order_number,
3150: release_number,
3151: line_number;
3152: EXIT WHEN errors%NOTFOUND OR lengthb(err_buf) > 1500;
3153: err_buf := err_buf || fnd_global.local_chr(10) ||
3154: substrb(get_message('MSC','MSC_X_UI_VOD_ORD_LINE_NUM',p_lang),1,40) ||
3155: ': ' || to_char(line_id - min_line_id + 1) || ', ' ||
3156: substrb(get_message('MSC','MSC_X_UI_ITEM',p_lang),1,40) ||
3157: ': ' || item_name || ', ' ;

Line 3182: err_buf := err_buf || fnd_global.local_chr(10) || substrb(get_message('MSC','MSC_X_API_ERRORS_STOPPED', p_lang),1,(2000 - lengthb(err_buf)));

3178:
3179: err_buf := err_buf || substrb(get_message('MSC','MSC_X_UI_LSD_ERROR', p_lang),1,40) ||
3180: ': ' || err_msg ;
3181: IF (lengthb(err_buf) > 1500) THEN
3182: err_buf := err_buf || fnd_global.local_chr(10) || substrb(get_message('MSC','MSC_X_API_ERRORS_STOPPED', p_lang),1,(2000 - lengthb(err_buf)));
3183: END IF;
3184: END LOOP;
3185: CLOSE errors;
3186: RETURN err_buf;

Line 9054: IF fnd_global.conc_request_id > 0 THEN

9050: PROCEDURE LOG_MESSAGE(
9051: p_string IN VARCHAR2
9052: ) IS
9053: BEGIN
9054: IF fnd_global.conc_request_id > 0 THEN
9055: FND_FILE.PUT_LINE(FND_FILE.LOG, p_string);
9056: ELSE
9057: --DBMS_OUTPUT.PUT_LINE( p_string);
9058: null;

Line 10454: ': ' || t_log_err_msg(j) || fnd_global.local_chr(10) ;

10450: ': ' || t_log_order_type(j) || ', ' ||
10451: substrb(get_message('MSC','MSC_X_UI_SERIAL_NUMBER',p_language),1,100) ||
10452: ': ' || t_log_serial_number(j) || ', '||
10453: substrb(get_message('MSC','MSC_X_UI_LSD_ERROR', p_language),1,100) ||
10454: ': ' || t_log_err_msg(j) || fnd_global.local_chr(10) ;
10455:
10456: log_message(l_log_message);
10457: END LOOP;
10458: END IF;