Skip to Content
0
Former Member
May 12, 2010 at 07:15 AM

link problem in workflow

100 Views

Hello;

I have created web link for crm document.

My task includes this link in workflow.I am running this task ,Link opens.BUT firstly blank page open after document open.

how can I solve this problem

my code is like that;

CONCATENATE 'http://kgtest.caliknet.calik:8001/sap/crm_logon/default.htm?crm-object-type=BT111_OPPT&crm-object-action=C&crm-object-value=lv_guid into LV_maillinki.

CALL FUNCTION 'CALL_BROWSER'

EXPORTING

URL = LV_maillinki

  • WINDOW_NAME = ' '

  • NEW_WINDOW = ' '

  • BROWSER_TYPE =

  • CONTEXTSTRING =

EXCEPTIONS

FRONTEND_NOT_SUPPORTED = 1

FRONTEND_ERROR = 2

PROG_NOT_FOUND = 3

NO_BATCH = 4

UNSPECIFIED_ERROR = 5

OTHERS = 6

.

IF SY-SUBRC <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.