Bind by position? I got totally confused

is it default that the parameters in the .net codes are binded to that in the pl/sql codes by position? i get totally confused.
very simple codes in the pl/sql are like this:
===========================
FUNCTION create_saint(saint_name IN VARCHAR2,saint_ct IN VARCHAR2)
RETURN VARCHAR2
===========================
and "oracom" is a OracleCommand calling the function, when i add the parameters like this:
===================================
oracom.Parameters.Add("saint_name",OracleDbType.Varchar2,"aaa");
oracom.Parameters.Add("saint_ct",OracleDbType.Varchar2,"bbb");
===================================
i woule like the parameter "saint_name" is "aaa" and "saint_ct" is "bbb" if they are binded by position. but error occurs and when i traced the execution of the pl/sql code, i found that the parameter "saint_name" was "bbb" and "saint_ct" was null.
shouldn't they be binded by position? and when i used the
"oracom.BindByName = true;"
the two parameters were just binded correctly.
so i just wonder when and how the parameters are binded by position.

Hello,
Yes, parameters are bound by position by default when using ODP.NET - this is controlled by the BindByName property which defaults to false. If you want to use bind by name, just set this property to true as you've shown.
Since you are using a FUNCTION I would guess that you did not bind the function return value first, which is required. ODP.NET will generate code similar to this:
begin
  :1 := function_name(:2, :3, :4);
end;Hope that helps,
Mark

