Dynamic Questions

i have a few issues that I wondered if anyone could tell me
how to resolve. I've uploaded this as a sample.
www.ivyla.com/company.html
1. my a:active does not seem to work (i also have
www.ivyla.com/studio.html loaded if you want to check.)
2. it seems I can apply "onLoad" behaviors only to images. If
I wanted to put this image in a div tag, it will only create the
behavior for the div tag "onClick". It's fine for this page. but on
a future page, I have multiple images that I want to all have the
same behavior at the same time onLoad. Do I have to separate out
the code somehow?
3. Why does my image seem to quickly preload before it
"grows" in IE? It doesn't do this in Firefox.
thanks for any help in advance.
lw

Hi,
Thanks for the response.  I am currently using version 10.1.2.0.2.
Yea, questions along the lines of:
What type of car do you drive?
What year is your car?
What is your registration?
What kind of car would you like in the future?
Basically, I will have created a screen where the users can simply input any number of questions they wish but rather than me checking to see when they have updated this table or altered anything and then manually updating the corresponding form to reflect these changes I would like forms to dynamically generate these questions on the corresponding form.  This way as soon as a question is changed or altered and the user goes to the corresponding form the question will have automatically updated on the screen.
Thanks again.

Similar Messages

  • View with dynamic columns

    Hello.
    I'm sure this must be a FAQ but can't find it anywhere.
    I'm collecting data from people in a questionnaire style but don't know what/how many questions there are. I need to create a view that displays responses to each of the questions as a view, as follows:
    Name | Company | Favourite Colour | Age Range | Favourite Food
    In this example, there are three 'dynamic' questions. The data is stored as follows:
    People - basic information about the respondents
    Questions - the names of the questions being asked
    Choices - the options that can be chosen from for each question
    Responses - the answers that people provide.
    If I know exactly what questions there are, then I can JOIN to the questions table the appropriate number of times. But I don't! Can this be done without dynamic SQL?
    Very many thanks for help.
    Simplified tables and data follow:
    CREATE TABLE [People](
    [ID] [int] NULL,
    [Name] [varchar](50) NULL,
    [Company] [varchar](50) NULL
    ) ON [PRIMARY]
    GO
    CREATE TABLE [Questions](
    [ID] [int] NULL,
    [QuestionName] [varchar](50) NULL
    ) ON [PRIMARY]
    GO
    CREATE TABLE [Choices](
    [ID] [int] NULL,
    [QuestionID] [int] NULL,
    [ChoiceName] [varchar](50) NULL
    ) ON [PRIMARY]
    GO
    CREATE TABLE [Responses](
    [ID] [int] NULL,
    [PersonID] [int] NULL,
    [QuestionID] [int] NULL,
    [ChoiceID] [int] NULL,
    [OtherText] [varchar](50) NULL
    ) ON [PRIMARY]
    GO
    INSERT [People] ([ID], [Name], [Company]) VALUES (1, N'Ben', N'ACME')
    GO
    INSERT [People] ([ID], [Name], [Company]) VALUES (2, N'Dave', N'My Corp')
    GO
    INSERT [People] ([ID], [Name], [Company]) VALUES (3, N'Sarah', N'Newco')
    GO
    INSERT [Questions] ([ID], [QuestionName]) VALUES (1, N'FavouriteColour')
    GO
    INSERT [Questions] ([ID], [QuestionName]) VALUES (2, N'AgeRange')
    GO
    INSERT [Questions] ([ID], [QuestionName]) VALUES (3, N'FavouriteFood')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (1, 1, N'Red')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (2, 1, N'Blue')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (3, 1, N'Green')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (4, 2, N'<18')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (5, 2, N'18-65')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (6, 2, N'65+')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (7, 3, N'Pasta')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (8, 3, N'Curry')
    GO
    INSERT [Choices] ([ID], [QuestionID], [ChoiceName]) VALUES (9, 3, N'Steak')
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (1, 1, 1, 1, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (2, 1, 2, 1, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (3, 1, 3, 2, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (4, 2, 1, 4, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (5, 2, 2, 5, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (6, 2, 3, 6, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (7, 3, 1, 7, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (8, 3, 2, 9, NULL)
    GO
    INSERT [Responses] ([ID], [PersonID], [QuestionID], [ChoiceID], [OtherText]) VALUES (9, 3, 3, 9, NULL)
    GO

    I'm not into reporting tools, but I recall that Kalman has mentioned some component in Reporting Services that can do this. And obviously, if you receive the result set as a DataTable in .NET, you can write code to flip it.
    As I said, a view or a result set in a relational database is a table that is supposed to model an enitity with a finite number of distinct attributes. For this reason, any query where the number of columns is not known until run-time has to build dynamically.
    And since a relational database is not designed for handling such dynamic scenarios, all attempt to work with that dynamically generated result set will be painful.
    So for the filters you mention, there are two options:
    1) Filter in the database on the base tables.
    2) Filter in the client on the pivoted data.
    But don't get the idea to filter in SQL Server after the pivot.
    If the total dataset is large, the first alternative certainly has an advantage, but else it's likely to be easier to do client side.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Quick Question about Transposing/Crosstab SQL or PL/SQL query

    Hi All,
    Looking for how to transpose rows into column in SQL and/or PLSQL
    I've got thousands of rows in the format
    phone_no Code
    4161231234 A
    4161231234 B
    4161231234 C
    6471231234 A
    6471231234 B
    6471231234 C
    need to transpose this to
    phone_no Code_1 Code_2 Code_3
    4161231234 A B C
    6471231234 A B C
    Think max number of codes for phone_no is something like 10.
    Would appreciate if anybody gave guidance or direction.
    Cheers,

    Again Posted on another theard
    Sorry wanted to add 1 amendment as well in terms of Question 2)
    First Question 1)
    phone_no Code
    4161231234 A
    4161231234 B
    6471231234 A
    6471231234 C
    6471231234 D
    need to transpose this to
    phone_no A B C D
    4161231234 Y Y N N
    6471231234 Y N Y Y
    New Records such as
    6471231234 E would be appending later therefore the max number of codes for phone_no is dynamic
    Question 2)
    I also need the ability of the above table to add values of a third colum into the cross tab
    phone_no Code No_of_codes
    4161231234 A 2
    4161231234 B 1
    6471231234 A 3
    6471231234 C 1
    6471231234 D 5
    Transposes to
    phone_no A B C D
    4161231234 2 1 0 0
    6471231234 3 0 1 5
    and again
    New Records such as
    6471231234 E 7 would be appending later therefore the max number of codes for phone_no is dynamic
    Thanks for any help!!

  • PL/SQL Dynamic Pivot

    Sorry going to Reporst don't think I named it properly the first time looking for some PL/SQL that performs the following..
    First Question 1)
    phone_no Code
    4161231234 A
    4161231234 B
    6471231234 A
    6471231234 C
    6471231234 D
    need to transpose this to
    phone_no A B C D
    4161231234 Y Y N N
    6471231234 Y N Y Y
    New Records such as
    6471231234 E would be appending later therefore the max number of codes for phone_no is dynamic
    Question 2)
    I also need the ability of the above table to add values of a third colum into the cross tab
    phone_no Code No_of_codes
    4161231234 A 2
    4161231234 B 1
    6471231234 A 3
    6471231234 C 1
    6471231234 D 5
    Transposes to
    phone_no A B C D
    4161231234 2 1 0 0
    6471231234 3 0 1 5
    and again
    New Records such as
    6471231234 E 7 would be appending later therefore the max number of codes for phone_no is dynamic
    Thanks for any help!!

    Hi Frank want to build with an unknown bound as well
    Seeing if a PL/SQL code would be a better solution.
    I read the wrapping thread uploaded scott.emp table
    EMPNO     ENAME     JOB     MGR     HIREDATE     SALARY     COMM     DEPTNO
    7369     SMITH      CLERK      7902     12/17/1980     800     0     20
    7499     ALLEN      SALESMAN      7698     02/20/1981     1600     300     30
    7521     WARD      SALESMAN      7698     02/22/1981     1250     500     30
    7566     JONES      MANAGER      7839     04/02/1981     2975     0     20
    7654     MARTIN      SALESMAN      7698     09/28/1981     1250     1400     30
    7698     BLAKE      MANAGER      7839     05/01/1981     2850     0     30
    7782     CLARK      MANAGER      7839     06/09/1981     2450     0     10
    7788     SCOTT      ANALYST      7566     04/19/1987     3000     0     20
    7839     KING      PRESIDENT           11/17/1981     5000     0     10
    ran the code
    SELECT     DISTINCT
         ',     COUNT (CASE WHEN job = '''
    ||     job
    ||     ''' '     AS txt1
    ,     'THEN 1 END)     AS '
    ||     job
    ||     '_CNT'     AS txt2
    FROM     scott.emp
    ORDER BY     txt1;
    wasn't making sense unfortunately need to play around a bit more,
    Looking up the dynamic SQL couldn't find anything
    and haven't found string agregation.
    Thought if some one has some prebuild code on this problem using PL/SQL would be easier.

  • Authentication Question in SAP IDM 7.1

    Hi All,
    I am currently working on SAP IDM 7.1 , My requirement is to set authentication question in SAP IDM and enforce the same at the first time login of the user. Presently I am setting my authentication question answer in OOB attributes -- MX_AUTH_Q01   - Q05.
    For the first time login user i am getting the default password change screen , thereafter i need to enforce Set Authentication for every user , logged in for first time. Please, suggest if SAP provides any feature like this to  set authentication question, at the time of login. Thanks in advance
    Regards
    Swati Pandey

    Hi Christian,
    I have implemented the security question using the same concept i.e by limiting access to process throgh access control.  Now, my requirement is to store Dynamic question in user profile, i.e users can store his/her own custom question /answer. Do we have any such facility in sap idm, presently the auth question provided are static for each user profile.
    Thanks
    Swati Pandey

  • Survey was not found or it is not withing validity period

    Dear gurues,
    Hope you can help me with this issue in CRM 5.0
    I have created one survey, it includes dynamic questions by using function modules PBO and PAI, and fortunately it works fine when testing in trx. CRM_SURVEY_SUITE.
    Now i am trying to generate a URL by BSP. It works almost fine, but for some weird reason, once I type "Yes" or "No" for the first question of my survey (next questions depend on the answer of first one, if "Yes" - second question should be shown, if "No" - second question should be hidden), and then click enter, I get the following system message:
    survey was not found or it is not within validty period.
    I have already maintained the validity period under maintain survey attributes in trx. CRM_SURVEY_SUITE.
    the idea is to use this survey in e-mail campaign.
    i will really appreciate your input
    Thanks
    Karina

    Hi Karina,
    How you solved this issue...
    I am also getting the same error...
    Survey Was not Found or Is not Within the Validity Period.
    In GUI it is working perfectly.
    I tried the solution given by RAJA but it is also not working...
    I added a cutom button... Function code is SAVE.
    Didnt write any code for it..
    When Pressing that button i got the above error....

  • Htmldb_item.select_list_ referecing submitted results

    Hi,
    I have the following situation. I have a "dynamic" table of questions with n number of rows. The table consists of 1 col for plain text, and 1 col of multiple select list. I generate this table with the form elements dynamically.
    When I go to process and validate I store all the questions numbers in htmld_application.G_F01 and can reference them as: htmld_application.G_F01(i). I store all text results in htmld_application.G_F02 (same referencing). I can link the text answer to the question based on the looping counter 'i'. I store the select results in htmld_application.G_F03. Now for the select if I were only to chose 1 value for each select list I would be fine. It seems if I do a multiple select it stores each selected value in a new "row". As you can see this causes a problem since my list is out of order.
    When reading the document for htmldb_select_list_from_query for the p_idx value it says: "Typically the p_idx parameter is constant for a given column."
    Any idea on a work around? I'd like all the values in a select list for a given 'i' to be colon delimited. EX: select list A would return blue:red:orange in it's element rather then return it in 3 different positions.
    Sorry this sounds a bit confusing. Any help is appreciated.
    Thanks,
    M

    Scott,
    Here's my entire situation. I've stripped unnecessary items to focus on the main problem.
    Suppose I have a table that contains "dynamic" questions. The main columns are as follows:
    question_id
    question_name
    There is also a table which stores the answers.
    question_id
    answer_text (for plain text answers)
    answer_lovs(list of values if the user selects from a multiple select box)
    The user can enter either a plain text answer or select from a multiple select box.
    Ok so now we get to the part of displaying the questions. Here's what the code looks like
    LOOP over all the questions
    .... display quesiton name ...
         htmldb_item.hidden(p_idx => 1, p_value => question_id);
         htmldb_item.text(p_idx => 2, p_value => '');
         htmldb_item.select_list_from_query (p_idx => 3, p_attributes => ' multiple ', p_query => my query);
    END LOOP;
    Note that all the quesiton_id's are stored in idx = 1, text in idx =2, and answer_lovs in idx = 3. Also note that the select list is a multiple select list.
    When the page is submitted the "array" (i.e. the htmldb_application.G_Fxx )should look like this:
    question_ids [1,2,3]
    answer_text ['a','b','c']
    answer_lovs ['g','h','k']
    The above example assumes that the user only selects 1 value in the multiple select lists.
    If they select multiple values from the select list here's what happpens.
    q 1 user selects 'g'
    q 2 user selects 'j' and 'u'
    q 3 user selects 'i'
    the new "array" will look like this:
    question_ids [1,2,3]
    answer_text ['a','b','c']
    answer_lovs ['g','j','u','k']
    when I thought that the array would look like:
    question_ids [1,2,3]
    answer_text ['a','b','c']
    answer_lovs ['g','j:u','k']
    If you look at the last 2nd to last set of values the "order" is completely out of place. Anyway of doing something so my results turn out like the last set of values?
    Please let me know if this makes sense.
    Thanks. M.

  • Any implementation with IVR and OPA integrated?

    Hi OPA Gurus!
    Has OPA been used in IVR system for interactive screening? One of my clients is planning its IVR enhancement and they are evaluating the option to leverage the same Rulebase developed for online self service to support IVR screening. The challenge is that any dynamic questions from OPA will have to be pre-recorded in voice and coded in IVR script. This sounds like a high effort approach. Is this technically feasible? Any implementation example or proof of concept?
    Best Regards,
    Bowen Wang

    Hi Bowen,
    This is a challenging requirement. Recording a message for each of the RuleBase questions is not the best option. Instead you can use a Text To Speech (TTS) software which will generate voice messages for each of the questions that is presented to the user.
    This is just a solution I could think of. I have not implemented this, but thought it might be of some help to you.
    Regards,
    Aakarsh

  • Windows 2008 R2, converting to dynamic disk questions

    Hello,
       I have a Windows 2008 R2 server and I want to convert the drive into a dynamic disk for mirroring.  The disk currently is divided into two partitions.  The C: partition which is System,Boot, Page File, etc. and the D: partition which
    is data.  The questions I have are:
        Can a disk with multiple partitions be created without data loss or anything?
        I know you have to reboot, but how long does it usually take to do the reboot/conversion before the server is back up? 
        I want to mirror the drive to a 2nd identical disk in the server, and am planning to use Computer Management.  Do I have to partition the second drive first, or will the process do it automatically?
        The server is a dedicated server that is provided by a hosting company, so I would be doing it through Remote Desktop.  Can it be done that way?
    Thanks.

    Hi,
    You can convert the drive into a dynamic disk within both local logon session and remote desktop session. The system requires reboot twice to make the conversion take into effect. You do not have to partition the second drive.
    For more detailed information, please refer to the articles below:
    Dynamic disks and volumes
    http://technet.microsoft.com/en-us/library/cc757696(v=ws.10).aspx
    Create and test a mirrored system or boot volume
    http://technet.microsoft.com/en-us/library/cc738132(v=ws.10).aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Dynamic Link... My Question Disappeared?

    I tried to import a video to Photoshop CS6 Extended, in order to export it as an animated gif.
    I posted a question about it here, it appeared in 'trending' and then disappeared ! Did a moderator move it?
    My question was... when I tried to import I got a message error to say "Dynamic Link missing...'
    Can anyone help?

    Your question was moved over to the Photoshop forum here http://forums.adobe.com/message/4413189#4413189.
    You can always find all of your posts via Your Stuff > Discussions from the menu. So in your case http://forums.adobe.com/people/KieranBrennanDublin?view=discussions.

  • Some questions on Crystal report's dynamic parameters

    With respect to the thread [How can we use C# to read dynamic parameter's value list from .rpt?|How can we use C# to read dynamic parameter's value list from .rpt?].
    I have some further questions:
    1.How can one differentiate between a Static or Dynamic parameter in a report document using c# code?
    2.Is there a way to know what the data source for the dynamic field is, I mean can we know the name of the table which is set to the dynamic field to pull data from?
    3. Is there any Report Application Server (RAS) API that allows us to work with dynamic parameter in a report document?
    Thanks,
    Qin

    1.How can one differentiate between a Static or Dynamic parameter in a report document using c# code?
    - I'm not aware od any API that will directly tell you that a parameter is dynamic or static.
    2.Is there a way to know what the data source for the dynamic field is, I mean can we know the name of the table which is set to the dynamic field to pull data from?
    - the only way you can find this out is through RAS.  Off the ParameterField class from there is a BrowseField property.  If itu2019s a Dynamic parameter, I believe it returns the database field name that it uses to populate the prompt.
    3. Is there any Report Application Server (RAS) API that allows us to work with dynamic parameter in a report document?
    - See http://help.sap.com/businessobject/product_guides/boexir31/en/rassdk_net_dg_12_en.chm
    search for parameters.
    Ludek

  • Questions on: 1) Last Update; 2) Max String Length; 3) dynamic table keys

    Hi:
    - I am currently prototyping a plug-in but I have some questions:
    - 1) At the 'All Metrics' table, what is the intent of the 'Last Upload' field,
    and how is this field updated?
    - I have created some metrics but for some metrics the 'Last Upload' field
    has a timestamp but for other metrics there is no data.
    As far as I know, the metrics are similar but I do not know why the behaviour is different.
    - 2) Is there a maximum string length that the Oracle agent can accept?
    - I have a script which just returns all the environment variables into one cell.
    In emagent.trc, the Oracle agent issues the following warning:
    2009-08-27 12:38:47 Thread-76336 WARN upload: Truncating value of "STRING_VALUE" from "AGENT_HOME=
    - Is the truncation an issue?
    - 3) I have created some dynamic tables from performing an snmp walk, but the key that I use
    is the index of the SNMP table. The data is collected correctly, but I am not sure that using
    the table index as the key for OEM is a good idea because the metrics are stored according to the SNMP table index.
    Should the OEM key be the something like 'object name' instead of the index number from performing an SNMP walk ?
    For example, when I click a metric, the metric name is: Sensor Index 1.
    But should it not be something like 'Fan #1' ?
    Thanks John

    Metrics are collected at certain intervals, the Last Upload field indicates the date and time of the last time a metric collection was uploaded. The quicker the interval, the more recent that date should be. If you don't specify a CollectionItem in your default collection file for your metrics, they won't be collected or uploaded.
    If your metric column is a STRING type, it is stored in a VARCHAR2(4000)
    I'm not sure I understand your last problem... You have a table metric with a set of columns. The column you use as the key is just some tracking index which doesn't really mean anything. As long as your key column(s) make the row unique, the agent will be satisfied. If you want something more meaningful as your key, then it's something you will have to inject into your dataset if it isn't already there.

  • Questions about example "Dynamic JDBC Credentials for Model 1 and Model 2"

    Hello,
    i am trying to set up dynamic JDBC authentication in my ADF BC application - i want that it'll work like in Forms - a dababase user with the proper priveleges can log into my ADF BC application using his database login and password, and work with application.
    I've read the paper "How To Support Dynamic JDBC Credentials" at
    http://www.oracle.com/technology/products/jdev/howtos/10g/dynamicjdbchowto.html
    and test the very useful example, created by Steve Muench, which i've got from
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html#14
    The example works, but when i'm transfer its realisation in my application - it doesnt work the right way. The problems is the following:
    1. I can connect and work successfully only under the owner of the schema - the username and password of which i've wrote in the "jbo.server.internal_connection" string of the AM configuration.
    2. When i'm connecting under other users, which have all the rights to work with the db objects, used by application, i got the main page with the "Access Denied" message - as i have no priveleges to the tables.
    3. The big surprise is that if i am entering the fake username and password - the random letter combination - then i am getting the same behavior as in p.2 - the main page with the "Access Denied" message!
    And the last question is:
    4. Is it possible to set up the dynamic jdbc authentication using the build-in JDeveloper functions - i mean not to use that additional code, not override the ADF Binding Filter, and so on, but set up the similar behaviour (users log in using their db names and passwords) in several minutes following the standart documentation?
    Thanks in advance!

    One more question:
    I have 2 independent Application Modules in my application - to make the 2 transactions independent one form another, when working with different parts of project - and while using dinamic JDBC authentification, the user connects only in the first AM under the username he's entered, but the 2nd AM works under the predefined earlier (during development) connection for that AM.
    How can i make the 2nd AM to be connected under the logging in user (same as the 1rst AM)?

  • Question on Dynamic Query Data Source and Form Folders in Oracle Forms 6i

    Hi there -
    I have one interesting requirement in Oracle Forms.
    This is what I wanted to do.
    1. Have a LOV and Go button on Form.
    2. From LOV, I will select a pre-defined custom table and click Go.
    3. Based on the selected custom table, I have to populate the Block (Tabular Format).
    4. User should be able to do update, delete, insert on this block.
    5. User should be able to use the Oracle Form folders functionality (select only necessary column and save views etc. Std folder functionality).
    6. If user selects a different custom table name in the LOV on top, I need to refresh the data from the block based on this new table. Remaining functionality should be as it is (steps 3 to 5).
    You can see here, I am going to have dynamic query data source (Table Name as well as column mapping) on the block. I do not know before hand how many columns the user selected table has!
    This is what I have planned for this so far but I have some major questions before I can move on with this design:
    1. I am going to create a table structure with fixed number of column in form (40 cols assuming that the custom table will not have more that 40 cols). (Kind of limitation but it's okay as of now).
    2. Dynamically populate the block based on the table name selected by the user from LOV. Dynamically change the table column names based on the table selected etc.
    3. Perform insert, update, delete using PL/SQL package.
    So far it looks okay.
    Now my real question is,
    Can user still be able to user "Folders" functionality here? I have never done this kind of development before and I doubt the dynamic column naming, dynamic column data source will really work for "folders"!
    Also, I am not really sure whether user will be able to save these "folder" queries?
    Okay so form experts, can you ppl suggest me if this is really going to work? Are there any better ways to do this?
    Initially I tried to do this in OA Framework but I got stuck at because as per OAF developer guide "I cannot user OAF personalization for dynamic items, regions etc".
    For more info on that thread see this link...
    Re: setUserCustomizable issue!
    Thanks in advance for the help.

    Any suggestion anyone?

  • How to create yes or no radiogroup dynamically for a set of questions

    hi,
    I am new to APEX.Depending upon my project requirement I need to create a set of questions with yes or no as radiogroup buttons,appended with a textarea for each question.For ex:
    1.Name o Y o N [ "text area"]
    The above line specifies the model I need.
    Here text area is used for writing comments.
    Now the question is how can I create them dynamically using apex_item.
    Its very urgent.Kindly reply me soon.
    Thanks in advance.

    Thanks for ur quick reply.
    But what actually I need is,I need to create the radiobuttons also dynamically.
    I have created them by the following syntax,
    select ename,apex_item.radiogroup(eno,'y' ) yes,apex_item.radiogroup(eno,'N')
    from emp;
    but the problem with this is ,
    when I inserted yes for the first one it is taking and if i am giving the second one also as YES then it is not accepting ..means it is checking the second item by clearing the first one.
    What I need is when I check the second one the first one should not get cleared.
    Thanks in advance.

Maybe you are looking for

  • What is hpCompMgr and Why It's Not Valid Windows Image?

    All of a sudden I can't use my HP PSC 1350 all-in-one with my computer -- instead getting an alert that the HPComptMgr dll  is not a valid Windows image.  Have also gotten another one re HPZENGo9.exe.  Doe anyone know what prompted this and how I can

  • I need a vi for LabView 5.1.2 that when run will retrieve all the channel information from Max

    I know there is a vi example for 6.1 to do this exact thing and create a text file as well. But I do not have 6.1 on the machine I want to extract the data from. Is there a similar program for 5.1.2 that has been created that someone can share with m

  • Adjustment tools in Camera Raw not working

    Downloaded CS 5 and opened Camera Raw, then attempted to use the adjustment tool and received the following message "Unable to create local adjustment.  All the local adjustment controls are set to have no effect on the image."  Can anyone provide as

  • Data fetching problem in internal table

    Hi All, I have two internal table which are of type as shown below. itab1 is of following type: regno(255) type c, uid type c itab2 is of following type regno type regno, uid type userid, address type add, phno type phn. Datas in itab2 are as follows

  • Oracle Custom service relocating to different node.

    Oracle customer service is relocating to node2 What does this error message mean ? MON APR 30 13:05:13 2007 CLSR-6502: Failed to connect to database MON APR 30 15:30:06 2007 clsrcepusrco: scls_process_spawn error SUN MAY 13 04:13:09 2007 CLSR-0002: O