IS ATG ROLLUP 7 +PATCH SET 19 (FORMS) APPLY FOR WEB TIER ONLY

Hi everyone,
We are planning to apply ADI 7 + Patch set 19 and everything working great . But my question we have Three tier Apps(WEB,Con,Form,Report) ,WEB,DB
We applied it on Apps tier but there is a node have only web tier and ADI 7 and patch set 19 for forms there is no relation with Web Tier.
in this case is it need to apply it on this node also as we know from oracle "You must apply any patches that you apply it from first node on second node"
What do you think ?
Best Regards,

>
We are planning to apply ADI 7 + Patch set 19 and everything working great . But my question we have Three tier Apps(WEB,Con,Form,Report) ,WEB,DB
We applied it on Apps tier but there is a node have only web tier and ADI 7 and patch set 19 for forms there is no relation with Web Tier.
in this case is it need to apply it on this node also as we know from oracle "You must apply any patches that you apply it from first node on second node"
What do you think ?Hi,
If you only web tier and no APPL_TOP on that tier means you no need to apply the ADI7 and patchset 19 patch
in this case is it need to apply it on this node also as we know from oracle "You must apply any patches that you apply it from first node on second node"it would be like You must apply any patches that you apply first in Admin node and on other nodes..
-Rk

Similar Messages

  • Apply Developer 6i Patch set 19 (6194129) for EBS 11i

    Hi hussein,
    EBS 11i
    RHEL 4.6
    I want to appy the latest Dev 6i patch 19 on our EBS 11i, using the note:
    Upgrading Developer 6i with Oracle Applications 11i [ID 125767.1]The notes said:
    Step 2: Download the latest Certified Developer 6i Patchset and Applications Interoperability Patch
    Patch 6194129
    Patch 9935935
    I can not understand this conflicts of CPU patches mentioned above :(
    Do I just apply the following patches on my linux server?
    9863561,
    6125732,
    6857221,
    5232832,
    8888184,
    7329300,
    6747939,
    7552880
    So all in all, I have to apply 10 patches to complete the task?
    Thanks a lot,
    Ms Inday

    Thanks hussein, helios :)
    Actually,
    Apply Developer 6i Patch set 19 (6194129) for EBS 11i is just part of the main note/docs which is
    Interoperability Notes Oracle EBS 11i with Oracle Database 11gR2 (11.2.0.1) [ID 1265268.1]From the notes above, I have compiled all the necessary patches to apply:
    2574342
    3830807
    4547809
    5232832
    5571663
    5644137
    6125732
    6194129
    6241631
    6400762
    6747939
    6857221
    7329300
    7552880
    8405205
    8570322
    8667727
    8685327
    8761974
    8771297
    8772028
    8796511
    8815204
    8826546
    8888184
    8897784
    8964142
    9094950
    9835302
    9863561
    9876919
    9935935These 32 patches can be "all" at once applied before the database upgrade right?

  • Set default value for people picker only when user checks a checkbox (Sharepoint 2010)

    The javescript in below link works for me.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/2b130f64-3db2-484a-9a53-ccbe18d2c5de/set-default-value-for-people-picker-in-list-template-current-user?forum=sharepointgenerallegacy
    However, I'd like to set default user for people picker only when user checks a checkbox. 
    I am new to  development. Could you please help me on this requirement ?
    Thank you very much. 

    Hello,
    Use this link to to validate checkbox value, if true then set the person or group value (i.e. as posted in your link).
    http://geekswithblogs.net/haniamr/archive/2011/03/10/validate-that-a-checkbox-is-checked-using-javascript.aspx
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • CF Set form.variable for query and Next/Previous pages error

    I have a CF form with a select that posts to a CF "action" page.
    On the action page I: CFSET ItemNumber=#form.ItemNumber#
    I CFOUTPUT the 'ItemNumber' into the CFQUERY (which is an Inner Join dependant on the '#ItemNumber#')...
    All of the above works just fine and displays the database fields in color alternating rows, per the rest of the code.
    Here's the problem:
    I'm displaying 40 rows on a page per "Next and Previous" code. (CFPARAM name="start" default="1" and CFPARAM name="disp" default="40" along with the rest of the NextN code in the header and body). This does display 40 rows on the page and puts a link at the bottom of the page "Next 40 Rows", etc.
    Note: I'm only querying the database once and using the query (query name="data") to populate the table rows And the NextN code (CFOUTPUT name="data") And (CFIF start + disp GREATER THAN data.RecordCount, etc)...
    The problem happens when you click the "Next 40 Rows" link to display the 2nd page of rows. Since (I'm assuming) this NextN code is 're-reading' the same page from top to bottom, an error is thrown when the code tries to read the CFSET ItemNumber=#form.ItemNumber# at the top of the page.
    With the #form.ItemNumber# on this action page Originally coming from the previous posting of the form to this action page, when the "Next 40 Rows" link is clicked and the NextN code re-reads this action page - the CFSET ItemNumber (#form.ItemNumber) is not getting populated and throws the error...
    I hope I've not made this sound confusing.
    I can get the NextN code to work when I'm just querying the database without "flying in" a form variable. But when I CFSET a variable (#form.ItemNumber#) that is inserted into the query, the second page of the NextN throws an error and doesn't display.
    I would include the page code here but it would be fairly lengthy and, as well, the NextN code is a 'standard' CF code -- I've narrowed the problem down to the above "Element is undefined" (when the page tries to reload from the "Next 40 Rows" link) and am hoping there's a simple fix or another way to display the records in Next and Previous pages.
    Thanks to anyone in advance for shedding light on this.
    - e

    Thank you for the reply, Owain.
    Yes - The Next/Previous at the bottom of the page are hyperlinks.
    <a href="ThisPage.cfm?start=#Evaluate("start + disp")#">
    The following is at the top of the page (and is the variable from the form that I CFOUTPUT in the query):
    <cfparam name="ItemNumberDropdown01" default="">
    <cfset ItemNumber = #form.ItemNumberDropdown01#>
    The error report showed that the "Next Page" hyperlink was reading an undefined variable... although when the "action page" first opens from the form posting to it, it populates the CFSET just fine (per the cfparam and cfset above)... As you mention, the hyperlink clearing the form scope is what causes the error in trying to display the next set of records...
    The form page and the 'action page' are both secure pages with an application page setting the session, etc. Am I at risk in using an URL scope?
    Where would this URL scope be put? (The href is shown above - would the URL scope go in this? - How would this be written?)
    The CFPARAM and CFSET would still exist at the top of the 'action page' and still throw an error wouldn't it or would this be replaced with something else to read the form.variable for this 'first' action page to be displayed?
    Thanks again for the 'education' on this...
    - ed

  • Patch to be applied for  JL/JG products

    Hi
    OS RHEL 5.5
    Database : 11.1.0.7
    Applications : R12.1.3
    Please suggest how to check we are using JL/JG product in Oracle apps as there is a patch 12668756 to be applied for receivables has a pre-requisite patch 12575584:R12.JL.B : FORWARD PORT OF BUG 9952202 IN R12.
    Prerequisite is for JL/JG only as per the patch readme
    Instructions for applying the patch
    1) Products affected
    JL/JG
    My doubt is whether we are using these products or not.
    How to check we are using these products and patch is applicable for our env.
    Please do the needful.
    Rgrds,

    Hi,
    If you have licensed these products then you'll have to apply those patches.
    You can check whether you have licensed or not from OAM (Oracle Applications Manager) or use the query in the note
    How To Use OAM To License JA (Asia/Pacific Localizations), JE (European Localizations), JG (Regional Localizations) and JL (Latin-American Localizations) in Oracle Applications ? [ID 351900.1]
    Please note the above note shows how to license, but please use just the query or OAM to find if you have licensed or not
    Thanks

  • After enabling Oracle Deport Repair, What are the recommended patches to be applied for R12 instance.

    Hi,
    I'm working on Oracle Deport Repair, so are they any Recommended patches to be applied on the Instance to complete the Implementation successful.
    Please let me know if they are any patches available.
    Thank you.

    Please see ..
    Identifying Recommended Patches for E-Business Suite Environments
    https://blogs.oracle.com/stevenChan/entry/recommended_patches_for_oracle_e
    Identifying the Latest Family Packs for Oracle E-Business Suite
    https://blogs.oracle.com/stevenChan/entry/latest_available_packs_for_oracle
    Oracle Applications Current Patchset Comparison Utility - patchsets.sh [ID 139684.1]
    Thanks,
    Hussein

  • Setting Sales Tax for in State ONLY??

    What we have here is a failure to communicate...  Either it is a language problem with support or they can't explain the feature.
    All the answers I 'm getting are NOT answers to the question I'm asking. And the document is not clear either.
    I have clients who sell products who ONLY need to charge sales tax to customers in the same state (PA)  but BC is charging 6% to all customers regardless of location.  We realize now that we should not have set the tax on individual products to PA 6%  (although that is VERY counterintuitive), and we set up our tax code for the USA with all states being zero and pa being 6%.   Tech cannot tell me how I should be setting taxes globally for products. IT is almost as if this feature does not exist:
    ME:   No,    This is not acceptable nor does it make any sense.
    In the USA, for most companies,  we only charge sales tax to In state customers, not out of state customers.  Therefore we need to be able to set up a global tax NOT on the product and NOT on the Country, but upon the state ONLY.
    If this option is not available, it is a worthless system.
    Parikshit Nath (Adobe Business Catalyst Support) 
    Dec 20 09:10
    There are two proper ways to add tax.
    1. Add tax to shipping options: In this case, you create tax codes and shipping options too. Now, you add tax code to the shipping option as per the customer's destination country. Add a shipping option, and select the tax code in the shipping option. This is the more widely used method of applying tax. From what I had seen, you didn't create any shipping options yet, hence the confusion.
    2. Add tax directly to the product: This is what you had done. This will, as you have already mentioned, apply the tax to the product, irrespective of the customer's address details.
    Hope this clarifies the situation.
    Cheers.
    You can set it as not applicable. If you apply tax to the product level, it will apply the tax to all orders for that product. To apply tax to all orders regardless of the visitor's location, you can apply tax at a product level. Check this document:http://helpx.adobe.com/business-catalyst/partner/tax-codes.html

    Your question is really inappropriate to the Apple Discussions. The AD is a user-to-user forum for helping with technical problems and questions for Apple products. Sales taxes is certainly not one of those topics.
    However, to answer your question. If your friend purchases a Mac in the Apple store or if you purchase it via the online store taxes will be charged. Sales taxes in the US are typically between 6-8 percent of the purchase cost depending upon the state in which it is purchased. There are a few states that do not levy sales taxes such as Nevada and Montana.
    In addition when your friend takes the computer into your country you will likely be charged with import duties and taxes as well. If it's your expectation that this ploy will save you some money I wouldn't count on it.

  • Save Image size setting in Save for Web

    I'm using Save for Web (CS3) and scaling the file to different sizes with "scale image". I'm wanting to use the same scale settings for many images but when I save the pre-set the image size settings don't get saved. I'm wanting to use it as part of an action but the setting wont stick. Any suggestions? Alternative work flows?

    That's never been saved as part of the S4W presets. Bloody annoying.

  • How to launch Web administration service and set trace level for web dispac

    Experts,
    Can some one help on how to setup trace level for Web dispatcher? and how to launch web administration interface.
    Thanks in advance.

    Hi Sam,
    You can launch the Web Dispatcher Interface through the follwing link:
    http://host:port/sap/wdisp/admin
    The Username & Password are created when the profile is run for the first time. The userid is ICMADM
    This link points to the web disaptcher administration interface & its usage.
    You can set the trace level once you login to the interface.
    http://help.sap.com/saphelp_nw70/helpdata/en/4f/3bee29d9764e988bdeecdb4d484722/frameset.htm
    Hope it is helpful.
    Regards,
    Abhishek

  • Setting VTY lines for SSH % Telnet only

    Hello,
    First off I apologize if this is the wrong section to post in or if there has already been a thread made for this particular problem however I've yet to find a solution that works.
    I am configuring a 1841 router running IOS Version 12.4(15)T1
    I am trying to set the vty lines to accept only telnet and ssh connections.
    I am using these commands:
    R1(config)# line vty 0 15
    R1(config-line)# password ciscovtypass
    R1(config-line)# login local
    R1(config-line)#transport input telnet ssh
    When I enter the "transport input telnet ssh" , I receive the error "Invalid input detected at '^' marker" and points to the word ssh.  I can successfully use "transport input telnet" and "transport input ssh" by themselves, however when I try to set them both on the same line is when i get the error.  And setting them both one after another overwrites the previous.  Any help would be much appreciated, thanks. 

    The suggestion from Leo would certainly allow both telnet and SSH. But it also allows some other protocols (they are not common in today's networking environment - but the original question was quite specific that they want to allow only 2 protocols and not all protocols). So let us look for answers that may help Michael.
    My first thought was to wonder if SSH has been fully enabled and whether this might be a factor in the problem. Michael indicates that transport input ssh works ok and that seems to indicate that enabling SSH is not the issue. But I would still feel better if Michael would post the output of show ip ssh
    I wonder if there is an order dependency in which one of the protocols must be entered first. I suggest trying this
    line vty 0 15
    transport input telnet ?
    and
    transport input ssh ?
    and see if one of them indicates that the other protocol is an option.
    HTH
    Rick

  • 720 480 sequence with square pixels for web delivery only

    i'm on fcp 5.0.4. i've done some text qt exports and all seems to be fine, just want to double-check here. i am editing a sequence of stills. i want my seq settings to be 720x480 square pixels (you can choose 'custom' for this but it will change back to ntsc dv 3:2) because i like the 1.5 (720x480) pixel aspect ratio.
    usually when i do 720x480 projects i'm working with dv/non-square footage and when i export for web use i'll choose the 640x480 setting so that it displays correctly on computers.
    so the question is: any foreseeable trouble with my using 720x480 with square pixels seq settings if i want to export a qt at those same specs, and it's NOT going to broadcast, just web delivery?
    i'm also using compressor - jpeg as part of seq settings unless someone can tell me there's a better compressor to use. (yes i know tiffs would be better but am using jpegs here.)
    thanks.

    Yes, there are foreseeable problems of applications assuming that your 720x480 video should have D1-sized pixels, as you've already experienced.
    But once you finally end up with a 720x480 square pixel QuickTime movie that you are going to embed into a web page it should play properly.
    Just make sure you host the video yourself so you can control its presentation. I bet if you upload it to Vimeo or YouTube those services would also reasonably assume that your video had non-square pixels.

  • Save for web html only

    when i try to use the save for web function it will only save as html. im trying to save a jpg only. not html or sliced image. ive reset photoshops to default

    What application is that?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • What patch(sets) to apply to new installed 10.2.0.1

    Hello,
    even though this was discussed alreaady several times, I must ask it once again, could anyone instruct me on how to do it right?
    I installed a totally new db server with a "fresh" downloaded 10.2.0.1. What patches do I have to download and to install to be "up to date"? Does that include, that my version shows 10.2.0.3 afterwards or do I still have a 10.2.0.1 but patched to the max?
    Please, before someone answers to look up Note:362203.1, I laready did. It sais "identify the appropriate patchset for you database". But if I try to use the metalink patch configurator and choose all the right items (database family, 10.2.0.1, Windows server 2003, compatible with, and so on) it comes up with only one patch (4926128) for oracle default password scanner.
    Can you help me?
    Thank you in advance,
    Chris

    oradba and tarrio, thank you both...!
    While I write this my download for patchset 10.2.0.4 completes. But tarrio says, 10.2.0.3 is the right one? That confuses me, I suppose tarrio ment .4 also, right?
    So, ig that sounds okay to you both, I will apply patchset 10.2.0.3 onto my 10.2.0.1. and will see how far I get, any usual problems to prepare for? I won´t do any backupds and so since the server is "naked" and nothing on it. If this works I have a) a feeling on updating all other server yes/no and b) my first completely patched server....
    Thank you so far,
    Chris

  • Form personalization for a read only responsibility for a custom form

    Hi,
    I have a read only responsibility. My requirement is to make a custom form updatable through this responsibility but wth a condition that only the specific custom form should be updatable and rest all other form accessed through read only responsibility be read only. How can i achieve this using form personalization?
    Pls give me detailed steps if possible.
    Thanks

    I tried override Query Only values through Forms Personalization but it did not work for me. With a bit of determination I might have been able to work around it but no luck on that front.
    You can do it this way, although it's a bit cumbersome:
    1. Clone every function and menu in the Responsibility
    2. In all but your custom function set the Function parameter QUERY_ONLY=YES

  • Setting Basic Authentication for Web Service in WLS 6.1

    Hi,
    I am trying to set-up a Basic Username/Password authentication for a Web Service
    that is hosted in WLS 6.1.
    How do I go about doing that? Also once I get the username and password, how do
    I pass that info
    to the SOAP servlet to do the authentication? Can you give me some pointers on
    this?
    Thanks
    Madhu

    How do you want to do it? Through use of client.jar for the service or
    directly? Here is how I do it directly:
    String auth = "guest", pwd = "guest";
    URL url = new URL("http://localhost:7001");
    URL cmdURL = new URL(url.toString()+"/systemtest/TestWebService");
    HttpURLConnection conn = (HttpURLConnection) cmdURL.openConnection();
    String encAuth =
    new BASE64Encoder().encode((auth + ":" + pwd).getBytes());
    // BASE64Encode distributes long strings on multiple
    // lines; we don't like that, no siree
    int it = 0;
    while ((it = encAuth.indexOf('\n')) != -1
    || (it = encAuth.indexOf('\r')) != -1) {
    encAuth = encAuth.substring(0, it) +
    encAuth.substring(it + 1);
    conn.setRequestProperty("Authorization", "Basic " + encAuth);
    conn.setRequestProperty("Content-Type", "text/xml");
    conn.setRequestProperty("SOAPAction", cmdURL.toString());
    conn.setDoOutput(true);
    conn.setDoInput(true);
    conn.setUseCaches(false);
    OutputStream oStr = conn.getOutputStream();
    String cmd =
    "<?xml version=\"1.0\" ?>\n"
    + "<soap:Envelope xmlns:soap=\"http://schemas.xmls"
         + "oap.org/soap/envelope/\"><soap:Body>"
    + "<ping><arg0>false</arg0></ping>"
    + "</soap:Body></soap:Envelope>";
    oStr.write(cmd.getBytes());
    oStr.close();
    InputStream iStr = conn.getInputStream();
    byte[] buffer = new byte[1024];
    while (true) {
    int size = iStr.read(buffer);
    if (size == -1)
    break;
    System.out.println(new String(buffer, 0, size));
    ThorAAge

Maybe you are looking for

  • How to set up multiple accounts on Itunes without everyone getting info

    h Can someone help me set up account through one Itunes without each device getting all songs and data?

  • How do I programmatically create and save an empty project?

    I can programmatically create an empty project, but when I drop an invoke node on the project, select "Save", and wire in the desired path, it results in an "Error 1".  I am getting the error on the "Save" invoke node (An input parameter is invalid.)

  • Unable to read report metadata

    I have a report from SSRS2008R2 in user in PP2007 which works there properly. When I try to use it in PP2010 I get "Unable to read report metadata" every time I try to change the default value of the parameters. In PP2007 it all works properly. thank

  • How do I design this in data warehouse?

    I am working on building a data warehouse for insurance quote data. Each quote will have an applicant and can have an optional co-applicant. Each applicant and co-applicant will have prior auto insurance history, prior home insurance history, current

  • Programming and using in dual mode

    how do i programme n70-1 for both GSM and CDMA frequencies.Does it requier a seperate SIM? The operating channels are chl1-42,chl2-83,SID-14495 and NID-- 65535