cancel
Showing results for 
Search instead for 
Did you mean: 

Call detailed view from 1 CRM system to another CRM system

Former Member
0 Kudos

Hi Experts,


I need your guidance regarding below requirement.


Requirement: Need to display detailed view of a Service request from ICM(Investigative Case Management system) in Incident Management (separate system) when clicked on the Service Request Number assigned to a case(No idea why the user is using 2 CRM systems).


Issue: As per my knowledge we can fetch the data from ICM system using RFC or web services and can pass to the corresponding views but the user wants to display the views of the IM system as there are some extensions (custom database fields and tables) in the IM system which are not available in the ICM system.


Please help me how to achieve above functionality.


Thanks in Advance,

Manasa veena P.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Manasa,

Create an RFC ICM system, which would return a DEEP LINK ( URL ). Here is an example .

Now you can use transaction launcher to launch the URL. This is explained here .

Thanks,

Pratheek

Former Member
0 Kudos

Hi Pratheek,

Thanks for your reply, I will follow as per the links provided.


Thank you,

Manasa Veena P.

Former Member
0 Kudos

Hi Manasa,

If you are trying to create a Deep Link for Incident, below code might help.

  lv_guid   = lo_btadminh->get_property_as_string( 'GUID' ).

   lv_host = request->get_header_field( '~SERVER_NAME' ).

   lv_port = request->get_header_field( '~SERVER_PORT' ).

   CALL FUNCTION 'CONVERSION_EXIT_ISOLA_OUTPUT'

     EXPORTING

       input  = sy-langu

     IMPORTING

       output = lv_langu.

   CONCATENATE 'http://' lv_host ':' lv_port

               '/sap/bc/bsp/sap/crm_ui_start/default.htm?sap-client=' sy-mandt

               '&sap-language=' lv_langu '&crm-object-type=CRM_SRQM_INCIDENT&crm-object-action=B&crm-object-value='

               INTO lv_url.

   CONCATENATE lv_url lv_guid INTO lv_url.



Thanks,

Pratheek

Answers (0)