Frm-41826: Cannot replace group; columns don't match LOV

Hi-
I am Oracle ERP developer.
frm-41826: Cannot replace group; columns don't match LOV
this message absolutely don't know .
please help me.

If it is being created programatically, you may want to do a find on some of these key words..
CREATE_GROUP_FROM_QUERY
POPULATE_GROUP
SET_LOV_PROPERTY
They should all be within the same section of code, see what is going on in there.. The code may be trying to use a record group the LOV is not designed for ?

Similar Messages

  • FRM-41072 - Cannot create Group GRP_NAME

    In the layout I'm trying to populate Grp_name column values from GRP_TAB table, in the 'GRP_NAME' item list.
    This is the code I had written. But when I run the Form, I'm getting 'FRM-41072 - Cannot create Group GRP_NAME'error. What could be the error?
    DECLARE
    rg_tags varchar2(20) := 'GRP_NAME';
    rg_id RecordGroup;
    errcode number;
    list_id ITEM;
    BEGIN
    rg_id := create_group_from_query ('GRP_NAME', 'select GRP_NAME, grp_name from grp_tab');
    list_id := find_item('GRP_NAME');
    errcode := populate_group(rg_id);
    populate_list (list_id, rg_id);
    END;
    P.S. I'm writing this code in WHEN-MOUSE-CLICK Trigger in GRP_NAME list item. Is this the right place to write the code?
    Thanks.

    > select GRP_NAME, grp_name from grp_tab
    Looking up the on-line help for FRM-41072:
    FRM-41072: Cannot create Group %s
    Cause:     Caused by one of the following
    1. Duplicate column names in SQL statement.
    2. Invalid record group name.
    3. Query is invalid.
    Action:     Check the group name and/or correct the SQL statement.
    Looks like you violated rule number 1.

  • FRM-41072:  cannot create Group

    Hi,
    I am populating a pick list from a dynamic record group. I keep getting this error message FRM-41072: cannot create Group "start_year_rg". Everything works fine, the picklist gets populated fine everytime I change the value in :control.p_code_control field.
    This is my code, it is on a POST-TEXT-ITEM TRIGGER:-
    :global.p_code:=:control.p_code_control;
    DECLARE
    group_id RecordGroup;
    list_id Item := Find_Item('col1');
    status NUMBER;
    qstring varchar2(300);
    BEGIN
    qstring:='select distinct START_YEAR col1, START_YEAR col2
    from project10
    where project_code = :global.p_code
    order by START_YEAR';
    group_id := Create_Group_From_Query('start_year_rg',qstring);
    status := Populate_Group('start_year_rg');
    POPULATE_LIST('control.start_year_control', 'start_year_rg' );
    end;
    I am not sure why I keep getting this error message FRM-41072: cannot create Group.
    Any help...

    Hi ,
    Try out the following...
    DECLARE
    NUMB_VAR NUMBER;
    BEGIN
    Pick_List.DELETE_Picklist;
    Pick_List.Create_Picklist;
    NUMB_VAR:=Pick_List.Populate_Picklist_With_Query
    (PICK_LIST.LIST_IN,
    'select distinct START_YEAR col1, START_YEAR col2
    from project10
    where project_code = :global.p_code
    order by START_YEAR');
    Pick_List.Display_Picklist(PICK_LIST.LIST_IN);
    END;
    Simon

  • "Cannot replace because you don't have permission"

    I am paraphrasing the quote. Basically my wife and I share a Macbookpro using Snow Leopard. She installed apps on her user account but to use on all users. Also my own user account is also admin.
    I tried to update, or try to replace an app by dropping into the Applications folder but I am not allowed to replace. It states that I am not allowed or have permissions to do this. I checked my account and I have read/write permissions.
    Did I leave out something important?
    Thanks
    Clam

    The Mac Clam wrote:
    I trashed the app my wife installed first and I have just replaced it.
    I knew it would work; it has always worked for me.
    Only problem is that I have to switch to her user name then trash first.
    When you attempted it, there should have been an "Authenticate" button popping up, which when pressed, would allow you to enter the admin password to complete the task.
    I guess if my wife decides to do the same on her end she would need to come to my acc.
    Not necessarily; the user who installed the app can trash it without admin authentication. All other users (even other admins) have read-only access to it, which is why other users need admin authentication to trash it.
    I am not sure why this would be so problematic when we are both admins.
    I'd reconsider running all the time as an administrator. Apple recommends against it, for security reasons. Apple even goes so far to say to never check e-mail or browse the web while logged in to an administrator's account. I'd make a third account, make it admin, and then change your current accounts from admin to standard. You'll find that you rarely if ever actually need to log in to the admin account, since nearly all admin and even root tasks can be done from a non-admin account anyway, simply by entering the admin password when prompted. I do admin and root tasks all the time from my non-admin account this way. It has been months since I actually logged in to the admin account.
    Message was edited by: Király

  • Member Lists Don't Match & Unable to Delete Member

    In the Oracle Beehive online URL (https://beehiveonline-apex.oracle.com) there is a list of my groups. When I select one by clicking "View group members", I see a member I wish to delete. However, that member is "verified", so to delete the instructions are to use the Beehive online Admin tool (https://beehiveonline.oracle.com/BOLAdmin.html). In that location I see the group, but the group lists don't match between the two locations. The group member I want to delete is "verified" in the first web site, but does not exist in the 2nd.
    How do I delete this group member?

    Hi,
    The groups should match unless someone has deleted the user from the group using the previous version of the delete user - it did not propagate into the APEX app the way the new one does.
    If the user is not in the group in the BOLAdmin tool and not in the associated workspaxce they have probably been removed and if you let me know the name of the user I will tidy up the APEX app.
    If the 2 viewsof the group are very different send me the details of the group name offline and I will see why they are so different - [email protected]
    Phil

  • Error message:FRM-12001: Cannot Create the record group(check your query)

    Requirement: Need to get employee name and number in the LOV in search criteria.
    So I created LOV "full_name" and Record group Query under Employee Name property palette with
    select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number
    from apps.per_all_people_f papf, apps.per_person_types ppt
    where sysdate between papf.effective_start_date and papf.effective_end_date AND papf.person_type_id=ppt.person_type_id AND ppt.system_person_type IN ('EMP', 'OTHER', 'CWK','EMP_APL')
    AND PPT.default_flag='Y' and papf.BUSINESS_GROUP_ID=1
    order by papf.full_name
    I was unable to save and getting error message "FRM-12001: Cannot Create the record group(check your query)".
    I cant use PER_ALL_PEOPLE_F.FULL_NAME since full name here is last_name||title||middle_names||firstname.
    But my requiremnet is papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name .
    Can any one of you help me.

    First, Magoo wrote:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    for l_rec in ( select decode ( p_title, null, null, p_title || ' ' ) ||
    p_last_name || ', ' || p_first_name ||
    decode ( p_mid_names, null, null, ' ' || p_mid_names ) full_name
    from dual ) loop
    return ( l_rec.full_name );
    end loop;
    end;</font></pre>
    Magoo, you don't ever need to use Select from Dual. And the loop is completely unnecessary, since Dual always returns only one record. This would be much simpler:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name
    ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    Return ( Ltrim( Rtrim ( p_title
    ||' ' ||p_last_name
    ||', '||p_first_name
    ||' ' ||p_middle_names )));
    end;</font></pre>
    And second:
    user606106, you did not mention how you got your record group working. However, you DO have an issue with spaces. If you change this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number </font></pre>
    to this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select Ltrim(Rtrim(papf.title||' '||papf.last_name||', '
    ||papf.first_name||' '||papf.middle_names)) AS emp_full_name,
    papf.employee_number</font></pre>
    it should work. The Ltrim(Rtrim()) removes leading and trailing spaces from the resulting full name.

  • URGENT,FRM-41337: Cannot populat the list from record group

    Hi all:
    Can anyone help me in that problem?
    I have a database item in the block as a list item with combo box style and I use this code in WHEN-NEW-RECORD-INSTANCE at the form module level to populate that combo box list:
    DECLARE
         group_id RECORDGROUP := FIND_GROUP('group');
         list_id ITEM := FIND_ITEM('employees.job_id');
         x number;
    BEGIN
    IF NOT ID_NULL (group_id) THEN
              DELETE_GROUP (group_id);
         END IF;
              group_id := CREATE_GROUP_FROM_QUERY ('group','select name,TO_CHAR(id) job from cmn_jobs where job_type_id = 4720 ');
         x := POPULATE_GROUP (group_id);
         POPULATE_LIST (list_id, group_id);
         EXCEPTION
    WHEN NO_DATA_FOUND THEN
    null;
         END;
    That code worked very well and without any problem, but when I change the list item from combo box style to poplist style then the forms give that error:
    FRM-41337: Cannot populat the list from record group
    And an additional null/blanke element appears in the poplist with original element that come from RECORDGROUP.
    So can anyone help me to solve that problem please?

    First, how I can assign a default or initial value DYNAMICALLY to my poplist.Set the default-value to a parameter like :PARAMETER.MYPARAMETER then you can assign the desired default-value to the parameter.
    second, if I have popliste say X for example depend on another poplist say Y ,so when I put the code to populate popliste X on WHEN-LIST-CHANGED on popliste Y and make query then the >forms return FRM-40301 Query caused no records to be retrieved ,but when I have a copy for that code in WHEN-LIST-CHANGED and put it in WHEN-NEW-FORM-INSTANCE at the form >module the form work and returns records, so is it any error or exception in what I did.Can't answer that, you should check :SYSTEM.LAST_QUERY to see why the query does not returnany records.
    At the last, which better to put the code for popliste in PRE-FORM trigger at the form module or in WHEN-NEW-FORM-INSTANCE at the form module.I would use the PRE-FORM-trigger

  • Forms Personalization: FRM-41017- Cannot set UPDATE ALLOWED attribute error

    Hey All,
    I have a requirement in Projects > Allocation > Allocation Rules which needs a few mandatory columns to be greyed out.
    I think that the form is not getting query-able because of the “FRM-41017- Cannot set UPDATE ALLOWED attribute of non-enabled item RULE.OFFSET_METHOD” error when we open the form.
    I was trying to set the required property to false for personalization’s done on mandatory columns and see if that can work in suppressing that error. But it did not.
    Can anyone help me by telling how to avoid this and make the form query-able?
    Any help is much appreciated.
    Thanks !

    Please post the details of the application release, database version and OS.
    Please see if (Capital Projects Form Personalizations Error- FRM-41017 [ID 1072660.1]) helps.
    Thanks,
    Hussein

  • FRM-47007: Cannot get parameter WUC_DATA attributes from Parameter List: in

    Hi,
    I am pretty sure this is a webutil message. I am running 10g through OC4J, all was working well one minute then on startup of the form I get these 2 message 4 or 5 times:-
    FRM-47007: Cannot get parameter WUC_DATA attributes from Parameter List: invalid list ID.
    followed by:
    FRM-47007: Cannot get parameter WUC_DATA_MULTIPART attributes from Parameter List: invalid list ID.
    These 2 message are repeated 4 or 5 times then things appear to run fine, I can open and read files, transfer them etc. The only thing I can think I have done differently is add a bean to a data block but when I remove the bean and restart the OC4J I still get the messages.
    Any ideas?

    Fixed,
    I dropped the WEBUTIL object group then added it again by adding the object library then subclassing it to the object group. The error messages are gone.
    Cheers

  • FRM-40039 cannot attach library ofgbsl while opening ccw2031

    I got the above error when I try to run the program ccw2031 on the ie browser. First of all there are 3 files attached in my 4.5 forms. These libraries are the following; OFG4BSL.pll, OFG4mnl.pll, OFG4tel.pll. Upgrading it to 10g for windows had no problems since there is a corresponding libraries namely OFGBSL.pll, OFGMNL.pll OFGTEL.pll and OFGMES.pll.
    My program compiled with no errors when i tried attaching those 4 files in my Developer Suite 10g for unix.
    The problem came out when I tried to run it using the Application Server.
    And when I try accessing the program again in the forms developer i got the following messages:
    FRM-10102: Cannot attach PL/SQL library OFGBSL. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library OFGMES. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library OFGMNL. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library OFGTEL. This library attachment will be lost if the module is saved.
    Questions: 1. Are there any libraries equivalent to these 4 files in UNIX?
    2. Can I use the windows version and compile using frmcmp? Actually i tried this already but did not work.
    3. How do I configure the Developer Suite 10g for Unix to be able to attach the libraries mentioned if it works?
    Can Anybody help me.....Please.
    Edited by: user7493752 on Jan 30, 2009 12:17 AM

    First, you don't need to replace the pll's with the 4 in the middle (e.g. OFG4BSL) by the ones without the 4 in the middle and i wouldn't do it. The libraries belong to different versions of the forms-generator from oracle-designer (the *4*-ones form Designer 2000 generating forms 4.5, the ones without the *4* starting with version 6i). But both versions are "pure" pll's, so they can easily migrated to 10g.
    FRM-10102: Cannot attach PL/SQL library OFGBSL. This library attachment will be lost if the module is saved.Your problems can be based on one of the following:
    The pll's are not in the working-directory of your forms-environment, if any.
    The pll's are not in one of the directories defined in the env-setting FORMS_PATH.
    You attached the pll's to your forms with the whole path (not preferable) and now forms doesn't find that path in your application-server-environment.
    Library-names are Case-sensitive, so if you attach MYLIB, the filename must not be mylib.pll but MYLIB.pll.
    hope this helps.

  • FRM-10221 Cannot read file PL000000-but there is no menu named PL000000 !!?

    Hi all!
    I'm having a problem wich will get me nervous!
    Here we have an application 100% generated from designer. The problem is that it have been started in questionnables ways ... there is 2 workarea to contains all the forms needed for the application instead of 2 containers in the same workarea. The workarea "JD" where we put all the utility forms and the workarea "PL" where we put all the forms use for the application configuration.
    Recently I have developped a new form in the container "PL" but the menu calling this form is in the workarea "JD" with a fake copy of the original form so we can refer it in the "JD" menu. When i generated and run the applications and i choose my new form in the menu i got the error "FRM-10221 Cannot read file PL000000" 2 times then the forms is called and is running correctly. I really don't understand whats is going on cause there is no menu called "PL000000" in the 2 workarea!!!
    All that i read about this error mesage from now tell that the menu is not in the form path or many other solution, but in my case I got an error about a menu that does not exists!! I know that something is triggering this but i just can't find it cause there is no menu called "PL000000" anywhere in this application!!??
    Is there someone who could have an idea about whats going on here!!??? HELP PLEASE!
    Thank you!

    Thanks alot!
    I'm not familiar with 100% generated forms from Designer yet and your answer make me discover something. It seems that when you generate a new form, the main menu of the container is automatically attached to that forms by default.
    Plus i was wrong in a point in my original post. There was no menu named "PL000000" but there was one named something else but with the "implementation name" as "PL000000" ... my bad ...
    Thanks alot again, my problem is now solved!
    :o)

  • Unable to select SOME external users in person or group column in SharePoint O365

    Here's a head scratcher.
    We have an O365 SharePoint(G3) instance.
    Sent external users invites to join the site from the SharePoint Group that the external user will be placed.
    External users accepted invitations and now have access to the site with the correct permissions.
    Permissions assigned to SharePoint Group.
    Some external users can be selected for "Assigned to" field (person or group column type).
    Some external users canNOT be selected for "Assigned to" field (person or group column type).
    When typing external users name that canNOT be selected, the error message "No results found" appears.
    Went to Site Settings > Site Permisisons > Check Permissions and typed in external users name that canNOT be selected, the error message "No results found" appears.
    I have no idea why this would happen for some external users and not others.
    External users that can be selected and those that canNOT be selected are in the same SharePoint Group and have the same permissions.
    Could this be due to how the external user set up their account?
    Help me please. This is driving my crazy.
    Thanks in advance.
    Tamara
    The Stumped SharePointer
    Tamara Bredemus SharePoint Minion...working up to Maven

    Hi Miikka,
    can you try cleaning up the user information list via powershell and reconfigure the userprofile sync.  following url contains the powershell script for user information clean up
    http://blog.fpweb.net/how-to-clean-up-sharepoint-user-information-list-with-powershell/#.VPrbn_mUeSo
    Regards  Roy Joyson
    Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.
    Roy Joyson

  • DiskWarrior cannot replace the original directory due to Mac OS failure?

    I have a Powermac Dual G5 running 10.4.8. I have a Lacie Firewire 800 RAID attached.
    Lacie firmware is up to date and Disk Utility reports no problems with the RAID, either permissions or Repair/Verify disk.
    I have run the latest DiskWarrior 3.0.3 on the RAID (both from the boot volume and booted from the 303 rev39 CD) and it detects a formidable list of potential repairs to be done, creation dates on link files etc.
    It offers the next step which is to replace the existing directory with the pristine one it has just prepared.
    Every time I press 'Replace' it backs out, reporting;
    "The new directory cannot replace the original directory due to a MacOS services failure"
    (If I run DW when booted from the RAID, it replaces the normal boot drives directory OK btw)
    I do understand there used to be a bug in Mac OS Panther and an older DiskWarrior reporting similar to this but why now with 3.0.3?
    What does it mean?
    Google was no help. Maybe should have come here first
    PowerMac G5 2.5 - PB 12" 1.5   Mac OS X (10.4.8)   SE30, IIsi

    If lots of errors are reported, it is probably a good idea not to replace the directory. Wiring anything to the drives could make things worse. With Disk Warrior run from your boot hard drive, have it create the new directory, but don't try to write it to the disks. You can then use the new directory to copy files from the bad disks to another disk, or DVDs. It should give you a more accurate backup than the old directory, with its errors. Others have reported LaCie RAID systems failing, so get the data while you can. You could then reformat the LaCie with zeroing and see if it generates errors again, maybe running Disk Warrior daily. If your are lucky, the LaCie may be OK then, but I wouldn't trust it.

  • Materialized View cannot use filter columns ORA-12033

    Hello Forum members,
    I am creating the following MV with Can you please advise me??
    Thanks
    SQL> create materialized view log on his_swi with rowid including new values;
    Materialized view log created.
    SQL>
    SQL> CREATE MATERIALIZED VIEW His_Swi_mv
    2 refresh fast with rowid
    3 AS
    4 select quarter,sum(sw_po),sum(sw_po_fre),
    5 sum(sw_por_sta+sw_porunt_swi+sw_por_hb+sw_po_free) as proj from
    6 history_switch group by quarter;
    his_swi group by quarter
    ERROR at line 6:
    ORA-12033: cannot use filter columns from materialized view log on
    "EM"."HIS_SWI"

    Hello Forum members,
    Please ignore the above post.
    got solution from : http://www.jusungyang.com/DWfolder/MaterializedViews/MVlogFilterColumns.txt
    Thanks

  • Group columns in jtable

    Hi,
    i'm looking for a solution to group columns in a table header. I found some very old posts in the web but they don't help.
    I think there is no standard solution in Swing?
    It confuse me that no other people ask this here in the last months/years. I think this is a requirement for many desktop apps.
    Can anybody give me a tip how can i do this.
    Thanks

    I mean to group logical columns together so they have a multi line column header, the first line is the group name and in the second line i have the column names
    Edited by: broemme747 on Apr 9, 2010 10:45 AM

Maybe you are looking for

  • March's TechNet Wiki SSAS Guru Winners announced!!

    The results for March'sTechNet Guru competition have been posted! http://blogs.technet.com/b/wikininjas/archive/2014/04/17/the-microsoft-technet-guru-awards-march-2014.aspx <- results page! Congratulations to all our new Gurus for March! We will be i

  • Down Payment to Vendors - Document parking

    Dear All, Is it possible to park vendor down payment in SAP using F-65? Our requirement is that an employee has made down payment to vendor from his imprest. Now I want to credit his imprest and debit vendor with Spl. GL indicator. I need this docume

  • Can't set up BBM - "no blackberry data"

    Sorry, it didn't seem to have a spot for any details. I got a new Leap yesterday, having had a Z10 before that. They did the conversion of all my data in the Bell Store using my blackberry ID. Everything seems to have gone fine, except when I got hom

  • Mail error in Mountain Lion

    Hi guys, Here's what happened to my mail after i upgraded to ML Several times already, anyone else experiencing this as well?

  • Spatial query performance is slooow

    I'm running numerous contiguous 3D spatial filter queries on a table of around 1.5million rows, however am getting slow performance. What can I do to improve this? is there some DB tuning I can do?