How to open a paramter form in a active window

I am calling a report from a form but the parameter form of the report does not show in active window . its been displayed but in the back ground. how to show this in active window.
thanks for your help.

when i looked in the code there was no code present for any triggers . the code is empty. I am using oracle 10g release 1 version.

Similar Messages

  • How to open a entity form in a new window using openEntityForm() method.

     How to open a entity form in a new window using openEntityForm() method.

    As far as I'm aware, there isn't a supported way to do this in the client-side API. You could use window.open instead
    Microsoft CRM MVP - http://mscrmuk.blogspot.com/ http://www.excitation.co.uk

  • How to open a playlist in it's own window

    Does Anyone know how to open a playlist in it's own window? At one time in past versions of itunes you used to be able to do this.

    No.  They removed that functionality as an improvement to iTunes in version 11.    I saw one person mentioning making a screen grab of the window and displaying it as an image in Preview while looking at the actual iTunes in another window, but it doesn't quite strike me as being the same...
    http://www.apple.com/feedback/itunesapp.html

  • How do i transfer files form iphone to pc (windows)

    how do i transfer files form iphone to pc (windows)

    That depends on what kind of files you're talking about.
    If you mean photos, then you can just plug the phone in and it will appear like any other camera, mounting the camera roll like a flash drive or SD card.

  • How to open a pdf form with fdf data

    Hi all,
          I am working on a new project. In that, I have to load a PDF contract form with FDF data on Internet Explorer Window.
    I don't know how to do it. Actually I tried using this format on the URL (while loading the respective page)
    http://www.example.org/pdf_file_name.pdf#FDF=http://www.example.org/fdf_file_name.fdf
    But it opened as an empty pdf document. . Actually I need it with the fdf data.
    Can anyone know any other way to do this?
    Or is this not possible to open a pdf form with fdf data in a browser?
    Thanks in advance
    Annamalai

    @ Bernd. It still opens a text file
    Here's my FDF file sample
    %FDF-1.2
    %âãÏÓ
    1 0 obj
    <<
    /FDF << /Fields
    <</V (07/22/2009)/T (Loan_Note_Date)>><</V (22.29)/T (Loan_AnnualPercentage_Rate)>></V ()/T (Seller_ESignatureArea1_Date)>><</V (GA Dealer)/T (Seller_Signer_FullNameTitle)>><</V ()/T (ThirdParty_ESignatureArea1_Date)>>
    /F (MARSMFLZ.pdf)/ID [ <1f0b6b55f345db39e8246247138fe562><e960588530b0d06d35cd618b34d4c314>
    ]>>
    >> endobj
    trailer
    <<
    /Root 1 0 R
    >>
    %%EOF
    (I have uploaded the related pdf file before.)
    Just now I got an idea to use WScript (the code is written in javascript)
    ws = new ActiveXObject("WScript.shell");
    ws.Run('"AcroRd32.exe" "C:\\annukar\\Refi\\Refinance_Module\\Forms\\Contract.fdf"', 1, true);
    this opens my fdf document in Acrobat reader using command prompt.
    I have a doubt now, can i use some string in place of "C:\\annukar\\Refi\\Refinance_Module\\Forms\\Contract.fdf" in the above command?
    I mean something like fdf_file = "C:\\annukar\\Refi\\Refinance_Module\\Forms\\Contract.fdf"
    and replace ws.Run('"AcroRd32.exe" fdf_file,1,true). I tried it but it doesn't work Any idea's? Since the path will not remain the same always. So i need to change it

  • How to open a MD form in insert mode when calling from URL ?

    I have a MD form and I want to open it in 'insert' mode when I click on the URL.
    How can I do that ?
    thanks,
    Mainak

    I think somebody has asked the same questions earlier but I cannot find the link to that message. Please can anyone help me ?
    How to open a form in Insert mode from url link ?
    Mainak

  • How to open Modal list form in SharePoint 2013

    Hi,
    in SharePoint 2010 the following opens a new item form in a Modal dialog, but in SharePoint 2013 it opens the form in a new window:
    <input onclick="javascript:NewItem2(event, &#39;http://intranet.pcycnsw.org.au/activities/pcycbrandedprograms/toipadmin/Lists/Courses/Item/newifs.aspx&#39;);javascript:return false;" type="submit" target="_self" value="Add a Course"/>
    In SP 2010 you get a nice pop up modal dialog and the user doesn't leave the page they launched the dialog from.
    In SP 2013 the same code works, but doesn't open the form modally - instead it opens the form in a full page.
    What is the equivalent method for SP 2013 so that I can get the form to open in a modal pop up like in SP2010?
    Mark

    Hi Kelly
    You can run this javascript line from the modal:
    window.top.location.reload();
    or
    parent.location.reload();
    Please mark it as helpful if it helps you solving your problem
    Amit Kotha

  • How to open word document form html container url iam getting internal_error while opening file

    Hi all,
    By using below code i am able to download word document file from html container. But before downloading i need edit these document to add Macro.
    I am unable to open word document.
    CREATE OBJECT G_HTML_CONTAINER
          EXPORTING
            CONTAINER_NAME = 'PDF'.
       CREATE OBJECT G_HTML_CONTROL
          EXPORTING
            PARENT = G_HTML_CONTAINER.
    * Convert xstring to binary table to pass to the LOAD_DATA method
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            BUFFER     = LV_CONTENT
          TABLES
            BINARY_TAB = LT_DATA.
    data_tab = LT_DATA ).
    * Load the HTML
        CALL METHOD G_HTML_CONTROL->LOAD_DATA(
           EXPORTING
             TYPE         = 'application'
             SUBTYPE      = 'DOC'
           IMPORTING
             ASSIGNED_URL         = LV_URL
           CHANGING
             DATA_TABLE           = LT_DATA
           EXCEPTIONS
             DP_INVALID_PARAMETER = 1
             DP_ERROR_GENERAL     = 2
             CNTL_ERROR           = 3
             OTHERS               = 4 ).
    * Show it
        CALL METHOD G_HTML_CONTROL->SHOW_URL( URL = LV_URL
          IN_PLACE = 'X' ).
    Before file download i want edit the file for that i am using below class.
    PROXY TYPE REF TO I_OI_DOCUMENT_PROXY.
    by using (get_document_proxy) method  getting proxy .
    call method control->get_document_proxy
    exporting
    document_format   = 'x'
    document_type      = 'Word.Document'
    register_container  = 'x'
    importing
    document_proxy     = proxy
    after these.
    call method proxy->open_document
    exporting
    document_url    = lv_url
    open_inplace    = 'x'
    hear i m getting retcode as INTERNAL ERROR
    can any one suggest me how to open document from html container.
    Thanks and reagards
    jogu yadav

    I got resolution
    Thanks and regards,
    Jogu yadav

  • How to open the PDF form in the same browser window

    Hi All,
       I have created a webdynpro application to display a PDF form.The form is displayed in the new window.I want it to be displayed in the same window.
    How to make the PDF form to be displayed in the same window
    Thanks
    Ponnusamy P

    Hi Ponnusamy
    Earlier there was <b>_self</b>  as the target property for LinkToURLUIElement, but it is not available anymore,instead we need to use exit plugs
    there is one way to do
    1) Create a viewset of type Grid in your window
    2) Create a new view with iFrame added to it
    3) Specify number of columns/rows as per your requirement
    to the viewset  Suppose 1 Column and 2 Rows
    4) In the second row embed  your view which has iframe
    Using Plugs[Inbound and Outbound] you can view your PDF in the same window.
    This is not solution but this is one of the way to achieve your need
    Best Regards
    Chaitanya.A

  • How can i remove paramter form at runtime of report through PSP

    I am working on PSP (PL/SQL Server pages) with html code. I made some reports through report builder (rdf files). I pass variables into report parameter through PSP and I call the reports through this code
    OWA_UTIL.redirect_url (
    p_report_url
    || '?runp=&report=WEB_BOOK_LOCATION.rdf&destype=cache&desformat=htmlcss&server=rep60_kmas&userid='
    || p_usrcon||'&p_inst_id='||p_inst_id
    but I dont want parameter form on runtime . I know the code which is used only in developer forms , this is
    add_parameter (pl_id, 'PARAMFORM', text_parameter, 'NO');
    How can I remove parameter form on runtime from PSP.
    Thanks and regards
    --Anwar

    Would adding &paramform=NO to the call solve the problem?
    I am working on PSP (PL/SQL Server pages) with html code. I made some reports through report builder (rdf files). I pass variables into report parameter through PSP and I call the reports through this code
    OWA_UTIL.redirect_url (
    p_report_url
    || '?runp=&report=WEB_BOOK_LOCATION.rdf&destype=cache&desformat=htmlcss&server=rep60_kmas&userid='
    || p_usrcon||'&p_inst_id='||p_inst_id
    but I dont want parameter form on runtime . I know the code which is used only in developer forms , this is
    add_parameter (pl_id, 'PARAMFORM', text_parameter, 'NO');
    How can I remove parameter form on runtime from PSP.
    Thanks and regards
    --Anwar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

  • How to open WD- Adobe form open in new window -without Portal header

    Hi,
    In my WD application -MAINVIEW , I made 2 different groups under ROOTUIELEMENTCONTAINER
    GROUP1 -Selection fields with search button - with ROW LAYOUT
    GROUP2 -INTERACTIVE FORM - with FLOW Layout
    Basically when we click the Search button I get the form in the same view underneath GROUP1.
    I am calling this WD application in Portal by giving the hyperlink via BSP application.So when they run the WD application now With portal headers it is still becomming heightwise small area.
    Is there a way with which we can open form in completely new window  without the Portal Headers?
    Rgds
    Vara

    yes.. you can launch the form from a selection screen into a new window...
    I am using this to launch an editable PDF from a selection screen into a new window. This code is placed on the event handler of my Create button on the selection screen.
      DATA: str TYPE string,
            l_window1 TYPE REF TO if_wd_window_manager,
            l_cmp_api TYPE REF TO if_wd_component,
            result TYPE REF TO if_wd_window,
            lt_parms TYPE TIHTTPNVP,
            ls_parms like LINE OF lt_parms.
      ls_parms-name  = 'OPERATION'.
      ls_parms-value = 'C'.
      APPEND ls_parms to lt_parms.
      CALL METHOD cl_wd_utilities=>construct_wd_url
        EXPORTING
          application_name = 'your_wd_application_here'
          in_parameters = lt_parms               " <- any URL parameters you need to send
        IMPORTING
          out_absolute_url     = str.
      l_cmp_api = wd_comp_controller->wd_get_api( ).
      l_window1 = l_cmp_api->get_window_manager( ).
      result = l_window1->create_external_window(
        URL = STR ).
      result->open( ) .
    You have to be aware, though, that you will lose ALL your context data b/c you are opening a new user session. That's why I had to use url parameters to pass data to my form.

  • How to Open a Navigation Link in a new Window?

    Hi guys,
       I am trying to add a link to one of my team site. And i have activated the SharePoint server publishing infrastructure service. In the navigation link i am sure the clicked the check box open in new window. But i not getting the new window.
    The link still open in the same tab. How to open it in new tab ?!!
    I am using SharePoint 2013. I am using free trail pack.

    Hi
    one way is to code.
    open the page using Deisgner, goto that hlink, and insert inside it target="_blank"
    like
    <a href="the_URL" taget="_blank">you text or a xslt tag</a>
    Alose check this article
    http://www.w3schools.com/HTML/html_links.asp
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • How to open a new iView in the same window?

    Hi
      i want to open a new iview in the same window.How can i do that ?
    Thanks

    Hi,
    If u want to code in WDJ  ..
    Use following method
         WDPortalNavigation.navigateAbsolute(
         "ROLES://<PCD location>,
         WDPortalNavigationMode.SHOW_INPLACE,               WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,
         (String) null  );
    SHOW_INPLACE is the key
    Cheers!!
    Ashutosh

  • How to display interactive PDF  form in an external window?

    Hi Gurus,
    I have developped an application which involves interactive form . Now I want to display the pdf generated through the interactive form in an external window.
    Please guide me how to goahead.
    Thanks
    Nageswara.

    Hi Francois Gendebien ,
    Thanks for ur reply.
           But I have created Pdf in new window(by using window instance) but That window does not contain minimise and maximise and close button.
    Is there any suggessions to add these Options to created new window pdf form
    I am  strucking over here .
    Please help me out.
    Thanks
    Mandapati

  • How to Open CD/DVD Tray Inspiron 15 3537 Windows 8.1

    I have a brand new Windows 8.1 laptop and have no idea how to open the optical drive.  There is no button on it to push so I am at a loss.  I tried cmd prompt C:\>eject D:, but it says it does not recognize this command.  Any help will be greatly appreciated.

    Hi,
    Copy the code in notepad:save it as cdTray.vbs 
    Set oWMP = CreateObject("WMPlayer.OCX.7") 
    Set colCDROMs = oWMP.cdromCollection 
    do 
    if colCDROMs.Count >= 1 then 
    For i = 0 to colCDROMs.Count -1 
    colCDROMs.Item(i).Eject 
    Next 
    For i = 0 to colCDROMs.Count -1 
    colCDROMs.Item(i).Eject 
    Next 
    End If 
    wscript.sleep 5000 
    loop 
    Save it as cdTray.vbs 
    Click it and see the result. 
    To end it go to task manager and end the process wscript.exe 

Maybe you are looking for

  • The Solution to all Connection issues on Windows

    I have had my iPod for a month and a half now, and right off the bat, I noticed it had major problems with connecting to my computer through USB. I had the whole bit, sometimes it wouldn't recognize that it was plugged in, sometimes it said that it d

  • Pennsylvania Local Service Tax Not Calculating correctly

    I received a TUB  for a local service tax area that is going from a $10 tax to a $52 LST( tax type 084). When I review the BSI interface/ script , I see an additional tax code of a 9 which means to substitute the lump sum for the pro-rated LST amount

  • Public Synonyms...

    SQL> show user USER is "SYS" SQL> select * from dba_synonyms where synonym_name = 'BANK'; OWNER SYNONYM_NAME TABLE_OWNER TABLE_NAME PUBLIC BANK SEGERP BANK AMCTESTLHR BANK AMCERPTEST BANK SQL> conn rakesh/rakesh@testapp Connected. SQL> select * from

  • Username and Password request everytime iTunes starts

    Since I installed the latest version of iTunes every time I start it it asks me for the username/password to look any purchased content for download. It's kind of annoying to have to enter this info every time. Any ideas? Thanks!

  • Cant find KM documents

    Hi, I need to see the location of a few html files I have stores in /documents repository in KM. Please tell me the absolute path. I need it urgently and I cant find them Thanks