DBA Data[Home] [Help]

APPS.IES_TELESALES_BP_PKG dependencies on FND_API

Line 86: p_init_msg_list => FND_API.G_FALSE,

82: end if;
83:
84: AS_INTEREST_PUB.Create_Interest(
85: p_api_version_number => 2.0 ,
86: p_init_msg_list => FND_API.G_FALSE,
87: p_commit => FND_API.G_FALSE,
88: p_interest_rec => l_interest_rec,
89: p_customer_id => p_party_id,
90: p_address_id => p_party_site_id,

Line 87: p_commit => FND_API.G_FALSE,

83:
84: AS_INTEREST_PUB.Create_Interest(
85: p_api_version_number => 2.0 ,
86: p_init_msg_list => FND_API.G_FALSE,
87: p_commit => FND_API.G_FALSE,
88: p_interest_rec => l_interest_rec,
89: p_customer_id => p_party_id,
90: p_address_id => p_party_site_id,
91: p_contact_id => null,

Line 114: p_encoded => FND_API.G_FALSE);

110: -- dbms_output.put_line('There are ' || l_count || ' messages.');
111: FOR l_index IN 1..l_count LOOP
112: my_message := FND_MSG_PUB.Get(
113: p_msg_index => l_index,
114: p_encoded => FND_API.G_FALSE);
115: -- dbms_output.put_line(substr(my_message,1,255));
116: END LOOP;
117:
118:

Line 138: l_commit VARCHAR2(10) := FND_API.G_FALSE;

134: x_msg_data OUT NOCOPY /* file.sql.39 change */ varchar2)
135: is
136:
137: l_application_id NUMBER := 279;
138: l_commit VARCHAR2(10) := FND_API.G_FALSE;
139: l_return_status VARCHAR2(10) := 'S';
140: l_msg_count NUMBER := 0;
141: l_msg_data VARCHAR2(4000) default NULL;
142: l_opp_id NUMBER;

Line 167: ,p_init_msg_list => FND_API.G_FALSE

163:
164:
165: AS_SALES_LEADS_PUB.Create_Opportunity_For_Lead(
166: p_api_version_number => 2.0
167: ,p_init_msg_list => FND_API.G_FALSE
168: ,p_commit => FND_API.G_FALSE
169: ,p_validation_level => 90
170: ,P_Check_Access_Flag => 'Y'
171: ,P_Admin_Flag => 'N'

Line 168: ,p_commit => FND_API.G_FALSE

164:
165: AS_SALES_LEADS_PUB.Create_Opportunity_For_Lead(
166: p_api_version_number => 2.0
167: ,p_init_msg_list => FND_API.G_FALSE
168: ,p_commit => FND_API.G_FALSE
169: ,p_validation_level => 90
170: ,P_Check_Access_Flag => 'Y'
171: ,P_Admin_Flag => 'N'
172: ,P_Admin_Group_Id => NULL

Line 187: p_encoded => FND_API.G_FALSE);

183: -- dbms_output.put_line('There are ' || l_count || ' messages.');
184: FOR l_index IN 1..l_count LOOP
185: my_message := FND_MSG_PUB.Get(
186: p_msg_index => l_index,
187: p_encoded => FND_API.G_FALSE);
188: -- dbms_output.put_line(substr(my_message,1,255));
189: END LOOP;
190:
191: x_return_status := l_return_status;

Line 266: p_commit => FND_API.G_FALSE,

262: end if;
263:
264:
265: JTF_FM_REQUEST_GRP.SUBMIT_REQUEST (p_api_version => 1.0,
266: p_commit => FND_API.G_FALSE,
267: x_return_status => l_return_status,
268: x_msg_count => l_msg_count,
269: x_msg_data => l_msg_data,
270: p_subject => p_subject,

Line 273: p_queue_response => FND_API.G_TRUE,

269: x_msg_data => l_msg_data,
270: p_subject => p_subject,
271: p_party_id => p_party_id,
272: p_user_id => l_user_id,
273: p_queue_response => FND_API.G_TRUE,
274: p_content_xml => l_content_xml,
275: p_request_id => l_request_id);
276:
277:

Line 330: p_init_msg_list => FND_API.G_TRUE,

326: l_event_regs_rec.application_id := p_application_id;
327:
328: AMS_EVTREGS_PUB.Register(
329: p_api_version_number => p_api_version,
330: p_init_msg_list => FND_API.G_TRUE,
331: p_commit => FND_API.G_FALSE,
332: p_evt_regs_rec => l_event_regs_rec,
333: x_event_registration_id => l_event_registration_id,
334: x_confirmation_code => l_confirmation_code,

Line 331: p_commit => FND_API.G_FALSE,

327:
328: AMS_EVTREGS_PUB.Register(
329: p_api_version_number => p_api_version,
330: p_init_msg_list => FND_API.G_TRUE,
331: p_commit => FND_API.G_FALSE,
332: p_evt_regs_rec => l_event_regs_rec,
333: x_event_registration_id => l_event_registration_id,
334: x_confirmation_code => l_confirmation_code,
335: x_system_status_code => l_system_status_code,