delay-txn and is-modified conflict?

WL 6.1 sp2, Solaris 2.8, JDK 1.3.1_02
I have a bmp ejb and session bean facade. All methods of both are Required.
I defined the is-modified tag and method, and set <delay-updates> to false.
I make a call to a session bean which looks up an entity bean and calls 3
setters:
session.call(){
//find entity
entity.getA()
entity.getB()
entity.getC()
And see ejbStore() being called 3 times. If I set <delay-updates> to true
(or remove it altogether), then I don't see ejbStore() being called at all.
What's going on? Just because I tell the container to call ejbLoad/Store
during the txn does not mean the container SHOULD call ejbStore() when it
doesn't need to, as stipulated by <is-modified>!
Gene

Sorry that the experience has been less than perfect.
The problem this time is that you've specified an is-modified-method in your descriptors that doesn't exist in your bean. Normally,
the ejb compliance checker would have caught it, but we're not doing the compliance check for EJB 2.0 CMP beans since they don't need
this method.
Regardless, the container should have given a reasonable error message. I'll make sure both of these get fixed.
-- Rob
Gene Chuang wrote:
Thanks Rob, turns out I am missing <persistence-use> tag in my descriptor. With this,
and a few other mods, I was about to run ejbc20 on my newly minted CMP. HOWEVER,
when I try to deploy the bean, I get another cryptic error (attached).
This is my first foray into Weblogic CMP (1.1/2.0), and I can honestly say my experience
wasn't pleasant. ejbc20 is just churning one bad error message after another, and
I can't possibly imagine I'm the first person to have seen these. I'm pretty exasperated
myself; I can't imagine how someone with less Weblogic experience can get a CMP
up and running. Perhaps these issues are addressed by 7.0 Workshop, so I guess I'll
give that a shot when we eventually upgrade to 7.x.
Gene
Rob Woollen <[email protected]> wrote:
It's a problem in your descriptors. Most likely you don't have a persistence-use
section, or it's incorrect. As you well know,
ejbc shouldn't be NPEing on this.
-- Rob
Gene Chuang wrote:
PS What would we need to run your beans as CMP 2.0 instead?Well, if you can interpret esteric error messages like the following whenI try to
run ejbc! ;-)
ERROR: Error from ejbc: java.lang.NullPointerException
at weblogic.ejb20.deployer.CompositeMBeanDescriptor.getPersistenceUseTypeIdentifier(CompositeMBeanDescriptor.java:1311)
at weblogic.ejb20.deployer.CMPInfoImpl.<init>(CMPInfoImpl.java:131)
at weblogic.ejb20.deployer.EntityBeanInfoImpl.<init>(EntityBeanInfoImpl.java:232)
at weblogic.ejb20.deployer.BeanInfoImpl.createBeanInfoImpl(BeanInfoImpl.java:333)
at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:395)
at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:126)
at weblogic.ejb20.ejbc.EJBCompiler.setupEJB(EJBCompiler.java:128)
at weblogic.ejbc20.runBody(ejbc20.java:358)
at weblogic.utils.compiler.Tool.run(Tool.java:79)
at weblogic.ejbc.main(ejbc.java:21)
Gene
Rob Woollen <[email protected]> wrote:
Hi Gene.
I see the bug. I'm guessing that you're using the 'Exclusive' concurrency
option. (Either you've specified it explicitly or your weblogic-ejb-jar.xml
is
a 5.1 DTD).
The code does appear correct in the default, 'Database' concurrency.
There's a pretty easy work-around. Remove the <is-modified-method> from
your
weblogic-ejb-jar.xml and just change your ejbStore to be:
if (! isModified()) return;
// do db update
Otherwise, go ahead and open a support case so we can fix this one.
-- Rob
PS What would we need to run your beans as CMP 2.0 instead?
Gene Chuang wrote:
WL 6.1 sp2, Solaris 2.8, JDK 1.3.1_02
I have a bmp ejb and session bean facade. All methods of both are
Required.
I defined the is-modified tag and method, and set <delay-updates> tofalse.
I make a call to a session bean which looks up an entity bean and calls3
setters:
session.call(){
//find entity
entity.getA()
entity.getB()
entity.getC()
And see ejbStore() being called 3 times. If I set <delay-updates>
to
true
(or remove it altogether), then I don't see ejbStore() being called
at
all.
What's going on? Just because I tell the container to call ejbLoad/Store
during the txn does not mean the container SHOULD call ejbStore() whenit
doesn't need to, as stipulated by <is-modified>!
Gene--
AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
by Michael Girdley, Rob Woollen, and Sandra Emerson
http://learnWebLogic.com
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hi Gene.
<p>I see the bug. I'm guessing that you're using the 'Exclusive'
concurrency option. (Either you've specified it explicitly or your
weblogic-ejb-jar.xml is a 5.1 DTD).
<br>
<br>The code does appear correct in the default, 'Database' concurrency.
<p>There's a pretty easy work-around. Remove the <is-modified-method>
from your weblogic-ejb-jar.xml and just change your ejbStore to be:
<p>if (! isModified()) return;
<br>
<br>// do db update
<p>Otherwise, go ahead and open a support case so we can fix this one.
<p>-- Rob
<p>PS What would we need to run your beans as CMP 2.0 instead?
<br>
<p>Gene Chuang wrote:
<blockquote TYPE=CITE>WL 6.1 sp2, Solaris 2.8, JDK 1.3.1_02
<p>I have a bmp ejb and session bean facade. All methods of both
are Required.
<br>I defined the is-modified tag and method, and set <delay-updates>
to false.
<p>I make a call to a session bean which looks up an entity bean andcalls
3
<br>setters:
<p>session.call(){
<br> //find entity
<br> entity.getA()
<br> entity.getB()
<br> entity.getC()
<br>}
<p>And see ejbStore() being called 3 times. If I set <delay-updates>
to true
<br>(or remove it altogether), then I don't see ejbStore() being called
at all.
<p>What's going on? Just because I tell the container to call ejbLoad/Store
<br>during the txn does not mean the container SHOULD call ejbStore()when
it
<br>doesn't need to, as stipulated by <is-modified>!
<p>Gene</blockquote>
<pre>--
AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
by Michael Girdley, Rob Woollen, and Sandra Emerson
http://learnWebLogic.com</pre>
</html>
AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
by Michael Girdley, Rob Woollen, and Sandra Emerson
http://learnWebLogic.com
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
It's a problem in your descriptors. Most likely you don't have a
persistence-use section, or it's incorrect. As you well know, ejbc
shouldn't be NPEing on this.
<p>-- Rob
<p>Gene Chuang wrote:
<blockquote TYPE=CITE>> PS What would we need to run your beans as CMP
2.0 instead?
<p>Well, if you can interpret esteric error messages like the following
when I try to
<br>run ejbc! ;-)
<p>ERROR: Error from ejbc: java.lang.NullPointerException
<br> at weblogic.ejb20.deployer.CompositeMBeanDescriptor.getPersistenceUseTypeIdentifier(CompositeMBeanDescriptor.java:1311)
<br> at weblogic.ejb20.deployer.CMPInfoImpl.<init>(CMPInfoImpl.java:131)
<br> at weblogic.ejb20.deployer.EntityBeanInfoImpl.<init>(EntityBeanInfoImpl.java:232)
<br> at weblogic.ejb20.deployer.BeanInfoImpl.createBeanInfoImpl(BeanInfoImpl.java:333)
<br> at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:395)
<br> at weblogic.ejb20.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:126)
<br> at weblogic.ejb20.ejbc.EJBCompiler.setupEJB(EJBCompiler.java:128)
<br> at weblogic.ejbc20.runBody(ejbc20.java:358)
<br> at weblogic.utils.compiler.Tool.run(Tool.java:79)
<br> at weblogic.ejbc.main(ejbc.java:21)
<p>Gene
<br>Rob Woollen <[email protected]> wrote:
<br>>
<br>>
<br>>Hi Gene.
<br>>
<br>>I see the bug. I'm guessing that you're using the 'Exclusive'
concurrency
<br>>option. (Either you've specified it explicitly or your weblogic-ejb-jar.xml
<br>>is
<br>>a 5.1 DTD).
<br>>
<br>>The code does appear correct in the default, 'Database' concurrency.
<br>>
<br>>There's a pretty easy work-around. Remove the <is-modified-method>
from
<br>>your
<br>>weblogic-ejb-jar.xml and just change your ejbStore to be:
<br>>
<br>>if (! isModified()) return;
<br>>
<br>>// do db update
<br>>
<br>>Otherwise, go ahead and open a support case so we can fix this one.
<br>>
<br>>-- Rob
<br>>
<br>>PS What would we need to run your beans as CMP 2.0 instead?
<br>>
<br>>
<br>>Gene Chuang wrote:
<br>>
<br>>> WL 6.1 sp2, Solaris 2.8, JDK 1.3.1_02
<br>>>
<br>>> I have a bmp ejb and session bean facade. All methods of both
are Required.
<br>>> I defined the is-modified tag and method, and set <delay-updates>
to false.
<br>>>
<br>>> I make a call to a session bean which looks up an entity bean and
calls
<br>>3
<br>>> setters:
<br>>>
<br>>> session.call(){
<br>>> //find entity
<br>>> entity.getA()
<br>>> entity.getB()
<br>>> entity.getC()
<br>>> }
<br>>>
<br>>> And see ejbStore() being called 3 times. If I set <delay-updates>
to
<br>>true
<br>>> (or remove it altogether), then I don't see ejbStore() being called
at
<br>>all.
<br>>>
<br>>> What's going on? Just because I tell the container to call
ejbLoad/Store
<br>>> during the txn does not mean the container SHOULD call ejbStore()
when
<br>>it
<br>>> doesn't need to, as stipulated by <is-modified>!
<br>>>
<br>>> Gene
<br>>
<br>>--
<br>>
<br>>----------------------------------------------------------------------
<br>>
<br>>AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
<br>>
<br>>by Michael Girdley, Rob Woollen, and Sandra Emerson
<br>>
<br>>http://learnWebLogic.com
<br>>
<br>>
<br>>
<br>>
<br>><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<br>><html>
<br>>Hi Gene.
<br>><p>I see the bug. I'm guessing that you're using the 'Exclusive'
<br>>concurrency option. (Either you've specified it explicitly or
your
<br>>weblogic-ejb-jar.xml is a 5.1 DTD).
<br>><br>
<br>><br>The code does appear correct in the default, 'Database' concurrency.
<br>><p>There's a pretty easy work-around. Remove the <is-modified-method>
<br>>from your weblogic-ejb-jar.xml and just change your ejbStore to be:
<br>><p>if (! isModified()) return;
<br>><br>
<br>><br>// do db update
<br>><p>Otherwise, go ahead and open a support case so we can fix this
one.
<br>><p>-- Rob
<br>><p>PS What would we need to run your beans as CMP 2.0 instead?
<br>><br>
<br>><p>Gene Chuang wrote:
<br>><blockquote TYPE=CITE>WL 6.1 sp2, Solaris 2.8, JDK 1.3.1_02
<br>><p>I have a bmp ejb and session bean facade. All methods
of both
<br>>are Required.
<br>><br>I defined the is-modified tag and method, and set <delay-updates>
<br>>to false.
<br>><p>I make a call to a session bean which looks up an entity bean
and calls
<br>>3
<br>><br>setters:
<br>><p>session.call(){
<br>><br> //find entity
<br>><br> entity.getA()
<br>><br> entity.getB()
<br>><br> entity.getC()
<br>><br>}
<br>><p>And see ejbStore() being called 3 times. If I set <delay-updates>
<br>>to true
<br>><br>(or remove it altogether), then I don't see ejbStore() being
called
<br>>at all.
<br>><p>What's going on? Just because I tell the container to
call ejbLoad/Store
<br>><br>during the txn does not mean the container SHOULD call ejbStore()
when
<br>>it
<br>><br>doesn't need to, as stipulated by <is-modified>!
<br>><p>Gene</blockquote>
<br>>
<br>><pre>--
<br>>
<br>>----------------------------------------------------------------------
<br>>
<br>>AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
<br>>
<br>>by Michael Girdley, Rob Woollen, and Sandra Emerson
<br>>
<br>>http://learnWebLogic.com"><a
href="http://learnWebLogic.com">http://learnWebLogic.com</a></A></pre>
<br>> </html>
<br>>
<br>></blockquote>
<pre>--
AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
by Michael Girdley, Rob Woollen, and Sandra Emerson
<A HREF="http://learnWebLogic.com">http://learnWebLogic.com</a></pre>
</html>
Name: trace
trace Type: unspecified type (application/octet-stream)
Encoding: base64

