DBA Data[Home] [Help]

APPS.INV_COPY_ITEM_CP dependencies on FND_PROFILE

Line 672: l_max_batch_size := NVL( TO_NUMBER( FND_PROFILE.Value('INV_CCEOI_COMMIT_POINT'))

668: END IF;
669:
670: -- get the max batch size from the profile option;
671: -- default it to 1000 if the profile option is not defined.
672: l_max_batch_size := NVL( TO_NUMBER( FND_PROFILE.Value('INV_CCEOI_COMMIT_POINT'))
673: ,1000
674: );
675: -- get the max no. of workers for IOI from the profile option;
676: -- default it to 10 if the profile option is not defined.

Line 678: l_request_count := NVL( TO_NUMBER( FND_PROFILE.Value('INV_CCEOI_WORKERS'))

674: );
675: -- get the max no. of workers for IOI from the profile option;
676: -- default it to 10 if the profile option is not defined.
677: -- myerrams, Modified the IOI workers Profile option from INV_IOI_WORKERS to INV_CCEOI_WORKERS.
678: l_request_count := NVL( TO_NUMBER( FND_PROFILE.Value('INV_CCEOI_WORKERS'))
679: ,10
680: );
681:
682: l_min_index := 1;