DBA Data[Home] [Help]

APPS.POS_USER_REG_HELPER_PKG dependencies on DBMS_OUTPUT

Line 59: -- dbms_output.put_line('get ' || l_registration_key || ' for id ' || l_registration_id);

55: EXIT;
56: END IF;
57: END LOOP;
58:
59: -- dbms_output.put_line('get ' || l_registration_key || ' for id ' || l_registration_id);
60:
61: x_registration_key := l_registration_key;
62: x_return_status := 'S';
63:

Line 95: dbms_output.put_line('Error: can not find record in po_vendors for vendor id ' || p_vendor_id);

91: BEGIN
92: SELECT vendor_name INTO l_supplier_name FROM po_vendors WHERE vendor_id = p_vendor_id;
93: EXCEPTION
94: WHEN no_data_found THEN
95: dbms_output.put_line('Error: can not find record in po_vendors for vendor id ' || p_vendor_id);
96: RETURN;
97: END;
98:
99: l_reg_type := 'POS_REG';

Line 283: dbms_output.put_line('reg id ' || l_registration_id);

279: p_field_value_number => NULL,
280: p_field_value_date => NULL
281: );
282:
283: dbms_output.put_line('reg id ' || l_registration_id);
284:
285: l_return_status := fnd_registration_utils_pkg.publish_invitation_event(l_registration_id);
286:
287: IF l_return_status IS NOT NULL AND l_return_status = 'Y' THEN