Пока просто так вот сделал для скорости.
Код:
declare
core_result pls_integer;
vID varchar2(10) := :vID;
vTypeDoc varchar2(2) := :vDocId;
nTargetDb number(3,0);
begin
if supermag.core.getproc is null then
Core_Result := supermag.Core.StartSMApp();
end if;
Select smpl.dbaseid into nTargetDb From Supermag.SMPostLocMap smpl Where lower(smpl.title) = 'xml'
Supermag.SMPostObject(nTargetDb, vTypeDoc, vID, 0, null, 0, null);
Exception
When NO_DATA_FOUND Then null;
When Others Then
RAISE_APPLICATION_ERROR (-20000, 'Процедура PostDocument, документ: место хранения: ', True);
end;