DBA Data[Home] [Help]

APPS.INVIDIT1 dependencies on FND_INSTALLATION

Line 481: is_installed := fnd_installation.get(appl_id => 401, dep_appl_id => 401,

477: -- If it's installed, set it to application_id; if not, set it to 0
478: -- (form logic needs it to be 0 if not installed
479: -- status = 'I' indicates the product is fully installed
480: --
481: is_installed := fnd_installation.get(appl_id => 401, dep_appl_id => 401,
482: status => inv_installed, industry => indust);
483: if (inv_installed = 'I') then
484: X_inv_install := 401;
485: else

Line 489: is_installed := fnd_installation.get(appl_id => 201, dep_appl_id => 201,

485: else
486: X_inv_install := 0;
487: end if;
488:
489: is_installed := fnd_installation.get(appl_id => 201, dep_appl_id => 201,
490: status => po_installed, industry => indust);
491: if (po_installed = 'I') then
492: X_po_install := 201;
493: else

Line 497: is_installed := fnd_installation.get(appl_id => 222, dep_appl_id => 222,

493: else
494: X_po_install := 0;
495: end if;
496:
497: is_installed := fnd_installation.get(appl_id => 222, dep_appl_id => 222,
498: status => ar_installed, industry => indust);
499: if (ar_installed = 'I') then
500: X_ar_install := 222;
501: else

Line 505: is_installed := fnd_installation.get(appl_id => 300, dep_appl_id => 300,

501: else
502: X_ar_install := 0;
503: end if;
504:
505: is_installed := fnd_installation.get(appl_id => 300, dep_appl_id => 300,
506: status => oe_installed, industry => indust);
507: if (oe_installed = 'I') then
508: X_oe_install := 300;
509: else

Line 513: is_installed := fnd_installation.get(appl_id => 702, dep_appl_id => 702,

509: else
510: X_oe_install := 0;
511: end if;
512:
513: is_installed := fnd_installation.get(appl_id => 702, dep_appl_id => 702,
514: status => bom_installed, industry => indust);
515: if (bom_installed = 'I') then
516: X_bom_install := 702;
517: else

Line 521: is_installed := fnd_installation.get(appl_id => 703, dep_appl_id => 703,

517: else
518: X_bom_install := 0;
519: end if;
520:
521: is_installed := fnd_installation.get(appl_id => 703, dep_appl_id => 703,
522: status => eng_installed, industry => indust);
523: if (eng_installed = 'I') then
524: X_eng_install := 703;
525: else

Line 529: is_installed := fnd_installation.get(appl_id => 170, dep_appl_id => 170,

525: else
526: X_eng_install := 0;
527: end if;
528:
529: is_installed := fnd_installation.get(appl_id => 170, dep_appl_id => 170,
530: status => cs_installed, industry => indust);
531: if (cs_installed = 'I') then
532: X_cs_install := 170;
533: else

Line 537: is_installed := fnd_installation.get(appl_id => 704, dep_appl_id => 704,

533: else
534: X_cs_install := 0;
535: end if;
536:
537: is_installed := fnd_installation.get(appl_id => 704, dep_appl_id => 704,
538: status => mrp_installed, industry => indust);
539: if (mrp_installed = 'I') then
540: X_mrp_install := 704;
541: else

Line 545: is_installed := fnd_installation.get(appl_id => 706, dep_appl_id => 706,

541: else
542: X_mrp_install := 0;
543: end if;
544:
545: is_installed := fnd_installation.get(appl_id => 706, dep_appl_id => 706,
546: status => wip_installed, industry => indust);
547: if (wip_installed = 'I') then
548: X_wip_install := 706;
549: else

Line 553: is_installed := fnd_installation.get(appl_id => 140, dep_appl_id => 140,

549: else
550: X_wip_install := 0;
551: end if;
552:
553: is_installed := fnd_installation.get(appl_id => 140, dep_appl_id => 140,
554: status => fa_installed, industry => indust);
555: if (fa_installed = 'I') then
556: X_fa_install := 140;
557: else