How to open a color palette in forms 6i

Need help to open the color palette in oracle forms 6i when a button pressed.

What are you trying to accomplish? Will this Forms Color utility written by Steve Cosner work for you?
Hope this helps,
Craig B-)
If a response is helpful or correct, please mark it accordingly.

Similar Messages

  • How to define new colors for the form?(Finish)

    Hello! Everyone!
    I want to define new colors for the new form.
    But I don't find where I can define it.
    How to define new color for the form?
    Thanks in advance!

    You have to set the Canvas color or as I said earlier you need to use one of the available color schemas on the OAS or Builder runtime.
    If you want to use user defined colors in the builder, then you need to create a new color palette and use it.
    I personally haven't tried it, but there is a section in the online help that describes how to do this.
    Tony

  • How to open  business partner Properties selection form(OCQG table)

    Dear all ,
    Is there any object for business partner Properties which are stored in OCQG table
    Can anybody tell me
    how to open the properties selection form as incase of
    Financials->Financial Reports->Accounting->G/l Accounts and Business Partners-> Click on Properties Button
    I want to open this form  is there any way to do it
    Thank you
    Atul

    Hello Atul,
    With the sbo sapbouicom object you can for example simulate a buttonclick.
    I suggest that you use in your code:
    ActivateMenuItem("13057") //(G/l Accounts and Business Partners)
    and then you simulate a click on the property-item/button.
    Hope this helps.
    Best regards Teun

  • How to open a page from a Form and pass parameters to the form on that page

    I found a similar example on this forum, but it did not work for me:
    declare
    l_names owa.vc_arr;
    l_values owa.vc_arr;
    i number;
    begin
    PORTAL.wwpro_api_parameters.retrieve(l_names, l_values);
    FOR i in 1..l_names.count
    LOOP
    htp.p(l_names(i) || ' ' || l_values(i));
    END LOOP;
    end;
    By using this method i get the parameters for the Form, like the session ID, but not the parameters for the Page that the form is displayed in.
    Another method I tried:
    To open a Form from a Form and pass parameters works fine like this:
    --In the After processing page PL/SQL event.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    if v_id > 0 then
    htp.formOpen('PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=2649500412&p_arg_names=_show_header&p_arg_values=YES&p_arg_names=ID&p_arg_values='||to_char(v_id),'post');
    htp.formSubmit(NULL,'Upload Files');
    htp.formClose;
    end if;
    End;
    But I want to open a Page containing the Form instead of just opening the Form. Is this possible to open a Page and pass paramters to the page, and then let the form inside the Page access the passed paramters. The reason for this is that a Form cannot be based on a page template, or can it? When opening the form i want to keep the left menu, which I can if it is a page based on my template with the left menu.
    Best regards
    Halvor

    Hi,
    You can do this by calling the url of the page with the form. You can then use p_arg_names and p_arg_values to pass parameters. In the called form you can get the value from p_arg_names and p_arg_values and assign it to the form field.
    You can call this code in the success procedure of the calling form.
    declare
    v_id number;
    blk varchar2(10):='DEFAULT';
    v_url varchar2(2000);
    Begin
    v_id:=p_session.get_value_as_number (p_block_name=>blk,p_attribute_name=>'A_ID');
    v_url := <page_url>;
    if v_id > 0 then
    call(v_url||'&p_arg_names=id&p_arg_values='||v_id);
    end if;
    End;
    In the called form in "Before displaying form" plsql section write this code.
    for i in 1..p_arg_names.count loop
    if p_arg_names(i) = 'id' then
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_ID',
    p_value => p_arg_values(i)
    end if;
    end loop;
    This code picks up the value from p_arg_values and assigns it to the form field.
    Hope that helps.
    Thanks,
    Sharmila

  • How to open multiple instances of same form thru menu items

    i'm not able to open another instance of the form.....if i want to open multiple instances of same form ...what should i do???

    Hi Shenaz,
    To open multiple instances of the same form you need to set a different FormUID to each form you open.
    So lets say your FormType is MyFormXPTO. You need can set the FormUID as MyFormXPTO_1, MyFormXPTO_2, and so on.
    If you need a code samples, take a look at this post.
    Regards,
    Vítor Vieira

  • How to open a PDF file using forms 9i

    Hi guys!!! Could you please help me with this?
    Using the webutil library, i've found the function FILE_OPEN_DIALOG which yes, it is like windows' dialog box, but it doesn't open the specific file. If i have the PDF software, and a pdf file, and i use the webutil code to open the file from forms, why doesn't it open de file?
    Code used:
    :block.item := WEBUTIL_FILE.FILE_OPEN_DIALOG('c:\',
    'pdf|*.pdf',
    'Select a file: ') ;
    I have also used:
    :block.item := webutil_file.file_selection_dialog(directory_name => 'c:\',
    file_name => null,
    file_filter => 'pdf|*.pdf',
    title => 'Select a file',
    dialog_type => open_file, --save_file
    select_file => TRUE);
    thnx!!

    The dialog just gives you the name of the file to open. You then have to write code to open the file. web.show_document should work.
    I have deleted your last entry. Whatever you think about the situation, a civilized language (which I know Spanish to be) would be appreciated.

  • How to open .cmdrw file from Oracle Forms 10g

    Hi,
    We need to call *.cmdrw* file from Oracle forms 10g. Is there any way to call *.cmdrw* file from Oracle forms 10g?
    Thanks for the help.
    Viishnu Nekkanti

    In case you want to open a .cmdrw with its associated application you can use the following procedure:
    webutil_host.NonBlocking( 'rundll32 url.dll,FileProtocolHandler ' || client_filename );This works for every file where a program has been associated to its file extension. (Adobe Reader for *.pdf, Microsoft Word for *.doc, Microsoft Excel for *.xls and so on)
    Regards
    Markus

  • How to open a  Word document in forms

    Hi all ,
    I need to open a document( MS Word) while clicking a button from forms.Will u please help me to do that ?
    Regards,
    Nycy

    CLIENT_HOST will only help you if the file is accessible from the client's filesystem. If you put the documents on the server there are three options:
    1. Transfer the file to the client everytime if should be opened using WEBUTIL_FILE.AS_TO_CLIENT lets say to c:\temp, then open it using CLIENT_HOST as provided by Francois.
    2. Share the directory on the application server to that it can be accessed via UNC-path like \\server\document.doc and use CLIENT_HOST directly on the network dirve
    3. Create a virtual directory in the application server and map it to the physical directory where the doc's are located, then you can access the documents via URL and can use WEB.SHOW_DOCUMENT instaed of CLIENT_HOST.
    hope this helps.

  • How to open Workflow status monitor from form personalization

    I am trying to open workflow status monitor page from special menu using form personalization and encountering below error message.
    Any help or guidance in this regard will be much appreciated. Here are the personalization details that I have set.
    Builtin Type : Launch a Function
    Function COde: FND_FNDWFIAS
    Function Name: Monitor Activities List
    Parameters:
    I tried both the below in parameter field and both are returning null point exception while opening page.
    =SELECT 'FUNCTION_NAME='||'FND_FNDWFIAS'||' OPEN_FLAG='||'Y'||' SESSION_FLAG='||'Y'||' ITEM_TYPE='||'XXOMCP'||
    ' ITEM_KEY='||:GLOBAL.XXG_WF_KEY||' ADMIN_MODE='||'NO'||' ACCESS_KEY='||'Y' FROM DUAL
    =SELECT 'FUNCTION_NAME='||'FND_FNDWFIAS'||'OPEN_FLAG='||'Y'||'SESSION_FLAG='||'Y'
    ||'OTHER_PARAMS ='||'ITEM_TYPE=XXOMCP'||'&ITEM_KEY='||:GLOBAL.XXG_WF_KEY||'&ADMIN_MODE=NO&ACCESS_KEY=Y' FROM DUAL
    Regards,
    Sree

    Sorry Phil,
    but that's all you got.
    Frank

  • Fireworks CS6 crash when opening color palette

    Fireworks CS6 has got to be the buggiest program I have used on my Mac.
    The bug that is especially irritating is when I attempt to open a Color Palette, Fireworks immediately crashes ( this is before I even begin to navigate or select a color palette ).
    I have been able to narrow this problem down to a Fireworks CS6 problem on my Mac as opposed to as simple program like TextEdit. I can open the color palette in TextEdit which adds it to the OS color palette library. From there I can use colors from the newly opened palette within Fireworks. It (FW) just can't do the opening of the palette.
    Is anyone else able to open/add the color directly from FW CS6?
    MacBook Retina -16Gb RAM
    Mac OS 10.8.3

    I have the exact same problem, also running OS X Machericks 10.9.5 on a Mac Book Pro, would be really helpful to understand how to fix this error.

  • How to import color palettes from Adobe Kuler to muse ?

    How can I  import color palettes from Adobe Kuler to muse ?

    I've looked for an answer to this but no luck so far. Until Adobe add this feature to Muse you could try this work around:
    1. Import a Kuler .ase file into Illustrator (or Photoshop too I guess)
    2. Select the desired colour in Illustrator and note the RGB values
    3. Create new swatches in Muse and use the noted RGB values rather than the colour picker.
    Hope this helps.
    Rob

  • How to open quotation and order form?

    How to open quotation and sales order form from code behind in VB?

    Hi,
    On the button click event u need to execute the following code to open the required system forms,
    sbo_application.ActivateMenuItem("2049") 'For sales Quotation
    sbo_application.ActivateMenuItem("2050") 'For Sales Order form.
    Hope it helps,
    Vasu Natari.

  • How do I remove saved colors from color palette?

    If I open the color palette in Mail there are several I have saved at the bottom, in the little squares below the color circle. Some are duplicates or ones I don't want any more. Yet I cannot get rid of them. Can't drag them off and can't find a way to eliminate them. Does anyone have an idea about this?
    Thanks,
    Richard

    Richard & Jeffrey,
    Thank you for posing the question and answering it. It is just what I wanted.
    Now one more thing Jeffrey - to put the icing on the cake(!)... can I name that saved color? I've tried clicking on it, but nothing happens.
    Thanks
    Geraldine

  • How Do I correct red eye in ps Touch, and where is the color palette?

    I'm excited about the new ps touch android app. Some of the tutorials aren't all that easy to follow.
    Can anyone tell me how to correct red eye and how to access the color palette?
    Thanks for your help.

    Just to speed up the process:
    http://forums.adobe.com/community/photoshop_touch_for_phone
    http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_photoshop_touch
    Gene

  • Reports (10.1.2.0.2) developer crashes when I try to import a color palette

    I had enough with this Reports Developer tool. Did not have this problem with 6i version (have been using for years) and do not have problem with changing the color palette with Forms in the 10.1.2.0.2 version. But the :(!@#$%! reports keeps crashing when I try to change (import) a color palette. The only option available is the Export color palette, the Import is always greyed out. This report that I am trying to change the color palette was originally designed with 6i reports tool and I am porting it to iAS format. It is running on Linux. If I start a new report (from scratch) in iDS (reports tool), then I have the paper layouts uses the new canvas of the iDS. But if you try to open up an old report, it shows the old color palette and does not allow importing the proper new color palette. I had no problem with changing the color palette when porting 6i forms to 10gR2 forms. Whe the hell the reports is not working? It supposed to be the same process to import a color palette. I need to port this old reports into new iAS format and this stupid color palette stuff is holding us back.
    Any step by step instructions to import a color palette in Reports, is appreciated. Write it for dummies please - I am tired and need step by step instructions please. I never liked the Reports tool (contrary to Forms) and I hate it now.
    Message was edited by:
    zaferaktan
    Message was edited by:
    zaferaktan

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

Maybe you are looking for

  • Adobe flash video constantly crashes when starting to play

    The flash player crashes every time I try to play a flash video in browser (vk videos as well as dailymotion and as well as youtube). Flash games are okay, though... Kongregate.com at the very least... At the same time google Chrome does not crash an

  • Test web service published returns Error code: InternalError, Http status code: 500

    Further invastigating ther error mentioned here:  https://social.msdn.microsoft.com/Forums/azure/en-US/14afa50f-287d-4158-852a-c9532f9f30eb/test-published-web-service-experiment-error-with-status-code-400?forum=MachineLearning I have made an even sim

  • How do I get to see my calender on the computer

    Hi everyone. First time post. How do I get to see my calender on my computer? I have a PC. I do not see where Icloud syncs the calender into the computer. Thanks for the help.

  • Help!!! err = 9006

    When I try to download my purchased items from itunes store to my library, it always stops and the err = 9006 comes up. Can someone please help me. I have purchased songs, but cannot download them.

  • Exchange Server 2013 - LoadGen 2013

    I am trying to make use of LoadGen 2013 in an Exchange 2013 environment. Initially I started with LoadGen on a different machine (same domain) and then moved LoadGen to the exchange server itself. When I select the number of mailboxes greater than 20