DBA Data[Home] [Help]

APPS.INVWATP dependencies on INVWATP

Line 1: PACKAGE BODY INVWATP as

1: PACKAGE BODY INVWATP as
2: /* $Header: INVWATPB.pls 120.1 2005/06/11 07:42:14 appldev $ */
3:
4: -- Return values
5: -- -1 System Error (Oracle Error Message)

Line 2: /* $Header: INVWATPB.pls 120.1 2005/06/11 07:42:14 appldev $ */

1: PACKAGE BODY INVWATP as
2: /* $Header: INVWATPB.pls 120.1 2005/06/11 07:42:14 appldev $ */
3:
4: -- Return values
5: -- -1 System Error (Oracle Error Message)
6: -- -2 ATP Group id cannot be null.

Line 44: --INVWATP.WebAtpGroupId := rec_mgav.ATP_GROUP_ID;

40: into
41: rec_mgav.ATP_GROUP_ID
42: from
43: dual;
44: --INVWATP.WebAtpGroupId := rec_mgav.ATP_GROUP_ID;
45: INVWATP.SetAtpGroupId ( rec_mgav.ATP_GROUP_ID );
46: else
47: rec_mgav.ATP_GROUP_ID := INVWATP.GetAtpGroupId;
48: if rec_mgav.ATP_GROUP_ID is null then

Line 45: INVWATP.SetAtpGroupId ( rec_mgav.ATP_GROUP_ID );

41: rec_mgav.ATP_GROUP_ID
42: from
43: dual;
44: --INVWATP.WebAtpGroupId := rec_mgav.ATP_GROUP_ID;
45: INVWATP.SetAtpGroupId ( rec_mgav.ATP_GROUP_ID );
46: else
47: rec_mgav.ATP_GROUP_ID := INVWATP.GetAtpGroupId;
48: if rec_mgav.ATP_GROUP_ID is null then
49: -- cannot proceed with null atp group id

Line 47: rec_mgav.ATP_GROUP_ID := INVWATP.GetAtpGroupId;

43: dual;
44: --INVWATP.WebAtpGroupId := rec_mgav.ATP_GROUP_ID;
45: INVWATP.SetAtpGroupId ( rec_mgav.ATP_GROUP_ID );
46: else
47: rec_mgav.ATP_GROUP_ID := INVWATP.GetAtpGroupId;
48: if rec_mgav.ATP_GROUP_ID is null then
49: -- cannot proceed with null atp group id
50: fnd_message.set_name ( 'EC', 'ICX_INV_WATP_FAILED');
51: ret_code := -2;

Line 240: INVWATP.WebAtpGroupId := x_atp_group_id;

236:
237:
238: PROCEDURE SetAtpGroupId ( x_atp_group_id number ) is
239: begin
240: INVWATP.WebAtpGroupId := x_atp_group_id;
241: end SetAtpGroupId;
242:
243: FUNCTION GetAtpGroupId return number is
244: begin

Line 245: return INVWATP.WebAtpGroupId;

241: end SetAtpGroupId;
242:
243: FUNCTION GetAtpGroupId return number is
244: begin
245: return INVWATP.WebAtpGroupId;
246: end GetAtpGroupId;
247:
248:
249:

Line 300: --dbms_output.put_line ( 'Atpgroupid:' || to_char (INVWATP.GetAtpGroupId) );

296: x_resp_id,
297: x_resp_appl_id );
298:
299:
300: --dbms_output.put_line ( 'Atpgroupid:' || to_char (INVWATP.GetAtpGroupId) );
301: retval := fnd_transaction.synchronous (
302: timeout,
303: mgr_outcome,
304: mgr_message,

Line 309: 'INXATP GROUP_ID=' || to_char (INVWATP.GetAtpGroupId) || ' MRP_STATUS=1'

305: 'INV',
306: 'INXATP',
307: -- 'INXATP GROUP_ID=343499 DETAIL_FLAG=0 MRP_STATUS=1'
308: -- 'INXATP GROUP_ID=343499 MRP_STATUS=1'
309: 'INXATP GROUP_ID=' || to_char (INVWATP.GetAtpGroupId) || ' MRP_STATUS=1'
310: );
311:
312:
313: retval1 := fnd_transaction.get_values (

Line 420: x_AtpGrpId := INVWATP.GetAtpGroupId;

416: begin
417:
418: ret_code := 0;
419:
420: x_AtpGrpId := INVWATP.GetAtpGroupId;
421:
422: if x_AtpGrpId is null then
423: --Null Atp Group id
424: fnd_message.set_name ( 'EC', 'ICX_INV_WATP_FAILED');

Line 487: x_AtpGrpId := INVWATP.GetAtpGroupId;

483: ret_val number;
484: begin
485:
486: ret_code := 0;
487: x_AtpGrpId := INVWATP.GetAtpGroupId;
488:
489: if x_AtpGrpId is null then
490: -- null atp group id
491: fnd_message.set_name ( 'EC', 'ICX_INV_WATP_FAILED');

Line 510: END INVWATP;

506: ret_val := ret_code;
507: return (ret_val);
508: end WebAtpClear;
509:
510: END INVWATP;