Similar Messages

  • [SOLVED] Systemd and tmpfiles? Conflicting /tmp?

    I've got this error in journal;
    systemd-tmpfile[247]: Two or more conflicting lines for /tmp configured, ignoring.
    This is from a leftover from arch initscripts, /usr/lib/tmpfiles.d/arch.conf shich is doubled by systemd's, /usr/lib/tmpfiles.d/x11.conf (almost).
    arch.conf;
    D /tmp 1777 root root 10d
    d /run/daemons 0755 root root -
    d /tmp/.X11-unix 1777 root root 10d
    d /tmp/.ICE-unix 1777 root root 10d
    d /tmp/.XIM-unix 1777 root root 10d
    d /tmp/.font-unix 1777 root root 10d
    d /tmp/.Test-unix 1777 root root 10d
    F /run/utmp 0664 root utmp -
    r /tmp/.X[0-9]-lock
    r /etc/nologin
    r /etc/shutdownpid
    r /forcefsck
    r /fastboot
    x11.conf;
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU General Public License as published by
    # the Free Software Foundation; either version 2 of the License, or
    # (at your option) any later version.
    # See tmpfiles.d(5) for details
    # Make sure these are created by default so that nobody else can
    d /tmp/.X11-unix 1777 root root 10d
    d /tmp/.ICE-unix 1777 root root 10d
    d /tmp/.XIM-unix 1777 root root 10d
    d /tmp/.font-unix 1777 root root 10d
    d /tmp/.Test-unix 1777 root root 10d
    # Unlink the X11 lock files
    r /tmp/.X[0-9]*-lock
    Can I delete the arch one - where is it started from at boot? I'm running only systemd and got rid of all arch units. Or can I merge them? I really can't tell which tmpfiles are needed.
    Last edited by swanson (2012-05-31 19:11:46)

    Solved now! Boot times are as fast as posssible on my HDD I think. Only thing after uninstalling initscripst and initscripts-systemd was that locale was not set inspite of a correct /etc/locale.conf. I had to make /etc/profile.d/locale.sh with this content;
    if [ -s /etc/locale.conf ]; then
    . /etc/locale.conf
    fi
    export LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE
    export LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS
    export LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION

  • Is there a way to manually custom-edit the "Date created" and "Date modified" attributes of files in Mac OS 10.6?

    In "List View" in a Finder window, among the many column options are "Date created" and "Date modified." In "View Options" (command-J) for any folder, one can add these columns, along with the standard ones "Size," "Kind," "Label," etc.
    A user can alter a file's name, and a file's "label" (i.e. its color). On the other hand, a user can NOT arbitrarily edit/alter a file's official "size" -- other than by physically altering the contents of the file itself, obviously.
    But what about a file's "Date created" and "Date modified"? Can either of those be manually edited/changed, just as a file's name can be changed -- or is a file's creation-date an immutable attribute beyond the editorial reach of the user, just as a file's "size" is?
    And yes, a person can "alter" a file's "Date modified" by simply modifying the file, which would change its "Date modified" to be the moment it was last altered (i.e. right now). But (and here's the key question) can a user somehow get inside a file's defining attributes and arbitrarily change a file's modification date to be at any desired point in the past that's AFTER its creation date and BEFORE the present moment? Or will so doing cause the operating system to blow a gasket?
    If it is possible to arbitrarily manually alter a file's creation date or modification date, how would it be done (in 10.6)? And if it is NOT possible, then why not?

    sanjempet --
    Whew, that's a relief!
    But as for your workaround solution: All it will achieve is altering the created and modified dates to RIGHT NOW. What I'm looking to do is to alter the modification/creation dates to some point in the past.
    I'm not doing this for any nefarious reason. I just like to organize my work files chronologically according to when each project was initiated, but sometimes I forget to gather the disparate documents all into one folder right at the beginning, and as a result, sometimes after I finish a job, I will create a new folder to permanently house all the files in an old project, and when that folder is places in a bigger "completed projects" folder and then is organized by "Date created" or "Date modified" in list view, it is out-of-order chronologically because the creation and modification dates of that particular project folder reflect when the folder was created (i.e. today), and not when the files inside the folder were created (i.e. weeks or months ago).
    The simplest solution would simply to be able to back-date the folder's creation or modification date to match the date that the project actually started!

  • How to remove "Created by" and "Last Modified" on Edit list item

    Hi, 
    I have a custom list, after adding items when I try to edit, I can see "Created by" and "Last Modified"  at the bottom left(You can see in pic below). I need to remove it, How can I achieve this? This is overlapping with some of
    my fields when I try to hide some fields
    Any help would be appreciated. Thanks in advance
    Praveen Teja

    Hey,
    The other option is you can remove it using jquery code. You need to do is put below code in CEWP on your list from. 
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
    <script language="javascript" type="text/javascript">
    $(document).ready(function () {
    $("td[id='onetidinfoblock1']").remove();
    $("td[id='onetidinfoblock2']").remove();
    </script>
    Thanks.Please mark it as an answer if it helps.

  • IPhoto '09 - original and (un)modified files

    Hi there, just beginning to use this software and am confused.
    I have my original photos on my hard drive. When I import them into iPhoto, I get two additional copies - one in the iPhoto Library Originals folder, and another in the Modified folder, despite the fact I have done nothing to modify them. So, I end up with three copies. Sure, I can delete the original hard drive ones, but then I still have two copies taking up scarce disk space.
    Question is, why am I automatically getting an iPhoto Original copy and a Modified copy? Some googling tells me that if a photo has been rotated, this will be the case. But this is also happening for photos originally taken in landscape format. Does it, then, happen for any photo taken on a camera with an autorotate function?
    How can I solve this problem so that I have just one (Original) photo in my iPhoto library (original original still available elsewhere, and a modified version only being created if I actually do something to the photo subsequently in iPhoto?
    Thanks so much!

    Okay, thanks, Larry. You know before you answered I did go ahead and delete the Modified folder to see what would happen (bearing in mind I have the original originals in two other places). (Sorry for the contrariness.) I deleted it while iPhoto was open, and it was simply instantly recreated, which was a bit of a surprise. Then I closed iPhoto and deleted it, then reopened iPhoto, and no Modified folder was created.
    Everything looks good in the iPhoto library - SO FAR, of course - though a right-click does give the options for "Show File" (just points to hard disk root directory) and "Show Original File" (points to iPhoto Originals folder).
    I am going to leave it like that and see if anything happens (if it does I'll report back for others to hear). Worst comes to worst, I just delete everything, create a new Library and reimport again. I won't rely on iPhoto as my only source of originals...
    Thanks again.

  • Tabs and Ask Toolbar Conflict

    Sorry, but I am new to this forumn and don't know how to post a comment that may save time for some folks. About a week ago I posted a problem concerning creating multpple tabs and saving them. I cna't find that posting again, but the answer I got worked until the next update.
    At that time I was using FF3.6.14 and the Ask toolbar. Removing it as suggested worked. Later I installed the FF 3.6.15 update and all still worked. Last night I recieved an update of the Ask toolbar.
    Upon installing that latest toolbar, I again had the same problem with tabs.
    It would appear that the lastest version of FF and Ask still conflict.

    Did you create a new profile?
    You can try to click the "Restore Default Set" button to restore the default toolbar setup.
    *Firefox menu button > Options > Toolbar Layout
    *View > Toolbars > Customize
    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I have a delay ( sound and 2 sec then it appears on screen)  in all my notification on my iphone 5?

    i have a delay ( sound and 2 sec then it appears on screen)  in all my notification on my iphone 5?

    jonathans iphone 5c wrote:
    i have the same problem with my iphone 5c, its on the left side too. i wondering if it could be worse and the hole screen will be so? what do you think?
    Yes.

  • Lightbox and jquery.js conflict

    Hi I have a query.js and a lightbox.js javascripts running on the same page and they are conflicting. They both work great seperately but when combined the scripts stop working.
    I found a forum that is closed that reference's this solution:
       <script>
         jQuery.noConflict();
         // Use jQuery via jQuery(...)
         jQuery(document).ready(function(){
           jQuery("div").hide();
         // Use Prototype with $(...), etc.
         $('someid').hide();
       </script>
    However, I am unsure of what to do with it. The forum referenced changing the name of the 'someid' but I don't know what to change it to.
    Here is my conflicting codes:
    <script type="text/javascript" src="scripts/prototype.js"></script>
    <script type="text/javascript" src="scripts/lightbox.js"></script>
       <script>
         jQuery.noConflict();
         // Use jQuery via jQuery(...)
         jQuery(document).ready(function(){
           jQuery("div").hide();
         // Use Prototype with $(...), etc.
         $('someid').hide();
       </script>
    <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.js"></script>
    <script type="text/javascript">
                jQuery(document).ready(function(){
                    //To switch directions up/down and left/right just place a "-" in front of the top/left attribute
                    //Caption Sliding (Partially Hidden to Visible)
                    jQuery('.boxgrid.caption').hover(function(){
                        jQuery(".cover", this).stop().animate({top:'50px'},{queue:false,duration:160});
                    }, function() {
                        jQuery(".cover", this).stop().animate({top:'300px'},{queue:false,duration:160});
            </script>

    <!-- JavaScript -->
    <!--<script type="text/javascript" src="scripts/prototype.js"></script>-->
    <!--<script type="text/javascript" src="scripts/lightbox.js"></script>-->
    <script type="text/javascript" src="scripts/mootools.js"></script>
    <script type="text/javascript" src="scripts/swfobject.js"></script>
    <script type="text/javascript" src="scripts/videobox.js"></script>
    <!--<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.js"></script>-->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    <script type="text/javascript" src="scripts/jquery.mousewheel-3.0.4.pack.js"></script>
        <script type="text/javascript" src="scripts/jquery.fancybox-1.3.4.pack.js"></script>
        <link rel="stylesheet" type="text/css" href="scripts/jquery.fancybox-1.3.4.css" media="screen" />
    <script type="text/javascript">
        jQuery.noConflict();
    </script>
    <script type="text/javascript">
                jQuery(document).ready(function(){
                    jQuery('.boxgrid.caption').each(function (){
                        jQuery(this).mouseenter (function(){
                            jQuery(this).find(".cover").animate({top:'50px'},{queue:false,duration:160});
                        jQuery(this).mouseleave (function(){
                            jQuery(this).find(".cover").animate({top:'150px'},{queue:false,duration:160});
                    jQuery("a.external").fancybox();
    </script>

  • App store and safari 6 conflict

    app store and safari 6 conflict

    Please fill out your profile so we know what machine and OS version you are running. Also please give more details about "app store and safari 6 conflict".

  • Products(Page 3) and Add/Modify Products(Page 6) of Sample Application

    I would like to create Products(Page 3) and Add/Modify Products(Page 6) of Sample Application .
    I would like to get manual/ instruction/ with complete documents.
    Thanks in advance.

    hope this will help:
    http://www.oracle.com/technology/products/database/application_express/pdf/2.2.1_advanced_tutorials.pdf

  • How to display Sales order creater and whole modified the SO, when modified

    Dear ,
       I want to know a Sales order whol created it, and who modified it , which time modifed. What can I do?

    Hi,
    Go to VA02, then select Environment -> Changes -> Click on Additional Info .
    If you want to check a particular line item , you can put the item number in the Item field.
    Otherwise if you want to look at the entire order changes, then just leave it blank and click on execute.
    Now double click on any of the action and you would be able to see the previous and the changed value.
    Hope it helps you.
    Reward points if helpful.
    Regards
    Ravi

  • Transaction Key and Acct Modifier Key

    In automatic account determination , whats is the difference between transaction key and account modifier key?
    When we need to define account modifier key?
    POINTS WILL BE REWARDED FOR ANSWERS.
    Thanks in advance.

    Hello Venugopal,
    Transaction / Event Key
    Key allowing the user to differentiate between the various transactions and events (such as physical inventory transactions and goods movements) that occur within the field of inventory management.
    The transaction/event type controls the filing/storage of documents and the assignment of document numbers.
    Account Modifier Key
    Account grouping code is only used with offsetting entries (GBB), consignment liabilities (KON), and price differences (PRD).
    Since the posting transaction "Offsetting entry for inventory posting" is used for different transactions (for example, goods issue, scrapping, physical inventory), which are assigned to different accounts (for example, consumption account, scrapping, expense/income from inventory differences), it is necessary to divide the posting transaction according to a further key: account grouping code.
    Hope this helps.
    Regards
    Arif Mansuri

  • What is the difference between access specifiers and access modifiers?

    what is the difference between access specifiers and access modifiers? are they same? if not what is the difference.

    Access Specifier are used to specifiy how the member variable ,methods or class to other classes.They are public ,private and protected.
    Access Modifier:
    1.Access
    2.Non Access
    Access:
    public ,private,protected and default.
    Non Access:
    abstract,final,native,static,synchronized,transient,volatile and strictfp

  • Window has detected and IPS Address Conflict

         To Whom this my concern,  I keep getting this message, which, I had mention in the subject line.  I have reset my wifi box and the box, that Charter gave me quit a few times. But, this message keeps on coming up, for some odd reason or another. 
         I was just wondering.  I had a Hp Lap Top 2000, that some one had stoolen off me, quit a few months, ago. I reported it to the police station and HP and they said that they could not do anything about it. Because, I absolutely lost my serial number, that I had written down.
        But, I used the same email addresses and Passwords on both computes. So, I was just a wondering if the person could be useing the lap top, that I had gotten stoolen from me and this is the way, this is why this message keeps popping up on my computer.
        Oh, I even called up Charter and mention it to them and they absolutely could not figure out what is going on either. So, I just thought, that I would text it on the internet.  To see if any one absolutely knew what was going on.
    Well, if you want to get in touch with me.  My email address it [Personal Information Removed]  or
    [Personal Information Removed].
    If you could help me out. I would appreciate it and awful lots.
                                                                                                                                                        Yours Sincerely,
                                                                                                                                                         Mr. Rockie A. Bates

    Hi @Rockiebates1949 ,
    Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your Window has detected and IPS Address Conflict on your Home Network. This error message indicates that another computer on the network is using the same IP address that your computer is using. Each computer on a network must have a unique IP address. To fix this problem, run the Network troubleshooter.
    I hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • Difference between 'default' and 'protected' modifier

    Hello!
    Whats the difference between 'default' and 'protected' modifier?
    Thank you!

    Explanation here
    http://www.webchalkboard.com/java/tute6.shtml

Maybe you are looking for

  • Web Service Security is not working when migrating application from Tomcat

    Hi, We have a application running successfully in tomcat6 It calls a Webservice call through TIBCO BW interface. When we deployed the same WAR file in Weblogic 10.3.2, it gives me a error on Prefix[ds] not able to locate namespace URI not found error

  • Enabling e mail account settings?

    Hi My email accounts settings are disabled. I can't select email account to modify. Even push notifications settings are also disabled. Pls help me to enable those setting. Thanks

  • Com.sap.ip.bi.rig.ColumnWidth for key vs. text

    I am implementing module com.sap.ip.bi.rig.ColumnWidth (in conjunction with com.sap.ip.bi.rig.DocumentContent), and have come to the point where I need to set all the column widths. It would be really great if BEx would just render the column widths

  • Videos converted to iPod with itunes lack audio component

    I have a 4 GB nano and have downloaded the instruction manual. One section describes how to use iTunes convert movies to a format acceptable to the nano. When I follow this method, the converted video has no soundtrack. Has anyone else tried converti

  • No Masterdata for 0TCAACTVT, 0TCAIPROV, 0TCAVALID

    All, I'm trying to implement the Analysis authorizations within our new BI7 installation. I've been trying to follow all the advice in the forum, help, and various presentations that are out there, and I'm hitting some road blocks. I've activated all