Similar Messages

  • Polymorphism , Dynamic Binding, Widening and I'm totally confused

    class Fruit
         private String name;
         public String getName()
              return this.name;
    class Apple extends Fruit
         private String typeOfApple;
         public void setTypeOfApple(String type)
              this.typeOfApple=type;
         public String getTypeOfApple()
              return this.typeOfApple;
    class Banana extends Fruit
         private String typeOfBanana;
         public void setTypeOfBanana(String type)
              this.typeOfBanana=type;
         public String getTypeOfBanana()
              return this.typeOfBanana;
    public class ExceptionTesting
         public static void main(String args[])
              Fruit obj=new Apple();
              obj.setTypeOfApple();  // ??? Why can't I do this ???
    }how can I achieve something like underneath by modifying above code ???
    Fruit whateverFruit=new Apple();
    whateverFruit.setTypeOfApple();
    whateverFruit=new Banana();
    whateverFruit.setTypeOfBanana();
    whateverFruit=new Orange();
    whateverFruit.setTypeOfOrange();
    ...

    Harry_lynn_17 wrote:
    I do apologize if it's become sound like stupid or something . I know somehow it's not very suitable to think in that way but I was just thinking of the object reference variable as a pointer becauseA reference is like a "filtered" pointer to an object: it will only show that part of the object that corresponds with the type of the reference. So after "Fruit whatever = new Banana();", the "whatever" reference only shows the "Fruit" part of the "Banana" object. This means you can only call methods that are defined in Fruit, not those defined in Banana.
    Dynamic binding means the JVM will decide at runtime which method implementation to invoke based on the class of the object. So, I thought
    Fruit whateverFruit=new Banana(); and then if i tried to invoke whateverFruit.yellowBanana(); then the compiler will try to find the method out and executed automatically.That's not what it means. It means when you have "Fruit whatever = new Banana()" and you call "whatever.getName()", it will call the getName() method from Banana, if Banana overrides the implementation of Fruit. You can still only use methods that are defined in Fruit through a reference of type Fruit. In this case, it doesn't seem that the behaviour of setTypeOfApple() is different from setTypeOfBanana(), so ejp's recommendation to just create a setType() method in Fruit is correct.
    Polymorphism means a variable of a superclass type to hold a reference to an object whose class is the superclass or any of its subclasses. So, I thought Fruit whateverFruit is somehow capable to hold the reference of its subclasses and can be used to reference of its subclasses. That's basically correct. However, the variable will only expose the superclass part of the subclass object.
    I got confused with all those stuff and kinda lost. There's one more thing. What's the point of doing something like this Fruit apple=new Apple() if I can't reference to an instance of apple object ?? I mean I could just simply write like this Fruit aFruit=new Fruit(). Sorry, if i've become sound like a fool but i'm really confused. Please help me out of this and thanks in advance.The point of having any superclass/subclass combo is that your problem domain demands that you make the distinction: sometimes you need to be able to treat an object as Fruit, sometimes you need to be specific and treat it like an Apple. For example, if you sell fruit and need to calculate the total price of a fruit basket, all you need to know is that each piece of Fruit has a getPrice(), you don't need to know that one piece is an Apple and another piece is a Banana. However, if a customer demands a kilogram of apples, you need to make sure you give him only Apples and not Banana's.List<Fruit> fruitBasket = new ArrayList<Fruit>();
    fruitBasket.add(new Apple("Granny Smith"));
    fruitBasket.add(new Banana("Chiquita"));
    fruitBasket.add(new Apple("Golden Delicious"));
    int priceOfBasket = 0;
    for(Fruit pieceOfFruit:fruitBasket) {
      priceOfBasket += pieceOfFruit.getPrice();
    Set<Apple> appleScale = new HashSet<Apple>();
    appleScale.add(new Apple("Granny Smith"));
    appleScale.add(new Apple("Golden Delicious"));
    appleScale.add(new Banana("Chiquita")); // ERROR

  • Spry Accordion Menu Tab Link css - totally confused

    Thanks folks from an l-plater but I've totally confused myself trying to work this out and I'm hoping some fresh eyes will see the answer clear as day.  I've created a spry accordion menu with links in the actual panel tabs.  Menu and links all working fine - problem is in css styling, particularly panel tab link open and hover states which should be blue text over green background, same as non-link panel tabs.  You'll see from code that I've tried a few styles but can't get this to work.  I'm thinking I've totally overdone it and some styles are overriding others and solution is a simple deletion of some unnecessary or conflicting styles.
    Thanks so much in advance for your help - I just can't see for looking any more though I'm sure it can't be hard.
    <div id="sidebar1">
    <div id="Accordion1" class="Accordion">
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="Index.html" onclick="window.location = this.href">Home</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Photo Gallery</div>
        <div class="AccordionPanelContent">
        <ul>
        <li><a href="PhotoGallery.html">Gallery 1</a></li>
        </ul>
        </div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Unit Newsletters</div>
        <div class="AccordionPanelContent">
        <ul>
        <li><a href="Newsletter.html">February 2010</a></li>
        </ul>
        </div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="Sponsors.html" onclick="window.location = this.href">Sponsors</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="Merchandise.html" onclick="window.location = this.href">Merchandise</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="Links.html" onclick="window.location = this.href">Links</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="Events.html" onclick="window.location = this.href">Events</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Forms</div>
        <div class="AccordionPanelContent">
        <ul>
        <li><a href="">Joining Instructions</a></li>
        <li><a href="">Enrolment</a></li>
        <li><a href="">Next of Kin</a></li>
        <li><a href="">Volunteer Blue Card</a></li>
        </ul>
        </div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="Contact.html" onclick="window.location = this.href">Contact</a></div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab"><a href="LogIn.html" onclick="window.location = this.href">Log In</a></div>
        <div class="AccordionPanelContent">
        <ul>
        <li><a href="WhatsOn.html">Whats On</a></li>
        <li><a href="PSG.html">Parent Support Group</a></li>
        </ul>
        </div>
        </div>
      </div>
    </div>
    .AccordionPanel {
    margin: 0px;
    padding: 0px;
    .AccordionPanelTab {
    background-color: #036;
    border-bottom: 1px #93b747 solid;
    margin: 0px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 12px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    text-decoration: none;
    .AccordionPanelTabOpen {
    color: #036;
    background-color: #93b747;
    display: block;
    text-decoration: none;
    .AccordionPanelTabHover {
    color: #036;
    background-color: #93b747;
    text-decoration: none;
    border-bottom: 1px solid #036;
    display: block;
    .AccordionPanelTab a {
    color: #93b747;
    margin: 0px;
    font-size: 12px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    text-decoration: none;
    display: block;
    .AccordionPanelTab a.open {
    font-color: #036;
    color: #036;
    background-color: #93b747;
    text-decoration: none;
    display: block;
    .AccordionPanelTab a.active {
    color: #036;
    background-color: #93b747;
    display: block;
    text-decoration: none;
    .AccordionPanelTab a.hover {
    color: #036;
    background-color: #93b747;
    font-weight: bold;
    text-decoration: none;
    display: block;
    .AccordionPanelTab a.close {
    color: #93b747;
    background-color: #036;
    text-decoration: none;
    display: block;
    .AccordionPanelContent {
    margin: 0px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 12px;
    background: #fff;
    font-size: 12px;
    color: #036;
    font-weight: 500;
    .AccordionPanelContent ul li {
    margin-left: -40px;
    padding-top: 2px;
    padding-bottom: 2px;
    background: #fff;
    font-size: 12px;
    color: #036;
    font-weight: 500;
    text-decoration: none;
    list-style-type:none;
    list-style:none;
    .AccordionPanelContent ul li a:link {
    color: #036;
    text-decoration: none;
    list-style-type:none;
    list-style:none;
    .AccordionPanelContent ul li a:hover {
    color: #036;
    font-weight: bold;
    text-decoration: none;
    .AccordionPanelContent ul li a:visited {
    color: #036;
    text-decoration: none;
    .AccordionPanelOpen .AccordionPanelTab {
    color: #036;
    background: #93b747;
    border-bottom: 1px solid #036;
    .AccordionPanelOpen .AccordionPanelTab.a {
    color: #036;
    background: #93b747;
    border-bottom: 1px solid #036;
    .AccordionPanelOpen .AccordionPanelTabHover {
    color: #036;
    font-weight: bold;
    .AccordionPanelOpen.a .AccordionPanelTabHover.a {
    color: #036;
    font-weight: 600;
    .AccordionFocused .AccordionPanelTab {
    color: #036;
    font-weight: 600;
    a.AccordionFocused .AccordionPanelTab {
    color: #036;
    font-weight: 600;
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    color: #036;
    font-weight: 600;
    a.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    color: #036;
    font-weight: 600;

    Yes Beth, you're right and I've corrected my css - I think - problem with AccordionPanelTab link open and hover states still happening so css still wrong.  I've uploaded site so you can see what's happening (www.11acu.org).  All tab states should be as per Photo Gallery, Newsletters and Forms.  Hover state in tab links seem okay until mouse moves away from "a href" block - rest of tab area not working so its like the two styles, ie "AccordionPanelTab" and "AccordionPanelTab a:hover" are both working at the same time but I only want the latter to work.  Now I've probably got you confused as well! lol Apologies!  Recreated css for tab links below.  Html same as in original post.  Any help much appreciated.
    .AccordionPanelTab {
    color: #93b747;
    background-color: #036;
    border-bottom: solid 1px #93b747;
    margin: 0px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    .AccordionPanelTab a {
    color: #93b747;
    background-color: #036;
    margin: 0px;
    padding-left: -10px;
    padding-top: -2px;
    padding-bottom: -2px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    display: block;
    .AccordionPanelTab a:link {
    color: #93b747;
    background-color: #036;
    margin: 0px;
    padding-left: -10px;
    padding-top: -2px;
    padding-bottom: -2px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    display: block;
    .AccordionPanelTab a:hover {
    color: #036;
    background-color: #93b747;
    margin: 0px;
    padding-left: -10px;
    padding-top: -2px;
    padding-bottom: -2px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    display: block;
    .AccordionPanelTab a:active {
    color: #036;
    background-color: #93b747;
    margin: 0px;
    padding-left: -10px;
    padding-top: -2px;
    padding-bottom: -2px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    display: block;
    .AccordionPanelOpen .AccordionPanelTab {
    color: #036;
    background-color: #93b747;
    border-bottom: solid 1px #036;
    text-decoration: none;
    .AccordionPanelTabHover {
    color: #036;
    background-color: #93b747;
    text-decoration: none;
    border-bottom: solid 1px #036;
    .AccordionPanelOpen .AccordionPanelTabHover {
    color: #036;
    background-color: #93b747;
    text-decoration: none;
    font-weight: bold;
    .AccordionFocused .AccordionPanelTab {
    color: #93b747;
    background-color: #036;
    text-decoration: none;
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    color: #036;
    background-color: #93b747;
    border-bottom: solid 1px #036;
    text-decoration: none;

  • HT1848 Hi! I am new to i-phone and have a 3gs. I need to update software as itunes will not let me purchase without one. When I go to update it says that there are purchases that have not been downloaded into my library! Am totally confused! Help!!

    Hi!
    Am totally new to iphone and have a 3gs. Am trying to upodate software as in the itunes store it says that I need to to purchase. When I try to update a message says that there are purchases that hav not been down loaded to my library? As far as I know I haven't purchased anything from itunes as it would not let me until i upgraded! Totally confused would it be anything to do with purchases made on my computer through e-bay? Please help me someone as am terrified to upgrade until I know what this message means.
    Would really appreciate any help please.
    Many thanks
    p.s How do you know what operating system you are on?

    http://support.apple.com/kb/HT4972

  • Help !! ios 6,iphone,Two ipods & and ipad totally confused !!

    Please can someone help?
    I have an iphone 4 and an ipad, both my boys have an ipod and everything runs under my apple account.
    My first problem is that neither of the children can face time or message. Have set them both up with gmail accounts but neither ipod will accept the associated passwords despite being re set to ensure they are correct.
    They cant receive messages from me, which is what i wanted for them, do i need to give them each an apple id? and if so how do i regulate their app store purchases?
    and when they are given an app store voucher, whos id does it go on?
    My second problem is that since upgrading to ios6 one of the boys is getting all my text messages showing up on his ipod and the other still cant open his messages.
    I have messed around with the settings on both ipods but to no avial and I am now totally confused.
    All I want is for someone to explain how the boys can face time/message, how my messages stop from appearing on their ipods and as for my ipad well i give up!!
    please surely it cant be this difficult?

    You have to set them each up with their own Apple ID, then log out from your Apple ID on their devices and log in with theirs. Make sure that Facetime and Messages are set to receive calls/messages on their Apple IDs, not yours.

  • BUG: Binding Variables, Position being reset to 0

    IDE:
    Studio Edition Version 10.1.3.0.4 (SU4)
    Build JDEVADF_10.1.3_NT_060125.0900.3673
    DB:
    10g R2
    (We have to be able to run our queries against MS SQL and Oracle. Using Oracle Binding is not an option)
    SQL Flavor: SQL92
    Data Type: Java
    Scenario:
    Working with View Object Editor. Opening a View Object for edit.
    Symptom:
    1. While working with bind variables the selected variable and the Bind Positions field does not stay in sync. When moving from one variable to the next the Bind Positions field remains on the last entered value for all variables.
    2. Opening the editor resets all Bind Position fields to 0. This happens even if the Bind Variables node is not selected during the edit.
    Our work-around:
    We enter all bind varialbes, leaving all Bind Position at 0. Add all where clause (query builder does not support '?' by the way) manually in the same order (order not critical) and save view object. We then open the xml file outside of JDeveloper and add the correct Bind Positions.
    Now, with all that said we could have missed something small that would correct this issue, but using the editor does present issues with the Bind Positions. For the mean time we will continue to edit the XML files outside of JDeveloper.
    Thanks, Peter

    This error didn't really have to do with the SQL Statement, rather using the editor to create bind variables. We have to use SQL92 with Java data typing. When using the editor the bind variables positioning does not stay in sync with listbox above resetting or setting the positions to 0.

  • Recently changed my password for mail, can still read my mail, but the drop down keeps appearing, asking for my password and saying it's incorrect. Totally confused. 

    I Recently changed the password for mail, on iMac. I can still read my mail, but the drop down keeps appearing, asking for my password, then telling me it's incorrect. Totally confused. 

    If your password is accepted, and Mail connects to the account, but you're prompted for the password repeatedly, take each of the following steps that you haven't already tried. Note: these steps don't apply if the server rejects the password. That's a different problem.
    Step 1
    When prompted for the password, check the box marked Remember this password in my keychain.
    Step 2
    Check that the keychain is working.
    Step 3
    Check that the default keychain is unlocked.

  • My screen got totally white after updating to Yosemite

    Uploaded the Yosemite to my IMac.
    When installing the new update (running OS10.6.8 before) the computer restarted during installation.of program.
    After that the screen is just totally white. What happened and what shall I do?

    Thank you.
    I’m writing from a PC at the moment.
    Thanks for the answer. I can’t save anything now, the computer is ‘dead’ it is a shame on all I have on the computer.
    And all this problems because of my banc who wanted my to update in order to put in a special identification program.
    Who shall I blame?
    I have to  rebote my computer.
    I am crying… ☹
    Harriet
    Från: Apple Support Communities Updates [email protected]
    Skickat: den 17 februari 2015 22:44
    Till: Aqua Produkter
    Ämne: - My screen got totally white after updating to Yosemite
    http://www.apple.com/support/assets/images/external/emails/logo.gif
    You received a reply
    Kappy<https://discussions.apple.com/people/Kappy?ac_cid=op123456> has replied to your question. You can view the full discussion<https://discussions.apple.com/message/27684871?ac_cid=op123456#27684871> in Apple Support Communities.
    My screen got totally white after updating to Yosemite<https://discussions.apple.com/message/27684871?ac_cid=op123456#27684871>
    Can you reboot the computer to Snow Leopard? If so, then re-run the Yosemite installer application. It should be in your Applications folder.
    If you can't, then you need to erase the drive and reinstall Snow Leopard:
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1<http://support.apple.com/kb/index?page=answerlink&url=http%3A%2F%2Fsupport.apple .com%2Fkb%2FDL1399&answerid=16777216&src=support_site.downloads.search>.
    Correct Answer <https://discussions.apple.com/email/thread/6836494/correct/27684871> Helpful Answer <https://discussions.apple.com/email/thread/6836494/helpful/27684871>
    Use the buttons above to tell Kappy and the rest of the community if this reply solved your question or helped you get closer to finding a solution.
    To reply to Kappy, go to the discussion<https://discussions.apple.com/message/27684871?ac_cid=op123456#27684871> in Apple Support Communities.
    You are receiving this email from Apple Support Communities. You can change your email preferences in your Apple Support Communities Profile<https://discussions.apple.com/user-preferences!input.jspa>.
    TM and copyright © 2014 Apple Inc. 1 Infinite Loop, MS 96-DM. Cupertino, CA 95014.
    All Rights Reserved<http://www.apple.com/legal/> | Privacy Policy<http://www.apple.com/legal/privacy/> | Terms of Use<https://discussions.apple.com/docs/DOC-5952> | Apple Support<http://www.apple.com/support/>

  • My apple id has been disabled and when i am trying to reset my apple id passwrd it is sending me mail to my registered email id and i no longer have access to that email id, totally confused what to do since my iphone 4s is stuck upon activation of i

    my apple id has been disabled and when i am trying to reset my apple id passwrd it is sending me mail to my registered email id and i no longer have access to that email id, totally confused what to do since my iphone 4s is stuck upon activation of icloud

    http://support.apple.com/en-us/HT201356

  • I have two aps on my task bar. Ps CC and Ps CC 2014.  i am totally confused. please advise

    I have two aps on my task bar. Ps CC and Ps CC2014. i am totally confused. please advise. thanks

    You can use either version. PS CC 2014 is the newest and because of a variety of changes that were made there could be potential issues such as some filters being available in one version and not the other, e.g. the Oil Paint filter still exists in PS CC but not in PS CC 2014. So depending on what you want to do you may prefer to use one version instead of the other for any given project.
    Confused as to why you have CC and CC 2014 versions of Photoshop, Illustrator, etc? Here's why - News - Digital Arts

  • Totally Confused by Licensing!!

    Hi all
    I am trying to evaluate EM 10G for our organisation and I am totally confused by the Licensing!! I have spoken to our Oracle Account Manager and that has not helped.
    As I understand it you get the license for EM with Database Licenses.
    So assume that we are able to install and use EM to monitor and manage all of our instances (250+).
    The parts I could purchase are
    • Diagnostics Pack
    • Configuration Management Pack
    • Tuning Pack
    • Change Management Pack
    Having a quick look it seem like a lot of the EM functionality (alerts etc) only come with the Diagnostics Pack.
    I suppose the question I am asking is how much functionality will we get without purchasing any of the management packs?
    Regards
    Ben

    Ben,
    When you install EM10g Grid Control you can navigate to the setup page for Management Pack Access.
    This is where you tell EM10g which packs you are licensed for.
    It also explains the packs in the form pasted below.
    As far as I am aware the Change Management Pack is no longer around in 10g?
    I'd hate to have to look after 250 databases without the Diagnostics pack at least...
    Thanks,
    Alan...
    Database Diagnostics Pack
    Performance Monitoring (Database and Host)
    ADDM (Automated Database Diagnostic Monitor)
    Automatic Workload Repository
    Event Notifications: Notification Methods, Rules and Schedules
    Event history/metric history (Database and Host)
    Blackouts
    Database Tuning Pack
    SQL Access Advisor
    SQL Tuning Advisor
    SQL Tuning Sets
    Reorganize Objects
    Database Configuration Pack
    Database and Host Configuration
    Deployments
    Patch Database and View Patch Cache
    Patch staging
    Clone Database
    Clone Oracle Home
    Search configuration
    Compare configuration
    Policies
    Application Server Diagnostics Pack
    Historical/trending data (Application Server and Host)
    Server Tracing
    Page Performance
    Event Notifications: Notification Methods, Rules and Schedules
    Event history/metric history (Application Server and Host)
    Blackouts
    Application Server Configuration Pack
    Application Server and Host Configuration
    Deployments
    Patch Database and View Patch Cache
    Patch staging
    Clone Database
    Clone Oracle Home
    Search configuration
    Compare configuration
    Policies

  • BE[Elect], MBA[SCM], 4 yrs Exp as BD. Totally confused about which SAP module

    Hello,
    Niranjan here from Mumbai. i am currently working as Lead member, Business development in engineering company for past 4+ years. Prior i have completed my BE from Mumbai university & MBA in supply change management.
    Now i am planning to have a shift to SAP. But confused about any specific module.
    On doing some ground work, found SD module of my use, but not sure about it.
    Also found CRM of my use on discussion with some of those working on field.
    Totally confused. ...
    Plz pour in your suggestions.
    thanks in advance.
    Niranjan Watve

    Hi Niranjan,
    As for my opinion, SAP CRM Sales exactly suits to you.  However, you have done Supply Chain Management you can also opt for SAP SD as well.
    But give a preference to SAP CRM Sales Instead of SAP SD.
    Regards
    GGOPII

  • Trying to create "screencast", and am totally confused...

    Hi.
    So, I used snapZpro and captured a section of my screen, and saved it out as a quicktime with animation codec, 10 frames per second.....
    I then created a project in FCP, and brought in my files... Created a sequence, and put my mov in there.. It immediately set the sequence to DV/DVCPRO - NTSC, the canvas window shows my footage but it looks wrong-- like the fonts are unreadable, blurry, etc.
    So, I went into sequence settings and set it to Animation, and then I have a RED timeline showing that I need to render everything.. and I am totally confused as to why since the footage is the animation codec... The frame rate in the sequence is 29.97, I thought that was perhaps why it's red, but there is no option in the "edit timebase" for 10fps.. Its only options between 23 and 60...
    My goal is to make some basic edits, and then output again with the animation codec.
    Can anyone please let me know how I should proceed? Rendering my footage seems like the wrong thing to do-- especially since it says it will take 2 hours to do it!!!
    Thanks.
    Message was edited by: Patrick Collins

    there is no option in the "edit timebase" for 10fps.. Its only options between 23 and 60...
    Final Cut Pro works with industry standard codecs, pixel dimensions and frame rates. As soon as you try making custom settings, it's no longer standard and you have to render. Snapz Pro was never designed to work in conjunction with a professional video editing system. You should try [iShowU|http://www.shinywhitebox.com/ishowuhd/main.html] instead, which will let you export to any codec on your computer.

  • I am totally confused!  Please help this newbie :-)

    Hi there,
    I am sorta new to Java. I've learned the basics of the language, but now I am finding myself totally confused with all the new stuff. There is SOOOOO much stuff on the java.sun.com website that I don't know where to begin.
    Ok, here is my question. Well, questions.
    1. Is there a document that describes when exactly one would want to use the J2EE as opposed to the J2SE?
    2. I want to develop a multi-platform small business desktop application. This application needs to support multiple users accessing a database on a server. It also needs to be capable of accessing a web service via the Internet. And there will be a web-based version of the application. So given these requirements, how do I know if I need the J2EE or not? I would like to avoid requiring the J2EE. The idea being to have a desktop application that can be sold for around $100 per seat license. J2EE application servers are relatively expensive, are they not?
    Where do I even begin? Can someone point me to a document or some information?
    Incidentally, I want to do all my development on Linux.
    Thanks for any help!
    Joe

    Suppose somebody said to you "I have just started to learn to cook, and I would like to open a restaurant in Paris. What should I serve, and will I need to know French?" What advice would you give that person? Well, hopefully you would tell that person to get a job washing dishes or waiting tables at a local restaurant and learn the business starting from the ground up.
    Same answer in your case. Start with J2SE and work on learning Java. Also learn about Internet technologies. Then probably after several months to a year you will start to understand the business, and the answers to your questions will become clearer.

  • HT201184 who help me, for iphone problem, kindly give me the contact no.  I am totally confuse the your system

    who help me, for iphone problem, kindly give me the contact no.  I am totally confuse the your system.
    <Personal Information Edited by Host>

    Hey sherstha,
    Thanks for the question. The following article outlines the various contact information for Apple, based on your country:
    Contacting Apple for support and service
    http://support.apple.com/kb/HE57
    Thanks,
    Matt M.

Maybe you are looking for

  • Handling of pending reboot, exclusive updates for patch management with SCCM 2012

    Hello, Planning to use SCCM 2012, I would like to understand how smart is SCCM 2012 when dealing with specific patch management situation. Assuming I have the following: - A given server to be patched is missing a lot of updates, several being mutual

  • Publishing JSP form JAVA stored procedure [Oracle8i 8.1.7]

    Hi folks, I wonder if anybody knows a way to publish JSP from JAVA stored procedure. I know there is a way to load java class using PL/SQL package DBMS_JAVA.loadjava(), or oracle.aurora.server.tools.loadjava.LoadJavaMain.serverMain() from java. But I

  • Signal 11 Error in DS 12.2 (3.1)

    Hi, I have DS 12.2 (3.1) installed on AIX 5.3. Everytime I run a dataflow that includes a DQ transform the job fails with an error 170101. On the error log it is saying it is a signal 11 violation. If I totally remove the DQ transform and run the job

  • Could not initalize photoshop because the disk is not available

    Could not initalize photoshop because the disk is not available. What is gouing on at Adobe? How do I get into my cs6 now. Problem since that extenede for the cloud has been coming up and I have just always quit  and never subscribed now today the tr

  • Customizing menu options in Navigator

    Dear all, One quick question. How do we customize menu options in the Navigator Window ? e.g. I wish to display a different 'About' information in Help Menu. How can we do that ? Jay