有没有办法使用 PeopleCode“转移”功能转移(并填写字段)到组件使用 INSTALLATION 作为搜索记录的页面?
我们在 PT 8.53 上使用 FSCM 9.1。
我要转移到的页面是 AP_VOUCHER_INQUIRY 菜单路径是:应付帐款 -> 查看应付帐款信息 -> 凭证 -> 凭证
我有需要传递给它的business_unit 和voucher_id。在页面的 Activate PeopleCode 内部,我看到了这个:
/* If Business Unit and Voucher ID are being passed to this page, this code picks it out and populates the From/To fields and executes the search statement. This code allows another page to use the TRANSFER function passing "some_record.BUSINESS_UNIT" and "some_record.VOUCHER_ID" as keys while opening Voucher Inquiry in a new browser. */
&bu = Unencode(%Request.GetParameter("BUSINESS_UNIT"));
&vchr_id = Unencode(%Request.GetParameter("VOUCHER_ID"));
&vchr_style_inq = Unencode(%Request.GetParameter("VOUCHER_STYLE_INQ"));
&vndr_setid = Unencode(%Request.GetParameter("VENDOR_SETID"));