Place  value from Forms building in the collection Render Settings.

Hello,
I build a XML form with Forms builder. In one field you can select a <b>project-date</b>. Is it possible to export the  the value of this field in a LayoutSet? 
I used the standay LayoutSet <b>ConsumerExplorer</b> and would like to place the field <b>project-date</b> in this LayoutSet.
I think you have to do this in the <i>Collection Renderer Settings -> Collection List Renderer Settings -> Displayed Properties.</i>
The extra code that a placed in the Displayed Properties is: rnd:app_date(contentLink.)But still it is not working.
Can someone help me with this or send me a link.
Greetings,
GM
Message was edited by: Gema

Yes thanks Francois, I know perfectly well how dispatchCustomEvent() and WHEN-CUSTOM-ITEM-EVENT works, but please read the full context to understand what it is, that I actually ask about. Maybe a modification of your code (which is not possible in reality) can better demonstrate what I try to do.
  private void dispatchErrors(String message)
    log(message);
    try{
      CustomEvent ce = new CustomEvent(m_handler, THE_TAG_CODE);
      m_handler.setProperty(THE_TAG_CODE,message);
      returnValue = dispatchCustomEvent(ce);
      System.out.println(returnValue);
      catch (Exception e)
        e.printStackTrace();
  }In Forms
DECLARE
   eventName varchar2(30) := :system.custom_item_event;
   eventValues ParamList;
   eventValueType number;
   tempString varchar2(100);
   returnValue varchar2(200);  
BEGIN
   IF (eventName='THE_TAG_CODE') THEN
      eventValues := get_parameter_list(:system.custom_item_event_parameters);
      get_parameter_attr(eventValues,'THE_TAG_CODE',eventValueType, tempString);
      select 'Returned from Forms ' || tempString
          into returnValue from dual;
      return_value_to_java(returnValue);
   END IF;
END;Result: the Java console prints "Returned from Forms" + the parameter sent from Java originally.
Does that make it more clear?

