DBA Data[Home] [Help]

APPS.MSD_PUSH_SETUP_DATA dependencies on FND_FILE

Line 90: fnd_file.put_line(fnd_file.log, chk_customer_attr_log_msg);

86: if x_num_params = 0 then
87: x_sql_stmt := 'Begin :l_out1 := MSD_SR_UTIL.set_customer_attr'||x_dblink||'('||x_profile_name||','
88: ||x_profile_value||','||x_profile_level||'); End;';
89: EXECUTE IMMEDIATE x_sql_stmt using OUT x_set_profile;
90: fnd_file.put_line(fnd_file.log, chk_customer_attr_log_msg);
91: If (x_set_profile=2) then
92: retcode :=-1;
93: errbuf := 'Error while Setting Value for Profile MSD_CUSTOMER_ATTRIBUTE';
94: return;

Line 428: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));

424: commit;
425:
426: EXCEPTION
427: when others then
428: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
429: errbuf := substr(SQLERRM,1,150);
430: retcode := -1 ;
431:
432: END push_profile;

Line 479: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));

475: commit;
476:
477: EXCEPTION
478: when others then
479: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
480: errbuf := substr(SQLERRM,1,150);
481: retcode := -1 ;
482:
483: end push_organization;

Line 653: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));

649: END IF; /* if g_already_checked = FALSE */
650:
651: EXCEPTION
652: when others then
653: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
654: errbuf := substr(SQLERRM,1,150);
655: retcode := -1 ;
656:
657: End chk_push_setup;

Line 666: fnd_file.put_line(fnd_file.log,substr(p_sql, i, 255));

662: Begin
663: while i<= length(p_sql)
664: loop
665: -- dbms_output.put_line (substr(p_sql, i, 255));
666: fnd_file.put_line(fnd_file.log,substr(p_sql, i, 255));
667: null;
668: i := i+255;
669: end loop;
670: End;