Hyperlink to launch webdynpro abap from workflow

Hi Guys,
We have developed WORKFLOW where we need to send HYPERLINK along with WORKITEM to the AGENTS.
When ever the user(AGENT) clicks on the HYPERLINK we need to launch our WEBDYNPRO ABAP APPLIOCATION.
Please guide me to achieve this scenario.
Thanks&regards,
Harsha P

Hi
I think you have to check the below points  as Karri has suggested you some good points, and still if you face some issues then
1. Make sure you have made the workitem ID as URL parameters.
2. You should be able to access the URL parameters from Default method of the Window.
3. Make sure the URL that you are generating is correct , by looking at URL I felt like some thing is missing, like if you have observed the url of any webdynpro applicaiotn it may be some thing like
https://<domain>.50000/sap/bc/webdynpro/....   and this is purely my guess so make sure th URL you are populating is correct.
@Rick
Why do you keep saying "kemp" when the sign-off is "Karri"?
May be you should concentrate on suggesting some thing useful regarding thread issue, rather than how the others signature is or suggesting something how to call or address the other forum participants.  Its just a suggestion....
Don't mind its just a friendly advise.
Regards
Pavan

Similar Messages

  • Start both Webdynpro JAVA and WebDynpro ABAP from UWL

    Hi all:
    We are facing a situation. We need to start both JAVA dynpro and ABAP dynpro applicaiton from uwl. The JAVA dynpro application is the ESS absense request. And we also developed other workflow which use ABAP dynpro as work item . The problem is when we regist our ECC system to UWL, the system can only provide  WAS java information or WAS ABAP. So there are alway one type of our work items can't start correctlly. How can I modify the UWL configuration to meet our requirement?
    Anyone knows please notify, thank you very much!
    Wayne

    Hi,
    when you try to register backend system , you will choose system alias which was already existing in the portal which has WAS hostname and port.
    that is sufficient. Based on visualzation parameters , you can launch webdynpro abap/java tasks.
    check below article
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/wdjava%20archive/using%20web%20dynpro%20java%20and%20web%20dynpro%20abap%20applications%20in%20universal%20work%20list.pdf
    Regards,
    Koti Reddy

  • Launching webdynpro ABAP application from workflow task  (without UWL)

    Hello,
    How can i start webdynpro ABAP application from workflow without portal?
    Workflow and webdynpro ABAP are located on the same system.
    I assume it must be possible without transaction SWFVISU.
    thanks
    Regards
    Paul

    First you need to define a external service then you have to generate a task from this external service and then you need to include this task id in you workflow for a ACTIVITY step then this step can be either background or can be assigned to any agent
    you have to make use the below two Txn
    WF_HANDCUST and WF_EXTSRV

  • Login pop-up when launching Webdynpro ABAP application from SAP Inbox

    Hello All,
    We have configured our workflow to trigger WD ABAP application from SAP Inbox.
    However when we launch the workitem from SAP Inbox, we are getting a login pop-up screen in IE which prompts us to enter SAP password.
    Can you please help how can we avoid getting that login screen and how the WD ABAP application can single sign on from SAP GUI to IE for that user-id.
    Appreciate all your help.
    Regards,
    Samta.

    Hi Samta,
    You can configure User(RFC) and password for your webdynpro appl'n using SICF tcode.
    Path : /default_host/sap/bc/webdynpro/sap/(your wdp appln)
    Thanks
    Katrice

  • Attachment from webdynpro abap to workflow and vice versa

    I added  the attachment using the following code from my webdynpro abap application:
    DATA: lv_xstring TYPE xstring,
            att_id TYPE swr_att_id,
            ls_msg_ln TYPE TABLE OF swr_messag,
            ls_msg_str TYPE TABLE OF swr_mstruc,
            lv_objkey TYPE swr_att_doc_id,
             ls_header             TYPE swr_att_header.
      lv_xstring = lv_file.
      ls_header-file_type      = 'B'.
      ls_header-file_name      = 'Attachment'.
      ls_header-language       = sy-langu.
      CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'
        EXPORTING
          workitem_id          = lv_wi_id
          att_header           = ls_header
         att_bin              = lv_xstring
         do_commit            = 'X'
       IMPORTING
         return_code          = rc
         att_id               = att_id
    TABLES
       message_lines        = ls_msg_ln
       message_struct       = ls_msg_str .
    I see the attachments in the workitem but am unable to open the attachment.
    Another question is how can I show the same documents in another webdynpro application as attachments.
    Thanks,
    ST

    Hello,
    Try specifying file_extension = 'DOC' like in this thread (see Pavan's code about halfway down) :
    attachment to _Attach_Objects in user dicision step
    regards
    Rick Bakker
    Hanabi Technology

  • Calling Webdynpro application from Workflow Task

    Hi All,
    How do i call a custom Java WebDynPro Application from my task? How to pass the container values to the Webdynpro application.
    Can some one help me out?
    Thanks,
    Sarath

    Hi sarath,
    u see this thread, u get more information
    calling web dynpro from workflow - SWFVISU
    Calling Java code from Webdynpro Abap UI
    WebDynpro application that can work with SAP workflow work items?
    WebDynpro in Workflow
    Regards,
    vino

  • Webdynpro abap to workflow attachments

    Hi gurus,
    I have opened same meaasge in workflow forum also since I was not sure which will be more helpful.
    I added  the attachment to workflow using the following code from my webdynpro abap application:
    DATA: lv_xstring TYPE xstring,
            att_id TYPE swr_att_id,
            ls_msg_ln TYPE TABLE OF swr_messag,
            ls_msg_str TYPE TABLE OF swr_mstruc,
            lv_objkey TYPE swr_att_doc_id,
             ls_header             TYPE swr_att_header.
      lv_xstring = lv_file.
      ls_header-file_type      = 'B'.
      ls_header-file_name      = 'Attachment'.
      ls_header-language       = sy-langu.
      CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'
        EXPORTING
          workitem_id          = lv_wi_id
          att_header           = ls_header
         att_bin              = lv_xstring
         do_commit            = 'X'
       IMPORTING
         return_code          = rc
         att_id               = att_id
    TABLES
       message_lines        = ls_msg_ln
       message_struct       = ls_msg_str .
    I see the attachments in the workitem but am unable to open the attachment.
    Another question is how can I show the same documents in another webdynpro application as attachments.
    Thanks,
    ST

    used the standard webdynpro component WDK_POWL_WF_DETAIL and it has whatever was needed for attachments.
    Thanks,
    St

  • Webdynpro abap from outside

    Hi Folks,
    I have created a webdynpro abap and it works very well, when I call ist from the application server or inside the network.
    Now I want to call it from outside and I get error " can not display the page".
    The url from inside  is http://server.sap.com:8002/sap/bc/webdynpro/sap/wdt_master_detail?sap-language=DE
    and from outside http://server.sap.com:8002/sap/public/myssocntl?sap-client=001
    I have started all the services.
    Do I have still to configure something?
    Thanks for help.
    RG. Jimbob

    Hi.
    Im new to this Forum but i have the same Problem.
    I cannot open the ABAP WEBDYNPRO from Outside of my network.
    Configuration
    - Apache reverse proxy in DMZ (running well)
    - EP 7.01 in DMZ
    - ABAP SOLMAN in local Network
    I can access the Portal from Outside (http://service.myportal.de/irj) and use it. But if I open a iView with ABAP Webdyndpro i receive the Error "Page cannot be found".  Looks like that the iView try to open the internal URL from SOLMAN.
    What can I do to solve this problem.
    Thanks for any Idea.
    Regards
    Sven

  • How to call Webdynpro ABAP from Widget

    Hello guys,
    I want to add an icon to my widget with a link to a webdynpro ABAP application.
    However, the link is dependent on the system the user is accessing.
    So, I'd like to know if it's possible and what's the best method to do it.
    1. is it possible to call a Transcation or a RFC that calls a WebDynpro from the Widget?
    or
    2. is it possible to retrieve the Widget's default system parameters and assemble the Webdynpro URL dynamically?
    Any more ideas?
    Thank you and best regards,
    Henrique.

    up.
    Henrique.

  • Webdynpro abap from crm 2007

    Hi guys,
    I have one question, is it possible to generate a webdynpro abap page showing an alv from crm.
    Thanks!!
    Jon

    Hi,
    you can create WD reports and may be able to call them by using their URLs. Use the call_browser function to call the application.
    Regards
    Prasenjit

  • Webdynpro ABAP from enterprise portal

    Hi,
    We have an portal which can be accessed from internet through webdispatcher. Now we have developed certain Webdynpro ABAP based based application in (R3). The WD ABAP iviews are been created on portal. But we are not able to access this application when portal is opened from internet.
    The R3 is not available on internet. So how can we manage these thing so that Webdynpro ABAP can be accessed from internet?

    First of all let me clear few misconceptions created from above replies.
    1. You dont need public IP address for your R/3. All you need is R/3 should be accessible to webdispatcher.
    2. While opening ABAP Webdynpro/ITS iviews through portal, its not portal which is trying to communicate with backend. Its the browser who does this. You can see this through http trace at browser.
    It is due to 2 that your ABAP webdynpro are blocked. Bcoz no one will open R/3 to internet. Probably its blocked at firewall. Its a security issue.
    For ABAP WD,
    Browser > Webdispatcher > R/3.
    This is how it is designed.
    This is very common problem and you will find many discussions in sdn regarding this.
    You can either convince your security team that R/3(ICF) should not be blocked. For which they would never agree.
    Another option could be create a virtual host at R/3 and create webdynpro services(ICF services) in this virtual host and specify this virtual host in your webdispatcher.
    Another expensive option could be create a Webdynpro runtime engine(WEB AS ABAP) where webdynpro applications should run and they do an RFC call with R/3. I am sure security ppl would love this.
    It becomes Browser > Webdispatcher > WD runtime >(through RFC) R/3.
    Thanks,
    Nag

  • Call a Webdynpro ABAP from a workflow step

    Hi,
    I have to develop a workflow where we have a step for decision,  this decision have to open a webdynpro and retrieve info to workflow again.
    This is possible ?
    Thank you in advance.
    Miguel Silva

    Hi Miguel Silva,
    This is possible, the T code SWFVISU is used to integrate the Workflow decision task with Webdynpro.
    In Webdynpro you will receive the WorkitemID  as parameter. Then based on Workitem id you need to fetch the data.
    Use the below function modules to fetch the data in webdynpro based on workitem ID.
      1)  'SAP_WAPI_READ_CONTAINER'
      2)  'SAP_WAPI_GET_OBJECTS'
    Regards,
    Chandra,

  • Launch webdynpro component from a assignment block

    Hi,
    I am trying to launch a webdynpro component on click of a hyperlink from a assignment block.
    This works fine but, on click of hyper link i set a global attribute GV_url = 'X'.
    based on this, i call the webdynpro link in the .htm page of the view.
    <%
    if ZL_BT116IT__BSPWDCOMPONEN_IMPL=>gv_url is not initial.
    %>
    <a href="<%= ZL_BT116IT__BSPWDCOMPONEN_IMPL=>gv_url %>" target="_blank"> Sample URL to launch Web Dynpro Application</a>
    <%
    clear: ZL_BT116IT__BSPWDCOMPONEN_IMPL=>gv_url.
    endif.
    %>
    using this i get an additional hyperlink in the assignment block which on click gets the webdynpro page.
    This is an additionaluser click which is not required.
    How can we skip this , instead directly navigate on click of the attribute in the assignment block?

    have solved this using the script window.open
    <%
    if ZL_BT116IT__BSPWDCOMPONEN_IMPL=>gv_url is not initial.
    %>
    window.open("<%= ZL_BT116IT__BSPWDCOMPONEN_IMPL=>gv_url %>).focus();
    <%
    clear: ZL_BT116IT__BSPWDCOMPONEN_IMPL=>gv_url.
    endif.
    %>
    This helped me open the link directly but have a new problem with this.
    I am able to navigate to the link in a new window only the first time i click the hyperlink.
    once i close the new window and if i try to click the hyperlink again, i am not able to open this again.
    Have tried to debug but, everything is in place.
    Pointers on this scripting would be very helpful.
    Should i clear the link before exceuting again or do any additional scripting?.

  • Problems in triggering webdynpro application from Workflow using SWFVISU

    Hi everybody,
    We have created a webdynpro application which we are linking to our task using transaction SWFVISU .
    The method for the task is WEBSERVICE-DISPLAY.
    SWFVISU has been configured with parameters :
    application name : ZXXXXXXXXXXXXX
    and namespace  : sap.
    When i create a workitem in the UWL , and click on it, i get a dump with the following description : 'Exception condition "URL_CREATION_FAILURE" raised.'
    Now the strange thing is that if i use a standard SAP Webdynpro application , this works properly.
    Could anybody advise us on whether we are missing something ?
    Thanks,
    Joe

    Hi Raja,
    Thank you for your reply.
    I tried changing the method but it still throws the same error. i dont think this error is related to the Task method , since it can also be a dummy method (as is the case with the leave approval workflow 12300111) .
    Any other helpful suggestions ??
    Thanks,
    Joe

  • How to transport MIME object in webdynpro ABAP from DEV TO QA

    Hi,
    I have enhaced a std WDA component.In this enhacement I have added one image as an mime object along with some other changes , all the changes have been moved from dev to qa except this mime object.
    Infact I have deleted and reimported and re transported the mime object but still to failed this image from dev to qa.
    Please provide me ur valuable inputs asap as this is high priority issue.
    Pooja

    By going into mime repository and then right clicking ont eh mimeobject and selecting write transport entry form the context menu
    and creating a new request for the transport.
    However i guess you must have followed this approach only.
    by the way where is the mime stored. is it in the same standard comp folder.
    store it somewhere else in some non=-standard comp or some public folder and then try to transport.
    thanks
    sarbjeet singh

Maybe you are looking for

  • Nokia Lumia 2520 USB 3.0

    Looking for a functioning Micro USB 3.0 adapter for the 2520. I've tested different cable adapter. The most are working, but without the full USB 3.0 power. I get only 2.0 speed. Does anyone have a suggestion for me much light?

  • Batch management mm

    dear all, please give me all the spro and easy access settings for Batch management in MM. I am a beginner to this subject and from the library it is not clear. some one please help. Regards

  • Delete button added later.

    I have created a number of page pairs in my application using the "form on a table with report" method. Initially I asked for insert and update buttons but no delete buttons because I wanted to protect our test data. I now need to add the delete butt

  • Get Profile values in apex

    I Have integrated apex application in EBS(11.5.10.2) and it is working fine. I would like to display the item desctiption in user language based on the profile "fnd_profile.value('ICX_LANGUAGE')". i am calling above profile in before header process,

  • Hi! I've bought a new ipad air. How can i transfer music files via itunes from PC?

    Hi! i've bought a new ipad air. How can i transfer music files from my normal PC to ipad. I've already installed itunes in my PC also. Please help in this regard. Thank you