DBA Data[Home] [Help]

APPS.WSH_DOCUMENT_SETS dependencies on FND_PROFILE

Line 616: l_copies := to_number(NVL(FND_PROFILE.VALUE('CONC_COPIES'),'1')) ;

612:
613:
614:
615: if ( document.number_of_copies = 0 ) then
616: l_copies := to_number(NVL(FND_PROFILE.VALUE('CONC_COPIES'),'1')) ;
617: else
618: l_copies := document.number_of_copies ;
619: end if ;
620:

Line 626: WSH_DEBUG_SV.logmsg(l_module_name, 'NUMBER OF COPIES from fnd profile :'|| to_number(NVL(FND_PROFILE.VALUE('CONC_COPIES'),'0')) );

622: IF l_debug_on THEN
623: WSH_DEBUG_SV.logmsg(l_module_name, 'Report Set Id is :'||l_doc_set_params(i).p_report_set_id );
624: WSH_DEBUG_SV.logmsg(l_module_name, 'CONC PROGRAM IS :'||l_concurrent_program_name );
625: WSH_DEBUG_SV.logmsg(l_module_name, 'NUMBER OF COPIES for current doc :'||L_COPIES );
626: WSH_DEBUG_SV.logmsg(l_module_name, 'NUMBER OF COPIES from fnd profile :'|| to_number(NVL(FND_PROFILE.VALUE('CONC_COPIES'),'0')) );
627: END IF;
628:
629: -- Debug Statements
630: --

Line 722: l_argument(l_arg_cnt) := fnd_profile.value(l_arg_default_value);

718: --
719: IF l_arg_default_type = 'C' THEN -- Constant
720: l_argument(l_arg_cnt) := l_arg_default_value;
721: ELSIF l_arg_default_type = 'P' THEN -- Profile
722: l_argument(l_arg_cnt) := fnd_profile.value(l_arg_default_value);
723: ELSIF l_arg_default_type = 'S' THEN -- Sql
724: -- use dynamic sql to get the default value.
725: -- NOTE not all values will be defined if this references another
726: -- flex field, this will cause an error in which case continue