Issues with SBO 2005 form load which has been created using  XML

Am converting SBO 2004A addon into SBO 2005 addon, am loading a wizard form (wizard.xml)using following code.
   Dim oXMLDoc As MSXML2.DOMDocument
    Dim sXMLString As String
    Set oXMLDoc = New MSXML2.DOMDocument
    oXMLDoc.Load (App.Path & "FILESWizard2.xml")
    Dim strXml As String
    strXml = oXMLDoc.xml
    mobjSBOApplication.LoadBatchActions strXml
But when we runs above code in SBO 2005, LoadBatchActions display error "Invalid Form - Item" "3006".
It seems there are some change in the UI for the loadBatchActions to read the XML file.
Would appreciate if you could advise on the same urgently.

Hi Adele,
Thanks for your reply.
But this is the error comes with LoadBatchActions method of application object. I have check the same in debug mode but this is not item event error because i followed the loading event in form but action does not move ahead after the LoadBatchActions..
I have also written GetLastBatchResults just below the LoadBatchActions and the same shows the below error message.
<?xml version=""1.0"" encoding=""UTF-16""?><result><errors><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""3006"" descr=""<b>Form - Invalid Form Item""/><error descr=""Could not recover from previous errors""/</b>></errors></result>"
but the same is working perfectly ok with 2004A.. would appreciate if you could advise on the same.

