DBA Data[Home] [Help]

APPS.GMD_OPERATION_ACTIVITIES_PUB dependencies on GMD_DEBUG

Line 109: gmd_debug.put_line('In insert_operation_activity public.');

105: fnd_msg_pub.initialize;
106: END IF;
107:
108: IF (l_debug = 'Y') THEN
109: gmd_debug.put_line('In insert_operation_activity public.');
110: END IF;
111:
112: /* Initially let us assign the return status to success */
113: x_return_status := FND_API.g_ret_sts_success;

Line 162: gmd_debug.put_line('operation activity required');

158:
159: /* Activity must be passed, otherwise give error */
160: IF p_oprn_activity.activity IS NULL THEN
161: IF (l_debug = 'Y') THEN
162: gmd_debug.put_line('operation activity required');
163: END IF;
164:
165: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
166: FND_MESSAGE.SET_TOKEN ('MISSING', 'ACTIVITY');

Line 216: gmd_debug.put_line('before PVT insert_oprn_activity routine called');

212: CLOSE Cur_gen_oprnline_id;
213:
214: IF x_return_status = 'S' THEN
215: IF (l_debug = 'Y') THEN
216: gmd_debug.put_line('before PVT insert_oprn_activity routine called');
217: END IF;
218:
219: /* call insert operation activity routine using oprn_id */
220: GMD_OPERATION_ACTIVITIES_PVT.insert_operation_activity(

Line 331: gmd_debug.put_line('Start of update_operation_activity PUB');

327: RAISE invalid_version;
328: END IF;
329:
330: IF (l_debug = 'Y') THEN
331: gmd_debug.put_line('Start of update_operation_activity PUB');
332: END IF;
333:
334: /* Oprn_line_id must be passed, otherwise give error */
335: IF p_oprn_line_id IS NULL THEN

Line 337: gmd_debug.put_line('operation line id is required');

333:
334: /* Oprn_line_id must be passed, otherwise give error */
335: IF p_oprn_line_id IS NULL THEN
336: IF (l_debug = 'Y') THEN
337: gmd_debug.put_line('operation line id is required');
338: END IF;
339:
340: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
341: FND_MESSAGE.SET_TOKEN ('MISSING', 'OPRN_LINE_ID');

Line 351: gmd_debug.put_line('col_to_update required');

347: FOR i in 1 .. p_update_table.count LOOP
348: /* Col_to_update and value must be passed, otherwise give error */
349: IF p_update_table(i).p_col_to_update IS NULL THEN
350: IF (l_debug = 'Y') THEN
351: gmd_debug.put_line('col_to_update required');
352: END IF;
353:
354: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
355: FND_MESSAGE.SET_TOKEN ('MISSING', 'COL_TO_UPDATE');

Line 360: gmd_debug.put_line('value required');

356: FND_MSG_PUB.ADD;
357: RAISE upd_oprn_actv_err;
358: ELSIF p_update_table(i).p_value IS NULL THEN
359: IF (l_debug = 'Y') THEN
360: gmd_debug.put_line('value required');
361: END IF;
362:
363: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
364: FND_MESSAGE.SET_TOKEN ('MISSING', 'P_VALUE');

Line 524: gmd_debug.put_line('START of delete_operation_activity PUB');

520: RAISE invalid_version;
521: END IF;
522:
523: IF (l_debug = 'Y') THEN
524: gmd_debug.put_line('START of delete_operation_activity PUB');
525: END IF;
526:
527:
528: /* Operation Line ID must be passed, otherwise give error */

Line 531: gmd_debug.put_line('Operation Line id is required');

527:
528: /* Operation Line ID must be passed, otherwise give error */
529: IF p_oprn_line_id IS NULL THEN
530: IF (l_debug = 'Y') THEN
531: gmd_debug.put_line('Operation Line id is required');
532: END IF;
533:
534: FND_MESSAGE.SET_NAME ('GMI', 'GMI_MISSING');
535: FND_MESSAGE.SET_TOKEN ('MISSING', 'OPRN_LINE_ID');