DBA Data[Home] [Help]

APPS.INV_KANBAN_PKG dependencies on FND_GLOBAL

Line 12: g_user_name fnd_user.user_name%TYPE := fnd_global.user_name;

8: * Globals constant holding the package name.
9: **/
10: g_pkg_name CONSTANT VARCHAR2(30) := 'INV_REPLENISH_COUNT_PVT';
11: g_version_printed BOOLEAN := FALSE;
12: g_user_name fnd_user.user_name%TYPE := fnd_global.user_name;
13:
14: /**
15: * This Procedure is used to print the Debug Messages to log file.
16: * @param p_message Debug Message

Line 235: , p_last_updated_by => fnd_global.user_id

231: , p_kanban_card_type => recinfo.kanban_card_type
232: , p_source_type => recinfo.source_type
233: , p_kanban_size => recinfo.kanban_size
234: , p_last_update_date => SYSDATE
235: , p_last_updated_by => fnd_global.user_id
236: , p_creation_date => recinfo.creation_date
237: , p_created_by => recinfo.created_by
238: , p_last_update_login => fnd_global.login_id
239: , p_last_print_date => recinfo.last_print_date

Line 238: , p_last_update_login => fnd_global.login_id

234: , p_last_update_date => SYSDATE
235: , p_last_updated_by => fnd_global.user_id
236: , p_creation_date => recinfo.creation_date
237: , p_created_by => recinfo.created_by
238: , p_last_update_login => fnd_global.login_id
239: , p_last_print_date => recinfo.last_print_date
240: , p_locator_id => recinfo.locator_id
241: , p_supplier_id => recinfo.supplier_id
242: , p_supplier_site_id => recinfo.supplier_site_id

Line 704: || fnd_global.local_chr(10)

700: x_return_status := fnd_api.g_ret_sts_success;
701: IF l_trace_on = 1 THEN
702: print_debug(
703: 'The input parameters are: '
704: || fnd_global.local_chr(10)
705: || ' p_organization_id : '
706: || p_organization_id
707: || fnd_global.local_chr(10)
708: || ' p_kanban_number : '

Line 707: || fnd_global.local_chr(10)

703: 'The input parameters are: '
704: || fnd_global.local_chr(10)
705: || ' p_organization_id : '
706: || p_organization_id
707: || fnd_global.local_chr(10)
708: || ' p_kanban_number : '
709: || p_kanban_number
710: || fnd_global.local_chr(10)
711: , l_proc

Line 710: || fnd_global.local_chr(10)

706: || p_organization_id
707: || fnd_global.local_chr(10)
708: || ' p_kanban_number : '
709: || p_kanban_number
710: || fnd_global.local_chr(10)
711: , l_proc
712: , 9
713: );
714: END IF;

Line 768: || fnd_global.local_chr(10)

764: x_return_status := fnd_api.g_ret_sts_success;
765: IF l_trace_on = 1 THEN
766: print_debug(
767: 'The input parameters are: '
768: || fnd_global.local_chr(10)
769: || ' p_organization_id : '
770: || p_organization_id
771: || fnd_global.local_chr(10)
772: || ' p_kanban_number : '

Line 771: || fnd_global.local_chr(10)

767: 'The input parameters are: '
768: || fnd_global.local_chr(10)
769: || ' p_organization_id : '
770: || p_organization_id
771: || fnd_global.local_chr(10)
772: || ' p_kanban_number : '
773: || p_kanban_number
774: || fnd_global.local_chr(10)
775: , l_proc

Line 774: || fnd_global.local_chr(10)

770: || p_organization_id
771: || fnd_global.local_chr(10)
772: || ' p_kanban_number : '
773: || p_kanban_number
774: || fnd_global.local_chr(10)
775: , l_proc
776: , 9
777: );
778: END IF;