DBA Data[Home] [Help]

APPS.EGO_PARTY_PUB dependencies on FND_FILE

Line 2646: FND_FILE.put_line(which => fnd_file.log

2642: AND hca.owner_table_name = 'HZ_PARTIES'
2643: AND hca.class_category = 'POS_PARTICIPANT_TYPE'
2644: AND hca.class_code = 'ENTERPRISE';
2645:
2646: FND_FILE.put_line(which => fnd_file.log
2647: ,buff => '['||To_Char(SYSDATE,'DD-MON-RRRR HH24:MI:SS')
2648: ||'] Default Enterprise id '||l_org_id);
2649:
2650: FOR user_rec IN INTERNAL_USERS_WC LOOP

Line 2670: FND_FILE.put_line(which => fnd_file.log

2666: x_return_status => l_return_status,
2667: x_msg_count => l_msg_count,
2668: x_msg_data => l_msg_data,
2669: x_relationship_id => l_relationship_id);
2670: FND_FILE.put_line(which => fnd_file.log
2671: ,buff => '['||To_Char(SYSDATE,'DD-MON-RRRR HH24:MI:SS')
2672: ||'] Relationship created for '||user_rec.PERSON_ID
2673: ||' with status '||l_return_status
2674: ||' message '||l_msg_data

Line 2678: FND_FILE.put_line(which => fnd_file.log

2674: ||' message '||l_msg_data
2675: );
2676: EXCEPTION
2677: WHEN OTHERS THEN
2678: FND_FILE.put_line(which => fnd_file.log
2679: ,buff => '['||To_Char(SYSDATE,'DD-MON-RRRR HH24:MI:SS')
2680: ||'] EXCEPTION in creating Relationship for '||user_rec.PERSON_ID
2681: ||' with error '||SQLERRM
2682: );

Line 2690: FND_FILE.put_line(which => fnd_file.log

2686: COMMIT;
2687: EXCEPTION
2688: WHEN OTHERS THEN
2689: -- this will come only if there is not default enterprise org setup
2690: FND_FILE.put_line(which => fnd_file.log
2691: ,buff => '['||To_Char(SYSDATE,'DD-MON-RRRR HH24:MI:SS')
2692: ||'] EXCEPTION in getting default enterprise '
2693: ||' with error '||SQLERRM
2694: );