Directory of Eclipse add-ins and what they do?

The list of available modules that can be added to Eclipse is far, far beyond overwhelming.
Where can a relative newbie begin to learn what all these things are for?
And is there any sort of guide with information like "If you're doing this, then you should install these modules"?

No. You can always go to https://www.eclipse.org/projects/ and click on the List of Projects button, or perhaps you should pick a this and ask about it directly?

Similar Messages

  • What is business add-ins and business transaction events

    Dear All,
    Would you mind tell me what it sht business add-ins and business transaction events ?
    i still not understand about this after i read the training material
    Regards
    Luke

    Hi LukeWong ,
    BAdi:
    SAP Business Add-Ins (BAdIs) are one of the most important technologies used to adapt SAP software to specific requirements. BAdIs were introduced with Release 4.6 and replace function module exits. This technology is not limited to SAP applications. BAdI calls can be integrated in customer applications. These can then be enhanced by other customer applications. In the various SAP applications, BAdI calls are implemented at places where enhancements are appropriate.Business add-ins are enhancements to the standard version of the system. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software.
    As with customer exits, two different views are available:
    · In the definition view, an application programmer defines exit points in a source that allow specific industry sectors, partners, and customers to attach additional coding to standard SAP source code, without having to modify the original object.
    · In the implementation view, the users of Business Add-Ins can customize the logic they need or use a standard solution, if one is available.
    In contrast to customer exits, Business Add-Ins no longer assume a two-level infrastructure (SAP and customer solutions), but instead allow for a multi-level system landscape (SAP, country-specific versions, industry solutions, partner, customer, and so on). You can create definitions and implementations of Business Add-Ins at any level of the system landscape.SAP guarantees the upward compatibility of all Business Add-In interfaces. Release upgrades do not affect enhancement calls from within the standard software nor do they affect the validity of call interfaces. You do not have to register Business Add-Ins in SSCR.
    The Business Add-In enhancement technique differentiates between enhancements that can only be implemented once and enhancements that can be used actively by any number of customers at the same time. In addition, Business Add-Ins can be defined according to filter values. This allows you to differentiate between Add-In implementations using the filter Country or other criteria.
    The enhancement technique is set up in such a way that it is possible to define interfaces for ABAP soure code, screens, GUI interfaces, and tables. These allow customers to include their own enhancements in the standard. A single Business Add-In contains all of the interfaces necessary to implement a specific task.
    BADI is just an object-oriented version of user-exit. Instead of entering program code into some function module (as in customer-exit), you define some class which has to implement predefined methods and those methods are fired at predefined points just like an old user-exit. Some BADI can have multiple independent implementations which is much better for software deployment as several developers can implement the same BADI independently. BADI/UserExists are used to enhance R/3 For customer Needs.
    Actually there is no transaction to find when and where the BADI
    is called.
    1. You can see the BADI description to find why it is called.
    2. Once you implemented and activated the BADI, put some break points
    in the BADI and see "where else used" option to check in what all
    programs this BADI is called. In the ITS debug, when you are doing
    the operation what exactly the BADI description tells, it will take
    to the break points and you have to do manually debug the whole thing.
    I know its bit difficult to do manual debug the whole thing, it
    takes lot of time, but you have to be very patience when you are
    dealing with BADI's.
    Transaction SE18 is the BADI equivalent of transaction SMOD
    Transaction SE19 is the BADI equivalent of transaction CMOD .
    To find the BADI to be implemented and then implement this via SE19.
    These steps should enable you to find any BADI related to any transaction in a matter of minutes.
    Procedure 1:
    1) Go to the transaction SE37 to find your function module.
    2) Locate the function SXV_GET_CLIF_BY_NAME.
    3) Put a breakpoint there.
    4) Now open a new session.
    5) Go to your transaction. 6) At that time, it will stop this function.
    7) Double click on the function field EXIT_NAME.
    8) That will give you name of the BADI that is provided in your transaction.
    Business Add-Ins
    Procedure 2:
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    4) Now Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction
    Check this blogs 2 find a BADI:
    How To Define a New BAdI Within the Enhancement Framework (Some Basics About the BAdI,BAdI Commands in ABAP,
    When to Use a BAdI?)
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    How to implement a BAdI And How to Use a Filter
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    Introducing Business Add-Ins
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f3202186-0601-0010-6591-b832b1a0d0de
    How to implement BAdi in Enhancement Framework
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0456c54-0901-0010-f0b3-cd765fb99702
    Business Add-Ins
    http://help.sap.com/saphelp_47x200/helpdata/en/ee/a1d548892b11d295d60000e82de14a/frameset.htm
    BAdI: Customer-Defined Functions in the Formula Builder
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    Difference Between BADI and User Exits
    http://www.sap-img.com/abap/difference-between-badi-and-user-exits.htm
    To Use BADI - Business Add In you need to Understand ABAP OO Interface Concept
    http://www.sap-img.com/abap/business-add-in-you-need-to-understand-abap-oo-interface-concept.htm
    Business Transaction Events
    Business Transaction Events (Open FI) The Open FI enhancement technique was developed in the Financial Accounting component. Open FI is based upon the following principles: Application developers must define their interface in a function module, an assignment table is read in the accompanying (generated) code, and the customer modules assigned are called dynamically. This technique differentiates between enhancements that are only allowed to have one implementation and enhancements that can call multiple implementations in any sequence desired. Both industry-specific and country-specific enhancements may be defined.
    SAP business transaction events are one type of customer enhancements provided by SAP! We can access the business transaction events using FIBF.Next we have to find the process interface for duplicate invoice check!
    check this blog for details on SAP business transaction events
    Business Transaction Events
    http://fuller.mit.edu/user_exits/business_transaction_event.htm
    FI Enhancement Technique – How-To-Guide on the Usage of Business Transaction Events (BTE)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/207835fb-0a01-0010-34b4-fef1240ba9b7
    Creation of Events via Business Transaction Events
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/7f3e8be57c11d1951f0000e82dec10/content.htm
    In SAP R/3 you must activate the business transaction events (BTEs) for Availability Check Using SAP R/3. To set this indicator in SAP R/3:........
    http://help.sap.com/saphelp_crm40/helpdata/en/b6/de3efc6bbcdc4b948d466857a10323/content.htm
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • Installing FIM 2010 Add-ins and Extensions via GPO

    Hi,
    I have been trying to install the FIM Client using Group Policy software installation using the following link : http://social.technet.microsoft.com/wiki/contents/articles/2236.how-to-prepareexecute-installation-of-fim-2010-add-ins-and-extensions-via-gpo.aspx
    The crucial section missing on this page is what property to add/modify using Orca so that the install can proceed silently using an MST file which provides the registration_portal_url, RMS_location and addlocal properties for the FIM client install.
    If I install the client manually using the following command, msiexec /i "Add-ins and extensions.msi" transforms=client.mst /q, the client install proceeds silently which is what I expect.
    The UILevel=2 property is supposed to tell Windows installer to proceed silently as per http://msdn.microsoft.com/en-us/library/aa372096%28v=vs.85%29.aspx, however when I set this property in Orca for the transform file and then I execute the msiexec command,
    the UI still comes up and prompts me for selecting the different options for installing the client.
    Has anybody successfully deployed FIM client through group policy?
    Thanks!

    I still cannot get the FIM client to install through GPO. To confirm that a silent install of the FIM client works (because that is exactly what the GPO software install is doing), I ran the following command on my Windows XP computer
    msiexec /i "Add-ins and extensions.msi" /q
    Immediately, after running this command, I got an error in the application log
    "Product: Forefront Identity Manager Add-ins and Extensions -- You must specify FIM Service server address."
    So it looks like there is no way to install the client through GPO without specifying the FIM service server, and that cannot be done without an MST file.....
    So I will have to play around with the MST file and see if I can get it installed

  • Why is Apple so bad at providing customers with information on what the problem with email is and what they are doing to fix it?

    Why is apple not providing information on what the problem withe email is and what they are doing to fix, along with a time frame for fixing the problem.

    It was because the problem was major.  If you do not know tech, you should know that a two day outage usually indicates some type of virus, hack, or a bad software load that they had to unravel.  The common way to solve that is to rebuild servers and put back into service.  That takes time.
    Apple did not want to admit this problem.  My guess at this stange was that they loaded new software that might be associated with the new IOS and it crashed.  To reveal this would be to cast into doubt their future revenue.
    Either way.  Run do not walk away from Icloud products and services.  Apple has demonstrated they can not be a business partner.

  • Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Just installed mountain Lion. Viewing a pdf sent to me using preview and some colors are appearing BLACK, however when I view the same PDF in Acrobat they are perfect and what they are suppose to be. WHY would PREVIEW showing a different color?

    Here's what I've found on the issue:
    Pantone color definitions have changed (coinciding with CS6) — they are now "Pantone+" (I think that's what they're called). The "+" apparently means they're now LAB colors. Lab colors are not properly displayed in Preview (or in Finder previews) — they display as black (as far as I can tell, in all circumstances). I'm sure it's a tad more complicated than that, but that's the gist.
    Now the bad news — nobody seems to know anything about a fix or workaround (unless you convert your PDFs to process — this might be a fix for sending to clients). It causes issues for me in AI files — being able to view them in the finder (with previews) is a HUGE time saver for my workflow... when they're all black, not so much.
    In my chat with a director of product dev at Adobe, they placed the responsibility to fix on Apple (assuming Apple wants to support Pantone color definitions in their OS).

  • I want open a hotspot I have three iMac and 2 iPad 2 but I want control all the devices in my iPad like time and what they are watching?

    I want open a small hotspot I have three iMac and two iPad 2 but I would like to control everything from one iPad like time and what they are watching o copies too. What can I do? Please help me guys

    Home Sharing is designed to work on your local network not across the internet/cloud.
    Stuff is accessed under the Computers column where your local iTunes library on a local computer would appear.
    Home Sharing would share your iTunes content (i.e. stuff stored in itunes on the computer, not in the cloud) with AppleTV or an iPad etc on the SAME network.
    AppleTV2 will not be able to see itunes content on the work computer over the internet.  It's not designed to.  if the work computer was on the home network it would.
    iCloud is in it's infancy and is not a mature product - iTunes TV Show purchases appear on AppleTV, but currently music does not unless you are subscribed to iTunes Match. I find this rather odd to be honest, along with the inability to buy music on AppleTV2.  Movies purchased in iTunes are not authorised for iCloud viewing currently either.
    Maybe it has something to do with iTunes Match 'getting in the way' - i think they assume you'll use that whereas you really want to be able to access Purchased music from the cloud without subscribing to itunes Match which is overkill for some.
    AC

  • Has anyone received an update on apple tv issue with HD movies and what they are doing about it

    Has anyone received an update on apple tv issue with HD movies and what they are doing about it

    Whatever the rep told you, it is complete nonsense. There is clearly a problem at your end, the Apple TV 3 is capable of more than the Apple TV 2, and you clearly have the Apple TV 2 working perfectly. Since the Apple TV 2 is able to download from the Internet properly, then my suspicion would be your problem lies on your local network. Interference is a common problem on local networks.
    Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • Where is list of keys and what they do?

    Where can I find a list of keys and what they do. I'm a command line kind of guy.
    Using Mac mini / Panther
    larryalk

    364/2810
    Hi larryalk,
    welcome to Discussions!
    In addition to Kurt's excellent link,
    Here are the ones you can print "just in case":
    - Shortcuts for freezes
    This one has all useful links:
    - Mac OS X keyboard shortcuts
    This one is very handy:
    - Mac OS: Apple Pro Keyboard Shortcuts for Shut Down and Restart
    Also:
    Many keyboard shortcuts are not documented. Just try holding the Option key in combination with the usual ones, see what it does. Same with the Control key and the Shift key.
    In popping dialog boxes:
    Usually command+dot = Cancel, and
    hitting the initial letter often equals a mouse-click.
    In the menubar and the menus:
    Also simply hitting a letter.
    Or two letters if needed, like HI = History when H(E) = Help.
    ⇧ Shift
    ⌥ Option
    ⌘ Command
    ⌃ Control
    Have fun!
    Axl
    Happy New Year Kurt!

  • What I want from BT, and what they've done wrong (...

    I've recently come back to BT from different phone and broadband providers because I wanted BT Infinity. My experience so far has been pretty bad. I'll explain later, but firstly here's what I want from BT.
    Most importantly I want a 24 hour helpdesk, based in the UK staffed by technically trained people who can actually do something about my problem or at least give the correct details if it is a general outage.
    I want control over my internet connection. I want to be able to see the line stats and status of my modem (you can't with BT Infinity) and I want to be able alter my speed profile and the parameters of my line to suit my own tolerance for speed vs. reliability.
    Ideally I want to ring up and talk to a real person in the UK about anything unless it's really trivial and easily automated (balance inquiry, paying a bill etc.).
    When I have reported a fault or am having problems with the ordering process I want to be able to get through to the team dealing with my problem easily rather than via the torturous calling menu and a different department each time.
    I want communications from BT to make sense and be consistent. This includes emails, the call menu and any recorded messages.
    I want the recorded status message updated more frequently.
    Here are my experiences since ordering my BT service in November:
    I tried to order Infinity (and phone line transfer)) four times. I had to do this over the phone as the website wouldn't work. Each time I was told I could have infinity and each time I got a very impersonal email telling me I couldn't. I think because I had Broadband and phone from different suppliers and the system couldn't handle taking over the line and ordering Infinity at the same time. Eventually I successfully ordered it but only because BT insisted I have a new line put in (presumably to get around the problem in their ordering process.
    I got Infinity installed OK and all was working fine but now no longer had my phone number. Then I had a farce where my previous provider, TalkTalk, kept failing to cancel my old line so I couldn't get the number back. I was never sure why BT couldn't just take the line back as I thought there was a process for this.
    During this process I spoke with BT India a couple of times to explain they could go ahead (thinking that TalkTalk had released the line). They were very polite and everything seemed to be proceeding until I got an email telling me I was indeed getting a new number, but not my old one just some random one and I was going to be charged £25 for the pleasure.
    Cutting a long story short I got my old number back on January 2nd having been without it since November 15th. Thanks to Margret @ BT who was genuinely helpful.
    My BT infinity speed is a vast improvement over my own line, however at 23Mb it's nowhere near the max (I'm quite close to the box) and it drops much lower during peak hours (it varies but it's been mostly around 6-14Mb).
    Just recently the service has failed twice. The first time I called the "help" desk and was put through to an Indian call centrel. It was about 1am on a weekday (I'm a night owl) and the chap told me that the Infinity helpdesk was closed (WTF, are we only allowed to have faults during the day?). He then went away and told me that there was a problem in my area. I checked online via my phone and none was mentioned, some time later a problem did appear online in the Londond area but still nothing about my area (Chelmsford, Essex). I still have no idea what the problem was.
    Then it went down again last night (Sunday) again late in the evening (12.30am), this time I got put throught to a recorded message that told me the helpdesk was closed, not even an Indian call centre to talk to and then it promptly hung up on me.
    The first time it went down my wife was without broadband (which I'm paying for) all day. I got home and reset the router and it came to life. I'm not sure if the broadband was down or the router just needed resetting. This was particularly annoying as there seems to be no way of knowing when it is back without resetting the router every 10 minutes until it works. Especially outside of hours as there is NO HELP AVAILABLE.
    Yesterday I called the status line and was given the hilarious message, which was roughly "There are currently no problems with the BT network. There are problems with the BT network in the Birmingham area. If you want further information please go to www.bt.com/...". Firstly is there or isn't there a problem, and how the **bleep** can I go to "www.bt.com/..." when my internet is down.
    Basically if it's outside BT's convenience then I can't get any problem addressed. Totally useless, totally unacceptable, the Internet does not shut in the evening BT!!!
    Another amusing one was trying to get caller ID back on my line. Again the website didn't work so I ended up calling. I eventually got throught to a message that said "Press 1 to order a free service, Press 2 to order a premium service, Press 3 to order a special service" (or something like that). How the **bleep** do I know which category caller ID fits into?
    The whole experience has been frustrating which is a shame because I  want BT to succeed, I want them to supply me with a great service and I'd be happy to pay (even more) for that. As the saying goes, you measure how good a company is by what they do when things go wrong...
    It's obvious that BT have some good staff, everyone has been polite and on the surface seemed helpful and when you finally do get to someone is a position to help things eventually get sorted (thanks Margret).
    Why is it that communication companies are the absolute worst at communicating?
    Anyone agree, have similar experiences?
    Rant Over!
    LJ

    The outage you refer to was a major network fault last night nothing to do with maintenance it affected a large part of the Midlands and south England also a planned outage took place as well
    these dialling codes were affected for the planned outage
    01277, 01296, 01438, 01442, 01491, 01494, 01582, 01707, 01708, 01727, 01737, 01753, 01767, 01895, 01923, 0203010, 0203073, 0203080, 0203113, 0203114, 0203118, 0203132, 0203205, 0203209, 0203210, 0203219, 0203226, 0203261, 0203264, 0203266, 0207034, 0207121, 0207168, 0207209, 0207221, 0207224, 0207229, 0207243, 0207255, 0207258, 0207266, 0207286, 0207289, 0207313, 0207323, 0207348, 0207355, 0207361, 0207368, 0207371, 0207376, 0207381, 0207384, 0207385, 0207386, 0207402, 0207408, 0207409, 0207436, 0207460, 0207467, 0207471, 0207491, 0207493, 0207495, 0207499, 0207535, 0207565, 0207580, 0207586, 0207598, 0207602, 0207603, 0207610, 0207616, 0207629, 0207631, 0207636, 0207637, 0207706, 0207722, 0207723, 0207724, 0207725, 0207727, 0207751, 0207792, 0207795, 0207813, 0207835, 0207907, 0207908, 0207912, 0207937, 0207938, 0207985, 0208177, 0208200, 0208201, 0208205, 0208207, 0208222, 0208230, 0208248, 0208292, 0208327, 0208342, 0208351, 0208354, 0208357, 0208358, 0208362, 0208363, 0208364, 0208366, 0208367, 0208381, 0208385, 0208400, 0208416, 0208420, 0208421, 0208422, 0208423, 0208424, 0208426, 0208427, 0208428, 0208429, 0208453, 0208482, 0208515, 0208537, 0208550, 0208551, 0208561, 0208563, 0208566, 0208567, 0208569, 0208571, 0208573, 0208574, 0208576, 0208579, 0208581, 0208589, 0208606, 0208621, 0208723, 0208732, 0208735, 0208740, 0208741, 0208742, 0208743, 0208744, 0208746, 0208748, 0208749, 0208752, 0208756, 0208762, 0208797, 0208810, 0208811, 0208813, 0208834, 0208838, 0208840, 0208843, 0208846, 0208848, 0208861, 0208863, 0208864, 0208866, 0208867, 0208868, 0208869, 0208893, 0208896, 0208905, 0208907, 0208909, 0208917, 0208924, 0208930, 0208931, 0208932, 0208933, 0208951, 0208952, 0208953, 0208954, 0208959, 0208961, 0208963, 0208965, 0208966, 0208991, 0208992, 0208993, 0208997, 0208998, 20326, 20734, 20737, 20760, 20761, 20775,
    and these by the network outage
    01132, 01142, 01158, 01159, 01162, 01163, 01179, 01189, 01204, 01205, 01206, 01208, 01209, 012120, 012121, 012123, 012124, 012125, 012131, 012132, 012133, 012134, 012135, 012136, 012137, 012141, 012142, 012143, 012144, 012145, 012146, 012147, 012148, 012150, 012151, 012152, 012153, 012155, 012156, 012158, 012160, 012161, 012162, 012163, 012164, 012166, 012168, 012169, 012170, 012171, 012173, 012174, 012178, 01223, 01224, 01225, 01226, 01229, 01236, 01237, 01239, 01242, 01244, 01246, 01249, 01252, 01253, 01254, 01255, 01257, 01260, 01267, 01269, 01270, 01274, 01275, 01276, 01278, 01279, 01280, 01283, 01285, 01286, 01291, 01292, 01294, 01295, 01296, 01297, 01299, 01302, 01304, 01320, 01323, 01326, 01327, 01329, 01332, 01344, 01349, 01352, 01353, 01364, 01366, 01367, 01373, 01376, 01384, 01386, 01389, 01392, 01394, 01395, 01405, 01406, 01407, 014144, 014155, 014163, 014164, 014176, 014177, 014181, 014188, 01422, 01423, 01427, 01432, 01434, 01436, 01437, 01442, 01443, 01446, 01451, 01452, 01453, 01454, 01455, 01458, 01460, 01472, 01475, 01476, 01480, 01484, 01488, 01492, 01494, 01495, 01497, 01505, 01507, 01509, 015125, 015132, 015134, 015135, 015142, 015143, 015149, 015164, 015165, 01522, 01526, 01527, 01530, 01531, 01535, 01536, 01538, 01543, 01544, 01545, 01546, 01547, 01554, 01555, 01558, 01559, 01562, 01564, 01565, 01568, 01570, 01572, 01582, 01588, 01594, 01597, 01600, 01603, 01604, 01606, 01608, 016132, 016133, 016149, 016162, 016164, 016165, 016173, 016176, 016179, 016181, 016183, 016194, 016197, 01623, 01625, 01626, 01629, 01630, 01631, 01633, 01635, 01636, 01639, 01646, 01647, 01652, 01654, 01656, 01666, 01670, 01672, 01673, 01675, 01676, 01684, 01685, 01686, 01691, 01692, 01694, 01695, 01698, 01704, 01706, 01709, 01724, 01733, 01736, 01743, 01744, 01745, 01746, 01749, 01752, 01753, 01754, 01756, 01758, 01761, 01763, 01765, 01772, 01773, 01777, 01780, 01782, 01785, 01788, 01789, 01792, 01793, 01795, 01805, 01823, 01824, 01827, 01829, 01840, 01842, 01854, 01858, 01865, 01872, 01873, 01874, 01883, 01884, 01886, 01888, 01889, 01895, 01900, 01902, 01905, 01908, 01909, 019126, 019138, 01920, 01922, 01924, 01925, 01926, 01928, 01933, 01934, 01938, 01939, 01942, 01945, 01947, 01948, 01949, 01952, 01954, 01963, 01969, 01970, 01971, 01974, 01978, 01982, 01984, 01989, 01993, 01994, 0207275, 0207380, 0207383, 0207387, 0207791, 0208427, 0208554, 0208591, 0208692, 0208759, 0208861, 0208863, 0239225, 0239234, 0239236, 0239242, 0239243, 0239245, 0239247, 0239248, 0239249, 0239261, 0239264, 0239271, 0239275, 0247622, 0247623, 0247625, 0247626, 0247627, 0247632, 0247633, 0247634, 0247635, 0247636, 0247637, 0247638, 0247639, 0247641, 0247643, 0247644, 0247645, 0247649, 0247652, 0247655, 0247659, 0247660, 0247661, 0247662, 0247663, 0247664, 0247665, 0247667, 0247669, 0247671, 0247672, 0247673, 0247674, 0247676, 0247683, 0247684, 0284372, 0288774, 0289181, 0289182, 0289447, 0292016, 0292019, 0292020, 0292021, 0292022, 0292023, 0292025, 0292030, 0292031, 0292033, 0292034, 0292037, 0292038, 0292039, 0292040, 0292041, 0292045, 0292046, 0292047, 0292048, 0292049, 0292051, 0292052, 0292054, 0292059, 0292061, 0292062, 0292063, 0292064, 0292065, 0292066, 0292068, 0292069, 0292070, 0292071, 0292072, 0292073, 0292074, 0292075, 0292076, 0292077, 0292079, 0292080, 0292083, 0292084, 0292085, 0292086, 0292088,
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • How to set restrictions and what they mean

    How to set restrictions one the different oracle users and what can they do within the set restrictions, their limitations.

    What cardinality means

  • Patch clusters and what they break.....

    Hi,
    Just wondering if anyone knows if Sun keeps a list of what their clusters break anywhere. I have not had 1 patch cluster yet that didn't re-write a conf or break some sort of dependancy / app.
    It would be really handy to know before hand what to backup instead of everything. (local support for the latest cluster advised "3 things break but we don't know what they are" !)
    Cheers,
    Harv

    My only problem with Patch 3a are crashes
    but comparing with Patch 1, they were
    substantially reduced. After 5 weeks I have
    not seen any GUI or PL/SQL problem. I think
    Oracle should stop adding functionalities
    and concentrate on stability. To be honest
    it is the best tool for database applications
    far more productive than any other tool I
    have seen, including Java, not to mention
    runtime performance and functionalities. But
    this stability problem exists for many years
    and I wonder why Oracle doesn't solve it
    once for all...
    null

  • How many TOP are in APPS and what they mean........

    Dear All
    One very basic question, how many TOPs are there in APPS, middle tier and db tier, and what does they mean, like we have APPL_TOP, COMMON_TOP, etc.......
    regards

    how many TOPs are there in APPSNo specific answer since it differs from release to release. Oracle Apps 11i installation comes with many TOPs defined (e.g. APPL_TOP, COMMON_TOP, FND_TOP, AU_TOP, ..etc).
    and what does they mean, like we have APPL_TOP, COMMON_TOP, etcSimply, they are environment variables.
    Let us say ..
    You have installed the APPL_TOP under /u01/oracle (e.g. /u01/oracle/prodappl)
    and,
    I have installed it under /u02/oracle (e.g. /u02/oracle/prodappl).
    When we both issue "echo $APPL_TOP":
    You would get:
    $ echo $APPL_TOP -- On Windows, type %APPL_TOP%
    /u01/oracle/prodapplAnd, I would get:
    $ echo $APPL_TOP -- On Windows, type %APPL_TOP%
    /u02/oracle/prodappl

  • ITunes Credits and what they are

    I recently had a huge problem with downloading movie and music videos. I sent an email to customer support and they credited my account. The problem is that they credited my account with "videos" and I am not sure what exactly I can buy with those credits. I have looked everywhere and can't seem to figure it out. Are these credits for both movies and music or only one or the other or what? Seeing as how I had issues with both movies and music are these credits good for both? Someone please help me. They only told me in the email that the credits for the videos would be there, and that they would be used first as I purchased videos until the credits were gone then my card would be billed. I don't want to purchase something thinking I'm using my credits and find out that my card has been charged again. Thank you

    Did you ever find out the answer to this question? I am wondering the same thing... Thanks!

  • Descritpti​on of property nodes and what they mean

    Does anybody know where I can get a good description of property nodes and what the specific properties mean?  The help files are a start, but in many areas they are kind of lame..

    My company is sending a representative to NI Week to meet with some head honchos from NI on possible improvements and suggestions.  I have added what you are asking for to the list of what will be discussed.  In addition to property nodes, I am asking for documentation of all methods.  I've seen a large TestStand poster that lists API calls, properties and methods, and such.  I think the same ought to be done with Labview.  Of course that poster would be humongous.  Any kind of document would suffice.  I am anxiously awaiting the outcome of this meeting.
    Many other items are on the list, including some issues that were brought up in this forum.  I have asked for a way to "comment out" sections of code without having to use a case structure set to false with all the wiring changes.  Another item I asked for was a wizard to automatically generate the basic code for some architectures, like producer-consumer, state machine (simpler that using the state machine toolkit), and such.  Many others here have joined in to make suggestions, too numerous to list them all here.
    - tbob
    Inventor of the WORM Global

  • Can I get a list of all binary files and what they do?

    I'm a newbie to Oracle. Needless to say I'm blindly muddling my way through the experiance of installations/setup and managing my first database. I realize that there is a three tier system and for my system all three of the tiers are on the same pc! In short I need help with what executables do what. I've tried going through Linux howto's, online docs, and even bought a book on the subject but the book seems to stroke the benifits of using Oracle instead of actually telling me how to use Oracle. I'm using Oracle8i 8.1.7 EE (enterprise edition) on Linux RH 7.0. I would like a link to a list or the actuall list of all the binary files in $OracleHOME/bin/ and what each of them do. Also important log files I should consult regularly would be most helpfull. Thanks.

    While you're at it, see if you can get a complete description of all the X$ tables.

Maybe you are looking for

  • Error in Simple Input Form Example for CE 7.1?

    Hi @, I am trying to execute Simple Input form example in sdn for CE 7.1. But its not working as per the functionality. Can anyone suggest what is the issue ? Regards,

  • I have iphoto 2 and can't read my sister's disc generated in iphoto6.

    I'm trying to create a 'slideshow' in imovie using different peoples pictures for my parent's 60 anniversary party. My sister has a newer computer and iphoto 6 while I have iphoto2. My computer tells me that I can't read her disc in my library. Do i

  • Documents won't download

    I'm using a Learning Lab, so we have 15 iPads syncing to iCloud. Most documents download perfectly well, but a few fail to download in Pages, Word or PDF format. I have tried these things: Change the document on the original iPad, forcing a new save

  • External FW800 drives do not power up/down

    When I was running 10.4.10 on my PowerBook, my drives would power up/down whenever turning the PowerBook on/off. I just got a MacBook Pro 17" with Leopard and the drives work, but I have to manually power them on/off. Is this normal or is there some

  • NSS3000 Very slow network, Drops connection

    I am working with an NSS3000 that has some major network issues.  The device is on  a 100mb network.  Copying a 4mb zip file takes over a minute.  If you try to extract the zip file from the share to anywhere on the device it runs for about 5 minutes