Getting my query_only forms to populate  on_load rather than F8

Hello there,
I have created a main menu with buttons which opens up each and every form.
call_form(getpath||'form_name');
When a form loads up, i still have to press F8 before records are populated into it.
Is there a code that I have not included somewhere?
Much appreciation in advance.
Ayo

You can put an "execute_query"
into a "When-New-Form-Instance" trigger in the loaded form to get it to execute the query to display when the form is loaded

Similar Messages

  • I have two options in my apple contacts. And I chose to not expose my hotmail contacts to limit the length of my list. Now whenever I add someone they get saved to my hotmail contact list, rather than iCloud. How do I change this?

    I have two options in my apple contacts. And I chose to not expose my hotmail contacts to limit the length of my list. Now whenever I add someone they get saved to my hotmail contact list, rather than iCloud. How do I change this?

    Settings>Mail,Contacts,Calendars>Default Account (in the Contacts section), set this to iCloud.

  • Where do I get the download from iTunes button art, rather than just stealing from someones site

    where do I get the download from iTunes button art, rather than just stealing from someones site

    Interesting. It looks to be available from the iTunes Affiliates resources for everyone:
    Affiliate Logo Guidelines and Art
    ... although it also says you ought to be an affiliate to actually use it.
    It might be worth checking in with Apple Legal to see what the requirements are for using it, first. Here's contacts:
    http://www.apple.com/legal/contacts.html

  • Submit form as an email rather than an attachment

    When someone submits a form with answers, I need the answers to be in the body of the text, rather than as an attachment. How do i get this to happen?
    Scott

    You can inject data into the string that gets sent to the email program, you don't have any control over formatting except for returns and that kind of thing.
    Here are a couple of ways of doing it:
    var strToAddress, strCCAddress, strSubject, strMessage
    strToAddress = txtToAddress.rawValue;
    strCCAddress = txtCCAddress.rawValue;
    strSubject = txtSubject.rawValue;
    strMessage = txtMessage.rawValue;
    event.target.submitForm({cURL:"mailto:"+ strToAddress + "?cc=" + strCCAddress + "&subject=" + strSubject + "&body=" + strMessage,cSubmitAs:"PDF",cCharset:"utf-8"});
    You can use variables in the following as well:
    var oDoc = event.target;
    oDoc.mailDoc({
    bUI: true,
    cTo: "[email protected]",
    cCC: "[email protected]",
    cSubject: "The Latest News",
    cMsg: "A.P., attached is my latest news story in PDF."

  • Any way to get folio to render buttons in vector rather than raster?

    Just curious if there is any way to get a folio to render a button in vector rather than raster format?  I know with multi-state objects there is a nice little setting to tell it to use vector... but nothing for buttons that I can find?!  I just don't like how some buttons end up looking on the Retina display on iPad...
    Thanks!
    Greg B

    Ha.. never thought about doing that.  Thanks!  Always the simplest solutions that seem to elude me... 
    Thanks again, Bob!

  • How to get a simple form to populate from workflow container?

    We are triggering a custom workflow from the creation of a specific type of financial document (BKPF) based on doc type.  I am able to make this occur after I implemented OSS Note 336305 onto our v4.7 Enterprise system. 
    I would like to make the first task a simple form that will display certain fields from the FI document and allow changing.  I created a structure containing the fields I want displayed on the form and can get the form to display.  However, I am unable to get the form populated with the information from the document.  I'm suspect it's a binding problem but don't know where to begin.  My container element contains both BKPF and the structure I created for the simple form.
    I must warn you that I am new to Workflow having only taken the two classes at SAP Education, so any explaination will need to be detailed and simple.
    Thanks for the help.
    Joanne Johnson

    Since I made this entry yesterday, I decided I needed a method that will populate the form structure prior to displaying the form.  I created a subtype ZBKPF of BKPF and added a method to populate structure.  I know the method works correctly because I debugged the code and saw that it executes and fills the structure fields.  However, it doesn't update the structure fields in the container correctly.  So obviously I have a binding problem.  I'm not sure how to get the container fields populated once I populate the structure.  Thoughts?

  • POSTING TO JSP FORMS GIVES NULL OBJECT RATHER THAN EMPTY STRING

    This post is for Dan Norris of DOE. He brought this up in a submitted tar, but it is addressed by the PDK community here.
    We arehaving problems using the standard HTTPServletRequest getParameter
    methodinside of the portal.
    The standard for this method is as follows:
    *If you usethis method to read from a text field without any text in it, you
    get an empty string. ( "" )
    *If you use it to read from a text field with text in it youwould get the
    corresponding text.
    *If you try to read from a field that doesn'texist then and only then would
    you get a Null object.
    On our portal server itis behaving differently inside of portlets.
    * If you use this method to readfrom a text field without any text in it, you
    get a Null Object
    * If you use itto read from a text field with text in it you would get the
    correspondingtext.
    * If you try to read from a field that doesn't exist you also would youget a
    Null object.
    Also, on the same server If you access a simple JSP directlywithout the it
    being a portlet, it behaves as defined by standard Javadocumentation.
    Test case:
    Create test.jsp with these contents:
    ========start test.jsp
    <%@pageimport = "oracle.portal.provider.v1.*,
    oracle.portal.provider.v1.http.*"%>
    Form to test submission of empty form field.<br>
    Text Field Value ="<%=request.getParameter("testField")%>"
    <form name="test" action="<%=
    HttpPortletRendererUtil.htmlFormActionLink(request,PortletRendererUtil.PAGE_LINK
    ) %>">
    <%=
    HttpPortletRendererUtil.htmlFormHiddenFields(request,PortletRendererUtil.PAGE_LI
    NK) %>
    <INPUT type="text" name="testField">
    <INPUT type="Submit"name="Submit">
    </form>
    ========end test.jsp
    =================startprovider.xml
    <provider class="oracle.portal.provider.v1.http.DefaultProvider"
    session="true">
    <portlet class="oracle.portal.provider.v1.http.DefaultPortlet" version="1" >
    <id>1</id>
    <name>TestPortlet</name>
    <title>Test</title>
    <description>Test</description>
    <timeout>100</timeout>
    <timeoutMsg>Test Portlet timed out.</timeoutMsg>
    <showEdit>false</showEdit>
    <showEditDefault>false</showEditDefault>
    <showPreview>false</showPreview>
    <showDetails>false</showDetails>
    <hasHelp>false</hasHelp>
    <hasAbout>false</hasAbout>
    <acceptContentTypes>
    <item>text/html</item>
    </acceptContentTypes>
    <portletRenderer class="oracle.portal.provider.v1.http.PageRenderer" >
    <appPath>/</appPath>
    <appRoot>/u01/app/oracle/product/ias1021/Apache/Apache/htdocs</appRoot>
    <renderContainer>false</renderContainer>
    <showPage>test.jsp</showPage>
    <pageParameterName>next_page</pageParameterName >
    </portletRenderer>
    </portlet>
    </provider>
    =================end provider.xml
    After you have theprovider added to the portal, login to the portal as
    portal30 and go toAdminister Tab->Display Portlet Repository and display the
    portlet.
    1.Enter "test" in the text field and submit.
    2. Returns Text Field Value ="test"
    3. Submit form leaving the text field empty.
    4. Returns Text FieldValue = "null"
    Submitting the form with the text field empty should returnvalue of "", and
    not "null".

    fyi in case anyone else ever wants to know:
    I found it... the details I was looking for were in the OC4J 9.0.2 Release Notes:
    Display of null values in JSP.
    In Oracle9iAS, a null value printed from a JSP page displays, by default, as
    the string "null." To display nothing instead, set the attribute jsp-print-null
    to false in the <web-app> element of
    global-web-app.xml or orion-web.xml.

  • Is it possible to receive answers in a completed form like a pdf rather than a database?

    This may be a rather odd question, but a client would need to receive answers in a format that can be saved as a record. For example if the user were to fill in the form on paper there would be a hard copy of the questions and their answers. Would this be possible with FormCentral? Could this be received as an attachment in a notification?

    I don't know if it is the best solution but you could filter the results to just that client's answers on the summary tab and then PDF that.

  • How do I get rid of icons on my safari home page?also how do I get bookmarks to go to bookmarks list rather than as icons?

    Since the new IOS uodate I can not get new bookmarks to go to my bookmarks list. Instead I get icons on my safari home page which I can not delete. Can anyone help me with this?

    On the Safari page tap the bookmarks icon. Tap favorites, slide the ones you want to delete to the left. When you bookmark a new site when it says location make sure you tap bookmarks and not favorites.

  • How to get GML data in LAT/LONG format rather than LONG/LAT format

    I want to generate GML from my spatial data but sdo_util.to_Gmlgeometry extracts data in LONG/LAT format where as I need it in LAT/LONG format.
    Is there an easy way to extract data in LAT/LONG format otehr than parsing the gml and then switching the Lat and long.

    Hi,
    I think it would have to do how you store your geometries, you might need a transformation before, notice the srsName from the resulting query:
    SELECT TO_CHAR(SDO_UTIL.TO_GMLGEOMETRY(MDSYS.SDO_GEOMETRY(2001, 8307, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1,1), MDSYS.SDO_ORDINATE_ARRAY(170.5,-43.5))))
    from dual
    -- Result:
    <gml:Point srsName="SDO:8307" xmlns:gml="http://www.opengis.net/gml"><gml:coordinates decimal="." cs="," ts=" ">170.5,-43.5 </gml:coordinates></gml:Point>
    So without a transformation I would say it would be hard to get:
    http://trac.osgeo.org/gdal/wiki/rfc20_srs_axes
    If I come across a simple solution (without some fancy manipulation of the ordinates on a custom function/package) I will post it.
    Cheers

  • Is there any way to get iMessage to display the absolute date rather than the relative date of a text message?

    Sometimes I need to document when a text message exchange occurred and taking a screen capture is a nice and efficient way of doing this.  However, since iOS7, iMessage has used relative dates for recent text messages and will simply say "Today 1:31 PM" when I would prefer it if it said, "Wed, Nov 12, 1:31 PM".  I can reasonably figure out whether November 11 was "Yesterday" if need be.

    No.

  • How do I get iBook open at the bookshelf rather than one of my books?

    How do I get iBook to open to the bookshelf rather than a book? I hit the iBook icon, it opens at a page in a book.  How do I get to the bookshelf?

    If it is opening to a book, then when you are exiting the app you are not going back to the bookshelf first. Before you click the Home button to exit the app, tap the Library button in the upper left corner of the display. That will take you back to the bookshelf so the next time you open the app it will open to the bookshelf instead of the last book you were reading.
    Hope that helps!

  • I purchased an episode but it is only showing 30 seconds rather than the full 42 minutes. How do I get it to play the full episode as I can't seem to download it again?

    I downloaded a tv epsiode, but it doesn't show the entire 42 minutes. All I get is a clip of 30 seconds, rather than the entire 42 minute episode. I have tried to download the episode again, but it wont allow me to and I have also tried to download the series, but if I do that it wont deliver the epsiode that I already have suposedly downloaded. Anyone have any idea how to help?
    Thanks,

    Hi JAM147,
    Welcome to the Support Communities!
    The following information should help you with this:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    Cheers,
    Judy

  • How can I convert an iphoto to a file rather than a picture?

    I have several friends who would rather get my email with a file attached rather than photos?  How can I do this with Iphoto?

    Try this:  in Mail's Composing preference pane set the format of the emails to plain text.  Then once the photos are in the email Control-click on them and select "Show as icon" in the contextual menu.
    That might let them see the photos as icons/attachments rather the view the photos.  A lot depends on how they have their email client setup. 
    The sure fire way is to zip/compress the photos and adding the zipped file to the email.
    The recipient will have to unzip the file at the other end to get the image files.
    OT

  • Why does browser download a file rather than displaying it?

    I am using a Nexus 7 device. I have a website locally on the device together with all of the data files. When I use the browser to select a file it does not need to download it. I want it to call up a list of the programs that can display the file so that I can select which app to use. When I leave that app then I expect it to go back to the browser and the HTML web page I was previou. sly viewing. It has done that at various times but has stopped now. How do I get it to resume displaying the files rather than downloading them onto the same device?

    I am using a Nexus 7 device. I have a website locally on the device together with all of the data files. When I use the browser to select a file it does not need to download it. I want it to call up a list of the programs that can display the file so that I can select which app to use. When I leave that app then I expect it to go back to the browser and the HTML web page I was previou. sly viewing. It has done that at various times but has stopped now. How do I get it to resume displaying the files rather than downloading them onto the same device?

Maybe you are looking for