Forms - Needed help in disabling/hiding a field

Hi
I'm working on a "Order management - Quick sales order" sutomization.
This is specifically for a set of users in the company.
At the line level attribute we have a DFF. This is common to this form ( quick sales order) and Also the main Sales order form- Order organizer.
I have to hide this line DFF in my custom form.
I cant hide it using form Personalization as the moment i click on it the DFF pops up.
I disabled the field in the fmb. But that does not take effect. The field still shows up.
THe other option is
-> Disable the DFF( unfreeze it) then go to the line attribute.
-> It wont pop up the DFF since its diabled.
-> And then using folder options hide the field. And later enable the DFF
Doing this. Will it cause any problem to the DFF or the values as this DFF is being used in other forms like sales order form- line level .????
Any help on this or any other way to acheive this requirement.
Thanks in advance

Your best chance of getting an answer to your question is to post it in the EBS General Discussion Forum (General EBS Discussion This Forum is dedicated to non-EBS Forms development.
Craig...

Similar Messages

  • 30p with a Canon XA10 - need help with Final Cut 7 "FIELD DOMINANCE" setting and an explanation of "drop frames". Thank you!!

    I shot footage using a Canon XA10 and there are issues with the HD quality not looking as crisp as it should.  I am trying to make sure the settings in Final Cut are right.  Need help confirming what should be in "Field Dominance" --- have seen discussions about making sure it's set to "none" but I'm confused as to what to do. 
    Also someone suggested I use "drop frames" to change from 30p to 24p within Final Cut.  He couldn't explain how to do it so any input appreciated as well as any thoughts on whether this is a good option to try.

    If you're shooting 30p, field dominance should be set to none.   Since you need to use log and transfer to bring this material in to fcp, I would assume it would be set correctly automatically.  Are you sure you've set the camera properly?
    Drop frames will not change 30 p to 24p.   Dropframe timecode simply refers to the number assigned to each frame which drops an occasional number (not any frames) so the timecode duration is the actual duration, since 30p videoi is actually 29.97 frames per second which each frame assigned a timecode number. 
    This is very basic video stuff and requires some basic knowledge of video.  Wikipedia is a pretty good resource for much of this stuff plus there are lots of great resources on the web.  Look up interlaced and progressive video, 24p and 30p. 
    And as far as judging quality, you can only get an accurate view of the quality in fcp when you have a video card attached to a video monitor.  The viewer and canvas are only an approximation of what the quality is.  Minimally, set the canvas or viewer to 100% to get a better approximation of the quality. 

  • Need help masking or hiding sensitive data in LDAP entries.

    I am currently working on a schema for holding user account information
    in LDAP. We are storing user SSN information as part of the custom
    schema that we have created and need help hiding that data from people
    who may be browsing the directory, either using the console or other
    means. The end result we are trying to achieve is the same as the way
    that the userPassword attribute is stored in the directory. When viewed
    it appears as all asterisks but it can still be passed and read normally
    elsewhere. If anyone has any information on how to do this it would be
    greatly appreciated.
    Thanks
    Robert LaBarre
    [email protected]
    Dewpoint Inc.

    Read the section in the manual on access control. Personally, if you have an
    SQL database that contains information about individuals as well, you might
    want to consider putting the SSNs in there and not in the directory for
    security reasons. i.e. I just read a CERT advisory about buffer overflows in
    the Beta version of iPlanet 5.0 (supposed to be fixed in the release
    version) which basically means full system compromise. Personally, I would
    not recommend putting SSNs in the directory at all if the directory is
    accessible over the Internet. There's always security holes here and there
    and I doubt that you want to leak this kind of information onto the
    Internet.
    Jon
    "Robert LaBarre" <[email protected]> wrote in message
    news:[email protected]..
    I am currently working on a schema for holding user account information
    in LDAP. We are storing user SSN information as part of the custom
    schema that we have created and need help hiding that data from people
    who may be browsing the directory, either using the console or other
    means. The end result we are trying to achieve is the same as the way
    that the userPassword attribute is stored in the directory. When viewed
    it appears as all asterisks but it can still be passed and read normally
    elsewhere. If anyone has any information on how to do this it would be
    greatly appreciated.
    Thanks
    Robert LaBarre
    [email protected]
    Dewpoint Inc.

  • Need help with disabling fields or hiding rows based on previous field

    Hi,
    I have a report in a region.
    The report has five columns:
    Animal type_ Health Issues* Angel Grant Requested?* Granted?* Grant Response Date*
    Dog Fleas Yes Yes 02/04/2009
    Cat Fleas No
    The first time the screen is displayed only the Animal type_ Health Issues* Angel Grant Requested?* columns will appear.
    The user will make a selection for 'Angel Grant Requested' from the LOV ('YES', 'NO') and then click on the 'Submit' button.
    When the screen returns 'Angel Grant Requested?' will be grayed out so the user cannot change the selection. The user will make a selection for 'Granted?' using LOV ('YES, 'NO') and for 'Grant Response Date' using the calendar.
    {color:#ff0000}{color:#0000ff}Here is what I want to do...
    If the user selects 'NO' for 'Angel Grant Requested?' then I would like to do one of the following (which ever one is easiest to do) when the screen returns:
    1. Disable (gray out) the 'Granted?' and 'Grant Response Date' fields on the screen for the rows that have 'NO' for 'Angel Grant Requested?'
    so that the user cannot make any selection, AND update the HEALTH_ISSUES table to
    set grant_granted = 'N/A'
    grant_response_date = sysdate
    WHERE animal_issue_type_id = AI_ID;
    2. Do not display the rows that have 'NO' for 'Angel Grant Requested?'
    {color}
    Can you please provide code samples to do this?
    {color:#ff0000}*I tried to use javascript to gray out the columns, the problem I have is with the hidden f02 column (Angel Grant Requested) that I created on the report so that javascript could read the value. columns are being disabled as desired but the database table is not updating properly...*
    {color:#ff0000}*For the rows where the user selected 'YES' for 'Angel Grant Requested?' we need to update the table with the 'Granted?' and 'Grant Response Date' values. These values are somehow being put on the row where the user selected 'NO' for 'Angel Grant Requested?'.*
    This happens in the UPDATE_ISSUES PL/SQL after When :P6_DSP_REQUESTED = 'DSPGRANTED'{color}
    Below is the Javascript function that is in HTML HEADER:_
    &lt;/script&gt;
    &lt;script language="JavaScript1.1" type="text/javascript"&gt;
    function checkAngelGrant()
    var col2=document.forms[0].f02; /* angel grant requested */
    var col3=document.forms[0].f03; /* angel grant granted */
    var col4=document.forms[0].f04; /* grant response date */
    for (i=0;i&lt;col2.length;i++)
    var col2Check = col2+.value; /* read the hidden angel grant requested field */+
    +/* checks the hidden angel grant requested field+
    if no then we need to disable the angel grant granted field and the angel response date field.
    if (col2Check == 'NO')
    +{+
    col3.disabled=true; /* angel grant granted (Yes No) */
    col4.disabled=true; /* angel response date
    Below is the UPDATEISSUES PL/SQL process that is run on After Submit:_*
    DECLARE
    ai_id NUMBER;
    vgrant_requested VARCHAR2(3);
    vgrant_grnted VARCHAR2(3);
    vgrant_respdate DATE;
    f01 = Animal Issue Type ID
    f02 = grant requested ('YES','NO')
    F03 = grant granted ('YES','NO')
    F04 = grant response date
    P6_DSP_REQUESTED = DSPGRANTED display region with grant_granted and grant_respdate
    P6_DSP_REQUESTED = DSPREQUESTED display region with grant_requested only
    P6_DSP_REQUESTED = BIFNOCHG cannot change any of the fields that have already been set
    BEGIN
    IF :P6_DSP_BEQUESTED = 'DSPREQUESTED' then -- Allow setting of grant_requested value only
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    ai_id := HTMLDB_APPLICATION.G_F01(i); -- animal_issue_type_id This is hidden
    vgrant_requested := HTMLDB_APPLICATION.G_F02(i); -- grant_requested (YES or NO)
    UPDATE HEALTH_ISSUE_TYPES
    SET grant_requested = vgrant_requested
    WHERE animal_issue_type_id = AI_ID;
    COMMIT;
    END LOOP;
    elsif :P6_DSP_REQUESTED = 'DSPGRANTED' then -- grant_granted and grant_response_date
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    ai_id := HTMLDB_APPLICATION.G_F01(i); -- animal_issue_type_id This is hidden
    vgrant_grnted := HTMLDB_APPLICATION.G_F02(i); -- grant_granted (YES or NO)
    vgrant_respdate := to_date(HTMLDB_APPLICATION.G_F03(i),'MM/DD/YYYY');
    UPDATE HEALTH_ISSUE_TYPES
    SET grant_granted = vgrant_grnted,
    grant_response_date = vgrant_respdate
    WHERE animal_issue_type_id = AI_ID;
    COMMIT;
    END LOOP;
    end if;
    END;

    It's actually three reports that get run during different stages of the screen.
    When the user first enters the screen the data is populated from the REQUESTED REPORT sql:
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested
    FROM health_issue_types hit, animal_types at,issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    The user will make a selection from the LOV select list (Yes, No) for the grant_requested field and then click on the Submit button.
    {color:#ff0000}*If the user selects 'NO' for this field then I want to disable the grant_granted and grant_response_date fields when the screen is populated from the ISSUES REPORT sql. If this cannot be easily done then I would like to hide the entire row when 'NO' has been selected for the grant_requested field.*{color}
    When the screen returns the data is populated from the ISSUES REPORT sql:
    ISSUES REPORT
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested,
    hit.grant_granted, hit.grant_response_date
    FROM health_issue_types hit, animal_types at,issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    At this point the grant_requested field will no longer be available for user modification. The user will make a selection from the LOV select list (Yes, No) for the grant_granted, and the grant_response_date fields and then click on the Submit button again.
    When the screen returns the data is populated from the ANIMAL DISPLAY ONLY REPORT sql:
    ANIMAL DISPLAY ONLY REPORT
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested,
    hit.grant_granted, hit.grant_response_date
    FROM health_issue_types hit, animal_types at, issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    At this point the grant_requested, grant_granted, and grant_response_date fields will no longer be available for user modification.
    {color:#0000ff}Thank you for taking the time to look at my problem.{color}

  • Need help in formatting a number field with same precision for excel output

    I am trying to get the same preciision for a field in RTF template when the output is in EXCEL
    i.e. same number of digits after decimal. So, I would like to show 150 as 150.00 and 123.2 as 123.20 etc !! Is there a way to do it. the Built in formatting will not display 150.00 for 150 . but if i add $ symbol it will display. But i dont need $ syambol. please help.

    I found this on one of the forum questions.
    Excel dont preserve the trailing zeros.
    try opening the xcel and type 5.0000 and tab out, it wont preserve the trailing zeros after decimal.
    try finding out how to disable the option in excel. if you do that, you will see what you send out from the report.
    But you can try to convert the number into a text by trying to append a space at the beginning. See if that would work.
    Thanks
    Swarna

  • Need help to disable input selection-screen - very urgent

    Hi SAP experts,
    I have a requirement where in I need to disable ( Grey out ) the input fileds on the selection screen .
    My problem is as I am using ABAP query I am not able to use any events ( AT SELECTION-SCREEN OUTPUT ).
    My selection screen looks like this
    MATERIAL NUMBER ( SELECT-OPTIONS)
    MATERIAL TYPE ( PARAMETERS )
    Now I want to add one more check box below the above fields on the selection-screen.When I click on the check-box,the MATERIAL NUMBER  must be greyed out and MATERIAL TYPE should remain the same.
    Please let me know the coding for the same. All answers would be rewarded.
    Thanks in Advance,
    Suresh.

    Hi,
    Check out these codes.
    1.
    TABLES : mara, makt.
    parameter: p_matnr type mara-matnr,
               p_maktx type makt-maktx.
    at selection-screen output.
    select single maktx
    from makt
    into p_maktx
    where matnr = p_matnr
    and spras = 'EN'.
    loop at screen.
      if screen-name = 'P_MAKTX'.
        screen-input = 0.
        modify screen.
      endif.
    endloop.
    2.
    TABLES : mara, makt.
    TYPES:BEGIN OF tp_maktx,
          maktx TYPE makt-maktx,
          END OF tp_maktx.
    DATA:t_maktx TYPE STANDARD TABLE OF tp_maktx,
         wa_maktx TYPE tp_maktx.
    SELECT-OPTIONS: s_matnr FOR mara-matnr.
    SELECT-OPTIONS: s_maktx FOR makt-maktx.
    INITIALIZATION.
      REFRESH s_maktx[].
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'S_MAKTX-LOW' or screen-name = 'S_MAKTX-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
      REFRESH s_maktx[].
      if s_matnr[] is not initial.
      SELECT maktx FROM makt
      INTO TABLE t_maktx
      WHERE matnr IN s_matnr
      AND spras = 'EN'.
      endif.
      LOOP AT t_maktx INTO wa_maktx.
        s_maktx-low = wa_maktx-maktx.
        APPEND s_maktx.
        CLEAR:wa_maktx.
      ENDLOOP.
    3.
    TABLES : mara, makt.
    parameter p_cb1 type c as checkbox.
    parameter p_cb2 type c as checkbox.
    parameter p_cb3 type c as checkbox.
    initialization.
    loop at screen.
    if screen-name = 'P_CB3'.
    screen-invisible = 1.
    modify screen.
    endif.
    endloop.
    at selection-screen output.
    *loop at screen.
    *if screen-name = 'P_CB3'.
    *screen-invisible = 1.
    *modify screen.
    *endif.
    *endloop.
    loop at screen.
    if p_cb1 = 'X'.
      if screen-name = 'P_CB2'.
      screen-invisible = 1.
      modify screen.
      endif.
      if screen-name = 'P_CB3'.
      screen-invisible = 0.
      modify screen.
      endif.
    endif.
    if p_cb2 = 'X'.
      if screen-name = 'P_CB3'.
      screen-invisible = 1.
      modify screen.
      endif.
      if screen-name = 'P_CB1'.
      screen-invisible = 0.
      modify screen.
      endif.
    endif.
    if p_cb3 = 'X'.
      if screen-name = 'P_CB1'.
      screen-invisible = 1.
      modify screen.
      endif.
      if screen-name = 'P_CB2'.
      screen-invisible = 0.
      modify screen.
      endif.
    endif.
    endloop.
    Reward if helpful..
    Regards.

  • I Need help wrapping an expandable text field to the next page, while pushing a subforum beneath it

    Hi, I hope I can get some help with this form that I am desperately trying to finish.
    I am unable to get an expandable text field to recognize both 1.) the positioned subforum underneath and 2.) the page break. I'll attach the file if it helps get an understanding of what I mean, and maybe someone can see what I did to royally screw it up. The area of the form in question is on page 4 of the attached document. I want the user to be able to write as much as they need in the summary section, and still fill out the last section afterwards.
    If more info is needed, let me know and I will do my best to describe what I did. My last solution I tried, before giving up, was to wrap the previous section, as well as the next section of the expandable text field, into its own subforum. Then, I nested the subforums together in another subforum.
    Thanks in advance.
    -Joshua
    Attachment Link:
    https://docs.google.com/open?id=0B2iKKEocs4_gTTlwZEpHTWxZVkE

    In case anyone sifting through forums, looking for the answer to this question, needs the answer: paulk07 was able to fix my document by unwrapping all of the subforms on the last page and then wrapping it in only 3 subforms (2 positioned/1 flowed) and then set the page to flow.
    From there, I set the margins so when the sectioned wrapped to a new page, it didn't end/begin at the edge of the page.
    Thanks again paulk07

  • Need help in Populating a Z-field in the table "MARD"

    Hi Group,
    I have a requirement like as under:
    1)
    Need to add a field in the transaction MM01/02/03 screen in the view u2018Plant data / stor. 1u2019. And this field should go into the table u2018MARDu2019 table, by appending the structure and adding this field details in it.
    2)
    Once I post a value into this field thru the transactions (MM01/MM02/MM03) , I need the value in the screen to be populated into the table u2018MARDu2019 in the Appended Structure field.
    Could you please help me out by getting a proper User Exit or BADI which fulfills the requirement?
    in Summary, please let me know a User Exit or BADI which will update the Z-field of the table 'MARD'.
    Thanks for the help in advance.
    Regards,
    Vishnu.

    please  check , it might help you.
    How to add fields to MM01 Transaction
    How to add a new field in MM01 with CONCEPT as a field?
    How to add a new field in MM01, with say contaminent  as a field?
    HI ALL, How can i add new field in mm01 basicdata1 screen
    Add button in MM01 Transaction
    i want to add the one field in mm01 application how can i add the field?
    If you dont get the answer still , please search the forum you will get many links for your requirement
    Regards
    Satish Boguda

  • J_3R_INV1_CONTEXT or J_3R_INV1 PDF form need help

    Hello All!
    Help me please!
    When I try to PDF print of PDF form INV-1, the subtotal on first page is incorect. becose qty * prise is incorect. qty = 1 but report do: qty = 1000 & all other data in report is incorect.
    How i can try to correct this?

    First of all sorry of my bad english.
    On Page 1 in table on column 12 qty = 1, on Page 2 in first row (a)
    Write &#1054;&#1044;&#1048;&#1053; (in russian one or 1), in second row (&#1041;) write &#1054;&#1044;&#1053;&#1040; &#1058;&#1067;&#1057;&#1071;&#1063;&#1040; (in russian 1000) but it's incorrect.
    row (&#1042;) = row(a) * price. I need row (B) = 1Price but i have 1000Price.

  • PHP Email form, need help...

    Heya,
    I have a flash form that uses PHP to send the data to an
    email, but it causes all of the data to display on the same line
    with no spaces when recieved via email, can anyone help? Thanks!
    Code:
    <?php
    $sendTo = "[email protected]";
    $subject = "Contact Form from Cabinet Source Website";
    $headers = "From: " . $_POST["name"] ." ". $_POST["phone"] .
    "<" . $_POST["comments"] .">\r\n";
    $headers .= "Reply-To: " . $_POST["name"] . "\r\n";
    $headers .= "Return-path: " . $_POST["name"];
    $message = $_POST["comments"];
    mail($sendTo, $subject, $message, $headers);
    ?>

    As bregent says, the names of the variables you're assigning at the top of the script don't match the variables that you're adding to the $body.
    Another problem is that you're using lowercase for the $_POST array. For example, you have $_post['gt']. PHP is case-sensitive. It should be $_POST['gt'].
    Even when you get those problems sorted out, the script is extremely insecure because you're not checking any of the values submitted. In particular, you're assigning the value of the 'gt' input field to the From: header. This will lay the form wide open to attack by spammers. (Google for "email header injection" to understand the problem.)
    If you want to put a value from the form into the headers, you must first make sure it's safe. For example, I see that gt is meant to be an Xbox Live gamertag. Assuming it must contain only letters and numbers, you should sanitize it like this before inserting it into the headers:
    $gt = filter_input(INPUT_POST, 'gt', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^[a-zA-Z0-9]+$/')));

  • Need help displaying data in text field... Help?

    i have this code:
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import com.adobe.serialization.json.JSON;
    var loader:URLLoader = new URLLoader(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.json?screen_name=ScottMitchell"));
    loader.addEventListener(Event.COMPLETE, loadComplete);
    function loadComplete(e:Event):void {
        processData(e.target.data);
    function processData(data:String):void {
        var tweets:Array = JSON.decode(data) as Array;
        trace(tweets[0].text);
    It works, in the output it tells me the tweets.
    but i need it to be displyed on the app, i need to no how to do this, someone pointed me in the direction of using a item renderer extended from sprite?
    But really all i need to do is display it in a text field, all i want to do is display the data.
    Can anyone help???
    I know this is probably simple and i did try to figure this out on my own, but had no luck.
    All help is appreciated.
    Many thanks in advance.

    you can always use an array if there's no pattern to your positions:
    var positionA:Array=[ [100,20], [2,222], [55,2], [201,111], [78,23] ];
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import com.adobe.serialization.json.JSON;
    var loader:URLLoader = new URLLoader(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.json?screen_name=ScottMitchell"));
    loader.addEventListener(Event.COMPLETE, loadComplete);
    function loadComplete(e:Event):void {
        processData(e.target.data);
    function processData(data:String):void {
        var tweets:Array = JSON.decode(data) as Array;
    for(var i:int=0;i<5;i++){
    var tf:TextField=new TextField();
    addChild(tf);
    tf.multiline=true;
    tf.width=300;
    tf.text =   tweets[i].text;
    tf.autoSize="left";
    tf.x=positionA[i][0];
    tf.y=positionA[i][1];
    nextY+=tf.height;

  • New to Forms, need help in Installing the Summit Application

    Can someone guide me in installing Summit appl. and a runtime env. configuration. I am using 10g Dev. and 10g DB.
    I have put the complete summit folder (got it from OTN) in C:/ and was successful in importing the summit data from the command line.
    the problems i am facing are:
    *Should i directly point to the summit folder in the c:/ while entering values for forms_path in the registry?
    *next point in the readme file says
    compile the application. The file gen.bat will generate files under microsoft windows. What application should I compile and how?
    Runtime environment configuration
    # Summit Application
    Alias /summit/ "C:\summit/"
    *this has to be added to the HTTPD.CONF file in Apache.
    But i have found this file in my pc at this loc: (C:\DevSuiteHome_1\perl\site\5.6.1\lib\Apache) Is this the same file?
    [summit]
    IE=JInitiator
    archive_jini=f60all_jinit.jar,/summit/RoundedButton.class
    userid=summit/summit@<connect_string>
    form=customers
    pageTitle=Summit
    splashScreen=no
    lookAndFeel=oracle
    separateFrame=false
    width=994
    height=582
    serverapp=/summit/summit_reg
    envFile=summit.env
    the above is to be added to the FORMSWEB.CFG file, which i found. can i just change the connect_string and add it at the bottom of the file that i view in notepad. or do i have to fit it in somewhere in between the existing code in the file.
    PLEASE HELP!!

    The first thing you must realize is that this Demo is very old and was created for a very old Forms version (6.0.x). At least three new releases have come out since this demo was created.
    The documentation for the demo is specific to that old version. Every reference to "60" should be removed. For example a reference to FORMS60_PATH has now been changed to FORMS_PATH. This applies to ALL variables.
    The same applies to file names. For example f60all.jar is now frmall.jar. Same is true for f60all_jinit.jar, which is now frmall_jinit.jar.
    So, as you can see copying the README word for word is going to cause you problems.
    Here is an overview of what you likely need to do based on your last update:
    1. Verify that you successfully imported the database objects related to the demo. Login as summit and see if the tables and data actually exist. If not, this should be corrected first.
    2. Whether you use default.env or summit.env is entirely up to you. If you choose to use default.env, the only thing I can think of that would need to be changed is the FORMS_PATH. Add the path to where your FMX, MMX, and PLX files will be located.
    If you choose to use summit.env, copy the file to ..\forms\server (this is the same directory where you will find default.env). Open this file in a text editor. You will need to change all of the "60" references like I previously mentioned. You will likely also need to change the value of ORACLE_HOME as well as many others. This is why using the existing default.env would probably be easier.
    If you carefully read the contents of summit.env, you should be able to understand what needs to be changed. I'm sure many of the directories noted in the file won't even exist. You need to set them to the equivalent on your system.
    3. If you plan to use a "gen.bat" file to compile the application, you will likely need to open it in a text editor first. Verify that FORMS_PATH, ORACLE_HOME, PATH and all other variables are correctly set.
    4. If you are using Developer Suite there is no Apache, so setting the Alias is a little different. However, as previously mentioned, this is unnecessary anyway IF you copy the demos CLASS and JAR files to the ..\forms\java directory. You will then not use the Alias reference in your ARCHIVE and ARCHIVE_JINI entries. For example simply do this:
    archive_jini=frmall_jinit.jar,RoundedButton.class
    archive=frmall_jinit.jar,RoundedButton.class
    5. As mentioned, your formsweb.cfg entries will look like this and should be at the bottom of the file below the existing entries:
    [summit]
    archive_jini=frmall_jinit.jar,/summit/RoundedButton.class
    userid=summit/summit@ORCL
    form=customers
    pageTitle=Summit
    splashScreen=no
    lookAndFeel=oracle
    separateFrame=false
    width=994
    height=582
    serverApp=summit_reg
    envFile=summit.env
    The reference to serverApp is for access to the .dat file, which I will assume you have in your C:\summit directory. Again, remove the Alias reference and copy the file within the Oracle Home where the original is found. If the demo .dat file is named "Registry.dat", rename the original so you can revert back to it later.
    This file should be stored in:...\forms\java\oracle\forms\registry
    If you really want to create the Alias and follow the instructions as closely as possible, you will find that the Alias should be configured in the following:
    ...\j2ee\DevSuite\application-deployments\forms\formsweb\orion-web.xml
    Use the existing entries as an example. Your entry will look something like this:
    <virtual-directory virtual-path="/summit" real-path="C:\summit" />
    If you are new to all of this, I would recommend that you flip through some of the documentation. Starting with a demo before understanding how the product works is probably not the best approach. Here are some references to useful documentation. References to additional documentation can be found in link on these pages. Be aware that most documentation which was created for Forms 9.0.4 will still apply to 10.1.2.
    Forms 10.1.2 Tech Listing
    http://www.oracle.com/technology/products/forms/techlisting10gR2.html
    Forms 9.0.4 Tech Listing
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    Forms 10.1.2 Online Help (same as Help found in Builder)
    http://www.oracle.com/webapps/online-help/forms/10g/
    Forms 10.1.2 Deployment Guide
    http://download.oracle.com/docs/cd/B19375_07/doc/frs/forms/B14032_03/toc.htm

  • Need help. iPod disabled and unable to connect to iTunes for a restore???

    Please Help!!!  My iPod touch is giving me a red box error stating "iPod is Disabled" and telling me to connect to iTunes. I tried to connect to iTunes but am getting the error message "iTunes could not connect to iPod because it is locked with a passcode. You must enter your passcode on the iPod before it can be used with iTunes". 
    I am unable to enter the passcode because the iPod touch is disabled and will not let me.
    Does anyone know what to do?
    Thanks for your help.

    Connect in recovery mode and restore, you'll get the option to reset the passcode during this process:
    iOS: Unable to update or restore and iPhone and iPod touch: Wrong passcode results in red disabled screen
    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.

  • Need Help Finding SQL to Report Fields

    Hi all,
    I have been asked to map for reporting purposes all the fields in the HRMS person and assignment forms, plus vacany requisition and absence.
    For example, on the people form in HRMS the "last Name" field would translate into sql as "per_people_F.last_name".
    I have found all the person/assignment/absence and vacancy fields but cannot find any of the following:
    Bank account/ pay method information.
    Salary previous/ salary proposal form information
    Anything from the element entries screen or the tax information fields.
    Anyone have any ideas which tables would hold this information for querying using developer or toad??

    This forum is specifically for the SQL Developer tool. You are more likely to get answers in one of the application related forums.

  • Need help trying to arrange  3 fields all near each other..in  a region.

    I have 3 fields and i am trying to arrange all near each other..
    But i cannot
    The space is like
    Empno.. Fieldnename.....*empname*......................................fieldempname samplefield sampleno
    I am trying to understand why is there too much space between empname label and the field empname
    Note field empname is a list item.
    I have currently used field.= no and reduced the space difference
    Begin On New Line     Field      
    Can any one educate me more on what is a page item field yes or no indicate.
    What is the actual purpose of field in page item and also colspan and rowspan
    Also best method to arrange columns near each other in a apex form
    apex 4.1 11gxe
    Edited by: user12233760 on Oct 2, 2012 2:39 AM

    Hi I had forgotten this option of drag layout . One of the problem is. . I have 3 columns my third columns field
    is shown automatically at a different line . Though its label exist in the first line..This happen to last column dont know the reason why
    This is specially when i set my last field to no . so that it can exist in one cell..
    ..Ok Sorted it out..Went into documentation and found about start stop html tables. .and combination of all ..like field even yes,etc
    i am able to get the desired output Got it sorted thanks again
    Thanks again
    Edited by: user12233760 on Oct 2, 2012 3:15 AM
    Edited by: user12233760 on Oct 2, 2012 3:31 AM
    Edited by: user12233760 on Oct 2, 2012 3:33 AM

Maybe you are looking for