DBA Data[Home] [Help]

APPS.ASO_WORKFLOW_PVT dependencies on FND_API

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

85:
86:
87: PROCEDURE NotifyOrderStatus(
88: p_api_version IN NUMBER,
89: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
90: p_quote_id IN NUMBER,
91: p_status IN VARCHAR2,
92: p_errmsg_count IN NUMBER,
93: p_errmsg_data IN VARCHAR2,

Line 123: x_return_status := FND_API.g_ret_sts_success;

119: and status = 'ACTIVE';
120: l_wf_name_cur_name varchar2(2000);
121:
122: BEGIN
123: x_return_status := FND_API.g_ret_sts_success;
124:
125: l_event_type := 'ORDERROR';
126: l_notifName := 'ORDERROR';
127:

Line 140: fnd_msg_pub.Get(l_this,FND_API.G_FALSE,l_temp_str,l_next);

136: l_this := 1;
137: l_errmsg_data := '';
138: WHILE ( l_this <= l_errmsg_count ) LOOP
139: l_temp_str := null;
140: fnd_msg_pub.Get(l_this,FND_API.G_FALSE,l_temp_str,l_next);
141: l_errmsg_data := l_errmsg_data || TAB || TAB ||l_temp_str || NEWLINE;
142: l_this := l_this + 1;
143: END LOOP;
144: END IF;

Line 246: x_return_status := FND_API.g_ret_sts_error;

242: END IF;
243:
244: Exception
245: When OTHERS Then
246: x_return_status := FND_API.g_ret_sts_error;
247: x_msg_count := 0;
248:
249: wf_core.context('ASO_WORKFLOW_PVT',
250: 'NotifyOrderStatus',