cancel
Showing results for 
Search instead for 
Did you mean: 

How to read external URL in CRM System.

Former Member
0 Kudos

Hi Experts,

I need to read external URL parameters in CRM system.

E.g. crm_ui_start/default.htm?crm-object-type=CRM_SRQM_INCIDENT&crm-object-action=D&crm-logical-link=Z_ENQ&crm-ext-integration=true

Based on Parameter crm-logical-link value i want to guide users to different role profiles.

Is their any class method which can help me in this.

Many Regards,

Vikash

Accepted Solutions (1)

Accepted Solutions (1)

BGarcia
Active Contributor
0 Kudos

Hi Vikash,

You can use BSP runtime class for that. Just try something like this:

DATA lr_runtime TYPE REF TO if_bsp_runtime.

DATA lt_params  TYPE tihttpnvp.   

lr_runtime = cl_bsp_runtime=>get_runtime_instance( ).  

lr_runtime->server->request->get_form_fields( CHANGING fields = lt_params ).

Kind regards,

Garcia

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks Bruno Garcia. It gave me an idea for solution.