FRM-47001: Cannot create parameter list aamir : list with this name exists.

Sir I use parameter list in my form whose name aamir first time when I call report system give result right but second time I call report then system give this error
FRM-47001: Cannot create parameter list aamir : list with this name exists.
Please give me idea how I get print view second time
Thank
aamir

Hello aamir,
Use the following to delete existing parameter.
DECLARE pl_id ParamList;
BEGIN
pl_id := Get_Parameter_List('tempdata');
IF NOT Id_Null(pl_id) THEN
Destroy_Parameter_List(pl_id);
END IF;
END;
Cheers,
Suresh

Similar Messages

  • 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-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

  • FRM-47026 Cannot get parameter error when using bi graph

    Hi,
    I have recently tried to use the BI Graph bean provided as a demo from Oracle.
    I have amended the cursors and put into our system but get an error on the master graph.
    When i mouse click on a column i recieve the error from forms :
    FRM-47026 Cannot get parameter GRAPH_INFO attributes from parameter List CUSTOM_ITEM_LST19: no such names parameter exists.
    Any ideas. i have not changed the code in this trigger only the procedure cursors to work within our system
    code in trigger:
                   eventValues := get_parameter_list(:system.custom_item_event_parameters);
                   get_parameter_attr(eventValues,'GRAPH_INFO',eventValueType, tempString);
                   set_custom_property('PJC.WAREHOUSEGRAPH',1,'HIDE_GRAPH','');
                   FORMSGRAPHSAMPLE.clearData('PJC.DETAILGRAPH');
                   FORMSGRAPHSAMPLE.populateDetailGraphData('PJC.DETAILGRAPH',tempString,',');
    thanks

    Hi,
    Did you ever get this issue resolved?
    I am facing the same problem.
    Thanks
    Ian

  • 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.

  • I have installed Adobe Lightroom CC.  In the process of launching, a popup appears, that says:  "AN INTERNAL ERROR HAS OCCURRED.  Cannot create the required folder:  /Users/(my user name)/Library/Application Support/Adobe/Lightroom/Develop Presets."  So e

    I have installed Adobe Lightroom CC.  In the process of launching, a popup appears, that says:  "AN INTERNAL ERROR HAS OCCURRED.  Cannot create the required folder:  /Users/(my user name)/Library/Application Support/Adobe/Lightroom/Develop Presets."  So even though Lightroom CC is installed, it will not launch.  What do I need to do to allow it to launch?

    The problem was solved today.  Here's the full story.  I'm a Mac user.  At first I installed Lightroom CC on my iMac (desktop).  I had this problem so I called Adobe, and was referred to a "special unit" .  After about an hour the tech solved it for me ... we did a screen sharing and she took control of my computer for a loooong time.  Because of language difficulties, at first I wondered if she knew what she was doing but she eventually solved it.  Although she couldn't explain exactly what she was doing, she summarized it by saying "it was a permissions problem."  I asked if I would have the same issue later when I installed it on my laptop (Macbook Air).  She said probably not.
    But I did.  The same internal error popup arose on launch and launch did not complete on my laptop.  I tried chat but no joy so I eventually called Apple Care.  I had noticed that on my laptop (and the iMac for that matter), that there was no Library folder after my user name.  The Apple tech explained that the Library folder is actually there but it is hidden because it's very easy for users to do some very nasty things to their computer by going astray while in the Library folder.  The folder is actually there, but they hide it.  I did remember seeing that the tech helping me with my iMac had typed the work "Library" while she was controlling my computer.  Basically she had activated the hidden Library folder so she could open the path that Lightroom was trying to follow to create that "Develop Presets" folder.  For some reason, the inability to create that folder in the launch process was preventing launch from being completed.  The Apple tech said she didn't actually have to do that and activated the Library folder by use of the Go selection on the menu bar.  Anyway, once that complete path was replicated and opened, the next step was to go to the Lightroom Permissions field and add my user name to the user categories already there and enable "read and write" permissions to my user name.  Once done, I shut down my laptop, and then rebooted.  I launched Lightroom and then boom, voila, heavens to betsy, etc. it launched and suddenly a dismal weekend turned into a great one. 
    I am not a geek, so I hope this makes some sense.  I also hope Lightroom launches again tomorrow and beyond! 

  • I just upgraded from Mountain Lion to Maverick (10.9.3) and Adobe CC is listed as incompatible with this OS.  What do I need to do to make it work again?

    I just upgraded from Mountain Lion to Maverick (10.9.3) and Adobe CC is listed as incompatible with this OS.  What do I need to do to make it work again?  Just a patch/update or do I need to uninstall and install?

    antoniobesteban wrote:
    I just upgraded from Mountain Lion to Maverick (10.9.3) and Adobe CC is listed as incompatible with this OS.
    Where are you seeing that information? Got a link?
    According to the Adobe website: Mac OS X Mavericks (10.9) compatibility FAQs | CC, CS6, Acrobat
    Plenty of people, including me, are currently running CC on Mavericks.

  • HT204319 Why don't we list model number with this information rather than the month the model was released? e.g. MacBook 2,1 or 5,2 or whatever.

    Why don't we list model number with this information rather than the month the model was released?
    e.g. MacBook 2,1 or 5,2 or whatever.

    Generally, Apple refers to it's systems by what part of the year they are released, ie early - mid - late.  Some people do provide the model number when they post questions, however, generally, the time of year and year released equals the model number.

  • HT201304 why I cannot conect to the iTunes store with this iPad?

    why I cannot conect to the iTunes store with this iPad?
    when  I want to download something, always show me " cannot connect to the intues store ? What I can do now ?

    Usually it's because you are not making internet connection via wifi.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
     Cheers, Tom

  • You cannot use the application "System Preferences" with this version OS X

    You cannot use the application “System Preferences” with this version of Mac OS X.
    I received this error message when trying to run System Preferences (SP) for the first time after running the 10.5.1 update (from the download, not software update). After the update, I repaired permissions. Did another restart. Same.
    I reinstalled 10.5.1 update. Same message. Logged in as another user. No change.
    I removed the com.apple.systempreferences.plist from ~/library/preferences. No change, and it did not re-create the .plist file.
    Any ideas? No one else seems to be having this problem as far as I can tell.
    dkrockville

    I have had this problem with many applications after updating to 10.5.1, including
    System Preferences, Calculator, Preview. Tried repairing permissions, and other tips from this thread. The strange thing is, the actual Leopard applications seem to have actually vanished? I don't know if this is anything to do with Time Machine; Anyway, My fix was:
    Download Pacifist (if you don't already have it), locate the apps that you're having problems with on the Leopard install DVD, and copy them to the Applications Folder (Click on 'Replace Bundle')
    Problem Solved for Me!
    Hope this Helps!

  • Adobe Acrobat Pro cannot find moved files or files with edited names

    Adobe Acrobat X Pro 10.1 cannot find recent files or files with edited names.
    For instance, if a PDF file is moved in the hard disk from one foder to another, Acrobat cannot find it when trying to open it via "File - Open Recent File".
    Likewise, if the name of the file is changed in the Finder.
    Similarly, if a PDF file is open, it is marked with the yellow fluorescent marker of Acrobat, its name is then changed in the Finder and later on you try to save it, Acrobat says that it cannot find such file.
    Yet, applications like Microsoft Word do not have any of the above problems. It would be great if Adobe could fix these serious productivity issues, which have plagued Acrobat for many years now.
    How to send such feedback to Adobe?

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • I get the following error message when I connect a usb ethernet adapter to my new MacBook Pro: Unsupported - You cannot use an Apple USB Modem with this computer. I live were we only have dial-up and the Apple Store said this is what I need.

    I get the following error message when I connect a usb ethernet adapter to my new MacBook Pro: Unsupported - You cannot use an Apple USB Modem with this computer. I live where we only have dial-up and the Apple Store said this is what I need. In addition, when I connect the phone to the connecter it falls out, it will not click in.

    Why are you using a usb ethernet adaptor? Just plug the modem into the usb port.

  • How to create an instance of myClass with a name that is in a variable?

    Hey Guys,
    How can I create an instance of myClass with a name that is in a variable?
    Normally a new instance is defined something like:
    myClass myName = new myClass ();
    I want to make a method which creates instances of a certain class (ie myClass) with names that are given to the method within its arguments.
    So something like:
    public void myMethod(String className) {
    myClass value of className = new myClass();
    So if className = "FirstName" then an instance of myClass should be created with the name "Firstname", like:
    myClass Firstname = new Firstname;
    Thanks.
    Jasper

    Thanx for your reply's
    If I understand the tutorial correctly I should do
    something like this to start the map:
    Map<String, myClass> myMAP = new HashMap<String,
    MyClass>();
    and something like this to add a new instance of the
    class every time:
    myMAP.put(myString, new myClass());
    So this would result a link between the Strings and
    the instance of the Class?
    Thanks
    Message was edited by:
    JasperLevinkyep. the String is the key, and the MyClass instance is the value. to get the value out of the map, use map.get(key)

  • Hi i cannot download ios 6.1.2 on iphone 5 , i tried to reset the setting and restart it but just cannot download. can anyone help me with this ?

    hi i cannot download ios 6.1.2 on iphone 5 , i tried to reset the setting and restart it but just cannot download. can anyone help me with this ?

    First, plugged into a wall power socket.
    You go to
         Settings > General > Software Update
    to update the new IOS 6.1.2

Maybe you are looking for

  • HOW TO ADD FIELDS OF BSEG-ZFBDT & BSEG-ZBD1T

    hi frnds. currently iam working on SD MODULE I NEED the NET DUE DATE SO HOW TO DO THAT 1 problem plz: HOW TO ADD FIELDS OF BSEG-ZFBDT & BSEG-ZBD1T TOGETHER one is date & other is numeric value so how? one is date & other is numeric value so how to ad

  • Has anyone loaded CS3 MC onto 27"i7?

    I want to get an i7 but it must work with software. Has anyone got one of these and actually attempted to load CS3 Master Collection and been successful? Please let me know Thanks

  • Concept of capacity levelling

    dear gurus,         can any body explains the concept of capacity levelling with t-codes.i already posted the same thread.but i require some more light.if any body explains it will be better for begginers.if anybody is having any doccuments regarding

  • Chromium-Nightly: libmojo_system.so: cannot open shared object file..

    Google seems to be lacking info on libmojo. Here's the error I got after installing chromium-nightly [klepto@LUNASYLUM lib]$ chromium /usr/lib/chromium/chrome: error while loading shared libraries: libmojo_system.so: cannot open shared object file: N

  • LPE1 Automatic Output Determination

    Does anyone know where the flag for this message below is kept and if automatic determination can be turned back on? This indicator was not put in MN12 and did not change my settings at MN12 so I don't know where deactivation occured and how to rever