DBA Data[Home] [Help]

APPS.PO_REQ_ISO_SV dependencies on FND_API

Line 76: , p_init_msg_list => FND_API.G_TRUE

72:
73: /* dreddy-iso : call OM's process order API */
74: OE_Order_GRP.Process_order
75: ( p_api_version_number => 1.0
76: , p_init_msg_list => FND_API.G_TRUE
77: , x_return_status => l_return_status
78: , x_msg_count => x_msg_count
79: , x_msg_data => x_msg_data
80: , p_line_tbl => l_line_tbl

Line 120: if x_status = FND_API.G_RET_STS_SUCCESS then

116: *=============================================================*/
117: FUNCTION get_return_code(x_status IN varchar2) return VARCHAR2 IS
118: BEGIN
119:
120: if x_status = FND_API.G_RET_STS_SUCCESS then
121: return ('TRUE');
122: else
123: return ('FALSE');
124: end if;