Is it pssible to shift tab pages through forms personalization?

In oracle apps ,there is a certain form with many tab pages.I want to reorder those tab pages .Last one to come 2 nd in the order etc.Is it possible through forms personalization?
Thanks

In oracle apps ,there is a certain form with many tab pages.I want to reorder those tab pages .Last one to come 2 nd in the order etc.Is it possible through forms personalization?
Thanks

Similar Messages

  • Tab pages in forms v6i

    I compile forms using v6i. The forms are made with v6 and they have 2 TAB PAGES with the same block and first page is visible but the second page is not navigable with mouse.
    Why doesn't work ? These forms v6 are correct.
    Thank you.

    When you click on a tab, if the cursor is in an item on the first tab page, the second won't come up. You have to move the cursor when the tab page is activated. (I'm not sure, but I have patch 13 installed, and this does not seem to be a problem any more. However my associates with an older version do have your problem.)
    I use a when-tab-page-changed form-level trigger:
    -- When-Tab-Page-Changed form-level trigger                        
    Declare
      new_pg   varchar2(30) := :system.tab_new_page;
    Begin
      If new_pg <> get_item_property(:system.cursor_item,item_tab_page) then
      -- cursor is on a different tab page.  Need to navigate to an item
      -- on the requested tab page.
        If new_pg = 'TAB2' then
          Go_item('B3.NAME');
        else -- TAB1 tab page
          Go_item('B1.KEY_NAME');
        end if;
      end if;
    End;

  • Reading web pages through forms

    Hi all there,
    I am using forms6i, I am having few html pages, now i want to read contents of those pages and feed them into a form item. can any body give me an idea how it can be done?
    thanks in advance

    This looks like a job for utl_http.
    DECLARE
      req   UTL_HTTP.REQ;
      resp  UTL_HTTP.RESP;
      value VARCHAR2(1024);
    BEGIN
      req := UTL_HTTP.BEGIN_REQUEST(
        'Reading web pages through forms
      UTL_HTTP.SET_HEADER(req, 'User-Agent', 'Mozilla/4.0');
      resp := UTL_HTTP.GET_RESPONSE(req);
      LOOP
        UTL_HTTP.READ_LINE(resp, value, TRUE);
        DBMS_OUTPUT.PUT_LINE(value);
      END LOOP;
      UTL_HTTP.END_RESPONSE(resp);
    EXCEPTION
      WHEN UTL_HTTP.END_OF_BODY THEN
        UTL_HTTP.END_RESPONSE(resp);
    END;
    /

  • How to restrict LOV to a particular project type through form personalize.

    Hi,
    I got a requirement to restrict LOV to a particular Project type through form personalization in project accounting module. form name: PAXPREPR
    i tried the below code in Builtin, but it didn't work
    SELECT distinct PROJ.SEGMENT1, PROJ.NAME,
    PROJ.DESCRIPTION, PROJ.PROJECT_ID
    FROM PA_PROJECTS_ALL PROJ,
    PA_PROJECT_TYPES_ALL TYPES,
    pa_proj_elements ppe,
    pa_proj_structure_types ppst,
    pa_structure_types pst
    WHERE PROJ.TEMPLATE_FLAG <> 'Y'
    AND PROJ.PROJECT_TYPE = TYPES.PROJECT_TYPE
    AND TYPES.CC_PRVDR_FLAG <> 'Y'
    AND proj.project_id = ppe.project_id
    and ppe.object_type = 'PA_STRUCTURES'
    and ppe.proj_element_id = ppst.proj_element_id
    and ppst.structure_type_id = pst.structure_type_id
    and pst.structure_type = 'FINANCIAL'
    and proj.project_type = 'GRANT'
    order by PROJ.SEGMENT1
    please suggest me where i went wrong.
    Edited by: 925049 on Apr 3, 2012 2:49 PM

    In the Control Data of FS00 there is field 'Authorization Group'
    Please Create an Authorization Group for those user ID who can post TDS entries.
    then Maintain this group for TDS related GL.
    Then others will not able to post to this GL.
    Regards,
    Alok

  • Addition of one column in LOV through Form Personalization

    Hi
    While approving a purchase order when we click on Forward check box the forward to field becomes enabled and it has the LOV containing employee names and employee numbers. I want to add another column in this LOV for employee positions through form personalization.
    Can any one guide me how to do this.
    Regards

    Hello,
    To set another LOV, you should change the property of your combobox, named LOV_NAME with Forms perso, but you need some PL SQL code to create a new LOV.
    See this example : [http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/custom-lov-using-custompll-883870]
    One pre-requisite is that your new LOV should have the same number of rows and the same datatype, so I'm afraid you won't be able to do this just using Forms perso
    Kind regards,
    Xavier

  • How to Chage the data format through Forms Personalization

    Hi Experts,
    I would like to do like,
    for example in the oracle form has two fields called
    start data(DD-MON-YY)
    end date(DD-MON-YY)
    but actullay i would like to have like
    start date(DD-MON-YY HH24:MI:SS)
    end date(DD-MON-YY HH24:MI:SS)
    It can be done through forms personalization?
    we are using Apps 11.5.8.
    Please help me to do it.
    Regards
    R.Sundaravel

    Try using FORMAT_MASK property in Forms personalization
    Property name - FORMAT_MASK
    Value - DD-MON-YYYY HH24:MI:SS

  • Suppress FRM-41050 through Forms Personalization

    I have a view only form wherein the user can view information but cant update. This form gives warning messages FRM-41050 (You cannot update this record) for each record fetched. I am looking to suppress / hide these messages through forms personalization...Can anybody help me or through some ideas on this...thanks in advance

    Hello-
    I am just wondering if you were able to resolve this issue? I am running into the same problem.
    Thanks,
    Amy Bauman

  • How to displlay multiple Invoice Numbers through Form Personalization?

    Dear All,
    In Ap invoice form if I query one Invoice and click new menu which is created by me, then it shows Invoice Number as a popup. It's done through Form Personalization. But If we Query 5 Invoices and select all by press and hold the control button and select each and every Invoice and then click our menu, that time I need All 5 Invoice Numbers in Popup. So how Can I do this?
    Currently It is showing only one Invoice which currently cursor is there.
    So I need all Invoice Numbers in Popup. So plz give suggestions....

    Pl see if the steps in MOS Doc 856139.1 ((Pics) How To Create Personalized Views For All Users In Professional Buyer Work Center) can help.
    HTH
    Srini

  • Tab Pages in Form

    I have 2 tables their structure is as follows:
    1- Dept_id, Dept_name
    2- Emp_id, Ename,Sal,mgr,hiredate,Dept_id
    Now i want a Multiple tab page in my form if I click on Sales all the employees working in sales department should be displayed automatically likewise when I click on Accounts tab all the employees working in relevant department should be displayed automatically......how can I achive this ??? any advise or help highly appreciated

    Hello,
    Use the trigger: WHEN-TAB-PAGE-CHANGED to detect which tab you are switching to.
    Then for each tab, change the block property using: SET_BLOCK_PROPERTY built-in and change the property DEFAULT-WHERE to the one that gives you the employees working in sales etc...
    To get that when you enter the tab page, use the built-in EXECUTE_QUERY
    Hope this help

  • Key Handling in Tab Pages of Form

    Dear OTNz
    I want to control my tab pages with some HOT keys
    For example : I have Five Tab Pages named as FIRST,SECOND,THIRD,FOURTH and FIFTH
    now i want to access them with the keys ALT+F,ALT+S,ALT+T,ALT+U and ALT+I rescpectively...
    Is there a way in oracle forms to capture key codes and then use them to go to the particular tab page with those keys.
    If any body knows ..pls tell me ASAP.i'll be really thankfull.
    ALL i want to do is to provide hot keys to my TAB PAGES....
    I'll like ORACLE REPORT TEAM to respond me if there is any way to implement this functionality.
    THANK YOU.

    Hi Qaiser
    The best place to ask this question is the Oracle Forms forum. I hope env the "ORACLE REPORT TEAM" will agree with me.
    Regards
    Sripathy

  • Validate certain fields through Form Personalizations on hitting Save

    Hi,
    Everytime the user clicks on Save I need to validate if certain fields have been populated based on the value of another field.
    For instance, if Category is changed to Active or is currently Active and the user hits save, then before the record is saved, I need to make sure that certain other fields on the form are not null.
    How can I do this ?
    The trigger event am assuming will be when validate record, but that the trigger block can be anything in the form or sub forms as the save button is only in one place on the main menu. Also for the actions, if I define the Execute function, how do i ensure that based on the function result the record is not saved and an error message is generated ?
    Thanks for your help
    Preeti

    Thanks Gerald.
    I tried this -
    In the Form Personalization screen, I set the trigger_event to Key_commit,
    entered a conditon and on the Action tab, i chose builtin with the builtin_type being raise form_trigger_failure. It saves the personalization but on Apply Now I get the error message : FND_CUSTM_REQUIRED.
    Have you seen this before ?
    Thanks
    Preeti

  • Duplication check through form personalization

    Hi
    i was wondering what to write on when validate record or when new item instance for any duplicate checking.what are the reserve words to check the entered value if present in databse table then error.
    Regards

    Hi
    thanks for help.Can i also used this type of personalization for format mask checking in any field.like if i applied format mask on any field it will give error at bootom of window that field must be of type 9999.Can i through a meaning ful alert in case of error as we are displaying error in form of alert in duplication case.
    Regards

  • Inhibit certain characters through forms personalization

    Hi,
    I'm trying to find out how to inhibit certain characters from being input into the invoice number field on the invoice workbench. The only acceptable characters are the following:
    0–9
    A-Z
    space
    Can anyone give me any ideas how to do this please?

    Write a function called isValid that accepts a varchar2 parameter and returns TRUE or FALSE.
    Then write a when-validate-record personalization
    Make the condition as isValid (:invoice_number) = FALSE
    And in action, display an error message.
    Hope this answers your question
    Sandeep Gandhi
    Omkar Technologies Inc.
    Independent Techno-functional Consultant
    513-325-9026

  • How to call a particular Customer through form Personalization

    Hi,
    Environment :- R12
    I have a requirement, to search a Customer info based on Sales Order form.
    Requirement:
    1. Open the Sales Order form, Query any order
    Now the user wants to pull the XBC Cusotmer information which was in the Customer Field.
    Naturally we can do by form personalization but here the Customer window is web based one. Can anybody have a hands-on on this. Please let me know.
    Thanks,
    ABR

    Pl see if the steps in MOS Doc 856139.1 ((Pics) How To Create Personalized Views For All Users In Professional Buyer Work Center) can help.
    HTH
    Srini

  • Problem in additional tab page in cprojects

    hi all,
    i have created one additional tab page through spro settings in cprojects application.
    trasaction : spro
    collaboration projects -> global enhancements -> Define field groups for customer fields.
    here it is giving me option to apply this field group to a particular object (like project, phase, task) only where as i need to apply it only to a particular phase and not to all the phases in the cproject(like i want to show that customised tab page only when i click on the first phase of the project and i dont want to show it in the rest of the phases.) right now it is not giving me the option for that.
    plz have a look into the problem and reply me.
    it is urgently needed.
    thank you very much.

    Hi Hetal,
    maybe I have a dirty modification idea.
    Maintain the customer fields like described in customizing.
    Then in CL_DPR_CUST_INCL_REPOSITORY in method GET_GROUPS it determined the fields to be shown on customer fields tab.
    If you make there samll modification and remove the fields, if you are not on the first phase, then it could work too.
    Or in CL_DPR_BSP_S_PRO_TYPE METHOD show_ci_fields you can control the rv_show_ci_fgroups variable !!!!
    Problem here is the ls_show_ci_fgroups table, which is buffered.
    But there is anothe possibility.
    make a copy of the PHADETAIL.BSP See details in note to add customer own fields to BSP views.
    In the BSP logic of the PHADETAIL.BSP you will find a position where the system determines if the TAB will be shown or not.
    In variable controller->mr_phase you have all your necessary information about the phase
    I guess whis will be modification free too. See note 859551
    Regards
    Björn

Maybe you are looking for

  • How to stop screen expansion when I awake in new os update

    When I awake my Z10 the screen expands or magnifies itself so I have to squeeze it to fit all the screen in. Very annoying any ideas how to stop it? Solved! Go to Solution.

  • Mountain Lion Failed to Install

    In the middle of the install OSX mountain lion jumps to a recovery screen and cancels the install. When I restart the computer I am able to go right back to my normal desktop with nothing lost. Any thoughts- There is no error message.

  • PGP signatures could not be verified

    I'm still somewhat new on using makepkg.  I previously customized the bind pkg for samba by copying the /var/abs/extra/bind directory into my /var/abs/local and adding a couple of build options. Worked like a charm and no issues. Today bind 9.10.2 wa

  • Where is Histogram in Three-way Color Corrector

    The Three-way Color Corrector Help section states: "The effect has a histogram that displays the image's luminance." Where is this histogram?

  • Need for Site Cleanup Tool

    Other than manually going into a site and searching for obsolete files, has anyone found a way to clean up old images and pages from a site once they are up loaded?  A tool specifically designed to compare your active content with your development fi