|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
采购订单form:POXPOEPO,在应用-Oracle Purchasing中;当前二次开发使用的应用:ERP_dev
查看ebs中调用的代码:
begin
/* Standards say that this should be a
* w-n-i-i trigger, but would cause it
* to fire everytime the user came back
* from another window (eg. POXPOEPO) to
* this one.
*/
/* Just call the open button field handler
* since the drilldown indicator performs
* the same logic.
*/
IF FND_FUNCTION.TEST('PO_POXPOVPO_OPEN') THEN
general.open('WHEN-BUTTON-PRESSED',
:HEADERS_FOLDER.PO_HEADER_ID,
:HEADERS_FOLDER.TYPE_LOOKUP_CODE,
:HEADERS_FOLDER.PO_RELEASE_ID,
'OPEN');
END IF;
exception
when others then
po_message_c.show;
raise form_trigger_failure;
end;
最后跟踪到这里:
POCORE_C.Open_Entry_Form ( 'PO',
'POXPOVPO',
x_po_header_id,
x_access_level_code,
x_document_num,
NULL);
所以,我在程序中直接使用了
POCORE_C.Open_Entry_Form ( 'PO','POXPOVPO', O_HEADERS_INQ_V.PO_HEADER_ID,'MODIFY','VIEW_ONLY',NULL);
编译能够通过,但在执行的时候提示:
1.FRM-40815:变量GLOBAL.PO_FORMID不存在.
2.此责任没有可用的功能。更改责任或与系统管理员联系。
我应该如何处理?谢谢!
|
|