DBA Data[Home] [Help]

APPS.PSB_MESSAGE_S dependencies on FND_FILE

Line 61: IF p_mode NOT IN (FND_FILE.LOG, FND_FILE.OUTPUT) THEN

57:
58: BEGIN
59:
60: -- Validate the p_mode parameter.
61: IF p_mode NOT IN (FND_FILE.LOG, FND_FILE.OUTPUT) THEN
62: --
63: Fnd_Message.Set_Name ('PSB', 'PSB_INVALID_ARGUMENT') ;
64: Fnd_Message.Set_Token('ROUTINE', 'Print_Error' ) ;
65: l_msg_buf := Fnd_Message.Get ;

Line 66: FND_FILE.Put_Line( FND_FILE.LOG, l_msg_buf ) ;

62: --
63: Fnd_Message.Set_Name ('PSB', 'PSB_INVALID_ARGUMENT') ;
64: Fnd_Message.Set_Token('ROUTINE', 'Print_Error' ) ;
65: l_msg_buf := Fnd_Message.Get ;
66: FND_FILE.Put_Line( FND_FILE.LOG, l_msg_buf ) ;
67: RETURN ;
68: --
69: END IF ;
70:

Line 83: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;

79: -- Print standard header is asked for.
80: IF FND_API.to_Boolean( p_print_header ) THEN
81: FND_MESSAGE.Set_Name('PSB', 'PSB_PROGRAM_FAILURE_HEADER');
82: l_msg_buf := substrb_get ;
83: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;
84: END IF ;
85: --
86:
87: /* No longer applicable.

Line 91: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;

87: /* No longer applicable.
88: if l_msg_count = 0 then
89: FND_MESSAGE.Set_Name('PSB', 'PSB_SERVER_ERROR_NO_MSG');
90: l_msg_buf := substrb_get ;
91: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;
92: */
93:
94: IF l_msg_count = 1 then
95:

Line 98: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;

94: IF l_msg_count = 1 then
95:
96: FND_MESSAGE.Set_Encoded(l_msg_data);
97: l_msg_buf := substrb_get ;
98: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;
99:
100: ELSIF l_msg_count > 1 then
101:
102: -- Get all messages from the message stack.

Line 116: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;

112: ( p_msg_index => FND_MSG_PUB.G_NEXT,
113: p_encoded => FND_API.G_FALSE ) ;
114: END IF;
115: --
116: FND_FILE.Put_Line( p_mode, l_msg_buf ) ;
117: --
118: END LOOP ;
119: -- End getting all messages from the message stack.
120:

Line 223: FND_FILE.Put_Line( FND_FILE.OUTPUT, l_msg_buf );

219: BEGIN
220:
221: FND_MESSAGE.Set_Name('PSB', 'PSB_PROGRAM_SUCCESS');
222: l_msg_buf := substrb_get;
223: FND_FILE.Put_Line( FND_FILE.OUTPUT, l_msg_buf );
224:
225: END Print_Success ;
226:
227: