DBA Data[Home] [Help]

APPS.BIS_VG_PARSER dependencies on BIS_VG_TYPES

Line 193: ( p_view_table IN bis_vg_types.View_Text_Table_Type

189:
190: END replace_comments_with_blanks;
191: --
192: FUNCTION Get_Keyword_Position
193: ( p_view_table IN bis_vg_types.View_Text_Table_Type
194: , p_string_set IN bis_vg_types.View_Text_Table_Type
195: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
196: , x_return_status OUT VARCHAR2
197: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type

Line 194: , p_string_set IN bis_vg_types.View_Text_Table_Type

190: END replace_comments_with_blanks;
191: --
192: FUNCTION Get_Keyword_Position
193: ( p_view_table IN bis_vg_types.View_Text_Table_Type
194: , p_string_set IN bis_vg_types.View_Text_Table_Type
195: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
196: , x_return_status OUT VARCHAR2
197: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
198: )

Line 195: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type

191: --
192: FUNCTION Get_Keyword_Position
193: ( p_view_table IN bis_vg_types.View_Text_Table_Type
194: , p_string_set IN bis_vg_types.View_Text_Table_Type
195: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
196: , x_return_status OUT VARCHAR2
197: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
198: )
199: RETURN bis_vg_types.view_character_pointer_type

Line 199: RETURN bis_vg_types.view_character_pointer_type

195: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
196: , x_return_status OUT VARCHAR2
197: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
198: )
199: RETURN bis_vg_types.view_character_pointer_type
200: IS
201: l_pos NUMBER;
202: l_min_pos NUMBER;
203: total_rows NUMBER;

Line 206: l_pointer bis_vg_types.view_character_pointer_type := NULL;

202: l_min_pos NUMBER;
203: total_rows NUMBER;
204: l_string VARCHAR2(2000);
205: l_temp VARCHAR2(2000);
206: l_pointer bis_vg_types.view_character_pointer_type := NULL;
207: l_in_comment BOOLEAN := FALSE;
208: BEGIN
209: BIS_DEBUG_PUB.Add ('> Get_Keyword_Position ');
210: total_rows := p_view_table.COUNT;

Line 300: ( p_view_str IN bis_vg_types.View_Text_Table_Rec_Type

296:
297: END Get_Keyword_Position;
298:
299: FUNCTION get_string_token
300: ( p_view_str IN bis_vg_types.View_Text_Table_Rec_Type
301: , p_start IN NUMBER
302: , p_delimiter_string IN VARCHAR2
303: , x_end_pointer OUT NUMBER
304: , x_return_status OUT VARCHAR2

Line 380: ( p_view_table IN bis_vg_types.View_Text_Table_Type

376:
377: END get_string_token;
378:
379: FUNCTION get_token
380: ( p_view_table IN bis_vg_types.View_Text_Table_Type
381: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
382: , p_delimiter_string IN VARCHAR2
383: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
384: , x_return_status OUT VARCHAR2

Line 381: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type

377: END get_string_token;
378:
379: FUNCTION get_token
380: ( p_view_table IN bis_vg_types.View_Text_Table_Type
381: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
382: , p_delimiter_string IN VARCHAR2
383: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
384: , x_return_status OUT VARCHAR2
385: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type

Line 383: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type

379: FUNCTION get_token
380: ( p_view_table IN bis_vg_types.View_Text_Table_Type
381: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
382: , p_delimiter_string IN VARCHAR2
383: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
384: , x_return_status OUT VARCHAR2
385: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
386: )
387: RETURN VARCHAR2

Line 389: l_str_table bis_vg_types.view_text_table_type;

385: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
386: )
387: RETURN VARCHAR2
388: IS
389: l_str_table bis_vg_types.view_text_table_type;
390: l_length NUMBER;
391: l_temp VARCHAR2(2000);
392: l_char VARCHAR2(1);
393: l_pos NUMBER := 0;

Line 456: ( p_view_table IN bis_vg_types.View_Text_Table_Type

452: END get_token;
453:
454:
455: FUNCTION get_token_increment_pointer
456: ( p_view_table IN bis_vg_types.View_Text_Table_Type
457: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
458: , p_delimiter_string IN VARCHAR2
459: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
460: , x_return_status OUT VARCHAR2

Line 457: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type

453:
454:
455: FUNCTION get_token_increment_pointer
456: ( p_view_table IN bis_vg_types.View_Text_Table_Type
457: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
458: , p_delimiter_string IN VARCHAR2
459: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
460: , x_return_status OUT VARCHAR2
461: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type

Line 459: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type

455: FUNCTION get_token_increment_pointer
456: ( p_view_table IN bis_vg_types.View_Text_Table_Type
457: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
458: , p_delimiter_string IN VARCHAR2
459: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
460: , x_return_status OUT VARCHAR2
461: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
462: )
463: RETURN VARCHAR2

Line 527: ( p_view_table IN bis_vg_types.View_Text_Table_Type

523: -- single quote ending the expression. Takes care of nested strings in the
524: -- expression
525:
526: FUNCTION get_expression
527: ( p_view_table IN bis_vg_types.View_Text_Table_Type
528: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
529: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
530: , x_return_status OUT VARCHAR2
531: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type

Line 528: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type

524: -- expression
525:
526: FUNCTION get_expression
527: ( p_view_table IN bis_vg_types.View_Text_Table_Type
528: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
529: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
530: , x_return_status OUT VARCHAR2
531: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
532: )

Line 529: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type

525:
526: FUNCTION get_expression
527: ( p_view_table IN bis_vg_types.View_Text_Table_Type
528: , p_start_pointer IN bis_vg_types.View_Character_Pointer_Type
529: , x_end_pointer OUT bis_vg_types.View_Character_Pointer_Type
530: , x_return_status OUT VARCHAR2
531: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
532: )
533: RETURN VARCHAR2

Line 538: l_temp_pointer bis_vg_types.View_Character_Pointer_Type;

534: IS
535: l_done BOOLEAN := FALSE;
536: l_str VARCHAR2(2000);
537: l_delimiter VARCHAR2(1) := '''';
538: l_temp_pointer bis_vg_types.View_Character_Pointer_Type;
539: BEGIN
540: BIS_DEBUG_PUB.Add('> get_expression');
541: x_return_status := FND_API.G_RET_STS_SUCCESS;
542: x_end_pointer := p_start_pointer;

Line 612: ( p_View_Table IN BIS_VG_TYPES.View_Text_Table_Type

608: -- skips the type of tag
609: -- returns the tag
610: -- the out pointer is positioned beyond the separator
611: FUNCTION skip_tag
612: ( p_View_Table IN BIS_VG_TYPES.View_Text_Table_Type
613: , p_start_pointer IN BIS_VG_TYPES.view_character_pointer_type
614: , X_end_pointer OUT BIS_VG_TYPES.view_character_pointer_type
615: , x_return_status OUT VARCHAR2
616: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type

Line 613: , p_start_pointer IN BIS_VG_TYPES.view_character_pointer_type

609: -- returns the tag
610: -- the out pointer is positioned beyond the separator
611: FUNCTION skip_tag
612: ( p_View_Table IN BIS_VG_TYPES.View_Text_Table_Type
613: , p_start_pointer IN BIS_VG_TYPES.view_character_pointer_type
614: , X_end_pointer OUT BIS_VG_TYPES.view_character_pointer_type
615: , x_return_status OUT VARCHAR2
616: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
617: )

Line 614: , X_end_pointer OUT BIS_VG_TYPES.view_character_pointer_type

610: -- the out pointer is positioned beyond the separator
611: FUNCTION skip_tag
612: ( p_View_Table IN BIS_VG_TYPES.View_Text_Table_Type
613: , p_start_pointer IN BIS_VG_TYPES.view_character_pointer_type
614: , X_end_pointer OUT BIS_VG_TYPES.view_character_pointer_type
615: , x_return_status OUT VARCHAR2
616: , x_error_Tbl OUT BIS_VG_UTIL.Error_Tbl_Type
617: )
618: RETURN VARCHAR2