As the steps are a little bit tricky, I use the working UI component SMCOV and SMCCMBO to illustrate.
After Advanced button is clicked:

如何启用SAP CRM附件UI上的advanced按钮

Step1: The navigation link of SMCCMBO is triggered, navigation link 2ADDDOC:

如何启用SAP CRM附件UI上的advanced按钮

So define the similar navigation link with EXACTLY the NAME 2ADDDOC in your own wrapper component like SMCCMBO:

如何启用SAP CRM附件UI上的advanced按钮

Since the navigation target is SMCCMBO/MainWindow, its inbound plug 2ADDDOC will be called:

如何启用SAP CRM附件UI上的advanced按钮
如何启用SAP CRM附件UI上的advanced按钮

Step2: You should implement the inbound plug like below:

如何启用SAP CRM附件UI上的advanced按钮

the outbound plug should be implemented like below, use exactly the name TODOC_ADDDOC.

如何启用SAP CRM附件UI上的advanced按钮
如何启用SAP CRM附件UI上的advanced按钮

Then define the navigation link TODOC_ADDDOC in your UI component which holds overview page, in my case, SMCOV.

Note: DO NOT define it in your wrapper component ( SMCCMBO) !!

如何启用SAP CRM附件UI上的advanced按钮

Step3: Now inbound plug ADDDOC of SMCCMBO/DetailWindow will be called:

如何启用SAP CRM附件UI上的advanced按钮
如何启用SAP CRM附件UI上的advanced按钮
如何启用SAP CRM附件UI上的advanced按钮

So you should implement the inbound plug IP_ADDDOC as below:

如何启用SAP CRM附件UI上的advanced按钮

Also implement the outbound plug OP_TO_ADDDOC in detail window as below, use exactly the name TO_ADDDOC in line 3.

如何启用SAP CRM附件UI上的advanced按钮
如何启用SAP CRM附件UI上的advanced按钮

This means you should define the navigation link TO_ADDDOC in wrapper component SMCCMBO.

如何启用SAP CRM附件UI上的advanced按钮

Now the navigation target is AttachmentProperty.MainWindow, inbound plug 2ADDDOC.

如何启用SAP CRM附件UI上的advanced按钮
如何启用SAP CRM附件UI上的advanced按钮

Step4: Actually our development finished till step3. From this step, the execution is within Content management’s code.

如何启用SAP CRM附件UI上的advanced按钮

Here we can observe the navigation link NL_2ADDDOC finally points to advanced page.

如何启用SAP CRM附件UI上的advanced按钮

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
如何启用SAP CRM附件UI上的advanced按钮

相关文章:

  • 2021-06-13
  • 2022-01-10
  • 2021-07-19
  • 2021-07-02
  • 2022-12-23
  • 2021-07-10
  • 2022-12-23
猜你喜欢
  • 2021-07-02
  • 2021-06-16
  • 2021-05-25
  • 2021-11-26
  • 2021-10-14
  • 2021-08-06
  • 2022-01-01
相关资源
相似解决方案