DBA Data[Home] [Help]

APPS.INV_COPY_ITEM_CP dependencies on FND_PROFILE

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

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

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

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