Similar Messages

  • How to place values from Forms into email?

    Andreas sugested the following statement to navigate from forms to emal:
    HOST('cmd /c c:\Windows\System32\rundll32.exe url.dll,FileProtocolHandler "mailto:[email protected]?cc=[email protected]&bcc=[email protected]&subject=mysubject&body=mybody"');
    It works just fine placing [email protected] to to:, [email protected] to cc, [email protected] to bcc, mysubject to subject ,and
    mybody to the text area.
    Question:
    How to rearrange the string if I need to place values from the fileds in the form:
    :control.to (can consist of [email protected];[email protected];......;[email protected]) value in the filed should go to to: in the email;
    :control.cc ((can consist of [email protected];[email protected];......;[email protected]) value in the filed should go to cc in the email;
    :control.bcc ((can consist of [email protected];[email protected];......;[email protected]) value in the filed should go to bcc in the email;
    :control.subject:='xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' value in the filed should go to subject in the email;
    :control.text:='vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv' value in the filed should go to the text area in the email;
    Any suggestions?
    Thanks. Lev.

    Have you tried:
    HOST('cmd /c c:\Windows\System32\rundll32.exe url.dll,FileProtocolHandler "mailto:'||:control.to
    ||'?cc='||:control.cc||'&bcc='||:control.bcc||'&subject='||:control.subject||'&body='||:control.text||'"');Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Unable to run the form from Form Builder 10g

    HI,
    I am having a problem with running a form with form builder 10g.
    I have create a form with some text boxes to display values in a table.
    When i compile and run the form it does not run The error shown is
    HTTP 403(Forbidden) You are not authorised to view this page.
    The Link used for the above is:
    http://127.0.0.1:1740/sWuCqhMKUT1btA1N5cXLCRshkJzmgKRIlCEUFd9RL520LVq0
    The port number 1740 changes everytime. I dont know why.
    I have started the OC4J instance before starting the Form Builder.
    I have made the changes to the runtime preferences in the form builder.
    http://localhost:8889/forms/frmservlet
    But it doesn't work when i try to run the form from Form Builder.
    ie Program-->Run Form
    The form works properly when using the 'Run a form on the Web Utility' provided with Developer Suite.
    Can anyone please suggest a solution. I have searched the forum but didnot find a solution.
    Thanks
    V.S.

    One of our DBAs has installed the software.
    It was a default installation, I believe, as no configuration was done during the installation except for increasing the virtual memory size.
    Post installation we changed the tnsnames.ora file and the sqlnet.ora file.
    Do i need to configure something ?
    Thanks,
    V.S.

  • Not able to connect to database from Form builder

    Hi ,
    I installed oracle 10 g in my machine and is accessable from SQLPLUS & TOAD.
    In the same drive i installed Form builder, i am getting the below error when i tried to connect DB from form builder.
    ORA- 12154 : TNS : could not resolve service name.
    Kindly do the needfull.

    i am getting the below error when i tried to connect DB from form builder.
    ORA- 12154 : TNS : could not resolve service name.Please post the exact syntax you use to connect.

  • Run form from form builder

    Hi,
    I am using Form 6i and copied Forms60Libraries in my local machine. I am developing form which will be registered with oracle apps. Now I want to run this form locally instead of uploading into server everytime while testing which I don't have access depending on other for this move.
    So, Please guide me to run this form from Form Builder locally if there is a way.
    Thanks in advance.

    As Alex suggested, you will need local copies of all the required Apps resource files (*.pll, *.plx, etc). Running an Apps form from the Forms Builder does not require any special setup on your workstation beyond this. However, even with all the required resource files you will run into errors each time your form calls one of the standard apps built-ins. It has been a while since I've worked with Apps, but I was able to get around the calls to these built-ins by checking if the Form was running on the web or client/server and only calling the Apps built-in if running on the web. It was a bit of a pain to setup, but it was worth being able to test my form localling from the Forms Builder rather than upload the form to the server in order to test the runtime. Here is how I accomplished this. In each trigger that calls an Apps built-in (eg: APP_STANDARD.Event) do the following. Typically, I only needed to add the following code the Form level triggers, but it depended on each form.
    /* Example When-New-Form-Instance */
    DECLARE
       UI_type   VARCHAR2(15) := Get_Application_Property(USER_INTERFACE);
    BEGIN
       IF ( UI_type = 'WEB' ) THEN
          -- Execute Apps built-ins...
          APP_STANDARD.EVENT('WHEN-NEW-FORM-INSTANCE');
       END IF;
       -- Perform the rest of your processing here
    END;Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on Dec 6, 2011 12:20 PM

  • FRM-10242:  Cannot call linked-in Forms from Form Builder. error

    FRM-10242: Cannot call linked-in Forms from Form Builder.
    Cause: The menu designer specified a call to linked-in Forms from within Form Builder.
    Action: Notify your DBA.
    does anyone know why this happens.
    I have this main-menu.. and when i click on one of the submenus which should call the form....i get this error.

    Same issue here... Been trying to get this working since a week now. I tried all the solutions like memory heap and all but no luck.
    One thing that I would like to know is that, in some threads the resolution was to recompile the INS_FORMS.MK file under /forms/lib32 but with my installation I don't have that "lib32" folder under /forms/ and I can not even find that file anywhere in my entire installation.
    I am using 12.1.1 on Windows Server 2008.
    Any help or guidelines is greatly appreciated.
    Santhosh.

  • Run report 9i from form builder 9i

    Dear all,
    I build report from report builder 9i.
    How to run this report in form builder 9i.
    Best regards,
    Jansen Hutagalung.

    Jansen,
    I really like short questions, but yours missing the point. What do you mean by running Reports from Forms builder? Do you mean how to run it from a Forms application started from Forms builder? There is a Whitepaper in teh collateral section of otn.oracle.com/products/forms that immediately makes you an expert in Forms/Reports integration
    Frank

  • Connect to Data Base from Form Builder

    I have installed Oracle Developer V.6 in the same machine with data base 8i . From Form Builder I can not connect to Data base with scott/tiger with the db_name in Data base 8i.
    What should I do to connect it ?
    Thanks ,
    Nguyen

    you need to define a sqlnet connection using the sqlnet easy configuration tool that comes with forms.

  • Broken URL in executing forms from Form Builder (10g)

    From Form Builder I'm trying to execute a form "opened".
    I push "Run Form" button and i can see Explorer opening with a wrong URL :
    "http://%%20http://127.0.0.1:3696/4gjkr8swXxZKBJppfymDMZmBSac7cACualcFLIa3Vgsk6hmm"
    Obviously, "http://%%20" are wrong characters. If I erase them, I can see my form correctly executed. But I can't understand where are wrong characters .. in registry ?? ... in a configuration file ??
    From Form Builder, i can only change the "Application Url" from Preferences/Runtime tab, but this is the "second" URL, and not the First startup Url.
    Any helps ?

    See Metalink Note 238159.1 for several solutions and/or workarounds for this problem.

  • Browser size when launched from Forms Builder

    Hi, Does anyone know how to set the size of the IE browser when launched from Forms Builder? I have set the width and height setting to 100% so that the applet takes up all the browser space, however the browser is still not as large as I'd like.
    When I start IE on its own, it opens in the desired size, it's only when running it from Forms Builder that it's too small. I've searched on the net, but nothing seems to work, there must be a setting specific to Forms?
    Thanks
    Sam

    If you are using SeparateFrame = True, then you might try using these in your When-New-Form-Instance trigger:
    set_window_property(forms_mdi_window, window_state, maximize);
    set_window_property('Your_Main_Window', window_state, maximize);
    If you are not using SeparateFrame = True, then you may have to use JavaScript in the page where your applet is located. Javascript can also go in your formsweb.cfg file. See:
    HTMLbeforeForm=<script>....</script>
    or
    HTMLafterForm=<script>....</script>

  • OC4J service startup & running form from forms builder

    Hello everybody,
    I have installed Oracle 9i database and Oracle 9i DS on my personal Computer. (O.S. is Windows XP) . Now if I want to run any form from Forms builder I have to everytime start the OC4J service, from oracle-home\j2ee\oracle9i DS\startinst.bat
    How to eliminate this? Is there any way to automate this procedure? so that everytime when I open the forms builder, it will automatically start this service or run this bat file.
    Or any other way to overcome this prob?
    regards
    achchani

    Hi,
    unfortunately the answer is no. If you search the Internet you may find lik of how to make bat execution a Windows Service
    Frank

  • Running form from Forms Builder with IE

    Forms 11.1.1.4, IE 8, Windows 7 64-bit.
    1. Running form from Forms Builder with IE results in Page cannot be displayed. My Java console doesn't even appear so it's not getting to the servlet part.
    2. Running same form stand-alone in IE works fine. The URLs are identical (I've cut/pasted them)
    3. Running same form from Forms Builder with Firefox works fine. The only change I made was to the runtime preference for the browser location.
    Seems like this has to be something to do with the browser configuration that only occurs from Forms Builder. What could it be?

    I'm not sure about the specifics of your configuration but I suspect the answer is in formsweb.cfg (and the associated .env file).
    I think that generally the configuration that runs for formbuilder is the "default" whereas you could be specifying a different
    one on the url not going through formbuilder. (but if you're using em then it's really hard to know what's going on since it seems
    to not write changes back to the config and env files until it is stopped. This caused me many days of confusion until I figured it out and
    that's why I would highly advise never using it to modify .config or env settings.)
    check what jre is installed in ie (tools, manage addons, there is on my machine:
    java 2 plugin ssv helper and JQSIEStartDetectorImpl browser helper object.
    Not sure which one or both is necessary.
    Have your url be a trusted site, unblock it from popup blockage, and most of all stare at your formsweb.cfg default section. It would help
    if you specified what was in the url. do you have config=X in there?
    Edited by: lake on Jul 23, 2011 12:21 PM

  • Browser blank when running a form from forms builder ??

    Hi,
    I am trying to run a form from forms builder.
    I have a form , compiles, and when I run the form nothing comes up in my browser.
    my browser is completely blank.
    I am running everything on my local machine.
    the steps I took.
    - downloaded jinit.exe, installed it.
    - started the OC4j
    - restarted my browser
    - then connect to my DB from forms builder - connects fine
    - Run the form
    but nothing is coming up when i run my form.
    I even restarted my machine and still nothing.
    What am I missing ??
    Thanks,

    This is a fairly common question. If you have the Jnit installed and OC4J running, then I would suggest you add the directory where your FMX is located to the FORMS_PATH in the 'DEFAULT.ENV' file located in the %DEVSUITE_HOME%/forms/server directory. The FORMS_PATH variable defines the SEARCH Path for Forms Applications so Forms can find your .FMX and .PLX files.
    You could also modify the URL and specify the Form='your_form_name.fmx', but I prefer adding the directory to the FORMS_PATH so I don't have to add FORMS="" for each different form I'm working on.
    Hope this helps,
    Craig B-)
    If a response is helpful or correct, please mark it accordingly.

  • Get the values from Day 1 of the Month

    Hi Friends,
    I have a requirement in which I have to Get the values from Day 1 of the Month.
    Ex : If I enter 19 - 07 - 2007.......the report should display Values from 01 - 07 - 2007.
    How to Code ?
    Please provide the Code.
    Thank you.

    Hello ,
              Check this code,
    DATA: test_datum1      LIKE sy-datum,
               test_datum2      LIKE sy-datum.
    WHEN 'TEST1'.
              IF i_step = 2.
          LOOP AT i_t_var_range INTO loc_var_range
            WHERE vnam = 'TEST2'.
            test_datum1      = loc_var_range-low.
        CONCATENATE test_datum1(6) '01' INTO  test_datum2.
        CLEAR l_s_range.
        l_s_range-low   = test_datum2.
        l_s_range-high  = test_datum1.
        l_s_range-sign = 'I'.
        l_s_range-opt  = 'BT'.
        APPEND l_s_range TO e_t_range.
    hope it helps,
    assign points if useful

  • How to validate multiple lines which is exist in the form builder at the same session

    Hi All,
    we are working on oracle Forms personalization to trigger the message at the point of saving multiple lines rather than requiring each line to be save individually. Currently the oracle form is allowing to user to enter two distinct lines that have same resource and basis type in BOM.
    Currently the Oracle form is allowing to enter the duplicate combination and not giving any error message even we enter the same combination of data.
    As per the customer requirement, they don’t want to validate the data while creating the records but when they try to save the form, in that case it should validate all the records at a time then need to display the appropriate message.
    Customer don’t want to customize the Oracle standard form. Here we have only option to use form personalization or through custom.pll.
    Any idea on how to validate multiple lines which is exist in the form builder at the same session as before inserting the record itself need to perform the validations for all the records.
    Thanks for your help in this regard.
    Regards,
    Thirupathi

    you can write a post script which will do the necessary tasks.
    I mean, once you are done with inserting records into these tables, exeute another procedure which will insert these "extra" records, based on some logic.
    you may not be able use DB trigger as it may generate mutating error or if you don't write it carefully, it will go into recursive loops as you are refering to same tables.
    HTH

Maybe you are looking for

  • "(program).exe has encountered a problem and needs to close. We are sorry for the inconvenience."

    Hi, I was using Tweetdeck for the past few months without any problems. Recently, the application still works fine.. it opens as normal, all posts I am following appear etc., but when I try to send a tweet the application closes and I get the error "

  • Photos on External Hard Drive

    Hi, I am new to iPhoto. I already have a few hundred photos on an External Hard Drive which I would like to view and organize in iPhoto. I am a little confused as if I copy them to the iPhoto Library will this copy the files so that I have 2 copies o

  • Scaleability with Functions in SQL queries

    Hi, In one of our applications we have many views that use a packaged function in the where clause to filter data. This function uses a SYS_CONTEXT() to set and get values. There are couple of issues while using this approach: 1/ The deterministic fu

  • .Mac Mail attempting to use a mail server I no longer have

    I use AOL and .Mac mail thru the Mail program. I'm trying to send a couple mp3's to a client, and I get the message that it can't use the server "mail.purdigital.net." This server is something that was in a building I moved out of last month. My ques

  • Class Diagram not loading in VS 2013

    I can create a class diagram in VS 13, but it will not show. I get an error that says, "URI formats are not supported". I got this error in VS 12 and the solution was to open my website in file system mode. This solution is not working for VS 13. How