SOMEBODY HELP ME WITH A RECORD GROUP URGENT !

I HAVE THE NEXT ERROR 'UNHANDLED ERROR IN ICRG 102' IN ORACLE FORMS 5.0 WHEN I CREATE A RECORD GROUP WITH THE SENTENCE 'select nombres, to_char(ficha) from abogados order by nombres ' where nombres is data type VARCHAR2 and ficha is NUMBER. TOO I GOT IT THE SAME ERROR WHEN I CREATED A PROCEDURE WITH THE NEXT CODE:
PROCEDURE Populate_The_List(list_id VARCHAR2, sql_stat VARCHAR2) IS
group_id RecordGroup;
outcome NUMBER;
BEGIN
--Create temporary record group.
group_id := CREATE_GROUP_FROM_QUERY('List_Elements', sql_stat);
IF ID_NULL(group_id) THEN
MESSAGE('Record Group could not be created in Populate_the_List.');
RAISE FORM_TRIGGER_FAILURE;
END IF;
--Populate record group.
outcome := POPULATE_GROUP(group_id);
IF outcome <> 0 THEN
MESSAGE('Record Group could not be populated in Populate_the_List.');
RAISE FORM_TRIGGER_FAILURE;
END IF;
--Populate list item
POPULATE_LIST(list_id, group_id);
--Destroy the temporary record group to release resources
DELETE_GROUP(group_id);
EXCEPTION
WHEN OTHERS THEN
MESSAGE('Internal error occurred in Populate_the_List.');
RAISE FORM_TRIGGER_FAILURE;
END Populate_the_List;
ANYBODY CAN HELP ME WITH THE SOLUTION
ATTE: ROBERTO
SORRY FOR MY ENGLISH

Hi Roberto,
I don't understand your message!
What do you did?
bye Roxane
--thanks Roxane I did'it, but there is where jump the message
--the error, do you have other solution.
--Sorry
--Roberto                                                                                                                                                                                                                                                                                                                                                                                                                                                

