DBA Data[Home] [Help]

APPS.WMA_MATERIAL dependencies on WMA_MATERIAL

Line 1: PACKAGE BODY wma_material AS

1: PACKAGE BODY wma_material AS
2: /* $Header: wmapmtlb.pls 120.1 2006/05/06 04:04:36 mraman noship $ */
3:
4: /**
5: * Forward declaration

Line 37: wip_logger.entryPoint(p_procName => 'wma_material.process',

33:
34: if (l_logLevel <= wip_constants.trace_logging) then
35: l_params(1).paramName := 'not printing params';
36: l_params(1).paramValue := ' ';
37: wip_logger.entryPoint(p_procName => 'wma_material.process',
38: p_params => l_params,
39: x_returnStatus => l_returnStatus);
40: end if;
41:

Line 92: wip_logger.exitPoint(p_procName => 'wma_material.process',

88: raise fnd_api.g_exc_unexpected_error;
89: end if;
90:
91: if (l_logLevel <= wip_constants.trace_logging) then
92: wip_logger.exitPoint(p_procName => 'wma_material.process',
93: p_procReturnStatus => status,
94: p_msg => 'success',
95: x_returnStatus => l_returnStatus);
96: end if;

Line 103: wip_logger.exitPoint(p_procName => 'wma_material.process',

99: rollback to wmapmtlb0;
100: status := -1;
101: -- wip_utilities.get_message_stack(p_msg => errMessage);
102: if (l_logLevel <= wip_constants.trace_logging) then
103: wip_logger.exitPoint(p_procName => 'wma_material.process',
104: p_procReturnStatus => status,
105: p_msg => errMessage,
106: x_returnStatus => l_returnStatus);
107: end if;

Line 111: fnd_message.set_token ('FUNCTION', 'wma_material.process');

107: end if;
108: when others then
109: status := -1;
110: fnd_message.set_name ('WIP', 'GENERIC_ERROR');
111: fnd_message.set_token ('FUNCTION', 'wma_material.process');
112: fnd_message.set_token ('ERROR', SQLERRM);
113: errMessage := fnd_message.get;
114: if (l_logLevel <= wip_constants.trace_logging) then
115: wip_logger.exitPoint(p_procName => 'wma_material.process',

Line 115: wip_logger.exitPoint(p_procName => 'wma_material.process',

111: fnd_message.set_token ('FUNCTION', 'wma_material.process');
112: fnd_message.set_token ('ERROR', SQLERRM);
113: errMessage := fnd_message.get;
114: if (l_logLevel <= wip_constants.trace_logging) then
115: wip_logger.exitPoint(p_procName => 'wma_material.process',
116: p_procReturnStatus => status,
117: p_msg => errMessage,
118: x_returnStatus => l_returnStatus);
119: end if;

Line 145: fnd_message.set_token('INTERFACE', 'wma_material.derive', TRUE);

141:
142: job := wma_derive.getJob(param.jobID);
143: if (job.wipEntityID is null) then
144: fnd_message.set_name ('WIP', 'WIP_JOB_DOES_NOT_EXIST');
145: fnd_message.set_token('INTERFACE', 'wma_material.derive', TRUE);
146: errMsg := fnd_message.get;
147: return false;
148: end if;
149:

Line 418: fnd_message.set_token ('FUNCTION', 'wma_material.derive');

414:
415: EXCEPTION
416: when others then
417: fnd_message.set_name ('WIP', 'GENERIC_ERROR');
418: fnd_message.set_token ('FUNCTION', 'wma_material.derive');
419: fnd_message.set_token ('ERROR', SQLERRM);
420: errMsg := fnd_message.get;
421: return false;
422: End put;

Line 548: END wma_material;

544: x_returnMsg := fnd_message.get;
545: end validateIssueProject;
546:
547:
548: END wma_material;