DBA Data[Home] [Help]

APPS.PSB_BUDGET_POSITION_PVT dependencies on FND_FILE

Line 1046: FND_FILE.Put_Line( FND_FILE.OUTPUT, 'Processing all the position sets.');

1042: SAVEPOINT Populate_Budget_Pos_CP_Pvt ;
1043: --
1044: IF ( p_data_extract_id = FND_API.G_MISS_NUM OR p_data_extract_id IS NULL )
1045: THEN
1046: FND_FILE.Put_Line( FND_FILE.OUTPUT, 'Processing all the position sets.');
1047: ELSE
1048: --
1049: IF ( p_position_set_id = FND_API.G_MISS_NUM OR p_position_set_id IS NULL )
1050: THEN

Line 1052: FND_FILE.Put_Line( FND_FILE.OUTPUT,

1048: --
1049: IF ( p_position_set_id = FND_API.G_MISS_NUM OR p_position_set_id IS NULL )
1050: THEN
1051: --
1052: FND_FILE.Put_Line( FND_FILE.OUTPUT,
1053: 'Processing position sets for data extract id : ' ||
1054: p_data_extract_id );
1055: --
1056: ELSE

Line 1058: FND_FILE.Put_Line( FND_FILE.OUTPUT,

1054: p_data_extract_id );
1055: --
1056: ELSE
1057: --
1058: FND_FILE.Put_Line( FND_FILE.OUTPUT,
1059: 'Processing the given position set id : ' ||
1060: p_position_set_id );
1061: --
1062: END IF;

Line 1099: PSB_MESSAGE_S.Print_Error ( p_mode => FND_FILE.LOG ,

1095: --
1096: WHEN FND_API.G_EXC_ERROR THEN
1097: --
1098: ROLLBACK TO Populate_Budget_Pos_CP_Pvt ;
1099: PSB_MESSAGE_S.Print_Error ( p_mode => FND_FILE.LOG ,
1100: p_print_header => FND_API.G_TRUE ) ;
1101: retcode := 2 ;
1102: --
1103: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 1106: PSB_MESSAGE_S.Print_Error ( p_mode => FND_FILE.LOG ,

1102: --
1103: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1104: --
1105: ROLLBACK TO Populate_Budget_Pos_CP_Pvt ;
1106: PSB_MESSAGE_S.Print_Error ( p_mode => FND_FILE.LOG ,
1107: p_print_header => FND_API.G_TRUE ) ;
1108: retcode := 2 ;
1109: --
1110: WHEN OTHERS THEN

Line 1119: PSB_MESSAGE_S.Print_Error ( p_mode => FND_FILE.LOG ,

1115: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME ,
1116: l_api_name ) ;
1117: END IF ;
1118: --
1119: PSB_MESSAGE_S.Print_Error ( p_mode => FND_FILE.LOG ,
1120: p_print_header => FND_API.G_TRUE ) ;
1121: retcode := 2 ;
1122: --
1123: END Populate_Budget_Positions_CP ;