Unable to abort from a mapping

Hi All,
We need to abort processing within our mapping upon meeting a certain condition. We have tried WB_ABORT and functions with RAISE_APPLICATION_ERROR. But the mapping runs to completion with errors and inserts all other rows into the target table. The mapping doesn't abort, but the audit records do show the error message raised in the above function.
The abort is necessary at the row where the error occurs, so the mapping can be re-run from that point after fixing the problem.
The mappings use sorter and expression operators and a splitter and run in row-based mode with bulk-processing set to false.
Any input is highly appreciated.
Thanks,
Aravind

Nikolai,
Thanks for the tip. Regarding the same problem.. Max. no. of errors is set to 1. The errors are not database related.
For Eg: Assume there are 10 rows in the source table. If the 5th row doesn't meet a particular condition, we want the mapping to abort at this stage. So we use a splitter to identify this row and call a function to raise an error. We see the error in the audit log, but rows 6 to 10 get processed as well and end up in the target table.
We tried this in a simple mapping. The mapping aborts at row 5.
source-> splitter -> target/error function.
Mapping completion status - Completed with errors.
Next we tried using this logic in our mapping, it doesn't abort.
source-> filter -> expression/functions-->sorter-->expression/function --> splitter --> target/error function.
Mapping completion status - Completed with warnings.
Why didn't it error out here?
Thanks,
Chethan

