DBA Data[Home] [Help]

APPS.MSD_PUSH_SETUP_DATA dependencies on FND_FILE

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

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

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

428: commit;
429:
430: EXCEPTION
431: when others then
432: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
433: errbuf := substr(SQLERRM,1,150);
434: retcode := -1 ;
435:
436: END push_profile;

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

479: commit;
480:
481: EXCEPTION
482: when others then
483: fnd_file.put_line(fnd_file.log, substr(SQLERRM, 1, 1000));
484: errbuf := substr(SQLERRM,1,150);
485: retcode := -1 ;
486:
487: end push_organization;

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

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

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

666: Begin
667: while i<= length(p_sql)
668: loop
669: -- dbms_output.put_line (substr(p_sql, i, 255));
670: fnd_file.put_line(fnd_file.log,substr(p_sql, i, 255));
671: null;
672: i := i+255;
673: end loop;
674: End;