DBA Data[Home] [Help]

APPS.GMD_SS_WFLOW_GRP dependencies on GMD_API_PUB

Line 325: gmd_api_pub.RAISE (

321: IF mat_rec.lot_number is not null THEN
322: /*
323: -- Material source has a lot number therefore, a
324: -- Create Sample workflow notification is generated */
325: gmd_api_pub.RAISE (
326: 'oracle.apps.gmd.qm.ss.lot',
327: to_char(mat_rec.source_id,9999999999 ));
328: /* insert into bfs_msg
329: values

Line 337: gmd_api_pub.RAISE (

333: ELSE
334: /*
335: -- Material source needs to be produced, a Create Batch
336: -- workflow notification is generated */
337: gmd_api_pub.RAISE (
338: 'oracle.apps.gmd.qm.ss.batch.cr',
339: mat_rec.source_id );
340: /* insert into bfs_msg
341: values

Line 723: gmd_api_pub.log_message('GMD_API_ERROR','PACKAGE',

719: END IF;
720: EXCEPTION
721: WHEN FND_API.G_EXC_ERROR THEN
722: x_return_status := 'E';
723: gmd_api_pub.log_message('GMD_API_ERROR','PACKAGE',
724: 'GMD_SS_WFLOW_GRP.events_for_status_change',
725: 'ERROR', SUBSTR(SQLERRM,1,100),
726: 'POSITION',null);
727: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 729: gmd_api_pub.log_message('GMD_API_ERROR','PACKAGE',

725: 'ERROR', SUBSTR(SQLERRM,1,100),
726: 'POSITION',null);
727: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
728: x_return_status := 'U';
729: gmd_api_pub.log_message('GMD_API_ERROR','PACKAGE',
730: 'GMD_SS_WFLOW_GRP.events_for_status_change',
731: 'ERROR',
732: SUBSTR(SQLERRM,1,100),'POSITION',null);
733: WHEN OTHERS THEN

Line 735: gmd_api_pub.log_message('GMD_API_ERROR','PACKAGE',

731: 'ERROR',
732: SUBSTR(SQLERRM,1,100),'POSITION',null);
733: WHEN OTHERS THEN
734: x_return_status := 'E';
735: gmd_api_pub.log_message('GMD_API_ERROR','PACKAGE',
736: 'GMD_SS_WFLOW_GRP.events_for_status_change',
737: 'ERROR',
738: SUBSTR(SQLERRM,1,100),'POSITION',null);
739: END events_for_status_change;