DBA Data[Home] [Help]

APPS.JTF_USR_HKS dependencies on JTF_BIND_DATA

Line 75: From JTF_BIND_DATA

71: l_bind_data_id Number := p_bind_data_id;
72:
73: Cursor ATT_BIND_DATA is
74: Select bind_name, bind_value, data_type
75: From JTF_BIND_DATA
76: Where bind_data_id = l_bind_data_id And
77: bind_type = 'W';
78:
79: l_wf_item_exists Boolean := FALSE;

Line 191: From JTF_BIND_DATA

187: l_bind_data_id Number := p_bind_data_id;
188:
189: Cursor ATT_BIND_DATA is
190: Select bind_name, bind_value, data_type
191: From JTF_BIND_DATA
192: Where bind_data_id = l_bind_data_id And
193: bind_type = 'W';
194:
195: l_wf_item_exists Boolean := FALSE;

Line 710: JTF_BIND_DATA table

706:
707:
708:
709: /* Procedure Load_Bind_data will load the bind data to
710: JTF_BIND_DATA table
711: */
712:
713: Procedure Load_Bind_Data( p_bind_data_id Number,
714: p_bind_name Varchar2,

Line 721: Insert into JTF_BIND_DATA(

717: p_data_type Varchar2
718: ) is
719: Begin
720:
721: Insert into JTF_BIND_DATA(
722: bind_data_id,
723: bind_name,
724: bind_value,
725: bind_type,

Line 742: Delete from JTF_BIND_DATA

738: Procedure Purge_Bind_Data( p_Bind_Data_Id Number,
739: p_bind_type Varchar2 ) is
740:
741: Begin
742: Delete from JTF_BIND_DATA
743: Where BIND_DATA_ID = p_Bind_Data_Id And
744: BIND_TYPE = p_bind_type ;
745: Exception
746: When NO_DATA_FOUND then

Line 869: From JTF_BIND_DATA

865: queryCtx DBMS_XMLquery.ctxType;
866:
867: Cursor SQL_BIND_DATA(v_bind_data_id Number) is
868: Select bind_name, bind_value
869: From JTF_BIND_DATA
870: Where bind_data_id = v_bind_data_id And
871: bind_type = 'S';
872:
873: Begin