Upload maxdb  really needed? - Overflow when converting from 32768

hello,
I am facing with a run time error that does not make sense when uploading maxdb database. The error is:  "Overflow when converting from 32768".
I am following this configuration tutorial:
http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/17a790d8000064e10000000a1553f7/frameset.htm
Anyway, is there a need to upload this database? We installed netweaver mobile with SQL server database.
Help please.
Thanks.
Edited by: João Carneiro on Feb 8, 2011 2:10 PM

Hi,
Uploading MAXDB is not mandatory. It is needed only when multiple devices need to be installed with MAXDB through setup or software packages, which helps administrator to roll out multiple devices, so that end users will get all the necessary software to install the device.
Hope this clarifies your query.
Thanks and Regards,
Suma

Similar Messages

  • Overflow when converting from "3.60001e+11"

    Hi Guys,
    I'm Working with my PO using MIRO, I don't know why the error occurs. I've used the SAP Version 620 but end up with an error, then used Version 710 and successfuly created the transaction, but I'm stacked with version 620. I'm not allowed to transact it using the Version 710 that's why im looking for a patch or upgrade within 620 that i can use so that it can be solve.
    I'm in need of your help guys. I know there someone out there that can help me.
    THE ERROR
    Runtime Errors         CONVT_OVERFLOW                                              
    Exception              CX_SY_CONVERSION_OVERFLOW                                   
           Occurred on     03/28/2011 at 01:00:47                                                                               
    Overflow when converting from "3.60001e+11"                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLEINS" had to be terminated because one of the        
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    Error analysis                                                                               
    An exception occurred. This exception is dealt with in more detail below     
    . The exception, which is assigned to the class 'CX_SY_CONVERSION_OVERFLOW', 
    was neither                                                                 
    caught nor passed along using a RAISING clause, in the procedure             
    "DISTRIBUTE_ACC_ASSIGN_RE" "(FORM)"                                         
    Since the caller of the procedure could not have expected this exception     
    to occur, the running program was terminated.                               
    The reason for the exception is:                                             
    When attempting to convert the value "3.60001e+11",                          
    an overflow occurred.                                                        
    How to correct the error                                                                               
    The exception must either be prevented, caught within the procedure   
    "DISTRIBUTE_ACC_ASSIGN_RE"                                           
    "(FORM)", or declared in the procedure's RAISING clause.              
    To prevent the exception, note the following:                         
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.                                                                               
    You may able to find an interim solution to the problem               
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:

    I won't post here if i already got the answer in SAP notes. I've spent 3 days searching for the answer. The only answer i got is the upgrade but can't be consider. OSS notes didn't provide me any answer. Hope u can help me
    Edited by: docgon on Mar 30, 2011 2:38 AM

  • Overflow when converting from "1.64174e+11"

    Hi ,
    I am working on PS module and facing the above mentioned error.Whenever I am attching any material haveing value more than Rs 100000 the system gives "Overflow when converting from "1.64174e+11""
    The detailed error description is given below,
    Runtime Errors         CONVT_OVERFLOW
    Except.                CX_SY_CONVERSION_OVERFLOW
    Date and Time          24.11.2008 11:19:23
    Short dump has not been completely stored (too big)
    Short text
         Overflow when converting from "1.64174e+11"
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPFV45P" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
          caught in
         procedure "KALKULATIONSWERT_UEBERNEHMEN" "(FORM)", nor was it propagated by a
          RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         When attempting to convert the value "1.64174e+11", an overflow occurred.
    Missing RAISING Clause in Interface
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     8
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Trigger Location of Exception
         Program                                 SAPFV45P
         Include                                 FV45PF0K_KALKULATIONSWERT_UEBE
         Row                                     140
         Module type                             (FORM)
         Module Name                             KALKULATIONSWERT_UEBERNEHMEN
    Source Code Extract
    Line  SourceCde
      110       MTCOM-MATNR = VBAP-MATNR.
      111       MTCOM-BWTAR = VBAP-BWTAR.
      112       CALL FUNCTION 'MATERIAL_READ'
      113            EXPORTING
      114                 SCHLUESSEL    = MTCOM
      115            IMPORTING
      116                 MATDATEN      = MBEW
      117            EXCEPTIONS
      118                 ERROR_MESSAGE = 04
      119                 OTHERS        = 04.
      120       MOVE SY-SUBRC TO SAV_SUBRC.
      121     ENDIF.
      122
      123     IF T685A-KRECH = 'C'.
      124       IF SAV_SUBRC = 0 AND MBEW-PEINH NE 0.
      125         KOMV-KPEIN = MBEW-PEINH.
      126       ELSE.
      127         KOMV-KPEIN = 1.
      128       ENDIF.
      129 * Falls keine ET da, Zielmenge nehmen (Gut-/Lastschrift, Kontrakt ...)
      130       DATA: DA_MENGE LIKE VBAP-KWMENG.
      131       IF TVAP-ETERL EQ SPACE AND VBAP-KWMENG = 0.
      132         DA_MENGE               = VBAP-ZMENG.
      133       ELSE.
      134         DA_MENGE               = VBAP-KWMENG.
      135       ENDIF.
      136       IF DA_MENGE > 0.
      137         DA_WERT         =  DA_WERT  * KOMV-KPEIN * 1000
      138                          / DA_MENGE * VBAP-UMVKN / VBAP-UMVKZ.
      139       ENDIF.
    >>>>>       KOMV-KBETR      = DA_WERT.
      141     ELSEIF T685A-KRECH = 'B'.
      142       KOMV-KBETR      = DA_WERT.
      143     ELSE.
      144       KOMV-KWERT      = DA_WERT.
      145     ENDIF.
      146
      147     KOMV-WAERS         = DA_KALKO-FWAER.
      148     RV45A-KOEIN        = DA_KALKO-FWAER.
      149     KOMV-KMEIN         = VBAP-MEINS.
      150     PERFORM KOMV_PRUEFEN USING SPACE
      151                          CHANGING SY-SUBRC.
      152 * Nur für den ersten Lauf prüfen, ob Status gesetzt werden muß
      153     IF SAV_INDEX = 1.
      154       DA_SUBRC = SY-SUBRC.
      155     ENDIF.
    156     IF SY-SUBRC = 0.
    157       PERFORM KOMV_BEARBEITEN.
    158     ENDIF.
    159   ENDDO.
    Pl suggest.
    Rgds

    Hi,
    Try to declare your variable using Packed Number:
    DATA: va_num TYPE P DECIMALS 3.
    Hope this helps.
    Patrick

  • Overflow when converting from "1.09425e+11"

    Hi Everyone,
    this is an urgent issue, I have certains whose datatype is Packed decimal.
    For certain numerical calculations i.e to calculate the variable to the power of 30 and power of 365 it throws up this abap runtime error.
    All the variables have declared as packed decimal with 2 decimal places.
    How can I fix this issue. Can anyone help me please,
    Its really urgent.
    Thanks in advance,
    Prashant.

    Hey Guys,
    See As how u have suggested I have given the code but still it doesn't pop up a message based on the checkbox.
    I perform this only when a checkbox for year is pressed and based on this I have to pop up a message saying it is huge cannot be displayed and get back to the screen. how to I achieve this.
    Any help will of great use to me.
    if year = 'X'.
        CATCH SYSTEM-EXCEPTIONS COMPUTE_POW_RANGE = 1.
         a =  b ** 365.
        ENDCATCH.
        IF sy-subrc = 1.
            a = max_value.
         MESSAGE a001.
        ENDIF.

  • Overflow when converting from "2.42855e+009"(CX_SY_CONVERSION_OVERFLOW )

    Hi,
    when i try to Active Business content i am getting ABAP run time error CONVT_OVERFLOW   Exception             CX_SY_CONVERSION_OVERFLOW 
    Can some one help me how to resolve this problem?
    Thanks and Regards,
    Goutam

    Hi,
    Try to declare your variable using Packed Number:
    DATA: va_num TYPE P DECIMALS 3.
    Hope this helps.
    Patrick

  • Overflow when converting from "1.34654e+10" - SAPMMCP6

    Hi,
    I've had the following dump when I've executed the MC8D:
    I've read the note 93415 but cannot be implemented.
    How can i solve it?
    Thanks and best regards.
    Antonio

    Hi Sanjay,
    exactly! the problem here is while creation PO (sevice PO), in PO Qty field entered price and in price field entered Qty. .the serivce entrry is already done. while unreleasing system is multiplying GRN qty & PO price , it exceed 12 digits & giving runtime errro.
    now can you give any solution to unrelease the PO.

  • Overflow when converting from "1263.16"

    Hi All,
    I got an issue, where the prg is dumping. the subjected message is got in the dump. The scenario is as below. I am instructed not to change the type or length of the variables. Please let me know how to overcome the error.
    data: poc_f          TYPE mlst-fproz
            poc             LIKE evpoc-poc value '1263.16'.    
    MOVE poc TO poc_f.
    write: / poc_f.
    Thanks,
    Moorthy.

    Hi Ritesh
    It is definetely not possible to push larger amounts than the length.
    In your case MLST-FPROZ is of length 5 and decimals 2. The maximum value that you can push will be 999.99 whereas you were passing 1263.16 which is more than the permitted value.
    It can work if the scenario is as such:
    data: poc_f TYPE mlst-fproz
    poc LIKE evpoc-poc value <b>'126.16'.</b>
    MOVE poc TO poc_f.
    write: / poc_f.
    Hope this clarifies...
    Kind Regards
    Eswar

  • Overflow when converting error key: RFC_ERROR_SYSTEM_FAILURE

    Hi,
    When user tries to log his time through portal in "My time" iView, who has got over 400 different choices for worklists that he can log time against, certain choices always error out "Overflow when converting from 417 error key: RFC_ERROR_SYSTEM_FAILURE".
    Can anyone has any idea about this issue?
    Thanks in advance.
    Regards,
    Ravi.

    HI,
    This may be some data issue or issue in code. You can do one thing. After performing the application from portal if the error appears then in SAP Backend execute transaction ST22. It will show dump for that user. Then from the dump you can find out the Function module/ Program from where the dump is appearing. After that ask some ABAPer to check it. They will be able to help you.
    Thanks & Regards,
    Sandip Biswas

  • How do I maintain column formatting when converting from PDF to Excel?

    How do I maintain column formatting when converting from PDF to Excel? All info is no longer on the lines or in the columns they started out being in? Any help would be appreciated.

    Sara,
    Perhaps I am expecting too much from Adobe ExportPDF. The reason I subscribed to this service, for which I pay a yearly fee, was that I need a way to  convert scanned and digital documents to Word &/or Excel. I read the link you included but to be candid the more I tried to understand what was written the more confused I got. The process should not be this difficult. Currently I am using a NEAT scanner to create PDF documents of whatever I scan. After I changed the OCR setting on Adobe ExportPDF the output was much better but not to the point it was usable as it was. Information that appears to be lines and columns are sometimes not recognizing two columns and just putting them together in one. Obviously not usable. The other thing it does is bunch numbers that appear in a column that are just a bunch of numbers that I have no way of fixing. 
    Please let me speak to someone who can help me. Right now I not getting anything of value in my paid subscription.

  • Default PR Type when convert from Planned Order

    Hi all,
    How can I default my PR Type when convert from Planned Order after MRP run. This can done via MRP Group control but how to go about controlling via Planned Order profile?
    Which planned object type and planned order profile to be used? assuming that i need my planned to be output at LA type and convert to NB1 PR type instead of the default NB PR type?
    Thanks.
    Regards,
    Andrew

    Hi,
    The system determines the document type from the stettings u are making in "planned order Profile" in Customising for MRP. There u define the order type, the procurement key and the special procurement key and also the account assignment category. So based on the procurement key and the special procurement key maintained in the Marterial master, the document type is selected.
    Production > Materials Requirement Planning > Procurement Proposals > Planned Order > Define order profile
    Choose the planned order type - NB1 Within this you specify the P req doc type to be used.
    Through MRP group and the different PR document type for MRP generated PR is possible only if you assign the document type to MRP group in the MRP configuration.
    Please try and come back.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Aug 28, 2008 10:54 AM

  • Moving Scriptlet Code to backing bean when converting from JSP - Facelets

    Hello!
    We are converting our application from jsf1.2 to 2.0 and all jsps are being converted to XHTML. Some are trivial while others had very complex scriptlets.
    I would like to know what are some of the recommended ways of moving Scriptlet Code to backing bean when converting from JSP -> Facelets.
    I have thought about listeners, actionListeners, putting code getXXXX() of the backing bean and then calling #{bean.XXXX} but not sure whats the best way.
    I do appreciate the response!
    Eg of a jsp page:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="/WEB-INF/xxx-jsf.tld" prefix="l" %>
    <%@ taglib uri="/WEB-INF/yyy-pp.tld" prefix="p" %>
    <%@ page import="com.ttyy.search.beans.jsf.AdvancedSearchFormManagedBean" %>
    <%@ page import="com.kkee.util.*"%>
    <%
        AdvancedSearchFormManagedBean advancedSearchFormManagedBean = (AdvancedSearchFormManagedBean) request.getSession().getAttribute("AdvancedSearchFormManagedBean");
        if (advancedSearchFormManagedBean == null) {
           advancedSearchFormManagedBean = new AdvancedSearchFormManagedBean();
           request.getSession().setAttribute("AdvancedSearchFormManagedBean", advancedSearchFormManagedBean);
        advancedSearchFormManagedBean.initializeForAdvancedSearchOptions();
        advancedSearchFormManagedBean.setQuickSearch();
         request.setAttribute("portletHeader", "Hello " + advancedSearchFormManagedBean.getPerson().getFirstname() + ", check out the latest programs in your practice areas and jurisdictions");
    %>
    <h:form id="MYCenterForm">
         <p:portletRenderer portletSetName="test of portlet"
              portletContainer="#{PortletContainerManagedBean}"
              id="MYCenter"
              portletScope = "TEST_SCOPE"
              suppressIfNoData="true"
              portletSkinName="SOME_SKIN">
              <f:facet name="persistenceToolkit">
                   <h:commandLink id="persistenceToolkitLink"
                        actionListener="#{PortletContainerManagedBean.persistPortletSetStateListener}">
                        <h:outputText value="Save State Of Portlet Set" id="persistenceToolkitLinkText"/>
                   </h:commandLink>
              </f:facet>
         </p:pagePortletSetRenderer>
    </h:form>
    <%
         String flag = PropertyItems.getInstance().getPropertyItem("response.time.flag");
         if("1".equals(flag)){
              ResponseTime rt = (ResponseTime) session.getAttribute("responseTime");
            if(rt!=null){
                rt.setDesc("my cle loaded");
                long now = System.currentTimeMillis();
                long start = rt.getStart() + rt.getTotal();
                rt.setInterval(now-start);
                rt.setTotal(rt.getTotal()+rt.getInterval());
                LogUtil.log(rt.toString(), LogUtil.DEBUG_LEVEL);
                session.setAttribute("responseTime", rt);
    %>

    That helps.
    This could be another topic question but itst kind of related to what i am doing right now. while converting JSP to facelet (in jsf2) I came across another issue.
    <h:commandLink id="Save" rendered="#{RegistrationBean.isNOTInOrigionalRegistrationMode}" action="#{RegistrationBean.updateProfile2Submit}" styleClass="#{portalSkinManagedBean.contentPortletSkin.strongTextStyle}">
              <l:htmlSkinnedImage id="SaveImage" style="border:0;" url="save.gif" alt="Save Information"/>
    </h:commandLink>When I click on the generated link, I get this. And this is happening for all the h:commandLink in the application.
    http://localhost:9080/registration/updateProfile2.jsf[request.getQueryString()=null][request.getRequestedSessionId()=F1CCE237DD81D301F1C4DBA6910FFD8A][request.isRequestedSessionIdFromCookie()=true][request.isRequestedSessionIdFromURL()=false][request.isRequestedSessionIdValid()=true]Parameters:[rolePracticeAreasForm:title=rolePracticeAreasForm:primaryPracticeArea=10002javax.faces.ViewState=-2943345291093118815:-4400303399130292206rolePracticeAreasForm:practiceAreasMod2=10148.1rolePracticeAreasForm:practiceAreasMod1=10002.1rolePracticeAreasForm:Save=rolePracticeAreasForm:SaverolePracticeAreasForm=rolePracticeAreasFormrolePracticeAreasForm:otherField=rolePracticeAreasForm:fromMyAccount=1]||
    javax.servlet.ServletException: Index: 0, Size: 0
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:325)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.legaledcenter.util.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:250)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.jscape.framework.galileo.support.upload.UploadFilter.doFilter(UploadFilter.java:71)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at javax.faces.component.AttachedObjectListHolder.restoreState(AttachedObjectListHolder.java:161)
         at javax.faces.component.UIComponentBase.restoreState(UIComponentBase.java:1427)
         at com.sun.faces.application.view.StateHolderSaver.restore(StateHolderSaver.java:121)
         at com.sun.faces.application.view.StateManagementStrategyImpl$4.invokeContextCallback(StateManagementStrategyImpl.java:289)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1253)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(StateManagementStrategyImpl.java:284)
         at com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:177)
         at com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHandlingStrategy.java:119)
         at com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(FaceletViewHandlingStrategy.java:434)
         at com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHandler.java:143)
         at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:199)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:110)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         ... 22 more
    ********** Message End *************Thanks

  • How can I keep the formatting when converting from Word to pages?

    How can I keep the formatting when converting from Word to pages?

    Use only formatting that is supported (in the same manner) in both applications. You'll need to find which that is through trial and error. Beyond those formatting options, you'll need to do some corrections, as Fruhulda suggests.
    Regards,
    Barry

  • How do I get PRO to not include codes when converting from Word?

    When converting from word, I get all of the codes printed too.How do I get it to not show in Adobe?  I'm on a deadline and right now not happy that I upgraded.  Need my old adobe back!
    Board of Directors Meeting{ PRINT \p para "[
    /EMC pdfmark [ /StPop pdfmark" }
    { PRINT \p para "[ /Subtype /P /Title () /StPNE pdfmark" }{
    PRINT \p para "[ /StBMC pdfmark" }{ PRINT \p para "[ /EMC pdfmark [ /StPop pdfmark" }
    { PRINT \p para "[ /Subtype /P /StPNE

    Thanks Bill for your reply.
    I am using Acrobat XI, just downloaded it and Word 2003.  There are no punctuations on my form, I just hit return to go to the next lines. 
    I put in a little square check box and that is also causing issues.  I checked to make sure the field codes are off on the original word doc. 
    I did try from the printer to save and adobe and I get the same codes.  Other people that I work with are able to get my document to save correctly in acrobat with the same versions of word and XI. 
    It has to be some small setting on my computer. 

  • Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?

    Hypertext links are not always preserved from Word to PDF, using Aperçu or Adobe, depending on OS 10 or Lion. Why? This generally works perfectly in Windows. Why are Apple and Adobe unable to correctly handle links when converting from Word to PDF?
    Depending on the system version, and Office Word version:
    - a pure URL link starting with http or even www sometimes works in PDF, either produced by Aperçu or Adobe, sometimes does not work;
    - other kind of links where the text under display is not a URL, never work!
    I like everything with Apple computers and software, except PDF generation. Output files are usually bigger in size, and no better quality, than under Windows. Furthermore, it is weird that something as common as hyperlinks does not work correctly!
    I related this question with Mac OS X Snow Leopard, but the problem is still there with Mac OS Lion.
    This problem seems to have been around for years, without any proper solution from Apple and/or Adobe! To me, this is very embarrassing!

    Greetings NoNameGiven,
    If I understand the problem correctly (I’m not sure I do) you would prefer ‘iii’ to be read as “eye eye eye” rather than “three”? The alt text property is the only way that I know of to make this happen. Hope this helps.
    a ‘C’ student

  • When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?

    When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?

    When converting from a .wav to a .mov is there a loss of audio quality when using QuickTime?
    That would depend on your work flow. MOV is the generic QuickTime file container and is not related to any particular data compression format. If you perform a simple "Save" or "Save As..." action that merely copies the data in the WAV file to an MOV file, then the data remains unchanged and maintains its original quality. If, on the other hand, your transcode/re-compress the original data to a different compression format, then there is always the potential for some loss in quality. Depending on the codec and/or settings, the potential loss could be inaudible to severe.

Maybe you are looking for