User Defined Components in Forms Developer???

Hello everybody,
Just three questions on which the answer I can't find:
1. Can we create our COMPONENTS (GUI or anything) with and for Forms Developer 2000 ? And If yes how (does anyone knows any documentation???)
2. Can we create a program splash screen for a program in Oracle Developer and If yes how ( is there any tutorial ?) ?
3. Can we (and how) install our application icon in Forms created with Dev2k? (You know the small icon appears in the top-left corner of the application window)
Thanx in advance,
George ;-)

Hi George,
Yeah u can change the icons of application window. U have to do the following steps
1)Attach the PL/SQL library D2KWUTIL.PLL to your module.
2)In Pre-Form trigger use the following procedure/function from the attached pll.
Win_Api_Utility.Get_Active_Window function
Win_Api_Session.Change_MDI_Icon procedure
example of how i did in pre_form trigger
declare
a pls_integer;
begin
a:=Win_Api_Utility.Get_Active_Window (FALSE );
Win_Api_Session.Change_MDI_Icon (a,'c:\npmis\icons\rt_exit.ico',0);
end;
for more information on the package see form help.
Hope this solves your problem.
enjoy.....
Navneet Jain
[email protected]

Similar Messages

  • Storing User defined reports in SQL Developer

    Hi All,
         I have created some user defined reports in SQL Developer. My company requested me to update the OS from Win XP to Win 7. I forgot to export those reports. I got my machine back, they said that the data is retained. Now i need to take those reports back. Can anyone tell me in which folder would SQL Developer stores the User Defined Reports by default? My bad I dont remeber the Report Name too.
    Can anyone help me on this?
    Boopathy vasagam

    Hi,
    You can check at location
    C:\Documents and Settings\<your_user>\Application Data\SQL Developer
    HTH

  • Search Facility in User Defined Object (Default Forms)

    Hi,
    I have created a User Defined Object in the Default Forms section and chose the 'Find' tickbox when registering the UDT.  Now I have populated the data into the UDO but I can't search for data in columns.
    Am I doing something wrong please?  Can this be done?
    Thanks.

    Hi Vankri,
    Check the thread
    UDO Default form "find" function
    Regards
    Jambulingam.P

  • User-Defined Fields and Form Settings

    I have a User-Defined Field in the table "OCLG" and I'd like to show it in the "Activities Overview for Business Partner - xxx" window.
    Is possibile to do that by the "Form Settings" window? Here I don't find U-D Fields. Is there a way to show them?
    Or is there an other solution?

    Hi,
    This report is hardcoded. You need to create your own report for it. Better by Crystal Report.
    Thanks,
    Gordon

  • Trapping user defined exceptions in forms

    hi guys..
    i have a database trigger that goes like that:
    CREATE OR REPLACE TRIGGER loan_trig
    before insert on loans
    for each row
    declare
    lcount number(10);
    duplicate_loan exception;
    begin
    select count(1) into lcount from loans
    where branch_code=:new.branch_code
    and client_code=:new.client_code;
    if lcount>0 then
    raise duplicate_loan;
    end if;
    end;
    now how do i trap this user defined exception on the form ?
    declaring the exception in the form & handling it in the exeption handler section doesn't seem to work and i get the following error:
    "when button pressed trigger raised unhandled exception
    ora-06510"
    ora-06510:unhandled user-defined exception
    what am i doing wrong?
    if i have to handle the exception in the trigger body how do i do that?
    thankx in advance..

    Hello,
    raise duplicate_loan; won't avoid the trigger to insert and commit. If you really want to avoid the insertion, use the raise_applicatrion_error() instead.
    For instance : Raise_Application_Error( -20001, 'Insertion cannot be validated' );Then in your Forms module, you can catch it like this:
       Begin
       Insert Into ...
       when others then
          LC$Erreur := Substr( SQLERRM,1 , 500 );
          LN$err_code := ABS(SQLCODE);
          If LN$err_code = 20001 Then ...
       End;
    ...Francois

  • USER DEFINED FUNCTIONS IN FORM 6i

    I am interested to learn how can I manipulate, call a database user define function in a form6i that I am now using. It should give me desire database information on the forms? I am sorry, if I could explain the topics?
    Thanks & regards
    Dharani Barman

    Just call the function from PL/SQl or SQL in your Forms code - it shoudl all work providing that the user you are connected as has access to and execution rights on that function, and that the function uses parameters and return types that are compatible with the version of PL/SQL that the Forms engine has.

  • How to Pass User-defined Parameters from Forms to Reports

    Hi!I am trying to launch an existing report from a form then spool it into a PDF file. I have been successful in passing the report properties using SET_REPORT_OBJECT_PROPERTY built-in and I am also able to launch the report using RUN_REPORT_OBJECT built-in. My problem is, I cannot seem to pass the user defined parameters from my form to the report eventhough I am using the same variable names.
    this is a part of my code:
    repid := Find_Report_Object('ACPPRACS');
    Set_Report_Object_Property(repid, REPORT_EXECUTION_MODE,BATCH);
    Set_Report_Object_Property(repid, REPORT_DESTYPE,FILE);
    Set_Report_Object_Property(repid, REPORT_DESNAME,'C:\TMP\ACS01.PDF');
    Set_Report_Object_Property(repid, REPORT_DESFORMAT,'PDF');
    Set_Report_Object_Property(repid, REPORT_OTHER,'PF_NBO_CD='&#0124; &#0124;'"'&#0124; &#0124;:acs.nbo&#0124; &#0124;'"');
    v_rep := RUN_REPORT_OBJECT(repid);
    Hope you can help me soon. Thanks!

    first of all u will create a paramlist
    then add_paramter to this list
    and then pass this list to the report
    by using run_product.
    i think this is all.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jenny ([email protected]):
    Hi!I am trying to launch an existing report from a form then spool it into a PDF file. I have been successful in passing the report properties using SET_REPORT_OBJECT_PROPERTY built-in and I am also able to launch the report using RUN_REPORT_OBJECT built-in. My problem is, I cannot seem to pass the user defined parameters from my form to the report eventhough I am using the same variable names.
    this is a part of my code:
    repid := Find_Report_Object('ACPPRACS');
    Set_Report_Object_Property(repid, REPORT_EXECUTION_MODE,BATCH);
    Set_Report_Object_Property(repid, REPORT_DESTYPE,FILE);
    Set_Report_Object_Property(repid, REPORT_DESNAME,'C:\TMP\ACS01.PDF');
    Set_Report_Object_Property(repid, REPORT_DESFORMAT,'PDF');
    Set_Report_Object_Property(repid, REPORT_OTHER,'PF_NBO_CD='| |'"'| |:acs.nbo| |'"');
    v_rep := RUN_REPORT_OBJECT(repid);
    Hope you can help me soon. Thanks!<HR></BLOCKQUOTE>
    null

  • User Defined Object Default Form - Can't add record

    Hi,
    I have created a user defined object on a Master Data Table with acccompanying Rows table.
    For some reason I can't get any records in the Master table. SBO claims the operation (save) was succesfull however the table remains empty and the line I entered gets cleared!
    I'm running SBO2005ASP01PL07 so I don't think I'm missing any updates.
    Anyone have an idea as to what''s wrong?
    Regards,
    Ivo Vink

    For those that encounter the same problem.
    A tool from a third party had made a small change in the SBO_SP_TransactionNoticfication stored-procedure,
    This change produced an error when a transaction was done on a UDO becuase the object type of an UDO is NOT numeric but contains the name of the UDO.
    The adjustment made assumed Object_Type was allways numeric wich it is NOT.
    An error occured, resulting in SBO rolling back the entire transaction.
    Simple adjustment:
    If isnumeric(@object_type) = 1
    BEGIN
    -- third party added code
    END
    Regards,
    Ivo Vink

  • User defined Returned Goods form with sequential numbers

    My customer is going to be using the Service module in Business One. We want to be able to create a Return Goods document we can send to the customer. We looked at using the Returns form but because we are using serial numbers it forces us to create an inventory tranasaction for those items.
    Most of these items were shipped awhile ago prior to SAP. To simplify the process my thought was through Crystal to create a form we could send to the customer. We would create a UDF that contained the form number. Today they use a convention of
    year, month, date, intials of who entered it. It would look like 20100622SC1. One would represent the first I entered for the day. the second for the same day would be  20100622SC2.
    My goal was to find away to create a sequential number based on the last number issued.
    Any ideas would be appreciated.
    Thanks

    Thanks for your input. I was planning on doing exactly that. In the meanwhile I found away to create an number based on the Service call. We have added the fields for the User ID seperately.
    This is the statment I used.
    SELECT '1000' +T0.[callID] FROM OSCL T0 WHERE T0.[callID] =$[OSCL.CALLID]
    Thanks for your input.

  • Building user defined components or suggestion on building menus

    I would like to build a menu in my program but I am having a problem with accomplishing it. I have used the code emample from "The Complete Reference Java J2SE 5 Edition and do not under stand why nothing will render. Importing the [java.awt - java.awt.event - java.applet and java.awt.frame[/b] does not seem to do it.String arg = (String)ae.getActionConnand() and another line gives me problems. They are both defined and instanciated. I can add the rest of the 40 lines of code if it would help. Thanks for any help one can give me.

    This might be helpful:
    Trail: Creating a GUI with JFC/Swing
    Lesson: Using Swing Components
    How to Use Menus:
    http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html

  • SBO crashes on changing user defined field setting for a form

    Hi,
    when i try to change the user defined field settings(Tools->User-Defined Fields->Settings) for a form, say Sales order form, on clicking on OK button SBO crashes displaying runtime error messagebox.
    This happens only when my addon is running.
    Anyone encounter this behavior?
    Thanks,
    Satish.

    Hi Barend,
    I have put in the filters.The form 38(user-defined fields settings form) is not included in the filters.So it should not get any events. I get the following error
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program ..m Files\SAP Manage\SAP Business One\SAP Business One.exe
    This application has requested the runtime to terminate it in an unusual way.Please contact the application's support team for more information.
    Thanks,
    Satish.

  • Using Xcontrols in the user defined express vi's

    Hi All,
                            I am actually using a Xcontrol inside a user defined express that we develop. The xcontrol is working as expected when i use it in the standard vis. But when i use it in the express, simply it crashes the LabVIEW and i need to restart the LabVIEW again. I am worried with this.
                            I put break points in the Facade vi of the xcontrol to know what is happening. But, i am not able to debug as the configure vi comes infront as modal even though the Source, sub and the configure vi of the express was not been configured as modal.
                        How to solve this problem?
                        Is there any restriction in using xcontrol with express vi's?
                        I am refering the Express Tool Kit Manual.pdf. Is there any other documents to know about the operation of the express vi's?
    Thanks,
    Pandiarajan R

    Hello Pandiarajan,
    Since I didn't see it mentioned, I'm going to presume (hope) you're using 8.0.  In LabVIEW 8.0, certain parts of XControls ran in a different application instance than where the VI was.  This was a source of many issues related to XControls.  In your case, since Express VI configuration pages also run in a separate application instance (and a different one than the XControls), I suspect this is related to the problems you are seeing.  If this is the case, it may not be possible to use an XControl on the front panel of an Express VI config page in 8.0.
    The resolution to many of these issues was to allow these XControl parts to run in the application instance of the VI whose front panel contains the XControl.  This fairly substantial change did not make it in until LabVIEW 8.2.
    If you are already using LabVIEW 8.2, it may not be an easy issue to troubleshoot, but I'd like to help isolate this issue.  If you can simplify your XControl / Express VI into something that you could package and attach to this thread, I'd be willing to take a look at it.

  • User Defined Application Component

    Hi,
    Whether we can add/create user defined Components in solution manager?ie for the Component field in the 'Create Message' screen,in the 'Select Application Component'(F4) drop down whether we can create our own components?
    Regards,
    Cherry

    Hi all,
    sorry for the late response, but I just found the thread two month ago.
    Yes, it is possible to have your own components, but with a big BUT. The components are stored in the tables DSWP_CSNCOMP (data) and DSWPCSNCOMPTXT (text). In the data table all available components are stored in a random order but with a subsequent identification number. This number must be in a complete subsequent order without any gaps. Holding this condition you can put now your own components into.
    But now the mentioned BUT: In regular timeframes the Solution Manager contacts SAP to update this table. Of course your own components are not available so they are overwritten during the update. Therefore you have to think for a mechanism (batch job e.g.) that updates ypur components also on a regular base.
    Hope that helps, Alexander

  • Opening a Crystal Report in B1 8.8 in a User Defined Form representing UDO

    Hi Experts,
    Is it possible to open a Crystal Report from a User Defined Form representing my UDO?
    I had developed a 'Vendor Quotation' UDO and its  User Defined Form
    I wanted to show the report while clicking the Preview menu in SAP B1 8.8 toolbar.
    I have created the Crystal report and used the record selection as {@OVQT.DocEntry} = {DocKey@}
    Please help
    Also, is it possible to add Print layout and assign a default Print layout to this User Defined Form?
    Thanks in advance
    Regards
    Arun

    Hi,
    I also face the same problem. I make a master type using UDO. But i want to print it.
    In my opinion ( i haven't tried this way ). If we make a UDO ( master or document type ) , we will find the docentry and object field in our UDT. Both of these will connect between SAP form and Crystal report. In crystal report we select the tmsp_doclinetypelayout. It is a store procedure which will connect between SAP form and CR. Before that try to modify this SP by adding the udo object.
    Fyi, if i'm not mistake dockey is connected to docentry SAP form.
    Thanks
    regards
    bodhi86

  • User Defined Fields on System Form

    Dear All,
                   I want to know that how much User Defined Fields can be added on a system form. My problem is that I am developing an add-on for the Item Master Data. And I have used a lot of User Defined Fields on Item Master Data Forms which contains table 'OITM'. Now if I am trying to add any extra User Defined fields in OITM Table, I am not able to do so. I am getting an error as  'Internal Error Occurred'. What can i do regarding this problem.?  Help me. It is something very important.
    Thanks and Regards

    Hi,
    There is theoretically no limit on the number of UDF for a table. there is however a maximum number of characters for a record in SQL Sever.
    As far as I know this is 4000 in SQL Server 2005 and older and 8000 in SQL Server 2008.
    pls check Microsoft for the exact numbers
    Regards
    Ad

Maybe you are looking for

  • IOS 8 Exchange Email no longer Pushes

         Ever since I upgraded to iOS 8 on my iPhone 5 my exchange email has gone silent.  I no longer get emails pushed to my phone (whether on WiFi or LTE).  Instead, I have to open up the Mail application and it will then update with new emails. I hav

  • Help! Can't install or uninstall iTunes.

    I cannot open my iTunes and every time I try to install or uninstall the program I get this: Could not write value description to key \software\mozillaplugins\@apple.com/itunes,version=. Verify that you have sufficient acces to that ket, or contact y

  • Fiscal year variant V3 not defined or maintained for date 01.01.2011

    Hi  Team, While doing "ABUMN" we are getting below error message" Fiscal year variant V3 not defined or maintained for date 01.01.2011 Message no. GMMASTERDATA108 if we change asset value date 02.01.2011, there is no error message. we are getting err

  • How to call javascript from java application

    How can we call a function written in javascript from java application (core java not applet)? How will java identify javascript? Is there any such options ?

  • Multi-Touch not functioning properly

    I have had my iPod Touch 3rd Gen (32gb) for 8 months, but the following problem started to occur at 6 months. The touch screen won't register 2 points of contact at once. Pinching and zooming etc. is fine, but specifically in apps such as Tap Tap Rev