DBA Data[Home] [Help]

APPS.PO_VENDOR_SITES_GRP dependencies on FND_API

Line 55: -- FND_API.G_RET_STS_ERROR - for expected error

51: -- Set to 'Y' if default transmission method is FAX
52: --x_email_flag
53: -- Set to 'Y' if default transmission method is EMAIL
54: --x_return_status
55: -- FND_API.G_RET_STS_ERROR - for expected error
56: -- FND_API.G_RET_STS_UNEXP_ERROR - for unexpected error
57: -- FND_API.G_RET_STS_SUCCESS - for success
58: --x_msg_count
59: -- Message count i.e number of messages in the fnd message stack

Line 56: -- FND_API.G_RET_STS_UNEXP_ERROR - for unexpected error

52: --x_email_flag
53: -- Set to 'Y' if default transmission method is EMAIL
54: --x_return_status
55: -- FND_API.G_RET_STS_ERROR - for expected error
56: -- FND_API.G_RET_STS_UNEXP_ERROR - for unexpected error
57: -- FND_API.G_RET_STS_SUCCESS - for success
58: --x_msg_count
59: -- Message count i.e number of messages in the fnd message stack
60: --x_msg_data

Line 57: -- FND_API.G_RET_STS_SUCCESS - for success

53: -- Set to 'Y' if default transmission method is EMAIL
54: --x_return_status
55: -- FND_API.G_RET_STS_ERROR - for expected error
56: -- FND_API.G_RET_STS_UNEXP_ERROR - for unexpected error
57: -- FND_API.G_RET_STS_SUCCESS - for success
58: --x_msg_count
59: -- Message count i.e number of messages in the fnd message stack
60: --x_msg_data
61: -- Message data in fnd message stack

Line 73: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

69: --
70: --End of Comments
71: -------------------------------------------------------------------------------
72: Procedure Get_Transmission_Defaults(p_api_version IN VARCHAR2,
73: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
74: p_document_id IN NUMBER,
75: p_document_type IN VARCHAR2,
76: p_document_subtype IN VARCHAR2,
77: p_preparer_id IN OUT NOCOPY NUMBER,

Line 96: IF NOT (FND_API.compatible_api_call(l_api_version

92: x_print_flag := 'N';
93: x_fax_flag := 'N';
94: x_email_flag := 'N';
95:
96: IF NOT (FND_API.compatible_api_call(l_api_version
97: ,p_api_version
98: ,l_api_name
99: ,g_pkg_name)) THEN
100: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 100: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

96: IF NOT (FND_API.compatible_api_call(l_api_version
97: ,p_api_version
98: ,l_api_name
99: ,g_pkg_name)) THEN
100: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
101: END IF;
102:
103:
104: -- initialize API return status to success

Line 105: x_return_status:= FND_API.G_RET_STS_SUCCESS;

101: END IF;
102:
103:
104: -- initialize API return status to success
105: x_return_status:= FND_API.G_RET_STS_SUCCESS;
106:
107: IF (FND_API.to_Boolean(p_init_msg_list)) THEN
108: FND_MSG_PUB.initialize;
109: END IF;

Line 107: IF (FND_API.to_Boolean(p_init_msg_list)) THEN

103:
104: -- initialize API return status to success
105: x_return_status:= FND_API.G_RET_STS_SUCCESS;
106:
107: IF (FND_API.to_Boolean(p_init_msg_list)) THEN
108: FND_MSG_PUB.initialize;
109: END IF;
110:
111: /* Call Get_transmission_Defaults from PO_VENDOR_SITES_SV package */

Line 132: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

128: END IF;
129:
130: EXCEPTION
131: WHEN OTHERS THEN
132: X_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
133:
134: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
135: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name);
136: IF (g_fnd_debug='Y') THEN