Need suggestion on forms customization

Hi All,
I'm new to Oracle Forms and would like to know how to go about the following on a seeded form in Oracle apps R12.
1) On the 'Create Service' form which is available under Field Service Manager responsibility, we have a field called 'Category'. I checked the record history and it is coming from the view cs_sr_incidents_v_sec
2) The requirement is to get this field from some other table (client has requested for a change based on their business process).
3) Can you please advise me on how to do this? Can it be done by modifying custom.pll?
4) Also please help me with links to any tutorial/demo explaining similar change in a seeded form of Oracle apps.

Modifying seeded forms (objects) is not supported, and your changes might get lost each time you apply an application patch that overwrites this form/object.
Customizing/Extending Oracle Applications Release 11 FAQ [ID 101048.1]
Global Customer Services Customization Guidelines [ID 122452.1]
If you want to change the source object that a form is reading from then you need to create your own custom form and use a different view/table.
https://forums.oracle.com/forums/search.jspa?threadID=&q=Customization&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
https://forums.oracle.com/forums/search.jspa?threadID=&q=Forms+AND+Customization&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
Thanks,
Hussein

Similar Messages

  • Need suggestion in forms migration and database migration

    Friends,
    We have currently forms 6 (not 6i) applications in Novell 4.
    and our db is 9iR2 in RHEL AS 3. which is running for more than 8 years.
    our management has decided to go for the migration....
    Before one month i searched in the web and i came up with the solution as like below.
    1. convert forms 6 to 10g and deploy using Oracle Application Server 10.1.2.0.2 (this is the latest version for forms and repots) in RHEL AS 4.8
    2. upgrade 9ir2 db to 10gr2 db in RHEL AS 4.8
    But now...my manager is asking me to go for the latest version.
    that is....
    1. forms 11g or the latest supporting version (Fusion middleware) in windows/Linux (choose the best one)
    2. 11gR2 db in rhel 5.3 or above
    so, please suggest me....which version i should go?
    which type of combination will be better?
    i cannot install oracle application server 10gR3....am i correct? it will not support forms and reports to deploy.
    i hope somebody will help me in this regarding....
    thanks

    Hi Pankaj,
    According to my knowledge there is no option to update the backend system by using  the scanned PDF file like adobe forms. It is advisable to design the adobe form by seeing the paper document & updating the backend system.
    Regards
    Krishna Balaji T

  • Need help on Forms Customization

    Hi All,
    I have one requirement i.e I developed one form which contails 3 windows.First window is for Query_Find, second one is for orders Summary and third window is for detail.In detail window i have one stacked canvas which displays order details in tabular form.i have written code for inserting data into one custom table in ON-INSERT and ON-UPDATE trigger of that block.
    and Commit_Form in the KEY-COMMIT trigger.My requirement if i check the chekbox and change the status(List item ) from status field and when i click on save button it's saving the changes.But i don't want to save the changes at this time.
    How can we restict save changes at this point?
    Can any one plzz give me some idea.
    Thanks in Advance,

    Dhana,
    In the When-Button-Pressed trigger just check the value of the CheckBox and the Status field value before you call the Commit_Form built-in or Commit. But what about if the user clicks on the Save button in the Menu? What if the user uses Ctrl+S to save. You would also want to perform a similar check in the Key-Commit Form level trigger if you want to prevent the "Save" from these options as well.
    Hope this helps,
    Craig B-)
    If a response is helpful or correct, please mark it accordingly.

  • Need Solution on Forms Customization

    Hi All,
    We are trying to insert a record in the custom table while Clicking of "Submit"
    So We have written the code in WHEN-BUTTON-PRESSED trigger of "Submit" Buttton.
    but when we click on submit button the record is inserted properly but it is showing
    "frm-40401:No Changes to Save" instead of "Transaction Complete:One Records Applied and Saved".
    Can You please provide me the solution.
    Thanks in Advance,
    Dhana
    Edited by: DhanaSurya on Oct 29, 2009 3:34 AM
    Edited by: DhanaSurya on Oct 29, 2009 3:34 AM
    Edited by: DhanaSurya on Oct 29, 2009 3:35 AM

    Hi Srini,
    We are using Forms 6i and Oracle Apps-11.5.10.2
    We have written the following code in the WHEN-BUTTON-PRESSED trigger of Submit Button.
    Declare
    l_division VARCHAR2 (20);
    l_div_mgr VARCHAR2 (50);
    l_reg_mgr VARCHAR2 (50);
    l_vpo VARCHAR2 (50);
    l_approver VARCHAR2 (50);
    l_person_id NUMBER;
    l_full_name VARCHAR2 (30);
    l_email_address VARCHAR2 (30);
    i_user_id NUMBER
    DEFAULT TO_NUMBER (fnd_profile.VALUE ('USER_ID'));
    CURSOR c1
    IS
    SELECT org_code, manager, initiator, vpo,
    approver
    FROM xxmz_cust_hierarchy
    WHERE UPPER (initiator) = UPPER (l_full_name);
    BEGIN
    BEGIN
    SELECT employee_id
    INTO l_person_id
    FROM fnd_user
    WHERE user_id = i_user_id;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_person_id := NULL;
    END;
    BEGIN
    SELECT full_name, email_address
    INTO l_full_name, l_email_address
    FROM per_all_people_f
    WHERE person_id = l_person_id
    AND object_version_number = (SELECT MAX (object_version_number)
    FROM per_all_people_f
    WHERE person_id = l_person_id);
    EXCEPTION
    WHEN OTHERS
    THEN
    l_full_name := NULL;
    l_email_address := NULL;
    END;
    OPEN c1;
    LOOP
    FETCH c1
    INTO l_division, l_div_mgr, l_reg_mgr, l_vpo, l_approver;
    EXIT WHEN c1%NOTFOUND;
    IF :xxmz_cust_det.cust_cbx = 1
    AND :xxmz_cust.notes IS NOT NULL
    THEN
    INSERT INTO xxmz_cust_det
    (customer_number,
    customer_id,
    customer_name,
    bill_to_address,
    write_off_amount,
    notification_status,
    initiator, ini_contact,
    notes, org_code,
    manager, vpo, approver,
    approver_title, approver_notes, attribute1,
    attribute2, attribute3, attribute4, attribute5,
    attribute6, attribute7, attribute8, attribute9,
    attribute10, created_by, creation_date,
    last_updated_by, last_update_date
    VALUES (:xxmz_cust_det.customer_number,
    :xxmz_cust_det.customer_id,
    :xxmz_cust_det.customer_name,
    :xxmz_cust_det.bill_to_address,
    :xxmz_cust_det.write_off_amount,
    :xxmz_cust_det.notification_status,
    l_reg_mgr, l_email_address,
    :xxmz_cust.notes, l_division,
    l_div_mgr, l_vpo, l_approver,
    'Approver', NULL, NULL,
    NULL, NULL, NULL, NULL,
    NULL, NULL, NULL, NULL,
    NULL, i_user_id, TRUNC (SYSDATE),
    i_user_id, TRUNC (SYSDATE)
    END IF;
    END LOOP;
    CLOSE c1;
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_message.error;
    RAISE form_trigger_failure;
    END;
    Regards,
    dhana

  • OIM Form Customization

    Hi,
    My customer is having following requirements related to OIM Form Customization.
    1.In createuser form,UserID ,Password and Confirm Password Should not be displayed.We are generating userid and password automatically and we should not allow the admin to enter userid and password while creating user.
    2.Is it possible to make a form field mandatory only to specific usertype ? . For contractors,we need to make "Deprovisoning Date" as mandatory field but for employees,it should be a non-mandatory field.
    3.Is it possible to have different form fields in Create user Form and Manager User Form.Since Create user form will be used to create contracors,we we don’t need to specify user defined fields related to employees ( JobName,PoitionName,EmployeeType etc) in create user form.
    I am facing problems in implementing above requirements.Can somebody suggest,how I can implement these?.
    Thanks.

    Please check this Note 468779.1 from metalink.
    Goal
    How To Disable Password And Confirm Password or How to set the password fields as optional?
    Solution
    You can't set password field optional,this is mandatory field and hard coded in action class but you can set default value from jsp(tjspGenerateCreateUserForm.jsp) page. You can't be remove completely password section from User Creation Page as this is hard coded in the source code. Password is mandatory field for User creation API .
    You can provide default password value from the JSP file. After modifying the JSP page as below,while creating OIM user both fields(Password and Confirm password) will not be editable.
    Please try to modify tjspGenerateCreateUserForm.jsp
    *(<BEA-Home>\user_projects\domains\proquire901\XLApplications\WLXellerateFull.ear\xlWebApp.war\tiles\util).
    Add < value="123" readonly="true> these two attribute in password section and
    ChangePassword section.
    ===
    ##Password section######
    <td>
    <html:password name="manageUserForm" property="password"
    value="123" redisplay="true" readonly="true" styleClass="Fields" tabindex="1"/>
    </td>
    ###confirmPassword section######
    <td>
    <html:password name="manageUserForm" property="confirmPassword"
    value="123" readonly="true" redisplay="true" styleClass="Fields" tabindex="2"/>
    </td>
    ==

  • Need suggestion on how to do 3D spinning title animation

    Hello all experts,
    I need suggestion on how to do 3D rotating title animation. Let me explain what i wanted to do.
    The end product is the word WELCOME.
    But I want to animate it in such a way that the alphabelt W first appear as nothing from inside the screen to appear in the screen (that means zoom from small to big, is it called zoom out ?). In the process of zooming out, I want the W to have a thickness & it spins very fast along the horizontal X-axis and stops at the screen with the alphbelt W.
    Then the whole process repeat with E, and I have WE. It then repeats with L and I have WEL. This whole thing repeats until it forms the word WELCOME.
    Any suggestions ? Is there an inbuilt preset for this ?
    If not, if I do from scratch, do I need a separate track for each alphabelt ?
    Thank you very much.
    Cheers.

    Nick Holmes wrote:
    You would have to build this one from scratch, but it's pretty easy.
    Work on the whole word first to get the basic movement, then play with the Timing settings in the Inspector. To have the letters do this one after the other use the Sequence setting. Typically you would set it to the number of letters in your word plus 1 -so your welcome should have a Sequence value of 8. You can of course set it to whatever you think looks best.
    Give it a go and let us know how you get on. Don't forget to save your new effect!
    Thanks Holmes but where do I find the Sequence settings ?
    Thanks

  • Repeat form customization on various Business Groups

    Hi,
    I would like to know if there is a quick way to repeat form customization on various Business Groups.
    I mean, i have done form customization on one Business group and need to do repeat similar form customization on various other Business Groups. I was wondering if there is any quick way to accomplish this other than doing it manually for each business group.
    Any help on this will be appreciated.
    Thank you,
    Raghu

    Hi Raghu
    You can try downloading your personalization via FND LOAD
    and change alter the business group in the files and load them back.
    FNDLOAD apps/$APPS_PWD 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct
    and alter the ldt file for the business group.
    Cheers
    Ankush

  • Miscellaneous issue form customization

    Hello,
    The form mentioned above is INVTTMTX with Form Version : 11.5.239.
    the user is requesting the following customizations to the form:
    -Use the Reference field to hold a list of values of names that currently have no reference in the system.
    -Add a descriptive flexfield to the form; should hold a seial number for the miscelaneous transactions that should be generated automatically.
    I need guidance because I don't know how to the above and what tools shall i use. Detailed instructions and an action plan will be very helpful.
    Thank you

    Hi,
    1. Reference field - isn't this a separate report? Your requirements are not specific enough.
    2. Setup a Descriptive Flexfield Column - read the Flexfields manual. Create a sequence in the database. Use when-validate-record trigger and forms customization or database trigger to populate DFF field.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Need Suggestion for Archival of a Table Data

    Hi guys,
    I want to archive one of my large table. the structure of table is as below.
    Daily there will be around 40000 rows inserted into the table.
    Need suggestion for the same. will the partitioning help and on what basis?
    CREATE TABLE IM_JMS_MESSAGES_CLOB_IN
    LOAN_NUMBER VARCHAR2(10 BYTE),
    LOAN_XML CLOB,
    LOAN_UPDATE_DT TIMESTAMP(6),
    JMS_TIMESTAMP TIMESTAMP(6),
    INSERT_DT TIMESTAMP(6)
    TABLESPACE DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 1M
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    LOB (LOAN_XML) STORE AS
    ( TABLESPACE DATA
    ENABLE STORAGE IN ROW
    CHUNK 8192
    PCTVERSION 10
    NOCACHE
    STORAGE (
    INITIAL 1M
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOCACHE
    NOPARALLEL;
    do the needful.
    regards,
    Sandeep

    There will not be any updates /deletes on the table.
    I have created a partitioned table with same struture and i am inserting the records from my original table to this partitioned table where i will maintain data for 6 months.
    After loading the data from original table to archived table i will truncating the original table.
    If my original table is partitioned then what about the restoring of the data??? how will restore the data of last month???

  • Do I need to install forms 6.0 & reports 6.0 on separate homes

    Hello All,
    I need to install Oracle developer suite 6.0 & Oracle Developer suite 10g on the same computer.
    I have planned to install both on separate homes.
    My question is that "Do I need to install forms 6.0 & reports 6.0 on separate homes?".
    Regards,
    D

    Hello,
    no, it is not necessary to Install Forms6i and Reports6i in a different Oracle Home.
    Francois

  • I want to set up the Time Machine and I would love to use the Time  Capsule but since I already have a wireless router I need suggestions on  what other external disks Apple could recommend to use with the Time Machine and  how to configure that disk

    I want to set up the Time Machine and I would love to use the Time
    Capsule but since I already have a wireless router I need suggestions on
    what other
    external disks Apple could recommend to use with the Time Machine and
    how to configure that disk.
    A complication that I need to resolve is the fact that I am using Vmware
    Fusion to be able to use Windows on my Mac. Now it seems that Time
    Machine is not backing up my files
    on that virtual Windows without additional configuration and my question
    is whether you can advise me here or whether this is only a matter for
    the Fusion virtual machine.

    If you want to use Time Capsule you can.. you simply bridge it and plug it into the existing router.. wireless can be either turned off or used to reinforce the existing wireless.. eg use 5ghz in the TC which is much faster than your 2.4ghz.
    You can also use a NAS.. many brands available but the top brands are synology, qnap and netgear readynas  series. These will all do Time Machine backups although how well always depends on Apple sticking to a standard. There are cheaper ones.. I bought a single disk zyxel which was rebadged and sold through my local supermarket. It actually works very well for TM at least on Snow Leopard. Major changes were made in Lion and again ML so do not instantly think it will work on later versions. I haven't tried it yet with those versions.
    Any external drive can be plugged into the mac. Use the one with the fastest connection or cheapest price according to your budget. USB2 drives are cheap and plentiful. But no where near as fast as USB3 or FW800. So just pick whichever suits the ports on your Mac. Interesting Apple finally moved to USB3 on their latest computers.
    TM should exclude the VM partition file.. it is useless backing it up from Mac OS side.. and will slow TM as it needs to backup that partition everyday for no purpose.. TM cannot see the files inside it to backup just the changes.
    You need to backup windows from windows. Use MSbackup to external drive.. if you have pro or ultimate versions you can backup to network drive. But MSbackup is a dog.. at least until the latest version it cannot restore the partition without first loading windows. There are about a zillion backup software versions for windows.. look up reviews and buy one which works for you. I use a free one Macrium Reflect which does full disk backups and is easy to restore.. to do incremental backups though you have to pay for it.

  • Help needed with this form in DW

    Hi, i have created this form in dreamweaver but ive got this problem.
    In the fields above the text field, the client needs to fill in some info such as name, email telephone number etc.
    But the problem is when ill get the messages. Only the text from the large text field is there.
    What did i do wrong??
    http://www.hureninparamaribo.nl/contact.html
    Thank you
    Anybody??

    Thank you for your response. So what do i have to do to fix this?
    Date: Sun, 20 Jan 2013 07:57:56 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help needed with this form in DW
        Re: Help needed with this form in DW
        created by Ken Binney in Dreamweaver General - View the full discussion
    You have several duplicate "name" attributes in these rows which also appears in the first row
    Telefoon:
    Huurperiode:
    Aantal personen:
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5008247#5008247
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5008247#5008247
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5008247#5008247. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver General by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Need suggestion in getting data using JDBC

    Hi all need suggestion,
         i had a VO corresponding to database table.
         when i am try to get the records from that table,
         how can i initialize the particular column value to the
         corresponding VO setter method.
         please do the needful.

    Hello inform2csr,
    Your question is not so clear.
    Can you be more precise?
    What is VO?

  • Need suggestion for designing a BEx report

    Hi,
    I need suggestions for designing a BEx report.
    Iu2019ve a DSO with below structure:
    1. Functional Location u2013 Key
    2. Maintenance Plan u2013 Key
    3. Maintenance Item u2013 Key
    4. Call # - Key
    5. Cycle u2013 Data Field
    6. Planned Date u2013 Data Field
    7. Completion Date u2013 Data Field
    This DSO contains data like:
    Functional -
    Plan --- Item -
    Call# --- Cycle -
    Planned Dt -
    Completion Dt
    Location
    11177 -
         134 -
         20 -
         1 -
    T1 -
         02-Jan-2011 -
         10-Jan-2011
    11177 -
         134 -
         20 -
         2 -
    T2 -
         15-Feb-2011 -
    11177 -
         134 -
         20 -
         3 -
    T1 -
         15-Mar-2011 -
    11177 -
         134 -
         20 -
         4 -
    M1 -
         30-Mar-2011 -
    25000 -
         170 -
         145 -
         1 -
    T1 -
         19-Jan-2011 -
         19-Jan-2011
    25000 -
         134 -
         145 -
         2 -
    T2 -
         20-Feb-2011 -
         25-Feb-2011
    25000 -
         134 -
         145 -
         3 -
    T1 -
         14-Mar-2011 -
    Now Iu2019ve to create a report which will be executed at the end of every month and should display the list of Functional Locations whose Cycles were planned in that particular month, along with the last completed Cycle/Date.
    Thus based upon above data, if I execute report at the end of (say) March then report must display:
    Functional ---     Curr. Cycle --- Planned Date --- Prev. completed Cycle --- Prev Completed Date
    Location
    11177 -
         T1 -
         15-Mar-2011 -
    ---     T1 -
    --     10-Jan-2011
    11177 -
         M1 -
         30-Mar-2011 -
    ---     T1 -
    --     10-Jan-2011
    25000 -
         T1 -
         14-Mar-2011 -
    ---     T2 -
    --     25-Feb-2011
    Any idea how can I display Previous Completed Cycle and Completion Date (i.e. the last two columns)?
    Regards,
    Vikrant.

    hi vikrant,
    You can a Cube at the reporting layer  which gets data from DSO and which has these 2 extra characteristics completion date and previous cycle along with other chars and keyfigures from DSO.
    You can populate these  based on your logic in the field routine.
    Hope it helps.
    Regards
    Dev

  • Need Suggestion about Solman support & testing E CATT feature

    Hi Solman Experts .
    I need your Strong suggestion. Actually i am working in  ABAP module , I recently joined as a fresher in small company,  I got opportunity to  go Saudi for  "Solman support & testing ,E CATT"  in big MNC . Now i need suggestion , If i go and work there in these areas , If i return to India  will i get Good Job  and Salary here .
    Please suggest me. please it my career issue.

    hi Gafoor,
    I too had this kind of oppurtunity and now i am in abhudabi in crm and solman testing. No problem in this , So you can go to saudi as your wish and the future and scope for the solman is very good. So it s reasonable to go saudi .
    Regards,
    Prabhushankar

Maybe you are looking for