[XSQL 1000]Debugging for xsql:insert

Dear Colleagues,
Looks to me as the awareness upon the usefulness of XSQL servlet for posting FORM submissions has raised recently, and thus the need for even more documentation and examples as currently provided for the specific task.
I have successfully used the OracleXMLSave class for posting in the database of XML data, however I had difficulties in achieving the same for an FORM post.
I have consulted the following sources:
- release notes for version 1.0.0.0(S.Muench)
- example code (xsql/demo/document)(S.Muench)
- Oracle XML handbook (ISBN: 007212489X)
- XML forum in technet discussion groups.
Nevertheless, I could not find explicitly reported on how to simply see what the internal format of the XML was for a specific form submission that I was developing.
The workaround I made for the topic is to include in the xsql file which does the posting, an href which references an xsl which then should extract the content as the spec says it is formatted and then returns it ot the browser for visual inspection.
Nevertheless, would there be a better solution (to see what the Servlet has generated before submitting for insertion) it would be great to know.
Looking forward your comments
and very many compliments to Oracle and to Steve Muench (and colleagues) for the really useful and powerful system they have developed.
Regards
Sincerely
Luca

Dear Colleagues,
following the instructions from Steve as in his posting of January 10th in support to the topic "Generating XML from HTML form", I have just written an action handler that "does the job" of showing the XML that the servlet has internally generated (or at least I believe so) before doing the internal OracleXMLSave call.
I attach hereafter the code as well as what I have done to get it to work and will appreciate feedback .
OS Linux (Suse 6.3)
HTTPD Apache 1.3.9 (off-the shelf from Suse 6.3) made on Nov 13,1999
SERVLET Tomcat 3.1
JAVA jdk1.2.2
ORACLE 8.1.6 (also called 8iR2)
1) save the appended document in "GetPostedDocument.java"
2) compile the java code
I have done this with the jdk1.2.2 on Linux, installed under /usr/lib/jdk1.2.2, and after coyping all the jar distributed in the xsql servlet 1.0.0.0 to the local compiling directory
/usr/lib/jdk1.2.2/bin/javac -classpath "/usr/lib/jdk1.2.2/lib/classes.zip:xmlparserv2.jar:.:oraclexsql.jar:oraclexmlsql.jar:servlet.jar" GetPostedDocument.java
3) copied GetPostedDocument.class to the tomcat lib location, and made sure it had the right permissions, namely to /usr/local/httpd/jakarta-tomcat/lib as a+rx
4) stopped and started the httpd + servlet
In my setting (that is the default I believe for tomcat 3.1), any file placed in the tomcat's lib directory is automatically loaded on startup in the CLASSPATH
rcapache stop
rcapache start
5) added to the xsql page handling the post,
the following xsql action handler
<xsql:action handler="GetPostedDocument"/>
6) reloaded the calling xsql page
What happens now is that upon submission I get back XML code which has been submitted ... exactely what I wanted. Perhaps is not what everybody needs, but it is already for me a starting step to proceed with debugging of my XSL to understand why the feeding into Oracle did not work (clearly the fault of the reformatting XSL which did not generate OracleXMLSave "canonical format").
Thankyou and Compliments, Steve, for such a beatiful package ! It is REALLY USEFUL.
Luca
-------------------GetPostedDocument.java----
import oracle.xml.xsql.*;
import org.w3c.dom.*;
import javax.servlet.http.*;
import javax.servlet.*;
import java.sql.*;
import java.util.*;
import java.net.URL;
import java.io.PrintWriter;
public class GetPostedDocument extends XSQLActionHandlerImpl {
public void handleAction (Node rootNode) throws SQLException {
try {
org.w3c.dom.Document converted= ((XSQLServletPageRequest)getPageRequest()).ge
tPostedDocument();
URL pageURL = new URL("file:///root/bingo.xsql");
XSQLRequest req= new XSQLRequest(pageURL);
req.setPostedDocument(converted);
req.process(new PrintWriter(System.out),new PrintWriter(System.err));
catch (Exception exs) {
this.reportError(rootNode,exs.getMessage());
exs.printStackTrace();
public void init(XSQLPageRequest xsqlreq, Element element) {
super.init(xsqlreq,element);
}

Similar Messages

  • Order of parameters to xsql:insert-request

    I am trying to create a general purpose xsl style sheet to generate a data input form using data from the COLS table. I can generate the form but the order of the parameters returned by the form does not match the column order of the table which xsql:insert-request seems to require. Is there any way of ordering the parameter values to match the column order of the table?
    Also, xsql:insert-request inserted records with null values without returning an error message when the column values were not in the correct order.
    Thanks,
    Kumar

    Can't you use the XSL Transformation that's being used by the xsql:insert-request tag to order the columns correctly?
    The order of the parameters coming in is dependent on the browser and on the servlet. It is likely the same order that they appear in your HTML form, but I don't believe there's a guarantee on the order.
    The next release of the XML SQL Utility (which does the SQL-to-XML and XML-Insert work under the covers for the XSQL Servlet) supports order-insensitive inserting.

  • [SOLVED] Enabling debug for ath9k in compat-drivers-patched from AUR

    Wireless card: TP-LINK TL-WN951N. lspci says that it is an Atheros AR5416 adapter [AR5008].
    Some background: I'm having the same issues as the OP in this thread, which references this bug report. The problem is that I get a 2000 ms ping every 30 seconds. So 2 seconds of inactivity every 30 seconds. I have the same wireless PCI card, as well. I need to fix this, because it's making online gaming impossible. I should also note that the card is working just fine in Windows 8, however. I am using net-auto-wireless. I have tried using wicd, enabling ath9k's nohwcrypt option, toggling the card's power save, installing the latest compat-drivers-patched from the AUR, toggling different settings in my motherboard's BIOS, and removing the antennae from the card. But nothing has made a significant difference.
    I think I'm really close now. I just have to disable ANI. But in order to do that, it seems that I need to enable debugging for ath9k. But this means that I need to either recompile a custom kernel, or somehow enable debug for ath9k in compat-drivers-patched from the AUR. I'd prefer the latter, as that means that I will have a more bleeding-edge driver. That, and I won't have to touch the kernel as much. What I want is described on this page. But it seems too complicated to me. Please let me explain.
    I've installed things from the AUR before, as mentioned above, and have properly configured my makepkg.conf for my system. So I'd like to use the CFLAGS and such that I've set. I don't understand how everything works in the PKGBUILD; I don't have much experience with sed and awk and regular expressions, and haven't done much shell scripting at all. It seems that at some point in the PKGBUILD, I need to enable debugging for ath9k before it is compiled. Apparently on the last page I linked to, I need to add:
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    to some config.mk file. I can only get access to the config.mk file after I install the package with pacman. I've tried adding those lines to my /etc/profile file, and checked, after a reboot, with "set", that those variables are indeed set. But the thing is, with these variables set in /etc/profile, when I run makepkg, makepkg fails with an error 2. I tried again and got the same error. I removed those lines from my /etc/profile, rebooted, tried makepkg again, and everything worked. So putting those lines in my /etc/profile is not the solution, and I feel like I'm doing something very stupid. What am I doing wrong?
    I should also note that I've tried to read the wiki page on compiling a custom kernel using ABS, but it seems to just say "get your custom configuration files" and then just continue (so it assumes that I should already be familiar with the configuration part). The PKGBUILD and Creating Packages wiki pages also seem to be a little... too advanced for me at this point in time.
    So how do I enable debugging for ath9k in compat-drivers-patched from the AUR? I'd prefer to stick with only editing the PKGBUILD and using makepkg, if possible.
    I've really tried to search the web and the arch forums on how to fix this problem myself, but alas, it seems that I need help this time. I greatly appreciate your time for reading my long post.
    UPDATE:
    I've made a lot of progress. I ended up removing the AUR package with pacman by invoking "pacman -Rsn compat-drivers-patched".
    Instructions for [almost] success: First, download compat-drivers-patched from AUR. Then move it to the "builds" directory (or "local", if using ABS). Extract the tarball. After the new directory is created, cd into it. Now here's the important part: run
    $ makepkg -so
    Then cd into src, cd into the directory inside src, then edit the config.mk file. Make sure these lines are uncommented (or created, if not already there):
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    (source)
    Now run "cd ../.." to go back up two directories. Now run:
    $ makepkg -e
    # pacman -U <file that was produced>
    And I ran "mkinitcpio -p linux" just in case, but I'm not sure if that is necessary at all. I'm... not touching the kernel, right?
    Now I ran:
    echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani
    But bash would say that the file or directory doesn't exist. Even if I prepend it with "sudo", I get the same results. I was only able to get the command to work if I logged in as root. I even put the line in my /etc/profile. The 2000 ms ping every 30 seconds is now GONE. HOWEVER! If I reboot and log in as a normal user, the problem is there again. If I reboot and log in as root, the problem is gone. If I then log out and then log back in as a normal user, the problem does not come back.
    So really, I can avoid the problem if I first log in as root, log out, and then log back in as a normal user. But this is a great inconvenience. I would much prefer if I could just log in as a normal user right after boot, and have everything working.
    Now, how do I get the command to automatically run at boot as root (without me having to log in as root), and work?
    UPDATE 2:
    I got it working. Putting the line in /etc/profile is not the solution. I created a custom systemd .service file.
    Put this into /etc/systemd/service (name it "disable_ani.service"):
    EDIT: Wow. I made a glaring typo here. It should be /etc/systemd/system/disable_ani.service
    [Unit]
    Description=disable_ani
    [Service]
    Type=oneshot
    ExecStart=/bin/sh -c "echo 1 > /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani"
    [Install]
    WantedBy=multi-user.target
    Then make sure to "sudo chmod 755 /etc/systemd/service/disable_ani.service", since root owns this file.
    Then run "sudo systemctl enable disable_ani.service".
    EDIT: It has been brought to my attention that there is a much simpler way than creating a custom service.
    Using a tmpfile:
    /etc/tmpfiles.d/disable_ani.conf
    w /sys/kernel/debug/ieee80211/phy0/ath9k/disable_ani - - - - 1
    Done.
    Now ANI is persistently disabled between boots, even if I log in as a normal user right after boot.
    Thanks for reading.
    Last edited by vyu223 (2013-03-12 10:20:19)

    So zsh is telling you that the command didn't work, since it claims that there is no such file or directory. I had a lot of trouble with getting the echo command to work, as well. I found that if out of these lines:
    export CONFIG_CFG80211_DEBUGFS=y
    export CONFIG_MAC80211_DEBUGFS=y
    export CONFIG_ATH_DEBUG=y
    export CONFIG_ATH9K_DEBUG=y
    export CONFIG_ATH9K_DEBUGFS=y
    If the first and second line above were not uncommented in the config.mk file, I couldn't leave the last line above uncommented as well, or else makepkg would fail and give me an error. So originally I had only the 3rd and 4th lines above uncommented/inserted in my config.mk. With that configuration, I could not get the echo command to work, no matter what. Have you uncommented or inserted all of the above 5 lines into your config.mk?
    After making sure all of the above 5 lines were in my config.mk, the echo command still didn't work, even if I preceded the command with sudo, or entered a su session. Bash would tell me that there was no such file or directory. I found that if I actually logged out of my normal user, and then logged back into the computer as root, the command would work. If your shell does not give you any feedback (particularly, "no such file or directory"), then the command worked. In order to get the command to run every time the computer boots, I used a systemd service, so that the command is issued as root. For some reason, it doesn't work if you put the command into /etc/profile.
    Oh, and it would probably be helpful to mention that for the compat-drivers-patched package from the AUR, the PKGBUILD checks to see what your _selected_drivers variable is before compilation. If you set _selected_drivers=ath9k, your compile times will be much shorter.

  • Simple question .... how to add photos to the body of my EMAILS -Found 1000 results for How do I add photos to my emails for Thunderbird

    Simple question - How do I add photos to the body of my emails . But instead of the answer - Found 1000 results for How do I add photos to my emails for Thunderbird. There are answers that don't apply at all to the question in anyway. Why does it have to be so hard to get a simple answer to a simple question?
    Thunderbird is acting much like Microsoft, the every reason I dumping MS Live Mail.

    First of all, much help for Thunderbird refers to menus which may not be visible. It would help you and us if you have your menus and toolbars visible.
    http://chrisramsden.vfast.co.uk/13_Menus_in_Thunderbird.html
    So, open a write window. Enable its menu and toolbar(s).
    Now do you see an "Insert" option?
    If not, you may be set to compose in plain text, which does not support embedded images.
    '''[http://kb.mozillazine.org/Menu_differences_in_Windows,_Linux,_and_Mac Tools|Account Settings]|{select account}|Composition & Addressing''' and ensure "Compose messages in HTML format" is ticked. If it wasn't already ticked, go back to composing a message. Any better now?
    Once you have HTML composition mode going, you can use '''Insert|Image''' or various permutations of copy-and-paste and drag-and-drop into your message body.
    A manual, of sorts: http://en.flossmanuals.net/thunderbird/composing-messages/

  • How to create a custom symbol for quick inserts

    I have found it extremely tedious to recreate statistical symbols over and over when it appears to be an unnecessarily lengthly process, when many stats students are in need of these characters and we have such a huge database of other less-used symbols in the database.
    Isn't there some easy way to simply add symbols (e.g., D-bar, Null Hypothesis, t obtained, etc) that don't already exist in the special characters list?
    OR is there just a way that we can create the symbols we need and add them to our favorites for quick insertion? This seems rather unwise, since so many users are looking for the same symbols, but it's a start...
    Thanks for your help!

    I appreciate both of your responses. From what I can tell, MathType would be awesome, but I'd rather not have to pay for additional software when it seems to be a feature built in to Pages, as it is for Word. I've always experienced superior software from Apple when compared to Microsoft, but in this case I have to say I'm disappointed.
    However, I did read on a different discussion board that there is the Equation Editor Application built into the Apple Suite, and I was able to use it, albeit it is definitely not as user friendly as Word's insert function for equations, right on the toolbar.
    I have tried creating a pages document where I actually spent the time creating these symbols, hoping I'd be able to copy/paste and that isn't as simple as I had hoped, either. Especially because items from Equation Editor can't be copied from one pages to another...why this is so is beyond me.
    I will try the keyboard shortcut option, though! Great idea!
    t obtained is simply "t" with "obt" in subscript.
    The formulas you've both posted here are awesome!
    Does anyone know how to get MathType for free?
    Thanks, again!

  • HT1688 Can you please help me. I purchased the new Apple I 4s phone from AT&T. I bought it out right. NO CONTRACT!! I paid almost $1000.00 for it. I then, had it enrolled it in my company's  ATT service plan. They paid the bill for my service. Since, I ha

    Can you please help me. I purchased the new Apple I 4s phone from AT&amp;T. I bought it out right. NO CONTRACT!! I paid almost $1000.00 for it. I then, had it enrolled it in my company's  ATT service plan. They paid the bill for my service. Since, I have left the company. I have retained, and assumed financial responsibility for the phone, and the phone number with AT&amp;T. The same day I assumed ifinancial responsibility, I had the phone number ported to a new service provider. ( Straight Talk ) After doing so, my phone worked fine. (as far as cellular service) NO DATA Service !!!! I have been on the phone with AT&amp;T, Straight Talk, and Apple, FOR HOURS over TWO days!!! Trying  to get this problem resolved. All I need to do, is change my APN settings (access point name ) settings. Its  my phone!!! Why does any body have this APN menu locked from me??? I've been on the phone for two days between, AT&amp;T, Straight Talk, and Apple products technical support teams. Everybody points the finger at the next guy!! What can I do to get the phone, that I paid for, work  for more than just a phone, and a paper weigh?
    PLEASE HELP ME!!!!!
    Jason
    Sent from my iPhone
    <Email Edited by Host>

    Wow... you seriously over paid for an iPhone.
    That probably explains why you have/had no clue you were purchasing a locked device and think it's an Apple problem to get it unlocked.

  • How to enable remote debugging for a session other than the current one

    Hi all,
    I am trying to figure out how to enable remote debugging for a session other than the one I am currently using.
    More specifically, we have an application that is making database calls to Oracle 11gR2. Something is causing an exception during this invocation. My system is currently not set up to recompile said application, so I can't just add the debug call to the code and recompile. Therefore I would like to be able to log into the database (as sys, if necessary) and invoke dbms_debug_jdwp.connect_tcp on the desired session.
    The docs indicate that I should be able to do so:
    dbms_debug_jdwp.connect_tcp(
    host IN VARCHAR2,
    port IN VARCHAR2,
    session_id IN PLS_INTEGER := NULL,
    session_serial IN PLS_INTEGER := NULL,
    debug_role IN VARCHAR2 := NULL,
    debug_role_pwd IN VARCHAR2 := NULL,
    option_flags IN PLS_INTEGER := 0,
    extensions_cmd_set IN PLS_INTEGER := 128);
    But when I try (even as sys), I get the following:
    exec dbms_debug_jdwp.connect_tcp('1.2.3.4',5678,<session id>,<session serial>);ORA-00022: invalid session ID; access denied
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    00022. 00000 - "invalid session ID; access denied"
    *Cause:    Either the session specified does not exist or the caller
    does not have the privilege to access it.
    *Action:   Specify a valid session ID that you have privilege to access,
    that is either you own it or you have the CHANGE_USER privilege.
    I've tried granting the 'BECOME USER' privilege for the relevant users, but that didn't help. I read something about having to set some kind of ACL as of 11gR1, but the reference documentation was very confusing.
    Would someone be able to point me in the right direction? Is this even possible, or did I misread the documentation?

    Interesting deduction, that would be very useful indeed. I hate recompiling just to add the debug call, and it can't be done in our production environment. But it seems unlikely to me it would be implemented this way.
    I would cross-post this in the SQL AND PL/SQL forum though, as this is really a database issue, not with the SQL Developer tool. Do add the links to the other posts in each.
    Regards,
    K.

  • Adobe premiere elements 12 - how to create menu bar action for my inserted image button

    adobe premiere elements 12 - how to create menu bar action for my inserted image button without using their movie menu theme

    forbemag
    I do not think that I am completely focused into this completely, so let us see if the following is going to help.
    You are going to need a base for your button. When you mention "image" button, I am assuming that you are using that term to differentiate between a text button and a thumbnail type button.
    The menus (main and scene) take their origin in .psd files on the hard drive and strict nomenclature and structure for Layers Palatte. And, the buttons on the menus trace back to the menu markers on the Timeline, main menu marker and order of placement of scene markers. The scene thumbnail will only appear when there is a scene marker on the Timeline to which it.
    In view of all that
    Where have you already inserted this "image (button)"...into the Layers Palette of a Photoshop document or other? Is this "image (button)" in a structured Layer Group in the Layers Palette with sublayer groups, text layers, graphic/background layer"?
    Let me give you an example
    If you have a button (with thumbnail) on the main menu and you want that to open to a specific scene in your movie, then you use a main menu marker on the Timeline at the spot that you want that button to target.
    If I am getting closer to what you seek, then please further clarify the DVD navigational envisioned scheme.
    Thanks.
    ATR
    Add On...I did not see the exchanges between us and SG until after I had posted mine. I thought that your discussions were concluded. Please excuse the interruption.

  • [svn:fx-trunk] 11454: ASyncList class ASDoc change: added explicit warning about the lack of support for re-inserting pending items .

    Revision: 11454
    Author:   [email protected]
    Date:     2009-11-04 18:17:33 -0800 (Wed, 04 Nov 2009)
    Log Message:
    ASyncList class ASDoc change: added explicit warning about the lack of support for re-inserting pending items.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer:
    Tests run:
    Is noteworthy for integration:
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/AsyncListView.as

  • How to disable debugging for a program or FM ?

    Hi,
    Is-it possible to disable the debugging functionality for a particular program or FM ? It must be done in the production system and without removing the debugging for all programs/FM.
    Thanks a lot
    KIndly regards
    Thierry De Longueville

    Hi,
    This can be done by BASIS Guys. Contact your BASIS guys. However i am not sure whether it can be limited only to few programs/transactions/FM.
    Please refer this thread :
    Disable Debugging Mode
    Best regards,
    Prashant
    PS : Please reward all helpful answers

  • Need help identifying the application responsible for an insert...

    Hi,
    I'm a MSSQL guy and Oracle is still a bit mysterious to me.  I'm looking for some assistance tracking down the application in an environment which is responsible for particular inserts.
    For example, suppose I have 10 different programs running and inserting values to a DB.  I need to know which one of them inserts a "0" in a particular column.
    I found a trigger which will tell me the user, unfortunately these programs use a shared credential so that doesn't help me.... here's what I've got:
    CREATE OR REPLACE TRIGGER check_for_zero_insert
    AFTER INSERT
      ON DATA_TABLE_0001
      FOR EACH ROW
    DECLARE
      v_username varchar2(10);
    BEGIN
      -- Find username of person performing the INSERT into the table
      SELECT user INTO v_username
      FROM dual;
      -- Insert record into audit table
      INSERT INTO audit_table
      ( samplevalue
      sampletime,
      username )
      VALUES
      ( :sampletime,
      :samplevalue
       v_username );
    END;
    But again, username won't help me, I need the originating process if at all possible (either an executable name, PID, or something to identify the specific application on the other side.)

    use this in your trigger
    select sys_context('USERENV','OS_USER') ||'-' ||user  into v_username from dual;
    You might need to increase the v_username data type length.
    Thanks,
    GPU

  • Error during install " specify system property "is.debug" for more information."

    I am trying to install Livecycle Reader Extensions onto a Unix box and the setup.sh is giving the following error when I try to invoke it.
    "An unhandled error occurred -- specify system property "is.debug" for more information."
    Anyone know how to set the is.debug property?
    Sorry i'm not to familiar with the unix env.

    Andrew,
    can you provide more information on the following?
    - variant of Unix
    - java version installed
    - reader extensions version
    - application server enviornment intended (WAS, Weblogic, JBOSS?)
    Thanks
    David
    www.ensemble.com

  • Enable debug for pl/sql

    i want to enable the debug for pl/sql . and also the debug output stored in "FND_LOG_MESSAGES" table

    i want to enable the debug for pl/sql . Please see these docs.
    Debugging PL/SQL Programs Using DBMS_OUTPUT [ID 1005663.6]
    What Tools can be Used to Debug PL/SQL Program Units on the Database [ID 566668.1]
    How To Debug a PL/SQL Package Using JDeveloper [ID 300252.1]
    How To Obtain PL/SQL Object Information Regarding Debugging and Compilation [ID 793492.1]
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
    and also the debug output stored in "FND_LOG_MESSAGES" table11.5.10/12: How To Enable and Retrieve FND Debug Log File Messages for Oracle iStore? [ID 789172.1]
    How to Obtain Debug Log in R12 [ID 787727.1]
    (Pics) How Can Trace and Debug Be Turned On For A Concurrent Request? [ID 759389.1]
    Thanks,
    Hussein

  • Debug for JNLP Programming

    Hi,
    Is it possible to debug a program after it deployed through java web start.
    I have the source code in eclipse, and i deploye it through java web start. if a user click a button through webstart application, can i have debug for it in my eclipse source code?
    this is not only for eclipse, let it at any tools (net beans, etc...)

    You might be able to set up a Webstart runtime in Eclipse... maybe you should ask at an Eclipse forum.

  • How to do debugging for a batch job?

    Hi Colleague,
    I created a batch job via t-code sm36 in SAP GUI, and added a report to this batch job, there is no problem to run this report directly, but fails to run the batch job. How can I do debugging for this batch job?
    Kind Regards
    Andie

    Hi Arun VS,
    Now I can do debugging, when I invoke the following standard function module, there is a dialog box popped up for doing security check. How can I prevent it from being popped up in a batch job?
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = lv_full_path
          filetype                = 'ASC'
          codepage                = lv_codepage
          write_bom               = ip_bom
        IMPORTING
          filelength              = lv_file_length
        TABLES
          data_tab                = gt_xml
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
    Kind Regards
    Andie

Maybe you are looking for

  • Preview no longer opening images or pdfs. Can anyone help?

    I recently got a Wacom Bamboo Fun and while the pad works great I installed some of the accompanying software chief among them Adobe Photoshop Elements 8. This software not only failed to open anything itself it kept asking for a password to open PDF

  • Problem Using wlserver task in ant file

    I am trying to create a weblogic domain using the following in my ant file: <target name="new-server"> <mkdir dir="/opt/deployment/domains" /> <wlserver dir="/opt/deployment/domains" beahome="/opt/bea" domainname="SandboxDomain" servername="AdminServ

  • Trying to import messages to mail, with mixed results...

    I have a new laptop, so I'm trying to transfer the Archive folder in Mail (on my old laptop) to the new laptop. Both are running the latest versions of Mountain Lion. There are 20,000 messages in the Archive. But when I export it, and then import on

  • Wanting to retrieve ONLY A FEW photos from itunes backup without restoring entire backup, is this possible?

    I have a few photos on my latest backup to my computer through itunes that i would like to retrieve. I know its there as the latest backup was a month ago and i had these photos a month ago. I want to be able to recover them without having to restore

  • When we save Po, it always display hold or edit button?

    Hi experts Now we create return Po doc type and create return Po . But when we save it, if it has warning message, it will pop the save screen, but the buttons are hold, edit, and cancel. So If I click hold, it will create PO but staus as hold. We ca