DBA Data[Home] [Help]

APPS.CS_LIST_PRICE_PKG dependencies on FND_API

Line 52: l_init_msg_list := FND_API.G_FALSE;

48: /* This should be changed whenever the api version changes */
49: l_api_version_number := 1.0;
50:
51: /* Initialize the message list */
52: l_init_msg_list := FND_API.G_FALSE;
53:
54:
55:
56: l_validation_level := FND_API.G_VALID_LEVEL_FULL;

Line 56: l_validation_level := FND_API.G_VALID_LEVEL_FULL;

52: l_init_msg_list := FND_API.G_FALSE;
53:
54:
55:
56: l_validation_level := FND_API.G_VALID_LEVEL_FULL;
57: l_fetch_attempts := G_PRC_LST_DEF_ATTEMPTS;
58:
59:
60: /* Method code in so_price_list_lines can be either amount based or */

Line 116: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

112: p_rounding_factor
113: );
114:
115:
116: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
117: p_error_flag := 'Y';
118: ELSE
119: p_error_flag := 'N';
120: END IF;

Line 127: p_encoded => FND_API.G_FALSE);

123: /** Check if there are any warnings passed from the Pricing API. **/
124: IF (l_msg_count >= 1) THEN
125: FOR I IN 1..l_msg_count LOOP
126: l_msg_data := FND_MSG_PUB.Get(p_msg_index => I,
127: p_encoded => FND_API.G_FALSE);
128: l_error_message := l_error_message || to_char(i);
129: l_error_message := l_error_message || l_msg_data;
130: END LOOP;
131: END IF ;