How to call a view without event handler onaction method.

Hi Experts,
I have develop a WD application. It has three views let view1, view2 and view3.
In view1 one button is there (onaction) which navigates to view2 through outbound plug  wd_This->Fire_Out_Screen1_Plg(   ). where Out_Screen1 is outbound plug of view1.
Now view2 appears , I want that after 10 seconds view2 automatically call view3, without action on view2.
I have written like  wd_This->Fire_OUT_SCREEN2_Plg(  ). where OUT_SCREEN2 is outbound plug of view2, which navigates to inbound plug of view3.
But its not working. Please suggest how to and where to write code to call a view without action .
for ur ref.

Hi Bhagat,
Yes, you can attach media objects into a view
Using IFRAME ui element and html mime object.
     Please refer the below link
To insert video in webdynpro - Web Dynpro ABAP - SCN Wiki
Using Flash Islands
          Here, you need to have your audio/video file as flash object
     Please refer the below tutorial on flash islands( a generic example )
     Adobe Flash Islands for Webdynpro ABAP
Hope this helps you.
Regards,
Rama

Similar Messages

  • How to Call Image Viewer from Form application

    Hi,
    how to call Image viewer using host command on oracle form 6i.
    i trying using host command on local/client application .. and it is working ...
    but when i try on server application (EBS - UNIX) it does not working ...
    thanks ..
    regards,
    safar

    Are you using Forms 6i in client/server mode or web deployed? I'm not sure what you mean by 'try on server application"
    Remember that when using a web deployed architecture, a host command will execute the command on the Forms application server, NOT on the client.
    To execute host commands on the client you would have to use WebUtil, but that's not available for Forms 6i. Perhaps there are PJC's out there that can do it for you, but I don't want to get in all those details without me knowing if it is relevant for you.

  • How to call a form without path

    how to call a form without path
    i.e.,
    we are calling a form as
    call_form('D:\casestudy\register');
    but without specifying path how to call a form?

    If you are new to Forms then please have a read through the Oracle Forms documentation that is on this web site - all is explained somewhere.
    This is a good start : http://download-uk.oracle.com/docs/cd/B25016_07//doc/dl/web/B14032_03/toc.htm

  • How to call or open without specifying the full path?

    hi all,
    how to call or open without specifying the full path?
    for example the following code of a when_button_pressed trigger.
    call_form('c:\test\student.fmx',hide,do_replace);
    open_form('c:\test\student.fmx');
    i want to specify only the form name.
    call_form('student.fmx');
    open_form('student.fmx');
    i m using developer 2000.
    regard
    Muhammad Nadeem
    [email protected]

    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\FORMS60_PATH=c:\test\;c:\orant\bin;...

  • How to create new view without interlinking with gantt chart or resource views

    ok clear
    one another question
       In msp how to create new view without interlinking with gantt chart or resource views

    Hi Shiv PMC--
    I splitted your question above in another thread in order not to have  a huge thread with many topics in it.
    That being said, I'm not sure to understand. A view is just a manner to display MS Project data with columns. A view can have a table with column (left part) associated with a Gantt chart. It can also just contain a table with no Gantt chart (like the task
    table) or a table with a timephased grid (resource and task usage).
    Please give us more information, maybe with a concrete example so we can help you.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Call a view without Model ?

    Hello All,
    My application is a Page with flow logic BSP.
    I need to view a jsp file from this BSP .
    So i created a MIME Object and imported the JSP as a MIME.
    I converted that Mime Object into a VIew.
    Now I want to viewthe output of  that View.
    But as per the concepts we can't execute the view directly.
    So  I created a Controller class and attached my View to it .
    Here I don't need a model as there is no need for the Bus.Logic.
    Now my Qn is : How to call the view from my Page ?
    Regards,
    Deepu.K

    Use this simple code in layout to call controller, calling controller will call your view.
    <%@ extension name="bsp" prefix="bsp" %>
    <bsp:call url="your_controller.do" />
    *Reward each useful answer
    Raja T

  • How to call another view controller's method from a view controller?

    Hi,
    Iam new to webdynpro . so pls clarify my doubt.
    How to call another view controller's method from a view controller in the same Web Dynpro Component?
    Thanks,
    Krishna

    Hi,
         The methods in a view are only accessible inside same view. you cannot call it outside the view or
         in any other view although its in same component.
         If you want to have a method in both views, then create the method in component controller and
         from there you can access the method any where in whole component.

  • How to call a view from Interface view

    Folks,
    How to call a view from interface view (onPlugDefault method) . I was trying to set context of controller but it is not working . What is the work around.
    Manish

    Hi Manish,
    An interface view is created for each window that you have, which in-turn has views embedded, one of which is default. If you want to pass data which you have in your interface view, do the following
    - Add your component controller in your interface view properties
    - In the onPlugDefault method(I assume this is where you have the data available through URL parameters),set the component controller context variables like
    wdThis.wdGetComContr.wdGetContext().currentContextElement().setName("John");
    -Access these context variables in your view as well by adding the component controller as the required controller
    Your default view will appear automatically when you call the application.
    Regards,
    LM

  • How to call two RFC in a single JAVA method.

    Dear all,
    I just want to know that how to call two RFC in a single java method which is defined in CRM implementation file. I'm using NWDS as the customization IDE & working on ISA 7.0.

    Hi Sunil,
    In the Backend Implementation class, in any method you can call multiple RFCs.
    It will be the same way as you do for the single RFC call.
    Following syntax is for your reference.
    Get the JCO connection
    JCoConnection  connection = getDefaultJCoConnection();
    JCO.Function func = connection.getJCoFunction("ZXXXXXXX");
    set the import parameters
    Execute it.
    connection.execute(func);
    get the data from export / table parameters
    Now call the second RFC
    func = connection.getJCoFunction("ZYYYYYYYYYY");
    set the import parameters
    Execute it.
    get the data from export / table parameters
    close the connection
    Hope this will help you.
    -Chandra.
    Edited by: Chandra Sekhar Seeli on Jan 13, 2011 2:04 PM

  • How to call a view from another

    Hello Experts,
            I have embedded a view (let us call this view 'A') in standard homepage. This works fine. Now on click of a button on this embedded view I want to launch another view that is also created by me, in the same component in which I had created view A. But I do not know how to launch this second view
         Could you please tell me how to call/launch a view from another on click of a button?
    Regards,
    Prafful

    Hello Prafful,
    I guess by launching you mean substituting one view by another. It can be achieved by declaring a navigational link in the runtime repository from one view to another. You have to create an event handler on the button and outbound plug in your view using the wizard. Then, on the event handler you call an outbound plug where you trigger a navigation using this navigational link and the view A will be replaced by view B.
    A code which needs to be done in outbound plug:
    me->view_manager->navigate(
    source_rep_view = me->rep_view
    outbound_plug   = 'NAVLINKNAME'
    data_collection = iv_data_collection ).
    Best Regards,
    Yevgen

  • Calling the on(press) event handler

    Preface
    Typically when you set an event handler function for buttons by code, like:
    mybutton.onPress = function(){
             trace("Hello!");
    you can access and call this event handler function by:
    mybutton.onPress();
    and it will execute the function and trace "Hello!".
    Question
    But when you set event handlers on the button itself, like:
    on(press){
             trace("Hello!");
    is that event function accessible from code? how? I know there would be a property that you can access it by, maybe we can "decompile" an SWF to check out finally which property it stores the event code in, or would any of you have any idea?
    mybutton.onPress();   // This does not work!

    I don't know why, but I think it is like this. When you call the onPress() function, it will find a function called onPress, which is the onPress = function(). If you are just curious to know the answer, it is fine. If you really want to solve the problem, make a function ( for example pressed), and use mybutton.pressed(). And at the on(press) code, simply add pressed();

  • How to Call Crystal Viewer in a Web Appl such as VS 2005

    Post Author: RHerbert
    CA Forum: .NET
    I am new to web development and I was wondering if anyone knows of a document somewhere that explains the steps o how to incorporate Crystal Viewer inside to app to call crystal reports.  I found on on doing this for a standalone application, but don't know if any exist for web.
    I would appreciate if anyone could let me know or maybe provide some advice.
    Thanks
    Herb

    Post Author: Argan
    CA Forum: .NET
    http://support.businessobjects.com/communityCS/FilesAndUpdates/vbnet_web_samples.exe.asp

  • How to call specific view of used component

    Hi All,
    I have the following problem:
    I have component 1 which have two views: 1A and 1B. They are included in one window. Default view is 1A.
      Navigation between view 1A and 1B it made with buttons and plugs ("go to 1A", "go to 1B").
    I have main component 2 which uses component 1 (used component). Component 2 has view 2A and 2B. I have button "Z" in view 2A which calls method of component 1 and navigates to view 2B (where used component 1 is embedded).
    First time I press button I navigate to view 1A, its correct. Then I navigate to view 1B (within used component 1).
    when I go back (in main component 2) and press button "Z" again, the used component 1 is open with view 1B, not 1A (which is default). That is, used component 1 remember which view the navigation stayed on.
    I nee to always see view 1A first when I navigate with button "Z" (open used component).
    How I can do that?

    hi ,
    u must be using component usage ..
    in ur component2 , place the view 1B of ur used component in separate window
    pls refer this thread as well :
    How to call a Particular View from a View of Current Component
    regards,
    amit

  • How to call a view in parent thread

    Hello Friends ,
    I have a scenario in my application where I have two DCs let DC A and DC B . A view in DC B is called on an event in DC A with the help of plug for which DC B has been added in the used Components of DC A . Now what I want is to call a view in DC A on the occurrence of an event in DC B and for the same I need to add DC A in the used components of DC B which is not possible as same is leading to the error of Cyclic Dependency. IS there any way through which this can be accomplished .
    Thanks in advance
    Smriti Garg

    I think it not possible reason is this is some thing like loop with out ending
    I request you to create one face less DC and make it as component usage (embed used component) in both DC's A & B
    now you face less component will act as data transfer component
    Thanks,
    Sreeni.

  • How to call a report without BI Publisher-authentication

    Could we call a report without BI Publisher-authentication ?
    Our infrastructure needs some reports that can be call with no authentication. Is there a configuration to do this?
    Any help will be really appreciated.
    Thanks

    Yes,
    Enable the guest account.
    Report will be allowed to be viewed from chosen guest folder without presenting credentials
    http://download.oracle.com/docs/cd/E12844_01/doc/bip.1013/e12188/T421739T475591.htm
    check the guest access.

Maybe you are looking for

  • Glass instead of matte

    I do a lot of printing and have managed, after much trial and error, to match my matte screen image on my Powerbook G4 with my Epson printer output. I was told by an Apple store person that while images on the glass screen of the iMac shows brighter

  • How do I delete (clear) a RW disk?

    How can I clear a rewritable CD or DVD?

  • Does Acrobat support KSP?

    I have a question about SHA-256 signature in AcrobatX. I tried SHA-256 electronic signature to a PDF file using Acrobat on Windows 7. In Acrobat XI, I could create electronic signature with SHA-256 by KSP. However, in Acrobat X, I received the follow

  • Poor signal/loss of channels

    Hello all. I recently lost BBC1 due to 'poor signal/lost connection' but all other channels (including BBC) were ok. The next day ITV1 channel lost due to same issue (but again, not all ITV channels). Checked aerial leads ok which they were. Just don

  • Migration Assistant from 10.4.10 to 10.5.4...

    Just bought a 24" imac running 10.5.4 & i need to transfer all my apps, prefs, settings, & files from my 17" intel imac. I know i just use the migration assistant but will it work from tiger to leopard properly? Is there anything i need to be aware o