The following piece of code can be used to find the tab in a given canvas.
===
declare
--call the serial capture api.
l_tab_name varchar2(100);
begin
--get the current tab
l_tab_name := GET_CANVAS_PROPERTY('CANVAS_NAME',topmost_tab_page);
if l_tab_name = 'TAB1' then
fnd_message.debug('TAB1');
elsif l_tab_name = 'TAB2' then
fnd_message.debug('TAB2');
else
fnd_message.debug('INVALID TAB');
end if;
exception
when others then
fnd_message.debug('Error in process:'||sqlerrm);
end;
Subscribe to:
Post Comments (Atom)
Integrations Lead - Lessons learnt
Integrations have been my passion for a while but like anything tech there is no credit given when things go right but always heaps of pres...
-
For most outbound interfaces bursting to content server and then picking the file from UCM is the best approach for large extracts. Default...
-
While developing Cloud integrations I could not find a single place for all details like InterfaceID or jobdefinitionname or job name etc. ...
-
Formatting dates is one of common operations needed in OIC. To format the date OIC has provided the following function OOTB. xp20:format...
No comments:
Post a Comment