DBA Data[Home] [Help]

APPS.PO_OPTIONS_SV dependencies on FND_INSTALLATION

Line 53: get_rv := FND_INSTALLATION.get(po_id, po_id, po_install_status, industry);

49:
50: -- determine the installation status of PO, INV, and OE.
51:
52: x_progress := '040';
53: get_rv := FND_INSTALLATION.get(po_id, po_id, po_install_status, industry);
54: IF get_rv = FALSE THEN
55: raise no_install_status;
56: END IF;
57:

Line 66: get_rv := FND_INSTALLATION.get(oe_id, oe_id, oe_install_status, industry);

62: oe_install_status := 'N';
63: end if;
64:
65: /*
66: get_rv := FND_INSTALLATION.get(oe_id, oe_id, oe_install_status, industry);
67: IF get_rv = FALSE THEN
68: raise no_install_status;
69: END IF;
70: */

Line 73: get_rv := FND_INSTALLATION.get(inv_id, inv_id, inv_install_status,

69: END IF;
70: */
71:
72: x_progress := '060';
73: get_rv := FND_INSTALLATION.get(inv_id, inv_id, inv_install_status,
74: industry);
75: IF get_rv = FALSE THEN
76: raise no_install_status;
77: END IF;