DBA Data[Home] [Help]

APPS.JTF_DIAGNOSTIC_ADAPTUTIL dependencies on JTF_DIAG_DEPENDTBL

Line 962: -- JTF_DIAG_DEPENDTBL, and a varchar2 representing the value to add

958:
959:
960: ----------------------------------------------------------------------
961: -- addDependency takes a table of VARCHAR2(4000) in the form
962: -- JTF_DIAG_DEPENDTBL, and a varchar2 representing the value to add
963: -- and this function will add this value to
964: -- a table of VARCHAR2(4000) (JTF_DIAG_DEPENDTBL) and return this.
965: ----------------------------------------------------------------------
966:

Line 964: -- a table of VARCHAR2(4000) (JTF_DIAG_DEPENDTBL) and return this.

960: ----------------------------------------------------------------------
961: -- addDependency takes a table of VARCHAR2(4000) in the form
962: -- JTF_DIAG_DEPENDTBL, and a varchar2 representing the value to add
963: -- and this function will add this value to
964: -- a table of VARCHAR2(4000) (JTF_DIAG_DEPENDTBL) and return this.
965: ----------------------------------------------------------------------
966:
967: FUNCTION addDependency(dependencies IN JTF_DIAG_DEPENDTBL,
968: val IN VARCHAR2) RETURN JTF_DIAG_DEPENDTBL IS

Line 967: FUNCTION addDependency(dependencies IN JTF_DIAG_DEPENDTBL,

963: -- and this function will add this value to
964: -- a table of VARCHAR2(4000) (JTF_DIAG_DEPENDTBL) and return this.
965: ----------------------------------------------------------------------
966:
967: FUNCTION addDependency(dependencies IN JTF_DIAG_DEPENDTBL,
968: val IN VARCHAR2) RETURN JTF_DIAG_DEPENDTBL IS
969: tempDependency VARCHAR2(4000);
970: tempDependencyTable JTF_DIAG_DEPENDTBL;
971: BEGIN

Line 968: val IN VARCHAR2) RETURN JTF_DIAG_DEPENDTBL IS

964: -- a table of VARCHAR2(4000) (JTF_DIAG_DEPENDTBL) and return this.
965: ----------------------------------------------------------------------
966:
967: FUNCTION addDependency(dependencies IN JTF_DIAG_DEPENDTBL,
968: val IN VARCHAR2) RETURN JTF_DIAG_DEPENDTBL IS
969: tempDependency VARCHAR2(4000);
970: tempDependencyTable JTF_DIAG_DEPENDTBL;
971: BEGIN
972: tempDependencyTable := dependencies;

Line 970: tempDependencyTable JTF_DIAG_DEPENDTBL;

966:
967: FUNCTION addDependency(dependencies IN JTF_DIAG_DEPENDTBL,
968: val IN VARCHAR2) RETURN JTF_DIAG_DEPENDTBL IS
969: tempDependency VARCHAR2(4000);
970: tempDependencyTable JTF_DIAG_DEPENDTBL;
971: BEGIN
972: tempDependencyTable := dependencies;
973: tempDependency := val;
974: tempDependencyTable.extend(1);

Line 988: FUNCTION initDependencyTable RETURN JTF_DIAG_DEPENDTBL IS

984: ---------------------------------------------------------------------
985: -- initialise a dependencyTable object and return it to the
986: -- caller method. A empty table of VARCHAR2(4000) is created
987: ---------------------------------------------------------------------
988: FUNCTION initDependencyTable RETURN JTF_DIAG_DEPENDTBL IS
989: temp JTF_DIAG_DEPENDTBL;
990: BEGIN
991: temp := JTF_DIAG_DEPENDTBL();
992: -- temp.trim;

Line 989: temp JTF_DIAG_DEPENDTBL;

985: -- initialise a dependencyTable object and return it to the
986: -- caller method. A empty table of VARCHAR2(4000) is created
987: ---------------------------------------------------------------------
988: FUNCTION initDependencyTable RETURN JTF_DIAG_DEPENDTBL IS
989: temp JTF_DIAG_DEPENDTBL;
990: BEGIN
991: temp := JTF_DIAG_DEPENDTBL();
992: -- temp.trim;
993: return temp;

Line 991: temp := JTF_DIAG_DEPENDTBL();

987: ---------------------------------------------------------------------
988: FUNCTION initDependencyTable RETURN JTF_DIAG_DEPENDTBL IS
989: temp JTF_DIAG_DEPENDTBL;
990: BEGIN
991: temp := JTF_DIAG_DEPENDTBL();
992: -- temp.trim;
993: return temp;
994: EXCEPTION
995: WHEN others THEN