Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我是否可以LPD_CUST从 SAP GUI(通过事务代码)打开一个 Fiori 应用程序(通过事务代码)。到目前为止,我认为我可以通过构建一个打开 Web 浏览器来访问应用程序 URL 的程序来以某种方式实现这一目标。有没有更好的方法来实现这个目标?
LPD_CUST
是的,这是可能的,但正如你所说,它几乎不需要编码。
步骤 1. 创建一个类和方法。在方法中有一个简单的代码如下。
DATA: lv_url type string. ld_url = '<Direct URL to your Fiori App>'. CALL FUNCTION 'CALL_BROWSER' EXPORTING url = lv_url.
步骤 2. SE93 -> 创建事务 -> 将对象作为“类的方法”开始。提到上面的类和方法。