How to implement Personal Information for non supported countries

Hi,
   Can anyone give me some tips on how to implement Personal Information ESS services for countries which are not supported by the standard business package. We need to implement for the following countries as well as a part of global implementation.
Cyprus
Czech Republic
Egypt
Ireland
Luxembourg
Monaco
Russia
Ukraine
Regards,
Subhadip

Hi Subhadip,
You need to the following customization settings in SPRO.
Personnel Management->ESS->Service Specific settings->OWn Data->Reuse Country Specific Application
Just follow the IMG documentation and it should be done.  Basically we do,
1.  Identify the Infotype and the country for which we want to re-use existing application (e.g Egypt).
2.  Select the country from which you want to copy the screens (e.g. Australia, India)
3. Specify the "Use Case and Active Subtypes" for that country.  Follow the documentation for this node.
4. Maintain country specific entries for services (in this case will add entries for the new countries added).
Hope this helps.
Regards,
Jigar

Similar Messages

  • HT4623 how to upgrade personal hotspot for iphone 3G

    how to install personal hotspot for my old iphone 3G

    It says
    Personal Hotspot refers to the Internet-sharing feature on iPhone 3GS or later, iPad (3rd generation) Wi-Fi + Cellular or later, and iPad mini Wi-Fi + Cellular. This article explains how to share your cellular data connection using Personal Hotspot. Refer to the User Guide for additional information on Personal Hotspot.
    in http://support.apple.com/kb/HT4517

  • How to implement Ajax toolkit for SharePoint2013?

    Hi All,
    How to implement Ajax toolkit for SharePoint2013?

    Hi Sam,
    Based on your description,
    I can suggest as follows:
    Use the “SharePoint AJAX 3.5 for 2010 and 2013”
    solution.
    Download URL:
    http://sharepointajax.codeplex.com/
    2.    
    Use the Ajax Control Toolkit with ASP.NET 4.5.
    Download correct version of Ajax Control Toolkit.
    http://ajaxcontroltoolkit.codeplex.com/releases/view/109918
    Add AjaxControlToolkit.dll reference to your project.
    Add Ajax Control Toolkit ScriptManager in master page.
    Register Ajax Control Toolkit namespaces in SharePoint package Designer.
    More information:
    http://timscyclingblog.wordpress.com/2013/03/22/ajaxcontroltoolkit-version-7-0123-with-net-4-5/
    http://sampathnarsingam.blogspot.in/2012/05/how-to-make-ajax-control-toolkit.html
    Please inform me freely if you have any questions.
    Thanks
    Qiao Wei
    TechNet Community Support
    Is it possible to use version AJAX
    Control Toolkit .NET 4.5 along with SharePoint 2013?
    As far as I know with SharePoint we can use only version AjaxControlToolkit(3.0.30930.0). Isnt it?

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How to change billing information for my annual subscription as the chart through which I was paying

    The option that gives me my brand Subscription error and I can not make changes.

    It solved the problem of changing the credit card for payment of a subcripción.
    thanks
    Date: Wed, 18 Jul 2012 14:22:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: How to change billing information for my annual subscription as the chart through which I was paying
        Re: How to change billing information for my annual subscription as the chart through which I was paying
        created by David__B in Adobe Creative Cloud - View the full discussion
    Hi Beto, What information are you attempting to change (address, credit card)? What is the error message you are getting? Would it be possible to post a screen shot of the error? -Dave
         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/4565913#4565913
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4565913#4565913. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Creative Cloud by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to implement Change pointers for Purchase order - ME22N - Custom Fields

    Hi Experts,
    Can you please tell me how to implement - Change Pointer for Custom fields in IDOC.
    I am working on IDOC - For purchase order - acknowledgements - in custom screen/tab in ME22N.
    Everything is working fine according to my requirement.
    All i need to know is the process of - Creating/Change - Change pointers for Custom fields.
    1.How to implement change pointers for custom fields.
    2.Can we maintain - Change Document - for custom fields at data element level?
    P.S. - I have browsed many previous - forums before posting a new discussion.
    please share your inputs...
    explaining how to create/implement - change pointers for custom fields will help me .
    Regards,
    Karthik Rali.

    Hi,
    To maintain Change Document for custom field:
    1. Check if "Change document" checkbox is set in data element.
    2. Find Change Document Object for transaction.
       You can use SQL trace - ST05.
       Look there for line with table CDHDR and statement insert values
       (for example for transaction KA02 Change Document Object is KSTAR)
    3. Regenerate update program for this Change Document Object in transaction SCDO
    Change documents for z-fields schould be generated.
    I am not sure about change pointers but they are configured somehow in BD61 and BD50.

  • HT201436 how to make personal ringtone for each contact

    how to make personal ringtone for contacts

    You create the ringtone - Google will find several ways to do this.
    Then sync them to your iphone.
    Then go to the contact and select the ringtone you want

  • How to find table information for a datasource?

    Hi,
    Can you please tell me how to find table information for a datasource. I am not getting much help from help.sap.
    I am trying to find table information for below datasources. We are creating DSO's for the below mentioned datasources, for some we have standard DSO's(0WBS_O06), for others I am trying to create
    0CO_OM_NWA_1,
    0CO_OM_NWA_2,
    0CO_OM_WBS_1,
    0CO_OM_WBS_6
    Please help me.
    Regards,
    Bob.

    Hi BOB,
    Another option to find the table information...
    inorder to get the tables names involved in that particular data source follow the below steps.
    1) ST05 --> activate the Trace
    2) RSA3 --> enter your data source (for ex: 0CO_OM_NWA_1)
    3) Execute
    4) Now goto ST05 -> deactivate the trace
    5) click on Display trace(F7) button
    6) Execute
    7) It will display the complete SQL trace
    8) Now from the Menu "Trace list" --> select "Combined Table Access"
    it will display the complete tables list involved in that data source...
    From Table name section you can get the list of tables involved in that data source.
    I had traced and took the information of tables involved in that data source 0CO_OM_NWA_1
    0CO_OM_NWA_1     
    AFKO     Order header data PP orders
    AFVC     Operation within an order
    AUFK     Order master data
    COSP     CO Object: Cost Totals for External Postings
    COSPP     Transfer of the Order in the COSP Table to the Project
    COSS     CO Object: Cost Totals for Internal Postings
    COSSP     Transfer of the Order COSS Table to the Project
    COVREF     Coverage Reference Table: All Processing Blocks
    COVRES     Table of Coverage Results
    You can follow the same steps and find the tables for the rest.
    Regards
    KP

  • How to get this information for Conky

    Hi people,
    My question is how to get this information for show in Conky:
    - KDE version.
    - Last sync (pacman -Sy) and Last update (pacman -Su)
    For the first point could be use a script that execute $ kdesu --version and get information from there.
    I have no idea how get information from pacman (may be logs?).
    Any ideas?
    Thank you.

    I have had tremendous success with LUA in Conky on Arch. And all you need to to is put the text HI after the "TEXT" line. ^^;
    Examples of my LUA usage:
    http://fc02.deviantart.net/fs71/i/2010/ … usLink.png
    http://kittykatt.silverirc.com/screens/conky-HUD.png
    EDIT:  Also, I've had success with getting the KDE version by doing the following...
    kwin --version | awk '/^Qt/ {data="Qt v" $2};/^KDE/ {data=$2 " (" data ")"};END{print data}'
    This is the method I'm currently using in screenFetch. Tested it a couple of times myself, but besides that, I'm not sure if it will work or not.
    Last edited by kittykatt (2010-04-22 17:52:25)

  • How to remove all personal information for your blackberry?

    I am currently an Altel subscriber, whom is being switched to AT&T.  I would like to sell or donate my current blackberry 9630 as it is in new condition.  How do I ensure all my data has been removed and it is safe to do so?  I checked online and it says to replace your SIMS card, but with what?  Wouldn't it have to be carrier specific?  But then if I put in an AT&T Sims it would not work, would it?  As they are saying we have to have new phones?  Please advise.  As you can tell I know little on this except I love my phone

    Hello jodeebryant,
    In order to remove all personal information from the BlackBerry you are first going to want to ensure the memory card and SIM card have both been removed. Whoever you sell it to will need neither for the BlackBerry to function or can get their own.
    Secondly, you are going to want to do a Security Wipe to the BlackBerry. Do this by going to Options > Security Options > Security Wipe. Before you do this ensure you have either done a backup on BlackBerry Desktop Manager or do not want ANY information that is stored on the BlackBerry.
    Goodluck and hope this helps,
    Euclidics
    If this or any posts in this thread were helpful please Kudos the author.
    If this or any posts in this thread were the solution to the topic, please accept the post as the solution so others can view it.

  • MAC and IP should specifically be listed "Personal Information" for all interactions in your Privacy Policy

    Except for those who run cute lil' programs that could disorient or disrupt the system, possessing someone's MAC is possessing the 'true name' of at least one portion of their computer. Follow the computer in your accumulated files, and somewhere, this note even, gives you the mailing address, and a good lead on who owner is. IP address, if too static, well, same deal. With policy in place, I can feel free to run a server AND the rest of my system on the same fiber broadband line, saving me enough $/yr to buy an upgrade or two.
    Let's face it, YOU are your equipment, and if I wanted to use my name, I would.

    First, if you keep up a file until you can match a firewall MAC with doc with a name on it, the rest is fairly simple. Traceroute the IP, and, while NOT as easy as a return address sticker, it is a pretty easy thing to do. Mozilla admits this:
    Any information that can connect even a firewall with a place or individual(s)should be defined strictly as "personal information in a privacy policy, period.
    I worry about the Eternal Word, especially the records kept by suppliers of everything, including Mozilla, which, without paperwork like a subpoena or warrant,
    "may share potentially-personally identifying information with its employees, contractors, service providers, and subsidiaries and related organizations. ..." Otherwise, Mozilla will not publicly release potentially-personally identifying information except under the same circumstances as Mozilla releases personally identifying information. Those circumstances are explained below, the Four Reasons Mozilla may release to companies including Google's Doubleclick Division, which crows, in privacy statements about a)getting access to all of Google's raw data, b) crunching and mashing for best web ad placement - NOT for "people like YOU" but Only for YOU the wife of Bradbury's Fireman is told, as she awaits a once-in-lifetime chance to influence the flow of a 3V soap opera..
    Here's one Mozilla protection against releasing information to the PUBLIC, private industry and the governments of the world:
    First, in admitting what you said above is not the case:,
    "... Mozilla also collects potentially-personally identifying information like Internet Protocol (IP) addresses, which are non-personally identifying in and of themselves but could be used in conjunction with other information to personally identify users"
    What does it do with these records, which I would prefer have every identification mark removed the microsecond it arrives?
    Well, if you are not in business with Mozilla, just another user:
    "1. Mozilla does not publicly release information gathered in connection with commercial transactions (i.e., transactions involving money), including transactions conducted through the Mozilla Foundation Store or donations to the Mozilla Foundation.
    2. Mozilla does not publicly release personally identifying information collected in connection with an application for employment with Mozilla.
    3. Mozilla does not make publicly available information that is used to authenticate users the publication of which would compromise the security of Mozilla's websites (e.g., passwords).
    4. Mozilla does not make publicly available information that it specifically promises at the time of collection to maintain in confidence."
    Part 1 is UNTRUE to the extent that Mozilla reports and/or verifies donations, either the 5 largest or everyone donating more than I think it's $30K for the annual Form IRS 990, a NfP's equivalent of a Form 1040 - the last three are generally posted on the foundation site.
    Part 2 is The Law in most states.
    Part 3 promises internal security to Mozilla, and says NOTHING about users.
    Part 4 avoids nasty suits.
    And the list is followed by a curious statement: "Outside those four contexts, users should assume that personally identifying information provided through Mozilla's websites will be made available to the public."
    What about PRIVATE transactions (purchases, trades, 'aid in kind') - curiously missing is any statement? Or 'requests' from public and private guys in suits?
    Ominously, for those who regard the rapid collection of data from social networking 'harmless' or 'fun', "Mozilla may interact with you through social networks to further our mission. When you interact with us at a third-party social network, such as Facebook, Twitter, or Google +, the network gives us the ability to access and store certain information from your profile for that social network.
    Like the guy who posted a copy of an ad he found for hospital lubricant in 55-gallon drums - and found himself the Facebook spokesman for a KY-Jelly-type product.
    "Consistent with our privacy commitments, we will scrutinize third party requests for information about YOU for compliance with the law, including those coming from governmental agencies or civil litigants. We may access, use, preserve or disclose information about you only WHEN WE HAVE A GOOD FAITH BELIEF that it is REASONABLY necessary to do so to satisfy the applicable law, regulation, legal process or LAWFUL GOVERNMENT REQUEST OF ANY COUNTRY, or to protect the rights, property or safety of Mozilla, its users or the public. We will provide notice of legal process or governmental requests unless prohibited to do so by law or the circumstances warrant otherwise."[emphases added, words a direct quote.] Good Faith in legality of actionswas Nixon's initial excuse too - for setting up the Plumbers unit.
    I would prefer a statement like:
    'Mozilla Foundation and its subdivisions are committed to neither selling, trading, supplying, borrowing or using any data that can possibly be linked to a given user or volunteer.
    We will fight tooth and claw on behalf of our users and participants - to resist ANY attempt by any agency, public or private, for ANY reason, including promises of money or advertising, to divulge ANY information about them to anyone, PARTICULARLY when the request comes from a government with a less-than-stellar civil/judicial rights record, according to agencies like Human Rights Watch, the European Union's human rights division, the Permanent Court of International Justice division dealing with mass murderers and the like.
    We will fight as strongly against US, State or local government agency requests for information. We will place the people we work so hard to serve above ourselves, and be dragged kicking and screaming all the way to the courthouse door, with as many live net feeds and calls to the traditional public media as possible. And we will barricade any door if we fear a midnight knock.
    We will provide governments outside the countries where we do business (list here) with nothing unless ordered to by US courts, at least after fighting as many rounds of appeals as we are allowed, and will publicly and politically battle any agency which attempts to get user/participant data from us. All Foundation AND subsidiary employees earning more than $150,000 a year have pledged a minimum of 10% of their salary to these battles, if needed.
    We further put agencies, public and private, on notice that we maintain as little data as possible on our free and paying customers, and do not maintain a single record we are not required to keep, even if it makes our business a bit more difficult to perform.
    And if we get word someone might be coming, they're liable to find all computers free of data, which, if legally possible - before a subpoena or warrant arrives, just on rumor it is coming, we will destroy everything - to the point of installing and activating scuttling devices on all disks and backups, no matter where stored. We take this protection very seriously, and would rather face a business and directory rebuild than give any information that could locate a product user.'
    I'd rather like to see a statement like this as part of the Privacy Policy of every IT-related corporation in the world - though I doubt even Mozilla has the nerve or commitment to its manifesto. We wont ever see anything like it - when asked by the local Homeland Security-style division, for info on a dozen or, for that matter, all users, it is CYA time around the world.
    Smith 1 is in 1984, Smith 2 is a great San Francisco xerography artist. Smiths 3,4,5,6,7 have been spotted on the net. Use the name, it is a good name to let Big Google know how you feel.

  • How to delete personal information in my profile?

    In frequently asked questions, it says I can delete personal information in my profile. But it's not doing it. I.e., I edit/delete the information, and hit save, but the information is not deleted. Please help me with this, thanks!

    Hi, Matt_Army45,
    If you had said so in the first place, I would have replied with a very different response! 
    Please make your request to Skype Customer Service directly.  The Skype website indeed limits what information can be removed.  Here is a link to the instruction on how to contact Skype Customer Service via their secure portal: Contact Customer Service    Skip past Step 2 of the instruction where various information will appear for your review and proceed to Step 3, Continue Support Request.
    I would also highly recommend you change the password for your e-mail account if you have not already done so.
    Best regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • The App Store asks to "verify" my personal information, For my name, state, credit card, etc. I don't even live in the US and I don't have a CC, nor do I want to give away my personal information. I just want to download free apps. Any work-arounds?

    Title says it all.
    I'm really getting sick of websites getting more and more into your business. Google forcing you to get a G+ account and asking for your identifying information, for example (like your phone number).
    It's extremely irritating, and I'm opting out of everything that enforces the such. If Apple begins pushing like this, I will just close my relationship with the company and obtain apps by using third-party software to force them onto the phone.
    But before going that far, I'd like to find work arounds.
    First of all, I don't even know why it asks me for my "state". I don't even live in the USA anymore, as I moved to China (though I won't use the Chinese store as I don't speak or understand the local language, which is Chinese).
    All I want... is to continue using the English App Store to get free apps from here in my home in China, without getting stopped by Apple asking for more info on me. I don't want to share my name, I don't want to share my address, and I can't even complete the form as I no longer have a "state" and don't have any credit info.
    So that's just that. If there's no way around it I'll find another way to install apps without the App Store.
    Sorry for the message tone, I'm just really irritated with the way the internet is getting.
    Thanks in advance!
    - Alex

    The living issue is complex in my case. Legally speaking, I have no personal residence globally. I just live wherever my father goes, which is everywhere. I'm an expat and it seems that these sites aren't really expat-friendly. They seem to be built for localization and assume everyone stays in the same place.
    I don't know what I'd be considered. I'm a US passport holder and live in China, but I only speak some Chinese and I can't read it (it using non-latin characters is just too much for my mind's memory to handle). Besides that, I'm not interested in popular Chinese apps. They tend to just be annoying and kooky and generic and put together badly, often full adware and spyware (speaking for most Chinese software, in fact). In fact, a lot of apps I want are illegal in China (YouTube, Facebook, etc) and I use a VPN to use the services. I assume I wouldn't find these apps on the Chinese store. In fact, last I checked, there wasn't many English apps on the Chinese app store. This is probably due to their strict moderation or something.
    I've been going to international schools since I got here and college would be in English too. I can speak some Chinese, but not read it.
    Well, I guess the answer is that I can't use the App Store in English. So I guess I'll just sign out everything on my phone involving my Apple account and just start using third-party tools to do my business.

  • How to edit "license information for multiple logon" screen

    hey gurus
    i need to know how to edit or modify the 'license information for multiple logon" screen. this screen usually pops up when a user tries for a multiple logon to sap. We have activated the parameter 'login/disable_multi_gui_login' but we would like to modify the screen in such a way that only one radio button which says 'terminate this logon' should exist. we would prefer to remove the option of 'continue with this option and end any other logon'. Now i searched but i could not find anything to implement this so i am here and i need your advice and suggestions.
    thanks in advance.
    cheers.
    nate

    hey bernhard
    many thanks for your reply..i appreciate your help. its just that its not explicitly mentioned we cant modify the screen in the note.
    Is there any other note that specifically say so?
    thanks for your time buddy.
    regards

  • How to implement node affinity for java type concurrent programs.

    How to run a concurrent program against a specific RAC instance with PCP/RAC setup? (Doc ID 1129203.1)
    This works for non java registered concurrent programs but not java registered with use the DBC file
    EBS RAC environment with two RAC nodes. We would like to implement node affinity to allow concurrent programs to be directed to a single RAC instance. Oracle have provided the NODE AFFINITY ability via the concurrent program definition in Session Control. This then uses the entry in the 10.1.2 tnsnames.ora to pass the request directly through to the instance as defined by Node Affinity.
    However, concurrent programs defined as type java do not access the database by the 10.1.2 tnsnames.ora but use the dbc file under $FND_SECURE. This file is configured for both self service and concurrent processing so any change to the dbc file entry will affect both self service and concurrent processing.
    How to we implement a node affinity solution for concurrent programs without affecting Self Service conncetions? We'd like the dbc file to directly connect java concurrernt programs through to one instance but the self service connections to use the SERVICE name only.
    Regards.
    philippe.

    Did you think about Online/Batch node concept ? By that way you can seggrecate application connection.

Maybe you are looking for

  • Laptop Replacemen​t Battery

    Hello, I have an HP Pavilion g6-2111us Notebook. My battery is dying quite fast so I am looking for another one. My question is this: Do I have to have a battery that says it is for my exact model of laptop? Or is it ok for me to get just another 6 c

  • HT201210 My ipod is showing 4.2.1 as the latest version. No update available.

    How do I push through an update to 5 or 6? Thanks in advance!

  • Multiple alias paths for icons

    Is it possible to define multiple alias paths for icons? In the httpd.conf I have an alias for example: Alias /d6i_icons/ "/devapps/test/aces/graphics" In the Registry.dat I have set the iconpath and iconextension as follows: default.icons.iconpath=/

  • MDX Parser doesn't work

    Hello, everybody. Standart TCP/IP connection named "MDX Parser" doesn't work. It says "timeout during allocate / CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456 Timeout dur". When I try to run mdxsvr in command line it says that librfc32.dll could not be

  • Audition CS5.5 Won't Play Sound Files

    Just recently I have not been able to play any files that I have loaded.  In the bottom left hand corner, it notes that the file(s) is either playing or stopped when I press play on the transport, but the cursor won't move and sound will not come out