DBA Data[Home] [Help]

APPS.BIS_BIA_MSGLOG_PKG dependencies on BIS_PMV_PARAMETERS_PUB

Line 107: l_custom_rec := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;

103: and upper(a.message_text) like UPPER(:BIS_MSG_CRT)
104: &ORDER_BY_CLAUSE NULLS LAST';
105:
106:
107: l_custom_rec := BIS_PMV_PARAMETERS_PUB.Initialize_Query_Type;
108: x_custom_output := bis_query_attributes_tbl();
109: x_custom_sql := l_sql_stmt;
110:
111: l_custom_rec.attribute_name := ':BIS_ICX_SESSION_ID';

Line 113: l_custom_rec.attribute_type := bis_pmv_parameters_pub.bind_type;

109: x_custom_sql := l_sql_stmt;
110:
111: l_custom_rec.attribute_name := ':BIS_ICX_SESSION_ID';
112: l_custom_rec.attribute_value := session_id_value;
113: l_custom_rec.attribute_type := bis_pmv_parameters_pub.bind_type;
114: l_custom_rec.attribute_data_type := bis_pmv_parameters_pub.INTEGER_BIND;
115: x_custom_output.extend;
116: x_custom_output(1) := l_custom_rec;
117:

Line 114: l_custom_rec.attribute_data_type := bis_pmv_parameters_pub.INTEGER_BIND;

110:
111: l_custom_rec.attribute_name := ':BIS_ICX_SESSION_ID';
112: l_custom_rec.attribute_value := session_id_value;
113: l_custom_rec.attribute_type := bis_pmv_parameters_pub.bind_type;
114: l_custom_rec.attribute_data_type := bis_pmv_parameters_pub.INTEGER_BIND;
115: x_custom_output.extend;
116: x_custom_output(1) := l_custom_rec;
117:
118: l_custom_rec.attribute_name := ':BIS_MSG_CRT';

Line 120: l_custom_rec.attribute_type := bis_pmv_parameters_pub.bind_type;

116: x_custom_output(1) := l_custom_rec;
117:
118: l_custom_rec.attribute_name := ':BIS_MSG_CRT';
119: l_custom_rec.attribute_value := message;
120: l_custom_rec.attribute_type := bis_pmv_parameters_pub.bind_type;
121: l_custom_rec.attribute_data_type := bis_pmv_parameters_pub.varchar2_bind;
122: x_custom_output.extend;
123: x_custom_output(2) := l_custom_rec;
124:

Line 121: l_custom_rec.attribute_data_type := bis_pmv_parameters_pub.varchar2_bind;

117:
118: l_custom_rec.attribute_name := ':BIS_MSG_CRT';
119: l_custom_rec.attribute_value := message;
120: l_custom_rec.attribute_type := bis_pmv_parameters_pub.bind_type;
121: l_custom_rec.attribute_data_type := bis_pmv_parameters_pub.varchar2_bind;
122: x_custom_output.extend;
123: x_custom_output(2) := l_custom_rec;
124:
125: END GET_SQL ;