Webdynpro ABAP integration with Flex

Dear All ,
We are trying to integrate the Flex with ABAP WebDynpro. On the front end there are a set of check-boxes and whenever the user selects one or more check box , we need to make a note of this selection and save this to the database. Data in FlexBuilder is getting stored as ArrayCollection with two columns label and selected.
We need to integrate the same into SAP using WebDynpro ABAP. We have created a datasource to read the values. Even after giving the identical names in webDynpro the data is not getting populated.
If any of you has worked on a similar requirement earlier, please revert back .
Regards,
Amit Saini

Hi Banarji
Ple try this.
In Flex Part
        [Bindable] 
        [Embed(source=".jpg")]
       <mx:Image x="" y=" " width=" " id="loader1" autoLoad="true" source=".JPG" height=" "/>
Webdynpro Part
      Goto MIME - > add .swf file
I hope.It will work fine.
Regards
Laxmikanth Karunamoorthy

Similar Messages

  • Webdynpro abap integration with interactive adobe forms

    Hi  Experts,
    Am Facing problem printpreview  adobe in portal and it developed by webdynpro abap interactive form there am getting warning message
                Warning  : This form is not supported with current verision of Acrobat or Adobe reader
                                  Upgrade to Latest Verision For full Support.
    And it is display half letters in print preview.
    Regards,
    Sakthi.

    Dear Thomas,
    Here there are two server  one is developpment and quality.In development it is working fine and quality it is creating problem.If open in any system we are facing same problem.My dout is any server specific
    adobe verision is in portal.
    Thanks for Replying Good luck.
    Regards,
    Sakthivel.S

  • Call WebDynpro Abap application with trasaction

    Hello Experts,
    can I call my WebDynpro Abap application with a trasaction ?
    Regards
    sas

    hi,
    Go through this link
    [****************/Tutorials/WebDynproABAP/TransactionCode/Create.htm]
    Hope it will help you.
    Regards,
    Rohit

  • Webdynpro abap Faqs with anws!

    Hi experts!!
    Can any one please Provide some webdynpro abap faqs with answers.
    what are the good books/sites to Read/Refer.
    Thanks;
    -Upen.

    Check out this links related to abap web dynpro
    WDA in SAP Help
    [http://help.sap.com/saphelp_nw2004s/helpdata/en/7c/3545415ea6f523e10000000a155106/frameset.htm]
    Web Dynpro for ABAP in SDN
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/512040e1-0901-0010-769c-c238c6ca35d9 [original link is broken]
    Developing ABAP Applications Using Web Dynpro
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/d41b25d2216babe10000000a1553f6/frameset.htm
    Web Dynpro ABAP: Development in Detail
    http://help.sap.com/saphelp_nw2004s/helpdata/en/03/0048413e466e24e10000000a155106/frameset.htm
    WDA Sample programs & tutorials
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
    Web Dynpro ABAP Demonstration Videos
    /people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
    Web Dynpro ABAP Wiki's
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/wdabap/main&
    New to Webdynpro
    Regards,
    Manne

  • 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>

  • WebDynPro ABAP in adobe flex client

    Hi,
    I have some WebDynPro ABAP applications.
    I want to run them in adobe flex client as rendering medium.
    Is it possible.
    Best Regards
    Sid

    >
    Robert Gaertner wrote:
    > Good to know. That kinda sounds as if the webdynpro app itself will not have to be modified at all. Does this apply to CE webdynpro only or will be NW7.0 webdynpro apps supported the same way? How's the xBCML code generated? Will the CE be an requirement?
    That is correct - the apps do not have to be modified in any way.  Web Dynpro was designed years ago with this kind of future in mind.  The application rendering is separated in layers. One of those layers is the UI rendering itself.  It was strickly designed so that we could "plug-in" new rendering engines over time. 
    So what technically happens is nice bit of OO magic.  There are multiple implementations of each UI elment rendering class, but they all have the same interface.  That way the rendering engine can determine what kind of client it is building the UI for at runtime and substitute a different rendering engine by calling the correct subclass.  The first rendering engine that SAP supplied for Web Dynpro is what is called the Unified Renderer.  This is what produces the HTML and JavaScript UI that we run today in the browser.  In NW 7.0 EnhP1 ABAP and NW 7.1 CE EnhP1 we have actually rewritten this Unified Renderer completely - improving performance and adding in more AJAX functionality.  So this same plug-in rendering technology can be used to seemlessly overhaul the HTML renderer as well. 
    With this plug-in rendering technology we were able to build an XML based renderer.  This XML formatted output is what we call xBCML (Extensible Business Client Markup Language).  Actually if you compare the two rendering engines it is much easier to build an XML description of the UI then it is to build HTML/JavaScript. This nice, neutral XML description of the UI elements and their properties can then be sent to the client machine over HTTP/HTTPS and interpreted by different technologies.  We use this same XML format within a Flex, Silverlight, and .Net Client Renderer.  This is how SAP has built the Flex Client, Flash Islands, Silverlight Islands, and the NetWeaver Business Client Smart Client Renderer.
    On the ABAP side of the house for Web Dynpro we are bringing all of this new rendering technology to the 7.0 release via Enhancement Packages.  The dependency of the Business Suite to run on top of NetWeaver 7.0 is a pretty much a driving factor to make sure that new Web Dynpro technology for ABAP must make it into the 7.0 code line to be effective.
    The Java side is less clear.  We have really focused future enhancements to Java Web Dynpro within the 7.1 CE codeline.  Our current plans are to deliver this functionality to WD Java via CE  (some of it is already there in CE 7.1 and some will come later with CE 7.1 EnhP1). I would be a little suprised to see a backport effort to 7.0 Java given the focus on CE.  I realize that this leaves ESS/MSS in a strange location - so if there was customer demand around that application it might be the only thing to lead to a selective backport - but I certainly can't confirm that this will happen.

  • Replacing WebDynpro for Java with Flex 3 Apps

    Hi there, I am new in developing Flex 3 app.
    I know how to use web Services with Flex and so on. But the my question how can I replace WebDynpro Apps in SAP NetWeaver portal. What do I have to do?
    How can I integrate Flex App in Portal without using the Visual Composer?
    Best regards Jay

    Hi Jan,
    Below check the below weblog. It may help you.
    Using Flex in SAP Web applications (without Adobe Flash Islands)
    Raghu

  • WebDynpro Abap interaction with R/3

    we're planning to develop a webDynpro abap application, that should run in the internet/intranet, but we also want to integrate some sap-transactions (e.g. show sales documents) .
    What will be the best approach to realize such things, as we don't want to develop two frontends, one for sapgui (with standard transaction interaction) and one for the web.
    kind regards,oliver

    Hi Oliver,
    did you have a look at function module WDY_EXECUTE_IN_PLACE? This might help: http://help.sap.com/saphelp_nw04s/helpdata/en/43/2f1a63cb883575e10000000a11466f/frameset.htm
    As to the different search help possibilities, have a look at http://help.sap.com/saphelp_nw04s/helpdata/en/9b/c51c42735b5133e10000000a155106/frameset.htm with information on using the existing ABAP Dictionary search help functionality: http://help.sap.com/saphelp_nw04s/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/frameset.htm
    Regards,
    Heidi

  • Iview for Webdynpro ABAP application with TimedTrigger

    Hello,
    I created an IView  for a WebDynpro  ABAP  application. This application uses a UI element TimedTrigger. Without portal integration this TimedTrigger works fine. Inside an IView  this TimedTrigger element does not work anymore. Did anyone have a similar problem? Does anyone have a solution for this?
    Thanks and regards
    Marc

    hi,
    Go through this link
    [****************/Tutorials/WebDynproABAP/TransactionCode/Create.htm]
    Hope it will help you.
    Regards,
    Rohit

  • WebDynpro ABAP : Table with DropDownByKey does not have neat focus

    Hi Experts,
    I have a table, with one column of type dropdownbyKey, i need this so that i can display the DESCRIPTION rather than key. Issue is when i select a ROW in this table i see a special YELLOW BG COLOR on all columns except the column that has drop down by key   it is first thing enduser points out as issue ???
    Any help would attract points

    >
    ramkumarvalluru wrote:
    > Hi Eureka,
    >
    > I am new to webdynpro abap area.Please provide me step by step procedure for working on Dropdown by key,Check boxes  Radio buttons aand all UI elements.
    >
    > Please provide me.
    First of all, please don't attach new questions to existing threads. Second asking for step by step procedures on all UI elements is really outside the scope of a forum posting and asking for too much.  If you are that new to Web Dynpro ABAP, then start by reading the online documentation, the WDA WIKI section, and the WDA eLearnings.

  • OBI EE integration with flex

    How easy it would be to integrate OBI EE with Flex? Please let me know as soon as possible.
    Thanks in advance,

    I have the same question. I have developers creating applications in Flex and am trying to find out if a web application can be embedded in the OBIEE web interface - or can we only put links to the application in OBIEE? We are trying to find out if we can integrate our data entry programs with the BI portal so reporting and data entry are seamless. Probably not enough information for a detailed answer - but pointing me to any resource is appreciated.

  • Webdynpro application integration with Webservices

    Hi,
         I developed few webdynpro RFC model application like ATP check; outstanding etc .Now i want to make available this application on webservices for mobile integration .What is the methodology we should follow to reach this requirement?
    Any helpful answer will be highly appreciated.
    Thanks,
    Kundan

    >
    Selvaraj Gyanaraj wrote:
    > Hi shaan sharma ,

    >  The following are excellent websites containing PDF & PPT docs providing complete documentation of integrating WDA with EP:
    >
    > boldEight Options for Developing and Deploying Custom Portal Content
    > http://www.sappro.com/downloads/OptionComparison.pdf
    >
    > SAPu2019sUI Strategy -How do SAP Enterprise Portal, Web Dynpro,NetWeaverDeveloper Studio, PDK, and Visual,Composer Come Together?-
    > https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5303c390-0201-0010-e0b2-bfae018377f0
    >
    > SAP NetWeaver Portal Development Kits for .NET and Java
    > https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0b3dcd1-0977-2910-a597-a82c639b07c7
    >
    > cheers!
    > gyanaraj
    Perhaps you should have a closer look at the links you provided.  They don't have anything to do with WDA and Portal.  The first one is a dead link.  The second one is a 4 year old presentation on the Portal in general who's only mention of WDA is that it is "planned".  Your third link is the PDF or .NET and Java and once again has absolutely nothing to do with WDA.

  • WebDynpro ABAP integrated into the NetWeaver Portal - One for Mr Jung :)

    Hi
    <h2>Introduction</h2>
    I've developed a WebDynpro Component that uses 8 other components.
    The initial component has 1 view with a PhaseIndicator element with 8 phases.
    Selecting a phase pops up a window of the appropriate components used as usage components.
    Also, depending on certain config tables some windows might popup as soon as the application runs.
    I've created an application for the component with the PhaseIndicator.
    <h4>The application works perfectly !</h4>
    <h2>Problem</h2>
    <h4>When I integrate the application into the NetWeaver Portal it also works perfectly, in Dev that is.</h4>
    When moving the application and all it's components to QA it also works perfectly if run on it's own. But, when embedded in an iview in the Portal, strange things happen
    All the components that are usage components in the 1st component is displayed in the first window but not as pop ups.
    They are all listed below each other with plenty of white space between them, below each other in one huge scrollable window.
    <h2>My Investigations</h2>
    I've run a trace in Dev and QA and discovered that just before the Windows are displayed different code is run in the two systems. In Dev, the system executes a method of the class CL_WDR_SSR_LS but in QA the system executes the contructor class of a local method lcl_repository in the include LWDR_RUNTIME_REPOSITORYF12.
    <h2>Things I've tried - but did not work</h2>
    1) Removed my custom theme.
    2) Re-transported everything.
    3) Bounced the QA Portal
    4) Transported everything to Prod - It works perfectly in and out of the Prod system and Portal. BTW The ECC system of QA was refreshed from Prod 2 weeks ago.
    <h2>Finally - My Question</h2>
    What the bleep do I do now
    Thank you for reading.

    Hi Bala,
    thank you. This solved my problem.
    Could you explain what the caused the problem?
    Best regards,
    Olaf

  • Webdynpro for integrating with BI/BW

    Hi Experts
    I have a requirement that we need to display BI/BW reports on our microsoft sharepoint by  Webdynpro c where can i find examples on how to intergrate BI/BW reports in  and Webdynpro
    thanks
    points will awarded

    Hi,
    check this forum thread.
    Integrating BW Report in a Web Dynpro Application
    Also check below document regarding BI in WDA
    http://help.sap.com/saphelp_nw04s/helpdata/en/80/268841a79f1609e10000000a155106/frameset.htm
    Thanks
    Suman

  • Ofbiz Integration with Flex

    Hi
    I configure the Flex into ofbiz frame work, but It could not load the generated ShockWaveFlash (swf)
    file into my jsp page.
    After examing the source code, we found that the javascript partially
    loaded while missing some code in between generating output to the
    browser.
    the following error has occurred blocking the application.
    "DetectFlashVer is not defined
    if anyone configured the flex into ofbiz , please let me know how to fix
    the above issue.
    Thanks & Regards
    Lakshman

    I have the same question. I have developers creating applications in Flex and am trying to find out if a web application can be embedded in the OBIEE web interface - or can we only put links to the application in OBIEE? We are trying to find out if we can integrate our data entry programs with the BI portal so reporting and data entry are seamless. Probably not enough information for a detailed answer - but pointing me to any resource is appreciated.

Maybe you are looking for

  • Using IF function to look in two cells

    I am building a time sheet in Numbers where column D calculates the total time elapsed from the start time in column B to the end time in column C.  Column D contains a simple formula that subtracts B from C. . Cell D4 has a simple formula that subtr

  • When I send a group email why does the address bar not present the names alphabetically?

    I frequently send emails to groups.  Sometimes, for one reason or another, I want to delete one or more contacts from the list that appears in the address bar.  Why does the list not  appear in alphabetical order and is there any way that I can edit

  • Hierarchy not fully loaded

    I am loading the following data via IM using create Hierarchy method. The parent is Parent, Child is ID and Node is set to Name. ID, Name, Parent 1, A, 2,B,1 3,B,1 4,B,1 5,C,1 When this is loaded I miss row # 3 and 4. If I make the name unique like:

  • Photoshop CC crash at launching on Mac

    The software only appear for 3 sec and completely disappear Seeking for solution

  • Carrying motion effects from 30fps to 24fps project for online

    I'm working on this program where they transfered their dailies footage to HDCam, then they downconvert their dailies to DVCam letterbox with burns. There are some effects (split screen, crop) on the motion window and now it's time for the online and