Similar Messages

  • Impdp specific schema from dump which has been created using full=y

    Hi,
    I have received a dump (expdp) which has been created using the parameter FULL=Y. I just want to import (impdp) only one schema into my database. I have used remap_schema and exclude=grants. The schema i want to import is carried out successfully, but in my import log i keep getting the messages such as :
    ORA-31684: Object type TABLESPACE:"TS_BCST1" already exists
    ORA-31684: Object type USER:"OUTLN" already exists
    ORA-31684: Object type SEQUENCE:"SYSTEM"."MVIEW$_ADVSEQ_GENERIC" already exists
    How can i use impdp only to import objects under my specific schema and not have impdp attempt to create system/sys users and its objects, create tablespaces, etc etc.
    Kindly assist.
    Regards,
    Karan

    Use SCHEMAS parameter in the impdp command to import the scpecific schema.
    Eg.
    impdp system/password schemas=user1 remap_schema=user1:user2 directory=dir dumpfile=user1.dmp...........
    You can specify list of schemas you want to import with , (comma) saperated in the SCHEMAS parameter.

  • How to include Search Help which has been created using SE11

    Hi all,
    I have created the custom search help in SE11. What is the way to include it in my code? Thanks in advance.

    Hi Mil,
    There are different ways of using the search help created by SE11 depending on the kind of application you are using.
    1. Search help can be attached to a <i><b>DATA ELEMENT</b></i> under the tab <i><b>FURTHER CHARACTERISTICS</b></i>.
    Now wherever this data element will be used, automatically the search help will be available on the output screen. e.g. in selection screen using parameters statement etc.
    <i>PARAMETERS: P_VAL1 TYPE Z_DATAELE.</i>
    2. Search help can be also attached to <i> database table fields</i> directly in the tab <i>Entry help/check</i>. Now wherever this database table field is used e.g. in SELECT-OPTIONS statment, the search help will be automatically available on output selection screen.
    3. Also, search helps can be directly used in the programs using function modules and event.
    <i><b>PROCESS ON VALUE-REQUEST.
      FIELD <f> MODULE <mod>.</b></i>
    Here in the module, you can use following function module for fetching the search help on the screen.
    <i><b>F4IF_FIELD_VALUE_REQUEST</b></i>
    4. Search help can be direclty attached to the selection screen statements like SELECT-OPTIONS using MATCHCODE object extension
    <i><b>SELECT-OPTIONS: LP_STATS  FOR TJ30-ESTAT MATCHCODE OBJECT ZH_TJ30 NO-EXTENSION NO INTERVALS.</b></i>
    Hope this sort out your issue.
    PS If the answer solves your query, plz close the thread by rewarding each reply.
    Regards
    Message was edited by:
            Sapna Modi

  • How do I change template designs once a form has been created using another template design?

    How do I change template designs once a form has been created using another template design?

    I talked to a service Representative and he told me there isn't a function to change a form using one template to a different template. For example, I used template for "Accommodation registration" and wanted to change it to "admissions application." I was hoping I could just select a "Change template" rather than having to copy/paste everything to the new template. But that's what i had to do. Maybe the next version of this software will make it easier to change design templates.

  • Adobe X Standard cannot load/create EuroRoman.ttf font after file has been created using AutoCAD LT 2015. File was loaded and refereneced with Distiller X. Font has been installed to Win7

    Need suggestion on how to get Adobe X to create/load the font. Others in the office can create the same Adobe file with no issues. Help please.

    You have the required Xorg drivers and those errors appear to be expected (https://www.virtualbox.org/ticket/4789). As a matter of fact, Xorg is terminating successfully. Just to make sure, is your ~/.xinitrc setup correctly?

  • Using a Circle object which has been created outside a Group

    Hi all!
    I have one trouble:
    I create a Circle object outside a Group object.
    I trying to use th Circle in the Group and I have got compilation error.
    It's my code:
    * testfx.fx
    * Created on 24.03.2009, 21:19:00
    package testfx;
    import javafx.scene.effect.*;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.*;
    import javafx.scene.text.*;
    import javafx.scene.control.*;
    import javafx.scene.transform.*;
    import javafx.stage.Stage;
    var MyCircle : Circle = Circle{
        centerX: 200
        centerY: 200
        radius: 15
        fill: Color.BLUE
    function run(){
        Stage {
            title: "Button"
            width:400
            height:400
            scene: Scene{
                fill: Color.BLACK
                content:[
                    Group{
                        content:[
                            Rectangle{
                                x: 125
                                y: 175
                                width: 150
                                height: 50
                                arcHeight: 5
                                arcWidth: 5
                                stroke: Color.GRAY
                                fill: LinearGradient{
                                    startX: 0.0
                                    startY: 0.0
                                    endX: 0.0
                                    endY: 1.0
                                    proportional: true
                                    stops:[
                                        Stop{offset: 0.0 color: Color.WHITE},
                                        Stop{offset: 1.0 color: Color.BLACK}
                            MyCircle                           <------- (SIC!)    
                        effect: Reflection{
                            fraction: 1.0
                            topOffset: 3
                            topOpacity: 0.8
                            bottomOpacity: 0.2
    }My error:
    Note: The following error is an internal error in the OpenJFX compiler (1.1.0).
    Please file a bug at the Openjfx-compiler issues home (https://openjfx-compiler.dev.java.net/Issues) after checking for duplicates. Include the following diagnostic in your report and, if possible, the source code which triggered this problem. Thank you.
    Where is my mistake here?
    I'm sorry for my English, I have not enough knowledge in it at the moment.
    //Best regards!
    //Alexander

    Try this:
    package testfx;
    import javafx.scene.effect.*;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.*;
    import javafx.stage.Stage;
    var myCircle : Circle = Circle{
    centerX: 200
    centerY: 200
    radius: 15
    fill: Color.BLUE
    Stage {
    title: "Button"
    width:400
    height:400
    scene: Scene{
    fill: Color.BLACK
    content:[
    Group{
    content:[
    Rectangle{
    x: 125
    y: 175
    width: 150
    height: 50
    arcHeight: 5
    arcWidth: 5
    stroke: Color.GRAY
    fill: LinearGradient{
    startX: 0.0
    startY: 0.0
    endX: 0.0
    endY: 1.0
    proportional: true
    stops:[
    Stop{offset: 0.0 color: Color.WHITE},
    Stop{offset: 1.0 color: Color.BLACK}
    myCircle
    effect: Reflection{
    fraction: 1.0
    topOffset: 3
    topOpacity: 0.8
    bottomOpacity: 0.2
    By the way, you could define the Circle inline, like this:
    package testfx;
    import javafx.scene.effect.*;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.*;
    import javafx.stage.Stage;
    Stage {
    title: "Button"
    width:400
    height:400
    scene: Scene{
    fill: Color.BLACK
    content:[
    Group{
    content:[
    Rectangle{
    x: 125
    y: 175
    width: 150
    height: 50
    arcHeight: 5
    arcWidth: 5
    stroke: Color.GRAY
    fill: LinearGradient{
    startX: 0.0
    startY: 0.0
    endX: 0.0
    endY: 1.0
    proportional: true
    stops: [
    Stop{
    offset: 0.0
    color: Color.WHITE
    Stop{
    offset: 1.0
    color: Color.BLACK
    Circle{
    centerX: 200
    centerY: 200
    radius: 15
    fill: Color.BLUE
    effect: Reflection{
    fraction: 1.0
    topOffset: 3
    topOpacity: 0.8
    bottomOpacity: 0.2
    Thanks,
    Jim Weaver
    JavaFXpert.com (Learn JavaFX blog)
    Edited by: JimWeaver on Mar 25, 2009 1:15 PM
    Edited by: JimWeaver on Mar 25, 2009 1:17 PM

  • How do I insert additional text into a form after it has been created? - Acrobat Pro XI

    I am trying to add additional text and fields into the middle of a form I have previously created.  I can copy and paste the information in there but it does not shift the lines below it down.  Is there any easy way to accomplish this without having to recreate the entire form?
    I appreciate any help I can get.
    ~Shannon

    If you need to make such changes to the layout of the form, you should go back to the source document, edit it, and generate a new PDF. You can then replace the pages of the old document with the new pages. Any fields that you've already added will be retained and can be move to their new positions and you can add any new ones you need.

  • I cannot open a file *.pages which has been created few days ago

    Hi All,
    2 weeks ago I created a document with extension *.pages. I sent it to my private email box and today I downloaded it.
    When I am trying to open it, it gives me an error that this file cannot be opened.
    What happened?
    How I can open this file?
    Thanks in advance
    Alex

    what error do you get?

  • What is the significance of the new feature in discussion forum as Kudos, solved and other which has been started?

    hi,
    I just want to know what to do with kudos and other features which has been started recently on discussion forums.
    Why they have been started and how it helps in getting the solution of that query with which someone starts the post.
    Thanks & Regards,
    Samriddh Sarbalhi
    Solved!
    Go to Solution.

    Duplicate Post

  • Sync issues with photos My iPhone 6 plus has 743 pictures...Itunes shows I have 2480 photos on my phone which is not true.

    Sync issues with photos My iPhone 6 plus has 743 pictures...Itunes shows I have 2480 photos on my phone which is not true.

    There are multiple reasons that lead to issue. You should read the troubleshooting guide to get the right solution to solve the issue: iPhone, iPad, or iPod touch not recognized in iTunes for Windows - Apple Support

  • I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck and will post the output. Please can someone help me with what it all means.Thanks in advance

    I have an early 2011 MacBook Pro which has been running slow for a while. After looking at responses to similar problems I have downloaded and run EtreCheck. Please can someone help me with what it all means.
    Thanks in advance.
    EtreCheck version: 1.9.15 (52)
    Report generated 19 September 2014 08:07:14 GMT+8
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:4:29
    Disk Information: ?
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (147 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.4 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.4 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.4 - SDK 10.4) Support
      [loaded] com.sophos.kext.sav (9.1.55 - SDK 10.7) Support
      [loaded] com.sophos.nke.swi (9.1.50 - SDK 10.8) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.sophos.autoupdate.plist Support
      [running] com.sophos.configuration.plist Support
      [running] com.sophos.intercheck.plist Support
      [running] com.sophos.notification.plist Support
      [running] com.sophos.scan.plist Support
      [running] com.sophos.sxld.plist Support
      [running] com.sophos.webd.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    Launch Agents: ?
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [running] com.sophos.uiserver.plist Support
      [running] com.trusteer.rapport.rapportd.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.amazon.music.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Support
    User Login Items: ?
      iTunesHelper
      TomTomHOMERunner
      AdobeResourceSynchronizer
      Dropbox
    Internet Plug-ins: ?
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      DivX Web Player: Version: 3.2.1.977 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      EPPEX Plugin: Version: 10.0 Support
      Default Browser: Version: 537 - SDK 10.9
      OVSHelper: Version: 1.1 Support
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions: ?
      Ultimate
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Perian  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 297.29 GB Disk used: 160.38 GB
      Destinations:
      Data [Network] (Last used)
      Total size: 2 TB
      Total number of backups: 99
      Oldest backup: 2012-04-20 17:05:32 +0000
      Last backup: 2014-09-18 23:49:25 +0000
      Size of backup disk: Excellent
      Backup size 2 TB > (Disk size 297.29 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          6% InterCheck
          5% iCalExternalSync
          3% WindowServer
          2% CalendarAgent
          2% SystemUIServer
    Top Processes by Memory: ?
      152 MB SophosScanD
      147 MB InterCheck
      106 MB SophosAntiVirus
      66 MB Dropbox
      57 MB com.apple.iTunesLibraryService
    Virtual Memory Information: ?
      161 MB Free RAM
      1.55 GB Active RAM
      1.41 GB Inactive RAM
      902 MB Wired RAM
      611 MB Page-ins
      0 B Page-outs

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

  • Since I've installed Mountain Lion, I am having lock up issues with multiple programs. MS Outlook has crashed and I've lost all my folders. HELP?

    Since I've installed Mountain Lion, I am having lock up issues with multiple programs. MS Outlook has crashed and I've lost all my folders. HELP?

    okay I've finally been able to get tor and all the other programs to work according to my plan the only thing that's still making problems is that iptables doesn't work as I want it to, when I start chromium without proxy settings privoxy doesn't seem to forward the information to polipo.. do I need to add another rule to iptables.rules in order for the program to know it has to reroute the information again or how can I get this to work? and is there any way to run rtorrent with proxy support?
    anyway, problem 2 and 3 are still to be solved.
    and does anybody know where i can get a good dansguardian blacklist that was not designed for 6 year old children and for which I don't need to subscribe? I'm still getting these partypoker popups -.-
    //e: with iptables it's the same thing as described in the first post. https works, http doesnt. I get the output "Invalid header received from client." on http sites. still no idea why though.. (and the https-version of torcheck.xenubite says i'm tor unprotected while starting the browser with iptables)
    Last edited by deF291 (2011-04-23 16:16:31)

  • I need to get the logs of my iPhone 5. I'm a registered as a developer and I have an issue with one of my app which is already in the market

    I need to get the logs of my iPhone 5. I'm a registered as a developer and I have an issue with one of my app which is already in the market

    The Firefox 3.5.x branch has reached end-of-life and is no longer maintained.<br />
    You will no longer receive security updates.<br />
    You can update Firefox via "Help > Check for Updates" or download and install the latest Firefox 3.6.x.<br />
    Firefox 4 and later require at least OS X 10.5 and an Intel Mac.
    * http://www.mozilla.com/firefox/4.0/system-requirements/
    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • Issue with filling out form fields in Safari?

    Hello,
    Has anyone noticed any issues with filling out form fields (specifically text boxes) in Safari 6.0.2 on Mac OS 10.8.2?  When I attempt to test forms I've created, there is a delay when typing values into text boxes.  Other types of input controls (check boxes, drop down lists, etc.) appear to work fine.  As far as I can tell, this only occurs with Safari 6.0.2 in Mac OS 10.8.2.  Prior versions of Safari do not have this issue, nor does Firefox in the same OS environment.  When I refresh the form, the delay is not as noticeable.  I'm searching the WebKit bug reports as well, but nothing seems to point to this issue.  Any hints would be greatly appreciated.

    From the menu bar, select
    Edit ▹ Substitutions
    and uncheck Text Replacement.

  • HT4623 i disconnected my iphone 4 while it was updating and now its frozen, the screen is showing a apple logo and a loading bar which has been for 9hrs now. please help

    i disconnected my iphone 4 while it was updating and now its frozen, the screen is showing a apple logo and a loading bar which has been for 9hrs now. please help

    It's not uncommon for it to not work the first time and sometimes, you have to try it a few times. Turn off your antivirus software and your firewall while you are trying to restore the iPad. Enable them again after you restore.
    If that still won't work, post back with detailed information as to what exactly does happen as you go through the process.

Maybe you are looking for