Similar Messages

  • LOV with 3 record groups

    I have two LOV s one in the mainform and one in the subform. If I select one category from the list in the mainform LOV. In the subform LOV has to change it's record group (3 record groups) depending on the category selected in the mainform LOV. Please help. I am pasting the code I wrote. I tried it in the NEW ITEM INSTANCE TRIGGER, NEW BLOCK INSTANCE TRIGGER (datablock for the 2nd LOV with 3 record groups) and in the NEW FORM INSTANCE TRIGGER. Please help. Thank you.
    DECLARE
    lov_id1 LOV;
         --val          boolean;
              rg_id1 RECORDGROUP;
         rg_id2 RECORDGROUP;
              rg_id3 RECORDGROUP;
    BEGIN
    lov_id1 := FIND_LOV ('ACTIVITYTYPE_LOV');
         rg_id1 := FIND_GROUP('ACTIVITYTYPE_RG1');
         rg_id2 := FIND_GROUP('ACTIVITYTYPE_RG2');
         rg_id3 := FIND_GROUP('ACTIVITYTYPE_RG3');
    --     val := SHOW_LOV(lov_id1, 32, 48);
    IF
         GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1' AND :YOUTH_GOALS.GOAL_TYPE = 'EXIT COUNSELING'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id1');
         ELSIF
         GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1' AND :YOUTH_GOALS.GOAL_TYPE = 'COMPLETE TRAINING'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id1');
              ELSIF
         GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1' AND :YOUTH_GOALS.GOAL_TYPE = 'VOCATIONAL TRAINING'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id2');
              ELSIF
         :YOUTH_GOALS.GOAL_TYPE = 'GRADUATE FROM HIGH SCHOOL'AND GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id2');
              ELSIF
         :YOUTH_GOALS.GOAL_TYPE = 'IMPROVE ACADEMIC PERFORMANCE'AND GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id2');
              ELSIF
         :YOUTH_GOALS.GOAL_TYPE = 'OBTAIN GED'AND GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id2');
              ELSIF
         :YOUTH_GOALS.GOAL_TYPE = 'NON-ACADEMIC'AND GET_LOV_PROPERTY(lov_id1,GROUP_NAME ) = 'rg_id1'
         THEN SET_LOV_PROPERTY(lov_id1,GROUP_NAME,'rg_id3');
         END IF;
    end;

    try on when-validate-item or on POST-CHANGE
    Regards,
    Danish Hayder

  • Populating list item with a record group

    I'm trying to populate a list item (TList) with a Record group with a simple query: SELECT FRM_NAME FROM FORM
    In the forms WHEN_VALIDATE_NEW_FORM trigger, I use POPULATE_LIST('FORM_LIST', 'RG_FORM_LIST');
    Am I missing something? I get the error FRM-41334: Invalid record group for list population.

    thanks, i've tried that, but still nothing. I must be doing something simple, but very wrong. I tried with oracle's default scott/tiger schema, created a simple form with a record group with 2 columns, and populating a manually made poplist (populate_list('LIST4', 'RG1'); Still get errors:
    FRM-30191: No list items defined for required poplist.
    List LIST4
    Item: LIST4
    Block: EMP
    Form: MODULE5
    FRM-30085: Unable to adjust form for output.

  • Can somebody help me with an answer ?!

    Hi all !!
    I opened on another category one topic related to AD to OID synco.
    Pull specific users from AD to OID
    Can somebody help me with an answer ?
    Thank you very much,
    Dani

    The answer has been found. See the link
    Good luck,
    Dani

  • Hi, my name is Chenet i have a Macbook 0sx lion 10.7.5 i don't remember my password for the system preferences i can't even go online, can somebody help me with that please

    Hi, my name is Chenet i have a Macbook 0sx lion 10.7.5 i don't remember my password for the system preferences i can't even go online, can somebody help me with that please

    Hi 'baltwo'
    Thank you for your link, I already had been on this particular website this afternoon. they only discuss problems in the application and nothing about how the MS Office application installation does disturb Mac OS.
    Or have I missed a special comment there?
    In any case many thanks, trioloGo

  • Help with poplist record group query

    Hi, I want to populate a poplist based on the following query:
    SELECT value
    FROM table.value
    WHERE code_parent IS NULL
    UNION ALL
    SELECT 'ALL'
    FROM dual
    ORDER
    BY code
    Now I know that you need 2 columns in the record group to populate a poplist, but I cannot seem to modify the query to have 2 columns. I am basically adding the 'ALL' value, which will have a label of 'ALL' and a value of 'ALL'.
    The first select I can easily modify to be an acceptable record group for a dynamic poplist, Its the union that im having problems with. The following select does not work. Help would be appreciated.
    SELECT table.value, table.value
    FROM table.value
    WHERE code_parent IS NULL
    UNION ALL
    SELECT 'ALL', 'ALL'
    FROM dual
    ORDER
    BY table.value

    Based on the error I'd guess that one of your columns are defined as a number and the union columns are both varchar2. Match the datatype with the column it corresponds to:
    UNION
    SELECT 'ALL', 0
    FROM DUAL
    ORDER BY 1
    The order by clause also needs to reference the column number instead of the column name since the union clause does not have a column name.

  • Urgent: Bad Bad Bad Somebody help me with my iphone.

    Somebody help me, I can not connect my device and shows that neither is without battery and when I turn on the computer it only shows the apple logo and turns off after 10 seconds and so repeats. And I can not restore it in itunes, Pleasee somebody help mee

    Sorry about my englishh

  • Can somebody help me with deleting an array

    Can somebody help with deleting an array

    Hi Sansom,
    If you want to delete an array rather than format a volume you need RAID Admin which can be downloaded here.
    http://support.apple.com/kb/DL288  if you just want to delete the contents of the volume you can do this with Disk Utility.
    You'll also need to make sure the Xserve RAID is plugged in with one Ethernet connection and is on the same network as the machine you run RAID admin on.
    Then run RAID Admin and enter the password. In General the password is "private" to make changes or "public" to view the configuration.
    Hope that helps
    Beatle

  • Can somebody help me with Siebel and Fusion Integration

    Hi,
    I want to integrate Siebel with BPEL.
    I can't use the Oracle AS adapter available for Siebel for integration purpose.
    I have to integrate using web services.
    Can somebody help me out with any document of integration BPEL with Siebel using WebServices??

    Hi,
    Find attached the link/note for integration of BPEL with Siebel, hope this will be useful
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28999/intro.htm
    Oracle® Application Server
    Adapter for Siebel User's Guide
    10g Release 3 (10.1.3.1.0)
    B28999-01
    Rgds,
    Muru

  • Can somebody help me with understanding what is OSGi & JCR and how it completes CQ5 architecture

    I am a newbie to CQ5 development and I want to understand more about JCR and OSGi concepts before I deep dive into the technology. Can somebody help me out with explaining these terms with reference to CQ5 architecture in layman terms so that I can understand them better.

    Check out
    http://dev.day.com/docs/en/cq/current/exploring/concepts.html#CQ's%20Technical%20Foundatio n
    and
    http://dev.day.com/docs/en/cq/current/exploring/concepts.html

  • Can somebody help  me with infoset

    Hi everybody,
        Can somebody guide me with the step by step procedure to generate a InfoSet. I know what a InfoSet mean, but i doesn't know how to generate,maintain and do BEX reporting with InfoSet, can anyone help me through this.
    Thanks,
    sivi.

    Hello Sivi,
    Please go through this link to know more about how to create Infoset.
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/96663bd194a978e10000000a11402f/frameset.htm
    Regards,
    Praveen

  • Can somebody help me with this code?

    Can anyone help me with this code? My problem is that i can't
    seem to position this form, i want to be able to center it
    vertically & horizontally in a div either using CSS or any
    other means.
    <div id="searchbar"><!--Search Bar -->
    <div id="searchcart">
    <div class="serchcartcont">
    <form action='
    http://www.romancart.com/search.asp'
    name="engine" target=searchwin id="engine">
    <input type=hidden value=????? name=storeid>
    <input type=text value='' name=searchterm>
    <input type=submit value='Go'> </form>
    </div>
    </div>
    <div class="searchcont">Search For
    Products:</div>
    </div><!-- End Search Bar -->
    Pleasssssseeeeeeee Help
    Thanks

    Hi,
    Your form is defined in a div named "serchcartcont", you can
    use attributes like position and align of the div to do what you
    want to do. But there are two more dives above this dive, you will
    have define the height width of these before you can center align
    the inner most div. If you are not defining the height & width
    then by default it decide it automatically to just fit the content
    in it.
    Hope this helps.
    Maneet
    LeXolution IT Services
    Web Development
    Company

  • Cna somebody help me with Pinnacle?

    Hi! Can somebody help me, by telling me what im doing wrong?
    I just bought my Pinnacle PCTV Rave box , and wanted to install it!
    Every thing went fine, untill it should do the last test. Then it told me that it "Failed". And I should check that I've put the cabels right. I know I've put the card right in to the computer, at that the cabel are working!
    So im ot sure what it can be!
    I REALLY hope somebody can help me!
    Greeting Miakel (Denmark)

    Hi Roberto,
    I don't understand your message!
    What do you did?
    bye Roxane
    --thanks Roxane I did'it, but there is where jump the message
    --the error, do you have other solution.
    --Sorry
    --Roberto                                                                                                                                                                                                                                                                                                                                                                                                                                                

  • Record Group Urgent

    I am trying to populate a record group at runtime. This record group is based on query.
    My SELECT statement has a where clause. To this where clause i pass a CHARACTER value in single quotes.But its show error CANNOT CREATE RECORD GROUP.
    But if i pass a numeric value it works fine.
    Can any one tell me how to pass a character value in single quotes to a select statement which itself is in single quotes.
    thanx in advance
    Please mail the solution [email protected]
    navneet jain

    If I understood what you're asking...
    'select ... where columna = ''a'' and columnb = 1'
    (note the two 's - they are not a ")

  • Can somebody help me with migrating my mobile me ID into my ICloud ID?

    Hi,
    When setting up mobile me a few years ago I used a different emailaddress then I do for ICloud now. My email works perfectly fine on the IPAD?IPhone but I can not seem to get the settings right for mobileme on my Mac. This since it does not recognize the icloud email address for a mobile me mail account. Can somebody help me how to solve this?

    Welcome to the Apple community.
    I'm not entirely clear what it is you have done, but it sounds to me as though you have two accounts, a current iCloud account and a MobileMe account. These accounts are different, you cannot use your MobileMe address for your current iCloud account if this is the case.
    You can migrate your MobileMe account to an iCloud account, but then you will have two iCloud accounts.

Maybe you are looking for

  • Calling a java webservice from another application say a Vb client

    Hi, I have written a simple web service which greets the user "Hello" and using Apache axis and deployed on Tomcat.Everything works fine. But lots being said about interoperability but right now i cannot appreciate that as i don't know how to call my

  • SUN JES - migrating from Solaris to Red Hat Linux

    I have some EJBs working fine on JES 2004Q2 on Solaris. I want it to work on Linux JES 2005Q4. I guess all that I may need to do is: - Install JES 2005Q4 for Linux - Deploy by EJBs Is there anything else I should be taking care?

  • Anyone else having this problem? Region Editing problems, can't edit or see in editor.

    Hello, I'm using FCPX and i' having region issues, first of all i can't edit the region with the mouse as in pull it from the left or right to make it longer the whole region moves as if i clicked in the middle, then when i doucle click on it i'm not

  • The home button on my 4th generation iPod touch is stuck.

    The home button on my 4th generation iPod touch is stuck. How can I fix it at home and get it unstuck? Or were can I take it to get it fixed where it is free or where I do not have to pay a lot of money. With my stuck home button I have to wait for a

  • DAC email notification

    Hi , I have configured the DAC smtp server properly, the email notification TEST is working and im getting the TEST email notification But i dont get any email notification when the ETL finished to run. sould i configure the ETL execution plan or som