Integration of ABAP workflow with portal

Hello Experts,
Need urgent help on UWL configuration.
We have integrated our ABAP workflow with portal through UWL.
We have a Ad Hoc link in the ABAP workflow which takes us to some transaction. For some reason we are not able to view that link when we see this workflow through portal.
1. Is is possible to show any Ad hoc links from ABAP workflow into portals?
2. If yes, what is the process for the same? We did not get any relevant documents.
Any inputs/sugessions are most welcome.
Ashutosh

Hi Ashutosh,
Can you please send me the documents how did you resolve this issue?
koti

Similar Messages

  • Integrating  ABAP workflow with UWL

    Hi Experts,
    I am trying to integrated ABAP tasks with Portal UWL. I have done all the configuration steps as mentioned on sap help sites.
    I am getting all item types from ECC. If I need to fetch only a specific task ID , for example TS90200025 from ECC to UWL, can we do that ?
    My goal is to give only a specific type of task to the end user. Currently he is getting all type of tasks.
    Thanks,
    Yomesh.

    Hi,
    You need to modify the standard UWL configuration file to do this. There's a blog that explains how to modify this file :[Universal Worklist - when you only need a single tab|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417500)ID0282335850DB11533758682118626478End?blog=/pub/wlg/4581].
    You can create a new ItemType or use the one corresponding to the task and then create a new view or modify the DefaultView and change the "supportedItemTypes" attribute.
    Here's an example. Define a new ItemType :
    <ItemType name="uwl.task.webflow.TS90200025" connector="WebFlowConnector" defaultView="DefaultView" defaultAction ...
      <ItemTypeCriteria externalType="TS90200025" connector="WebFlowConnector"/>
    </ItemType>
    Change DefaultView :
    <View name="DefaultView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.TS90200025" ...
      <DisplayAttributes>
    </View>
    Regards,
    Pierre

  • Integrating WebDynpro ABAP applications with UWL for workflow in Portal

    Dear
    We want to integrate an abap webdynpro application as task in the workflow with UWL.
    More information was found in /people/ginger.gatling/blog/2005/12/14/create-new-uis-for-existing-workflow-tasks-with-abap-web-dynpro-and-universal-worklist
    But no answer on the following issue:
    We use the transaction SWFVISU to prepare standard setting for our  task. This defines how a task is executed, once you select the task subject line on the worklist.
    Task                           TS91700001
    Visualization Type             ABAP Web Dynpro
    APPLICATION     z_wd_pas
    DYNPARAM     IV_WIID=${item.externalId}&period=${item.PERIOD}
    NAMESPACE     SAP
    SYSTEM_ALIAS     SAP_BSP_EREC
    But we want to start the abap webdynpro application with a dynamic parameter: period 07.2010 or 08.2010 or MM.YYYY. This parameter is a container element of the task, filled when the task is created. Also other parameters are available in the abap webdynpro application.
    Component       Z_WD_PAS
    Interface View  PAS
    Plug Name       DEFAULT
    Help Menu Text
    Help Link
                                                                                    Package         Z_PAS
    Language        EN
    URL             http://saperpd1.imec.be:8000/sap/bc/webdynpro/sap/z_wd_pas                                                                               
    with parameters
    IV_WIID     000000000000     SWW_WIID
    ORG_UNIT     00000000     ORGEH
    PERIOD                              SPMON
    PERNR     00000000     PERSNO                            
    Can we set the dynamic parameter list DYNPARAM from the task
    or should  we read the container in our abap webdynpro application described in http://wiki.sdn.sap.com/wiki/display/WDABAP/IntegratingWebDynproABAPapplicationswithUWLforworkflowin+Portal?
    More information: The task is a webservice
    Standard task        91700001   Z_PAS_CC
    Object Category      BOR Object Type
    Object Type          WEBSERVICE   WebFlow Service
    Method               PROCESSDIALOG                      Dialog Service
    with the following standard program code for this method:
    begin_method processdialog changing container.
    DATA: l_wi_objkey TYPE swotobjid-objkey.
    DATA: l_wiid TYPE swwwihead-wi_id.
                                                                                    CALL FUNCTION 'SWE_WI_GET_FROM_REQUESTER'
      IMPORTING
        requester_workitemid = l_wi_objkey.
    l_wiid = l_wi_objkey.
                                                                                    CALL FUNCTION 'SWF_WSC_START_LH_DIALOG'
      EXPORTING
        i_wiid                 = l_wiid
      EXCEPTIONS
        url_creation_failed    = 1
        browser_launch_failure = 2
        OTHERS                 = 3.
    IF sy-subrc <> 0.
      CASE sy-subrc.
        WHEN 1.
          exit_return '1000' space space space space.
        WHEN 2.
          exit_return '1001' space space space space.
        WHEN OTHERS.
          exit_return '1002' space space space space.
      ENDCASE.
    ENDIF.
    end_method.                                           
    Before calling the function SWF_WSC_START_LH_DIALOG the parameters for the abap webdynpro should be defined. Is this possible ?
    Thanks for your suggestions.
    Best regards
    Luc Marent

    I added below sources .
    >    <ItemType name="uwl.request.webflow.WS91000001" connector="WebFlowConnector" defaultView="WorkItemRequestsView" defaultAction="launchWebDynPro" executionMode="default">
    >      <ItemTypeCriteria systemId="UWLSETXXX" externalType="WS91000001" connector="WebFlowConnector" />
    >      <Actions>
    >        <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproABAPLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
    >          <Properties>
    >            <Property name="WebDynproApplication" value="ZWD_WF_002" />
    >            <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no" />
    >            <Property name="DynamicParameter" value="wi_id=${item.externalId}" />
    >            <Property name="openInNewWindow" value="yes" />
    >            <Property name="System" value="WDSETXXX" />
    >            <Property name="WebDynproNamespace" value="sap" />
    >            <Property name="display_order_priority" value="5" />
    >          </Properties>
    >          <Descriptions default="" />
    >        </Action>
    >      </Actions>
    >    </ItemType>
    >    <ItemType name="uwl.request.webflow.decision.WS91000001.UWLSETXXX" connector="WebFlowConnector" defaultView="WorkItemRequestsView " defaultAction="viewDetail" executionMode="default">
    >      <ItemTypeCriteria systemId="UWLSETXXX" externalType="WS91000001" connector="WebFlowConnector" />
    >    </ItemType>

  • Integration of ABAP webdynpro with JAVA portal

    Hi ,
    Could any one give me a simple procedure or step by step process to integrate the abap webdynpro with java portal . The RFC and stuffs ?
    Regards,
    Sakthi

    hi,
    please check out the link :
    http://help.sap.com/saphelp_nw04/helpdata/en/74/d5e7418192c717e10000000a155106/frameset.htm
    hope this will surely help you!!!
    thanks & regards,
    punit raval.

  • Integration of Oracle Workflow with OWB

    Hi,
    I am using OWB 10gR2. Can you please give me some guidelines on integrating Oracle workflow with OWB? I have to deploy OWB schedules to Oracle Workflow.
    Thanks,
    Praveen

    Keep in mind that these are really two different products.
    First make sure you have installed workflow (2.6.3 for Oracle10gR1, 2.6.4 for Oracle10gR2 for the TARGET database).
    Then create a connection to the workflow schema (default would be OWF_MGR). Then you can start creating your OWF packages using OWB and finally deploy your packages to the newly defined Workflow connection.
    On a sadder note, OWF really blows. But that's just me.

  • Any Way to test Integration of File Server with Portal??

    Hi all,
    I want to integrate File Server with my Portal so that my Application and Data remains seperated.
    I have integrated File Server but i am not able to find the Folder of file server in KM.
    i have create KM Navigation Iview When i specify any folder that is available in KM it works fine but i can not see the folder of file server...
    <b>Is there any test with which i can check that weather my File Server is Integrated properly with my Portal or not?? </b>
    Any help will be highly Appretiated ...
    its very Urgent!!
    Thanks in Advance
    Vinit

    Hi,
    I think already file system repository created in the portal. plz check it
    Goto >System Admin>System Config>KM>Content management>Repositories manager>File system Repository. or create a new repository..
    You can use File System Repository so that you can integrate ur file server with portal. Refer this link
    http://help.sap.com/saphelp_nw04/helpdata/en/e3/92322ab24e11d5993800508b6b8b11/frameset.htm
    Regards,
    Senthil K.

  • Using TASK TS40008005 for SRM invoice workflow with portal integration

    Hello Experts,
    we are using processed based workflow.
    within a new workflow scenario it is necessary that the approver should read the details first of the invoice. for this reason we want to avoid that the buttons for approval appears on the portal uwl. It should only appears "details".
    is it possible to send a task like 40008005 with parameters that will influence portal uwl in this way ?
    in data container of taks 40008005 there are parameters like Task Type valued with "DECIDE" and BOMODE valued with "APPROVAL".
    in the details view it should be possible to approve the workitem.
    Does anybody have an idea ?
    thanks for help.
    regards uwe

    Hi
    You have two options here:
    1. Ask your portal team to remove the Approve , Reject buttons from the UWL. It is possible via UWL Configurations in Portal
    2. Implement Check BADI for Invoices and make sure Approver puts a comment in the Invoice while approving or rejecting. In this caase system will not approve the invoice(there will be an error ) if the approver tries to approve the invoice from UWL. But in this case Approver will not be able to see the error details in UWL....UWL will give  ageneric message that document could not be approved or exception kind of message
    Regards
    Virender Singh

  • Connecting ABAP tool with Portal..

    Hi All,
    I have one requirement where i have to connect ABAP tool, that is developed in WebDynpro ABAP. Now i am connecting that with Url iview, that is working fine.
    But my problem arises when i have to pass userid and his pwd to that iview. That iview should display him his data. The data will be:
    His project allocation,worklist summary,worklist items, project plan etc.
    This is only for him and should be visible to him only.
    In summary there is one workbench for a user that he can update and modify.
    My question is how to connect this system with the portal.
    i have tried with the Generic par. how to proceed ???
    Do i have to pass the application param. in an iview??
    Thanks in advance
    Piyush
    will reward points too..
    Edited by: Piyush Bhurangi on Mar 29, 2008 3:36 PM

    Piyush,
    You should first create a new portan System object that you setup so it points to your ABAP server.
    See here for details: http://help.sap.com/saphelp_nw70/helpdata/en/ec/0fe43d19734b5ae10000000a11405a/frameset.htm
    Then when done with that you create a new iView based on the WebDynpro template. The wizzard for this type will ask you if you want this iView to be for WD ABAP or WD JAVA.
    See here for details: http://help.sap.com/saphelp_nw70/helpdata/en/1d/e4a34273f60b31e10000000a1550b0/frameset.htm
    Good Luck,
    Benjamin Houttuin

  • Integration of BW reports with portal

    Hi,
          Can any body tell me the step by step detail of how to integrate the BW reports with the Portal.
    Thanks in Advance.
    Regards,
    Ravi.

    Hi Ravi,
    Check this link
    Configuring EP for connecting to BW
    Publishing BW Workbooks into Portal
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/connectivity&
    Regards
    Arun

  • Integrating external JSP app with Portal

    Hi,
    I have an existing application which is completely developed in JSP. I also have a application which is currently build and running on the Portal. Now i want to integrate these two applications togethar so that when ever a user logs into the application running on the portal he should have a link through which he can access application buit on JSP.
    Any guidence/info would be grealty appreciated
    Thanks in Advance

    Try a LINK in yoyur portal app (smart no?)
    If your java app has a autentication method, do the link and then PORTAL SSO enabled it and the use a PORTAL AREA to IFRAME it. So the experience of the user is that he will be always in the same app. (you'll need to change the look and feel of one app)

  • Issues with portal integration of Web dynpro for ABAP application

    Hi,
    I have the following issues when i integrate a Web Dynpro for ABAP application with portal.
    1. the iview does not contain some images, such as table scroll button images, maximize and close buttons of popups etc.
    2. the iview loads properly, but there is an error in the status bar that says "Access denied"
    3. is it possible to do absolute navigation from
       role1->folder1->iview1 to role1->folder2->iview2?
       when i fire this navigation from the webdynpro
       application, the navigation does not happen in the
       portal.
    thanks,
    Kavitha

    >
    sridhar vadaga wrote:
    > Hi Experts,
    >
    >
    > CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
    >   EXPORTING
    >     text           = url
    >  IMPORTING
    >    BUFFER         = content .
    >
    >
    > Thanks & Regards
    > Sridhar
    I think you are overestimating the power of the SCM_STRING_TO_XSTRING function module.  By supplying a URL as the value of the input text, it isn't going to magically go read the content from the remote location and convert that to a binary string.  It is going to take whatever value you supply in th importing TEXT parameter convert that to binary.  In other words it is literally converting the string http://xxx/test.xls to binary.  You will need some other mechanism to read the content from the remote location into ABAP memory before you can process it.  You will need to use the CL_HTTP_CLIENT class or call some sort of web service to retrive the content.

  • Siebel integration with Portal

    Hi
    Can anybody tell me how the Siebel integration can be done with Portal.
    Pl send me steps.
    thx
    PRadeep

    Pradeep,
    You might want to check this weblog.
    Adapters to Integrate SAP XI and Siebel system
    James

  • Integration of Adobe Flex with SAP Web Dynpro ABAP

    I am new to adobe flex development. i am following a tutorial prepared by
    Mr. Karthikeyan Venkatesan (Infosys Technologies Limited) Integration of Adobe Flex with SAP Web Dynpro ABAP-for ABAPers
    He used flex 3 to develop the flex application. i am using flex 4 downloaded from adobe(At a time Build release I used low version only 3.5). I followed all the steps. At a time of Run the data was not came.
    How to fetch the data?
    Please Guide how to proceed.

    Hi Laxmikanth,
    For Adebo Flex help..
    Please go through Thomas tutorial..
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10989ef6-968c-2b10-50a9-eb34a5267163&overridelayout=true
    and ...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307b434f-ff32-2b10-e885-991247270480?quicklink=index&overridelayout=true
    Hope it might helps you
    Thanks,
    Kris.

  • Workflow with delay using ABAP OO

    Hi,
    I am new to workflow and trying to design a workflow where the workflow should be triggered after certain number of days.
    For ex: Suppose the sales order is created. Then, I need to fire parallel workflows for Administrator like -
    1) 10 days after sales order is created contact department X
    2) 15 days after sales order is created, create dispatch order.
    I thought of having a workflow with start event 'ABC' and trigger this event 'ABC' from function module which creates sales order. Then have fork for parallel flows mentioned above. But how can I introduce this delay? I checked wait step, but it waits for an event.
    Also, is there any document/weblog which describes creating workflows along with ABAP class(Not using BOR object). I checked this link
    /people/jocelyn.dart/blog/2006/06/28/getting-started-with-abap-oo-for-workflow-using-the-ifworkflow-interface,
    but it does not give corresponding workflow integration.
    Regards,
    Srini.

    Hi,
    sorry it took so long to answer.
    It is possible to evaluate the latest end date by expression. Therefore you chose expression in field: Reference date.
    To get your requested start, you habe to do some work in advance.
    Create two new container elements in your workflow for your sales order end date -10  and your sales order end date.
    Create a step that calls a Z-Task (you have to create this one!) where you evaluate your Sales order end date and your Sales order end date-10  and write that back into a container element (please check your binding). Alternative back in your workflow include a container operation as a step, where you calculate your latest start date (Sales order end date-10).
    Back in your original Step you can now maintain latest start and end date based on your new container elements.
    Hth
    Ute

  • How to use PPM 5 (standalone or integrated with portal)

    Hi,
    I would like to know which advantages and disadvantages are presented by using PPM 5.0 standalone or integrated with portal? all functionality are the same in both cases? which is the best option?
    Thanks a lot,
    CAMILO URIBE

    Hi,
    from a functionality point of view, standalone and portal usage of SAP Portfolio and Project Management 5.0 are the same (except functionality which is in general only available within a portal, e.g. KM documents, collaboration rooms, etc.).
    From a TCO perspective, for the standalone usage you'll only need the ABAP stack (except for ADS), i.e. if you don't anyway already have a portal in use in your company, this could lead to a lower TCO.
    Kind regards,
       Florian

Maybe you are looking for

  • BO XI 3.1 Enterprise SP4....Installation error messge

    Hello Team, I am getting the following Error message while trying to install the Service pack 4 for XI 3.1 . Following are the error message"The install was unable to connect to the CMS. Please ensure the existing CMS hostname and port are correct, a

  • TS1368 Create an itunes store account apple tv says isnt valid i dont have credit card i just want touse my appletv

    I create an itunes store account to conect my appletv But says isnt valid I dont have credit card I jus want to start using my appletv

  • ITunes Match on 2 Macs?

    I currently run 2 Mac's. MacBook Air which is my main computer and a Mac mini. I have been running match for a very long time without too much issue. I recently added the Mac mini to match to download all my music in the cloud to this computer. It di

  • Measuring Point

    Dear All, We are created Counter for air consumption in that mentioned counter over floew reading 99999999.We are not planning any maintenance paln againtst this counter. we start punching readings like, Our last counter reading before uploading into

  • How to embed a website into WEBI doucment

    I have seen some posts where website can be inserted in WEBi and a hyper link can be created a between webi data and website, passing the values. How can i do this? I have never used IFRAME, can anyone provide me the steps to open IFRAME and embed th