Similar Messages

  • Java.io.IOException: unable to find the type mapping resource file

    Hi,
    I am using weblogic7.0 to deploy my applications. I wrote a web service and
    was able to deploy it sucessfully. I am trying to access the web service through
    a jsp page. I am the error posted below on my server and " error:505 internal
    server error" on the browser. Can any one please help me out with the problem.
    My jsp page just displays the float value i am returing from the session bean
    method.
    Thanks,
    Ramya.
    <Apr 14, 2003 4:32:51 PM PDT> <Error> <HTTP> <101019> <[ServletContext(id=64204
    55,name=bankwebapp,context-path=/bankwebapp)] Servlet failed with IOException
    java.io.IOException: unable to find the type mapping resource file for:bank.Ban
    kService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149400> <Activatin
    g application: appsdirbankwebapp_war>
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149404> <Activate
    application appsdirbankwebapp_war on myserver - Running>
    <Apr 14, 2003 4:41:01 PM PDT> <Notice> <Application Poller> <149404> <Activate
    application appsdirbankwebapp_war on myserver - Completed>
    The url value from the jsp page ishttp://localhost:7001
    The wsdl value from the jsp page ishttp://localhost:7001/web_services/BankServi
    ce
    <Apr 14, 2003 4:41:06 PM PDT> <Error> <HTTP> <101019> <[ServletContext(id=72463
    20,name=bankwebapp,context-path=/bankwebapp)] Servlet failed with IOException
    java.io.IOException: unable to find the type mapping resource file for:bank.Ban
    kService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

    Hi Manoj,
    Thanks a lot for your hepl. I tried as you said and its working now.
    Ramya
    "manoj cheenath" <[email protected]> wrote:
    Make sure that you put the client jar file generated by
    clientgen in the lib directory of the jsp web app.
    It looks like the runtime is unable to load
    <service>.xml type mapping file. This xml file
    should be in the classpath (web-inf/lib or
    web-inf/classes).
    -manoj
    "Ramya" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am using weblogic7.0 to deploy my applications. I wrote a web serviceand
    was able to deploy it sucessfully. I am trying to access the web servicethrough
    a jsp page. I am the error posted below on my server and " error:505internal
    server error" on the browser. Can any one please help me out with theproblem.
    My jsp page just displays the float value i am returing from the sessionbean
    method.
    Thanks,
    Ramya.
    <Apr 14, 2003 4:32:51 PM PDT> <Error> <HTTP> <101019><[ServletContext(id=64204
    55,name=bankwebapp,context-path=/bankwebapp)] Servlet failed withIOException
    java.io.IOException: unable to find the type mapping resource filefor:bank.Ban
    kService
    atweblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    atweblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    atweblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    atweblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149400><Activatin
    g application: appsdirbankwebapp_war>
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149404><Activate
    application appsdirbankwebapp_war on myserver - Running>
    <Apr 14, 2003 4:41:01 PM PDT> <Notice> <Application Poller> <149404><Activate
    application appsdirbankwebapp_war on myserver - Completed>
    The url value from the jsp page ishttp://localhost:7001
    The wsdl value from the jsp page
    ishttp://localhost:7001/web_services/BankServi
    ce
    <Apr 14, 2003 4:41:06 PM PDT> <Error> <HTTP> <101019><[ServletContext(id=72463
    20,name=bankwebapp,context-path=/bankwebapp)] Servlet failed withIOException
    java.io.IOException: unable to find the type mapping resource filefor:bank.Ban
    kService
    atweblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    atweblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    atweblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    atweblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

  • Unable to Find the Type Mapping Resource File (Two web services)

    Hello,
    I am using BEA weblogic 7.0 to deploy my applications. I have a web service and was able to deploy it sucessfully. I am trying to access this web service from another web service previously succesfully deployed too. When I call the second one, I have the next problem:
    java.io.IOException: unable to find the type mapping resource file for:tuoprec.sinsesion.TuOPRecService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegistry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at tuoprec.sinsesion.TuOPRecService_Impl.<init>(TuOPRecService_Impl.java
    I put the client jar file (2nd web service) obtained from the <clientgen> in the class path of the ear file (1st web service), but I have the same error.
    Can anybody help me?,
    jose luis

    Hello,
    I am using BEA weblogic 7.0 to deploy my applications. I have a web service and was able to deploy it sucessfully. I am trying to access this web service from another web service previously succesfully deployed too. When I call the second one, I have the next problem:
    java.io.IOException: unable to find the type mapping resource file for:tuoprec.sinsesion.TuOPRecService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegistry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at tuoprec.sinsesion.TuOPRecService_Impl.<init>(TuOPRecService_Impl.java
    I put the client jar file (2nd web service) obtained from the <clientgen> in the class path of the ear file (1st web service), but I have the same error.
    Can anybody help me?,
    jose luis

  • Reading files from a mapped drive

    Hello,
    I am trying to pull image files off of a network share in Oracle Forms.
    Everytime I do this, I get error FRM-47109 Cannot locate image file..... i
    have tried accessing this drive with 2 methods:
    1. Button trigger calls with READ_IMAGE_FILE(:datablock.imagelocation ||
    :datablock.filename || '.tif', 'ANY', BLOCK7.IMAGE_ITEM);
    2. Button trigger calls with READ_IMAGE_FILE('\\server\images\'
    ||:CRASH_IMAGES.folder || '\' || :crash_images.docno ||'.tif',
    'ANY', 'BLOCK7.IMAGE_ITEM');
    Both of these calls work on the development side where the T:\ drive is mapped.
    When the form is put on the production server with the same T:\ drive mapping,
    the image is unable to be located.
    I have also found Microsoft article Q122702, which explains how network shares
    are distributed to services. I have edited the registry key
    RestrictNullSessAccess to a value of 0, and remapped the drive using: NET USE
    T: \\server\images /user:Administrator password.
    None of this has worked for me so far, and I have been informed of possible
    issues with forms and mapped network drives. Has anyone seen this before or know of a fix?
    Thanks,
    Jordan

    I'm not too familiar with Windows user accounts.
    I'm having this problem of not being able to read files from a mapped drive.
    Using 10.1.2 Forms Service on a XP machine.
    How do i check to see which user is running the forms service and/or how do I change the settings a user has access to?
    Check in server-info and User/Group: #-1(1)/1, what the heck??
    Thanks.

  • Unable to select the operation mapping in Enhanced RD?

    Hi Guys,
    I am unable to select the operation mapping in the Enhanced Receiver determination in PI 7.1.  Looks like a bug in PI 7.1.  Did anybody else faced the same problem and got any resolution.
    any help would be appreciated
    Thanks,
    Srini

    Looks like a bug in PI 7.1
    Not a Bug but it seems to be a restriction......have a read of the below help section:
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/45/94467db1746003e10000000a1553f6/content.htm
    From above help section:
    During the definition of the interface mapping, you assign the abstract service interface ReceiverDetermination as the target
    interface. The service interface ReceiverDetermination is in the Enterprise Services Repository in the software component SAP
    BASIS (namespace http://sap.com/xi/XI/System).
    You will notice the same behavior when you try to select the Operation Mapping in Extended RD....click on the input help....pop-window will appear....what are the source and target SI that you see?
    Regards,
    Abhishek.

  • Unable to refresh from profile

    When I attempt to connect a Solaris 10 Update 4 client to my Sun iPlanet Directory Server 5.2 LDAP server, using the following configuration:
    NS_LDAP_FILE_VERSION= 2.0
    NS_LDAP_SERVERS= 172.16.20.200
    NS_LDAP_SEARCH_BASEDN= ou=SciDevGrid,dc=c-noofs.gc.ca
    NS_LDAP_AUTH= simple;sasl/DIGEST-MD5
    NS_LDAP_SEARCH_REF= FALSE
    NS_LDAP_SEARCH_SCOPE= sub
    NS_LDAP_SEARCH_TIME= 15
    NS_LDAP_CACHETTL= 86400
    NS_LDAP_PROFILE= SciDevGrid
    NS_LDAP_CREDENTIAL_LEVEL= proxy
    NS_LDAP_SERVICE_SEARCH_DESC= passwd:ou=People,ou=Default,dc=c-noofs.gc.ca
    NS_LDAP_SERVICE_SEARCH_DESC= group:ou=group,ou=Default,dc=c-noofs.gc.ca
    NS_LDAP_BIND_TIME= 10
    It works fine, and all information the client needs from the server is fully accessible. I can log in as an LDAP user, and the hosts table and automounter are updated properly. However, I receive this error message in the messages log when ldap_cachemgr tries to update the profile:
    Aug 26 11:32:57 CNOOFS01 ldap_cachemgr[21216]: [ID 722288 daemon.error] Error: Unable to refresh from profile:SciDevGrid. (error=2)
    The cachemgr log file (/var/ldap/cachemgr.log) shows:
    Tue Aug 26 11:32:57.7150 Starting ldap_cachemgr, logfile /var/ldap/cachemgr.log
    Tue Aug 26 11:32:57.7262 sig_ok_to_exit(): parent exiting...
    Tue Aug 26 11:32:57.7344 Error: Unable to refresh from profile SciDevGrid (error=2)
    Tue Aug 26 11:32:57.7344 Error: Unable to update from profile
    The SciDevGrid profile in the LDAP server (cn=SciDevGrid,ou=profile,dc=c-noofs.gc.ca) has the following configuration:
    (the passwd and group ou's are inherited from the default profile via serviceSearchDescriptor entries)
    cn = SciDevGrid
    authenticationMethod = simple;sasl/DIGEST-MD5
    bindTimeLimit = 10
    credentialLevel = proxy
    defaultSearchBase = ou=SciDevGrid,dc=c-noofs.gc.ca
    defaultSearchScope = sub
    defaultServerList = 172.16.20.200
    followReferrals = false
    objectClass = DUAConfigProfile
    objectClass = top
    profileTTL = 86400
    searchTimeLimit = 15
    serviceSearchDescriptor = passwd:ou=People,ou=Default,dc=c-noofs.gc.ca
    serviceSearchDescriptor = group:ou=group,ou=Default,dc=c-noofs.gc.ca
    If I go into the LDAP server and modify the SciDevGrid profile to give defaultSearchBase the value "dc=c-noofs.gc.ca", the cachemgr error messages will stop. That leads me to believe this is a configuration problem. Has anyone run across this problem before?
    Basically, what I am trying to achieve is a "default" profile which contains users and groups which apply to all LDAP-connected machines. Other profiles will inherit these attributes from the default profile, while providing additional configuration (automount maps and host table) specific to each compute grid we have.
    Thanks in advance for any advice you can provide,
    Adam Lundrigan
    UNIX SysAdmin, C-NOOFS project
    Biological and Physical Oceanography Section, Science Branch
    Department of Fisheries and Oceans Canada
    [email protected]
    Edited by: C-NOOFS on 27-Aug-2008 9:48 AM

    I am having the same issue. Does anybody can help?

  • UCS Unable to boot from SAN

    I have some blades that I'm unable to boot from SAN.  The weird thing is I can see the LUN's and I can install ESXi 5.5 fine.  It's up until I reboot and the blades just boot to the BIOS because they don't see any disk.  When I try to change boot order, the only thing I can boot to is UEFI.  

    When you see your lun, and can install ESXi, it means, that
    - your zoning is correct
    - your lun masking / mapping is correct
    If boot fails, your boot policy is the problem ! are you sure, that the target pwwn points to the controller of the disksubsystem, that the lun nr. is correct ? we seen all kind of weird things, like cable crossed,.....

  • Unable to call from my skype out account

    Hi!
            Iam unable to call from my skype out account to india, but i can able to call skype to skype users.pls advice.otherwise pls advice how to cancel the membership and get my money back.
    Regards
    Rajan

    Contact your carrier.

  • Unable to facetime from my iphone to my imac at home?

    unable to facetime from my iphone to my imac at home. 

    Hi smokesred,
    Welcome to the Support Communities!
    The article below may be able to help you with both of your issues.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    - Judy

  • I am unable to print from my ipod to HP5510 which is listed as one of Apple's Airprinters

    I  am unable to print from my ipod to HP5510 which is listed in Apple's list of recognised Airprinters

    Start up in safe mode
    http://support.apple.com/kb/PH4373   <<< click here.
    Restore your computer’s software
    http://support.apple.com/kb/PH3840   <<< click here.
    http://www.apple.com/buy/locator/   <<< click here.

  • I am unable to login from my login page after I restarted my mini mac running snow leopard 10.6 server. I am a new user. Need help

    I am unable to login from my login page after I restarted my mini mac running snow leopard 10.6 server. I am a new user. Need help

    Try clearing your cache, [https://support.mozilla.org/en-US/kb/How to clear the cache Instructions here]. Then, try going to [https://accounts.google.com Google Accounts]. If there is currently an account singed in, sign out, then back in. After that, try going to Google Adwords.

  • HT4356 unable to print from my ipad mini

    unable to print from ipad1 or ipad mini.  tried all suggestions in support.  This problem has been highlighted before is there a a problem with an software upgrade.  I have hp 5510 that works fine fromPC.

    I rebooted my BT router,  Switched printer off and on, Checked printer on same wifi as router.  closed ipad wifi to forget this network and reselected. 
    Printer worked OK on my ipad1 up until a few months ago it has never worked on my new ipad mini.  works from my PC.

  • Getting values from a Map

    Hi,
    I would like to get values from a Map. This is my Map
    courrierId659 = [Ljava.lang.String;@7e6f03,
    nomModele = [Ljava.lang.String;@aa594b,
    navigation = [Ljava.lang.String;@1cc67fd,
    dateImpression = [Ljava.lang.String;@bf2fa9,
    nomGestionnaire = [Ljava.lang.String;@1d2279c,
    courrierId650 = [Ljava.lang.String;@64635b,
    selection = [Ljava.lang.String;@1a93ff1
    I want to get all the values whose keys start with courrierId, is possible to get these values in a effective way? or I have to iterate through the Map?
    Thank you in advance

    elsymenab wrote:
    I want to get all the values whose keys start with courrierId, is possible to get these values in a effective way?Yes. Loop through the keys, and where the key meets your criteria, get the value.
    or I have to iterate through the Map?That sounds pretty effective to me.
    ~

  • Why am I unable to update from firefox 4.0.1 on mac osX 10.6.8 when my Mac meets the requirements?

    I have a Mac OSX (10.6.8) with an 2.8 GHz Intel Core i7 Processor, 16GB 1067 MHz DDR3 memory and 2TB hard drive.
    Yet I am unable to upgrade from FireFox version 4.0.1
    I can no longer access my YouTube account, and other websites, because I am told the FireFox version I am running is not compatible.
    Why am I unable to upgrade to the latest version of FireFox?
    Do you just not want Mac owners to run your browser? It seems this is the case as this has been an ongoing issue that should have been resolved already.

    Firefox 4 versions and later '''do not run on a PowerPC Mac''' and require at least OS X 10.5 and '''an Intel Mac'''.
    [http://www.mozilla.org/en-US/firefox/10.0.2/system-requirements/ Firefox 10.0.2 System Requirements]
    The latest version for your ppc mac is 3.6.27 you can download from here:
    http://www.mozilla.org/en-US/firefox/all-older.html
    [http://www.mozilla.org/en-US/firefox/3.6/system-requirements/ Firefox 3.6 System Requirements]
    1. Download a new copy of the Firefox program(3.6.27) from the above link
    2. Trash the current Firefox application to do a clean (re-)install.
    3. Install the new version that you have downloaded(3.6.27).
    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 or other personal data.
    see also: [https://support.mozilla.org/en-US/kb/Installing%20Firefox%20on%20Mac Installing Firefox on Mac]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How do you fix 'unable to upgrade from version 0'?

    I have been working on 6 ibooks over the past year, documenting a lot of stuff for user manuals for our school. The ibooks were all created in iBA version 1.0, but are not published - we only use them internally so we just use the previews.
    I gave up trying to upgrade my 1.0 iBooks, it takes too long to 'optimize' the files when I try to open them in 2.0. I have read all the issues with iBA 2.0, but decided to download 2.0 on another computer and wabt to try to re-write all my old 1.0 manuals (I have all the files that went into them).
    However, when I double-click to open the 2.0, nothing happens. So I go to 'File' and select 'New from Template Chooser'. I then get the window with all the new templates, including the portrait ones. When I select any template, say the 5th one for example, I get the prompt "The document 'Textbook 05.ibatemplate' could not be upgraded. Unable to upgrade from version 0". This happens for every template. I don't understand. I downloaded the 2.0 from the app store onto a 'clean' computer. Yes, it has Lion on it and all the spec requirements to run iBA. Can anyone help me with what to do next?

    Did you ask Apple for help yet?
    [email protected]
    …support phone number call +1 (877) 206-2092.
    Global Phone Support
    We have expanded English-language publisher phone support. To make contacting the iBookstore support even easier, new local phone numbers are now available for Australia, France, Germany, Italy, Netherlands, Spain, and the U.K. Support is available Monday to Friday, from 7 a.m. to 5 p.m. (PT).
    Country
    Phone Number
    Australia
    1300 307 504
    Note that this is a low tariff number.
    France
    0805 540 117
    Germany
    0800 664 5307
    Italy
    800 915 902
    Netherlands
    0800 0201 578
    Spain
    900 812 687
    U.K.
    0800 975 0615
    U.S.
    +1 (877) 206-2092
    Toll-free from U.S. and Canada.

Maybe you are looking for

  • Report.vi gives no timestamp for acquired data

    I am using LabVIEW 8.6 with the report generation toolkit and Report.vi (express vi). If I wire a simulated signal (again express vi) and generate a report (I'm using excel reports, but it's the same for an html), it gives a table with the time and v

  • How do i move photos to external hard drive for use with iphoto 11

    My hard drive is full.  I have a Lacie 3 TB external formatted for Mac Journaled.  I want to keep my photos and other iPhoto 11 media on the external.  Should I just move the iPhoto library to the external or some other way?  For iTunes, I moved the

  • Selection screen on moudle programming

    The business needs selection parameter for select options to an existing module program. All the functionalities for a select-option in selection screen should be available. I know that we can have normal selection screen 1000 and then call the relav

  • OSB: Invoking multiple endpoint URIs or business service at same time

    Hi All, I want to route the request to two end point URIs or business services using OSB. Say for example, I have a BPEL which is deployed in two servers. Using this solution I have to invoke the deployed service in both servers as soon as I receive

  • Programatically Create Aggregations

    I'm using the AnalysisServices .NET library to programatically create new AggregationDesign objects. I build my design by adding the dimensions and attributes and setting the EstimatedCount. Most of the time this works but some times when I run: Aggr