cancel
Showing results for 
Search instead for 
Did you mean: 

Call CRM UI from report ecc

Former Member
0 Kudos

Hi all,

i have to call crm ui component BT115QS_SLSQ from custom report ecc passing quotation number .

I run the standard report BSP_WD_APPL_STARTER with param :

BSP Application = BT115QS_SLSQ

In Client = '001'

but i have an error with : "impossible find file ?sap-accessibility=X' .

Can you help me ?

Thanks in advance .

Laura.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Call FM : CRM_1O_CALL_WEBUI.

This is not RFC so you need to create one RFC and call this in that FM.

Just PAss the order guid and action = B For Display or Action = C for change.

This will open the one order transaction in WEB UI

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

one other option is to create the CRM Webclient UI URL in your ABAP report and call afterwards:

CALL METHOD cl_gui_frontend_services=>execute
        EXPORTING
          document               = lv_url.

I use a table to create the lv_url with:

<SERVERNAME>

<URL_BEFORE_ID>

<ID>

<URL_AFTER_ID>

Kind regards

Manfred

Former Member
0 Kudos

Hi,

i used the fm CRM_1O_CALL_WEBUI and i resolved my problem .

Thanks.

Laura.