DBA Data[Home] [Help]

APPS.AK_AMPARAM_REGISTRY_PVT dependencies on AK_ON_OBJECTS_PVT

Line 81: AK_ON_OBJECTS_PVT.REPLACE_SPECIAL_CHAR(l_ap_registry_rec.APPLICATIONMODULE_DEFN_NAME)||'" "'||AK_ON_OBJECTS_PVT.REPLACE_SPECIAL_CHAR(l_ap_registry_rec.param_name)||'" "'||AK_ON_OBJECTS_PVT.REPLACE_SPECIAL_CHAR(l_ap_registry_rec.param_source)||'"';

77: -- Write object into buffer
78: l_index := 1;
79:
80: l_databuffer_tbl(l_index) := 'BEGIN AMPARAM_REGISTRY "'||
81: AK_ON_OBJECTS_PVT.REPLACE_SPECIAL_CHAR(l_ap_registry_rec.APPLICATIONMODULE_DEFN_NAME)||'" "'||AK_ON_OBJECTS_PVT.REPLACE_SPECIAL_CHAR(l_ap_registry_rec.param_name)||'" "'||AK_ON_OBJECTS_PVT.REPLACE_SPECIAL_CHAR(l_ap_registry_rec.param_source)||'"';
82: l_index := l_index + 1;
83: l_databuffer_tbl(l_index) := ' APPLICATION_ID = ' ||
84: nvl(to_char(l_ap_registry_rec.application_id),'""');
85: l_index := l_index + 1;

Line 91: AK_ON_OBJECTS_PVT.WRITE_FILE (

87: l_index := l_index + 1;
88: l_databuffer_tbl(l_index) := ' ';
89:
90: -- - Write object data out to the specified file
91: AK_ON_OBJECTS_PVT.WRITE_FILE (
92: p_return_status => l_return_status,
93: p_buffer_tbl => l_databuffer_tbl,
94: p_write_mode => AK_ON_OBJECTS_PUB.G_APPEND
95: );

Line 112: AK_ON_OBJECTS_PVT.WRITE_FILE (

108: RAISE FND_API.G_EXC_ERROR;
109: end if;
110:
111: -- - Finish up writing object data out to the specified file
112: AK_ON_OBJECTS_PVT.WRITE_FILE (
113: p_return_status => l_return_status,
114: p_buffer_tbl => l_databuffer_tbl,
115: p_write_mode => AK_ON_OBJECTS_PUB.G_APPEND
116: );

Line 333: if ( not (AK_ON_OBJECTS_PVT.VALID_APPLICATION_ID(

329: l_return_status varchar2(1);
330: l_api_name CONSTANT varchar2(30) := 'VALIDATE_AP_REGISTRY';
331:
332: BEGIN
333: if ( not (AK_ON_OBJECTS_PVT.VALID_APPLICATION_ID(
334: p_api_version_number,
335: l_return_status,
336: p_application_id) ) ) then
337: l_error := TRUE;

Line 495: AK_ON_OBJECTS_PVT.SET_WHO (

491:
492: -- Create record if no validation error was found
493: /*
494: -- Set WHO columns
495: AK_ON_OBJECTS_PVT.SET_WHO (
496: p_return_status => l_return_status,
497: p_loader_timestamp => p_loader_timestamp,
498: p_created_by => l_created_by,
499: p_creation_date => l_creation_date,

Line 645: if ( NOT AK_ON_OBJECTS_PVT.VALID_APPLICATION_ID (

641: raise FND_API.G_EXC_ERROR;
642: end if;
643: close l_get_amparam_registry_csr;
644:
645: if ( NOT AK_ON_OBJECTS_PVT.VALID_APPLICATION_ID (
646: p_api_version_number => 1.0,
647: p_return_status => l_return_status,
648: p_application_id => p_application_id) ) then
649: FND_MESSAGE.SET_NAME('AK','AK_INVALID_COLUMN_VALUE');

Line 659: AK_ON_OBJECTS_PVT.SET_WHO (

655: l_amparam_reg_rec.application_id := p_application_id;
656:
657: -- Set WHO columns
658: /*
659: AK_ON_OBJECTS_PVT.SET_WHO (
660: p_return_status => l_return_status,
661: p_loader_timestamp => p_loader_timestamp,
662: p_created_by => l_created_by,
663: p_creation_date => l_creation_date,

Line 850: while (l_buffer is null and l_eof_flag = 'N' and p_index <= AK_ON_OBJECTS_PVT.G_UPL_TABLE_NUM) loop

846: else
847: l_line_num := p_line_num;
848: end if;
849:
850: while (l_buffer is null and l_eof_flag = 'N' and p_index <= AK_ON_OBJECTS_PVT.G_UPL_TABLE_NUM) loop
851: AK_ON_OBJECTS_PVT.READ_LINE (
852: p_return_status => l_return_status,
853: p_index => p_index,
854: p_buffer => l_buffer,

Line 851: AK_ON_OBJECTS_PVT.READ_LINE (

847: l_line_num := p_line_num;
848: end if;
849:
850: while (l_buffer is null and l_eof_flag = 'N' and p_index <= AK_ON_OBJECTS_PVT.G_UPL_TABLE_NUM) loop
851: AK_ON_OBJECTS_PVT.READ_LINE (
852: p_return_status => l_return_status,
853: p_index => p_index,
854: p_buffer => l_buffer,
855: p_lines_read => l_lines_read,

Line 889: AK_ON_OBJECTS_PVT.GET_TOKEN(

885:
886: while (l_eof_flag = 'N') and (l_buffer is not null)
887: and (l_more_apregistry) loop
888:
889: AK_ON_OBJECTS_PVT.GET_TOKEN(
890: p_return_status => l_return_status,
891: p_in_buf => l_buffer,
892: p_token => l_token
893: );

Line 932: -- (ak_on_objects_pvt.upload).

928: l_state := 2;
929: else
930: -- Found the beginning of a non-region object,
931: -- rebuild last line and pass it back to the caller
932: -- (ak_on_objects_pvt.upload).
933: p_buffer_out := 'BEGIN ' || l_token || ' ' || l_buffer;
934: l_more_apregistry := FALSE;
935: end if;
936: elsif (l_state = 2) then

Line 1108: while (l_buffer is null and l_eof_flag = 'N' and p_index <= AK_ON_OBJECTS_PVT.G_UPL_TABLE_NUM) loop

1104: l_buffer := LTRIM(l_buffer);
1105:
1106: -- Get the next non-blank, non-comment line if current line is
1107: -- fully parsed
1108: while (l_buffer is null and l_eof_flag = 'N' and p_index <= AK_ON_OBJECTS_PVT.G_UPL_TABLE_NUM) loop
1109: AK_ON_OBJECTS_PVT.READ_LINE (
1110: p_return_status => l_return_status,
1111: p_index => p_index,
1112: p_buffer => l_buffer,

Line 1109: AK_ON_OBJECTS_PVT.READ_LINE (

1105:
1106: -- Get the next non-blank, non-comment line if current line is
1107: -- fully parsed
1108: while (l_buffer is null and l_eof_flag = 'N' and p_index <= AK_ON_OBJECTS_PVT.G_UPL_TABLE_NUM) loop
1109: AK_ON_OBJECTS_PVT.READ_LINE (
1110: p_return_status => l_return_status,
1111: p_index => p_index,
1112: p_buffer => l_buffer,
1113: p_lines_read => l_lines_read,