Problem after generating BIAR File

After generating a BIAR File (a backup file for my Business Objects) I got this error when trying to import a universe in Designer:
There is no Universe file attached to the Universe InfoObject
One of my co-workers told me that if I didn't have a backup of my universes I had to export the universes from a PC where these universes were saved locally. But what if I didn't have them saved locally in other computer?
He told me that the best advice for this is that I have to backup all my universes before generating a BIAR File because this error is caused by the BIAR.
Why?  If BIAR files are supposed to be backup files of everything (universes, reports,etc.) why do i have to backup my universes before executing this process? It doesn't seem logic? Why does this process corrupt something that Designer doesn´t let me import my universes?
Does someone know why?
Edited by: PadawanGirl on Oct 14, 2010 11:58 PM

>
Efstratios Karaivazoglou wrote:
> Did you try to import the universe from the BIAR file back into your BOBJ repository or does this error happened after you have created the BIAR file?
>
>
> Are you using BO XI 3.1 SP2 FP 2.6 boht on your server and on your clients?
>
> Regards,
>
> Stratos
Well, I think it happened when I chose the same BO repository as destination to itself and  I really wanted to generate just a BIAR file, but by mistake I made it wrong.  Now I've been carefull and I chose the right destination - a BIAR file- and this issue has never come back again.

Similar Messages

  • Problems reading generated pdf-files

    Hi all,
    I have problems reading generated pdf-files from
    Report Builder 6.0.8.11.3
    An error-message occurs when opening the pdf with
    Adobe Acrobat 5.0.1:
    ... problem 110 and after moving in an empty pdf-document
    the messages:
    - too few operands
    - an unrecognized token
    I think the solution must be very simple, but the docu and
    other info resources provide nothing aboutthis issue.
    Greetings,
    Bernhard

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by the oracle reports team:
    hello,
    there are no known problems with reading reports PDFs with later Acrobat Readers. maybe your file is somehow corrupt.
    regards,
    the oracle reports team<HR></BLOCKQUOTE>
    I had to install a local printer, the network printer is not appropriate here. After that, everything is fine :-)),
    Greetings,
    Bernhard
    null

  • Performance problems to generate PDF files using CR

    Hi,
    I develop an application that read TXT files and uses this information to generate PDF files, but I'm having problems with performance to generate this PDF, each files are taking at least 1 minute to create the file. I realized that some TMP and RPT files are generated and deleted in the temp folder of the machine which is running the application, but after some time creating the PDF's the RPT files aren't deleted and I have an exception on my app:
    Memory full.
    Failed to export the report.
    Not enough memory for operation.    at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)
       at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)
    The server who is running this application is a Dual Core AMD Opteron 2.61 ghz, 7 GB RAM
    The framework version is 2.0 and the Crystal Reports dll version is 10.5.3700.0
    Thanks.

    Hi,
    If you are using IIS5 the give aspnet full permission to the Temp folders. For IIS6 give  IIS_wpg permission.
    For this you need to right click on the folder,
    go to properties,
    security tab,
    click on Add,
    Type aspnet/iis_wpg,
    select top note in Location and click on check on check names.
    Give full control and
    click ok.
    Also try using GC.Collect(), reportDocObject.Close() and reportDocObject.Dispose() as clean up code.
    Regards,
    AG.

  • Problem Displaying generated Markup File (CLOB column)

    Dear Colleague,
    I am attempting to display the results of a generated Markup File in a Forms Text Item. The code (Below) is in a WHEN-BUTTON-PRESSED trigger.
    Step 1: generates the markup file and stores it in the MARKUP_DOCUMENTS table.
    Step 2: Copies the clob column DOCUMENT to the clob variable MYCLOB
    --> At Step 2, my form crashes !!!
    Is Oracle Forms not able to process CLOBs? The form was compiled as if there was no problem.
    How can I access the results of the generated Markup File in the MARKUP_DOCUMENTS table and present it to the Oracle Forms user?
    Best regards,
    Randy
    declare
    myclob clob := empty_clob();
    read_amount number(4):= 500;
    read_offset number(4):= 1;
    buffer varchar2(500) ;
    begin
    -- Step 1:
    ctx_doc.markup(index_name => 'documents_index',
    textkey => to_char(:hitlist_block.id),
    text_query => :search_block.search_clause,
    restab => 'markup_documents',
    query_id => '1',
    plaintext => TRUE);
    -- Step 2:
    SELECT document
    INTO myclob
    FROM markup_documents
    WHERE query_id = 1;
    -- Step 3:
    dbms_lob.read(myclob, read_amount, read_offset, buffer);
    -- Step 4:
    :markup_block.markup_text := buffer;
    go_block ('markup_block');
    exception
    when others then
    message ('Document could not be displayed: '||dbms_error_text);
    end;

    Hello,
    This is what i use to display an HTML Forms Text Item:
    Declare
       lc$Texte  Varchar2(2000) ;
       lf$fic client_text_io.file_type ;
    Begin
       lf$fic := client_text_io.fopen('c:\test.htm', 'w');
       client_text_io.put_line( lf$fic, '<html>' ) ;
       client_text_io.put_line( lf$fic, '<script language="JavaScript">' ) ;
       client_text_io.put_line( lf$fic, 'parent.window.resizeTo(600,400);' ) ;
       client_text_io.put_line( lf$fic, '</script>' ) ;
       client_text_io.put_line( lf$fic, '<body>' ) ;
       client_text_io.put_line( lf$fic, '<FONT face="sans-serif" color=#1B62AB size=2>' ) ;
       client_text_io.put_line( lf$fic, replace( :MAILS.TEXTE, CHR(10), '<br>') ) ;
       client_text_io.put_line( lf$fic, '</body></html>' ) ;
       client_text_io.fclose( lf$fic ) ;
       client_host('cmd /C START "x" iexplore.exe c:\test.htm' ) ;
       client_host('del c:\test.htm' ) ;
    End;Francois

  • Problem with Generate to File...

    Hi:
    I am executing a report from a form. I am sending this some parameters as filters. When the report executes it, it is OK, but when I want to save it in a file (going to generate to file) it saved me it with the all datas without paying attention to the parameters (filters). I know that if I show the parameter form builder to the user and it enter again the data the file will be all right, but my boss wants me to find another solution.
    Have you got any idea of what can I do?
    Thanks
    Vero

    Hi,
    I am using reports 6i.
    I am sending user parameters by a form and calling the report through this. It seems that when I save it to a file it blanks the user parameters.
    Here is the Report query:
    select DISTINCT
    e.est_nom estacio,
    l.ls_nom linia,
    dep_sigla um,
    p.p_nom tens,
    mu_nom municipi,
    cd_nom_general ccdd,
    cd.cd_idint
    from
    centre_distribucio cd,
    estacio,
    municipios,
    departamentos,
    vw_cd_ls c,
    linea_standar l,
    vw_sp_ls v,
    sortida_de_parc s,
    parc p,
    estacio e
    where l.ls_identificador=c.ls_identificador and
    cd.cd_idint=c.cd_idint and
    cd.cd_dep_idint=dep_identificador and
    cd.cd_mu_idint=mu_identificador and
    l.ls_identificador=v.ls_identificador and
    v.sp_identificador=s.sp_identificador and
    s.sp_p_idint=p.p_idint and
    p.p_est_idint=e.est_idint and
    ((:est='%') or (e.est_numero like :est)) and
    ((:p='%') or (p.p_nom like :p)) and
    ((:ls='%') or (l.ls_nom like :ls)) and
    ((:cd='%') or (cd.cd_nom_general like :cd))
    order by estacio,tens,linia,ccdd
    /

  • CS3:Problem in generating .ps file for an indesign document.

    Hello,
    I have ported a plug-in built for InDesign server CS2 to CS3.
    Generating ".ps" file is one of the functionality of my plug-in.
    But for the given document InDesign CS3 server Debug generated the following asserts in the server log.
    [21/05/2008 22:21:50] ~InstanceList(): 1 outstanding references to UID 2 (Class kRIDXBoss).
    [21/05/2008 22:21:50] ~InstanceList(): 1 outstanding references to UID 216 (Class kAssignmentBoss).
    [21/05/2008 22:21:50] ~InstanceList(): 1 outstanding references to UID 5 (Class kContentMgrBoss).
    [21/05/2008 22:21:50] ~InstanceList(): 1 outstanding references to UID 187 (Class kAssignmentBoss).
    [21/05/2008 22:21:50] ~InstanceList(): 1 outstanding references to UID 218 (Class kAssignedStoryBoss).
    [21/05/2008 22:21:50] ~InstanceList(): 1 outstanding references to UID 1 (Class kDocBoss).
    I have debugged the code and found that the following API is causing these asserts.
    IPrintSetupProvider::StartPrintPub( bool16 & bReturn,
    IDocument * iDoc,
    UIDRef & styleUIDRef,
    IPrintCmdData::PrintUIOptions & printPubUIOpt,
    IInkList * iInkList,
    ITrapStyleListMgr * iTrapListMgr
    when i shutdown the InDesign server got crashed.
    Can any one of you describe in detail the functionality of this API.
    I will be thankful if any one you can give some idea on how to resolve this issue.
    Thanks,
    sambolus.

    Lee,
    Sorry I think I didn't use the right terminology, somehow I want to include/link the file (not with menu item 'place') programmatically in my current open Indesign document, then I expect to see the filename in Link palette. I can do this with linking to a page item in doc but I don't want to assign it to a particular page item, rather I want to assign it to doc. Is any approach to do it?
    Thanks again,
    Mor

  • "Messages" problem after importing .xsd file as external definition

    Hello,
    I received an .xsd file from a customer and need to import it as an "External Definition" in order to create the "Message Interface". The structure of the xsd looks like this:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:px="http://www.opentrans.org/XMLSchema/1.0" targetNamespace="http://www.opentrans.org/XMLSchema/1.0" elementFormDefault="qualified">
    <xsd:element name="ORDER">
    </xsd:element>
    <xsd:element name="ADDRESS">
    </xsd:element>
    <xsd:element name="ARTICLE_ID">
    </xsd:element>
    </xsd:schema>
    After importing and looking at the tab "Messages" I get numerous entries, for each <xsd:element> I get one message! But I basically only need one "Message" that holds my complete xsd-file.
    I tried inserting <xsd:element name="COMPLETEORDER"> right after the <xsd:schema>-Tag but that didn't work either. Somehow I need to sum up all the <xsd:elements>.
    Does anyone have an idea? Thank you very much!
    Peter

    Hello Prateek, Hello everyone,
    I now know what the problem is. I downloaded XMLspy and checked on the structure:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:px="http://www.opentrans.org/XMLSchema/1.0" targetNamespace="http://www.opentrans.org/XMLSchema/1.0" elementFormDefault="qualified">
    <xsd:element name="ORDER">
    </xsd:element>
    <xsd:element name="ADDRESS">
    </xsd:element>
    <xsd:element name="ARTICLE_ID">
    </xsd:element>
    <xsd:simpleType name="dtBOOLEAN">
    </xsd:simpleType>
    <xsd:simpleType name="dtCOUNTRIES">
    </xsd:simpleType>
    <xsd:element name="SUPPLIER_AID">
    </xsd:element>
    <xsd:simpleType name="typeSUPPLIER_AID">
    </xsd:simpleType>
    </xsd:schema>
    Between the long list of <xsd:element> tags there are some simpleTypes on the same
    level. Now if I insert
    <xsd:element name="COMPLETEORDER">
    <xsd:complexType>
    <xsd:sequence>
    on top, the <xsd:sequence> would be on the same level as the simpleTypes - which is not valid!
    But can I just move all the simpleTypes, e.g. into an <xsd:element>??
    That would be changing the customer's structure which I think is not a good thing!?
    Thank you again for your help! I really appreciate it!
    Best regards,
    Peter

  • Performance problem after deploying bundle files

    Hello,
    I undeployed and made some changes on a km.resource.bundle PAR to update
    some properties labels values. After deploying it again KM performance decreased
    significantly and became very slow, we had to remove the PAR and restart portal
    to restore its normal functioning.
    Could you help me diagnose this?
    some more info:
    1 - The only changes I did was on the *.properties files.
    2 - I had an error when generating the PAR again, which was solved adding the
    external jar bc.crt_api.jar as reference.
    3 - On SAP note 817876 the example project comes with this JAR into /lib folder,
    my project just referenced it so my /lib folder is empty.
    regards,
    Rafael

    Hi BP, thanks for the quick reply, I will try restarting it next time and check
    if that solves the performance issue.
    I was wondering if it was caused because of the bc.crt_api.jar library. Does it
    have to be into the project structure or do I only need it for local reference? My guess
    was that the application running on portal was accessing the lib into my machine
    and thus causing the slowdown.
    kind regards,
    Rafael

  • Problems to generate WSDL file

    Hello to all,
    I am adapting the sample ( /xws-security/samples/simple) to develop my service. When I compile the file WSDL no is adapted with my changes. I think that the problems is in build.xml, in gen-service target where execute wscompile to generate WSDL, but I do not know the solution.
    I hope that somebody can help me.
    thanks to all,
    Antonio.

    At least I don't have a clue about ABAP Proxy.
    You are pretty much on your own unless someone
    else has tried it.
    Preston
    >>> On Tuesday, August 03, 2010 at 8:26 AM,
    pawelnowicki<[email protected]> wrote:
    > Hi,
    >
    > For our customer we try to bind SAP with GW Calendar using GW Web
    > Services. We tried to generate ABAP Proxy from groupwise.wsdl file but
    > there are problems: GW uses recursive data structures what ABAP Proxy
    > can not use. Is there any simple solution to this problem?
    >
    > Best regards
    > Pawel

  • Problem in generating WSDL file for triggering BPM process

    Hello Experts,
    I have a working BPM process which I want to trigger using a web service. I am referring following blog link to generate New WSDL file and perform further operations:
    /people/arafat.farooqui/blog/2009/08/13/introduction-to-sap-netweaver-bpm-part-4
    However, it everything goes well until I set the type for the "New Element". I want to set type to context of my component controller. So I selected Set type --> Enclosing Project and I seleted Context of my component controller.
    Upon saving this, I am getting this error:
    "../../rep/ui/com.sap.demo.wd_ui_mna.wd.comp.c_fillmynameage.C_FillMyNameAgeInterface.xsd" is not a path relative to "src/wsdl/NewWSDLFile.wsdl" because it contains too many '../'
    I am not sure what is happening here. I have also removed the response element(s) from WSDL source.
    What am I missing here?
    Thanks in advance,
    Ameya

    Cross post in EBiz forum -
    General EBS Discussion
    Regards,
    Anuj

  • Problems keeping generated java files

    hi!
              I have a war containing a lot of jsp files.
              I want those files to be precompiled when I start my server, only if the war file has changed.
              I also want to keep the generated files,
              So that the next time I start the server
              It won't need to precomile them (unless changed, ofcourse).
              I set the "keepgenerated" flag and "precompile" flag to true, in the weblogic.xml file.
              i also added:
              <context-param>
              <param-name>weblogic.jsp.keepgenerated</param-name>
              <param-value>true</param-value>
              </context-param>
              in the web.xml
              but everytime I start up the server, it deletes all
              the old generated files, and precompiles my jsp all over again.
              I also tried not using the pre-compilation option at all,
              just to see the effect that "keepgenerated" flag had,
              but the generated files were still removed each time i restarted the server.
              Is it at all possible to keep those files?
              If so, how?
              thanx,
              Einav
              

              I tried using jspc to precompile the jsp files and deploy the resulting class files
              (and the jsp files). This way the server never regenerates the files or compiles
              the servlets.
              

  • Problems to generate NLB file with the Oracle Locale Builder

    Oracle EE 10.2.0.4 (64)
    RH5 (64)
    I generated a new file NLT, but I can not generate the NLB file.
    When using the option to generate the NLB the, OLB does nothing.
    The environment variables ORACLE_HOME, ORACLE_SID and ORA_NLS10 are set correctly.
    What to do?

    You better ask such questions in the Globalization Support forum:
    Globalization Support
    Werner

  • Problem during generating cap file

    hello u all
    when i am tried to generate a cap file using class file
    by Converter exception is thown name as
    java.util.Zip.ZipException
    ------------please help me solve it.

    yes when i execute this command
    C:\java_card_kit-2_2\samples>scriptgen -o adout C:\java_card_kit-2_2\sam
    sses\com\sun\javacard\samples\HelloWorld\javacard
    the following response is return:::::
    Java Card 2.2 APDU Script File Builder (version 0.11)
    Copyright 2002 Sun Microsystems, Inc. All rights reserved.
    Cap constructor exception: java.util.zip.ZipException: Access is denied

  • Subversion -- Problem After Deleting a File from Repository

    I am using Dreamweaver CS6 and am using Subversion as a Repository server.
    In doing a massive check-in, Subversion reported an error with one file:
    SVN: #160024, Commit failed (details to follow):
    File or directory ‘aff.php’ is out of date; try updating
                Resource out of date; try updating
    I tried reverting that file and then tried the update, all to no avail.  In the end, I deleted that file, figuring that I could then simply add it.
    When I tried to add it, I got the following error:
    SVN: #155011, Commit failed (details to follow):
    File ‘aff.php’ is out of date
    File not found: transaction ‘150-4w’, path ‘/whmcs/aff.php’
    The reference to '150-4w' was to the "successful' transaction in which I deleted the file, 'aff.php'.
    Can anyone please help me to check this file in?

    Hi UndeniablyRexer,
    I've learned that deleted files stay on Adobe's server for 30 days. Section 3.3 of  General-terms governs access rights to your content.  It reads:
    3.3 Our Access. We will not access, view, or listen to any of your content, except as reasonably necessary to perform the Services. Actions reasonably necessary to perform the Services may include (but are not limited to) (a) responding to support requests; (b) detecting, preventing, or otherwise addressing fraud, security, unlawful, or technical issues; and (c) enforcing these terms.
    Best,
    Sara

  • Error while Generating WSDL File from SAP WSDLGenerator

    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.NullReferenceException: Object reference not set to an instance of an object.
       at WebServiceDescription.SelectOperation.ShowUDOsList(String sessionID)
       at WebServiceDescription.SelectOperation..ctor(String sessionID)
       at WebServiceDescription.WsdlServicesGenerator.ShowOptions()
       at WebServiceDescription.Form1.btCreateWsdl_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    WsdlServicesGenerator
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/SAP%20Business%20One%20Web%20Services/WsdlServicesGenerator/WsdlServicesGenerator.exe
    System.Windows.Forms
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    System.Xml
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3082 (QFE.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Web.Services
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Web.Services/2.0.0.0__b03f5f7f11d50a3a/System.Web.Services.dll
    System.Configuration
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    axh7tjvl
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    o_2nbqv_
        Assembly Version: 1.0.0.0
        Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000)
        CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.
    I am facing problem While Generating WSDL File from WSDL Geerator which is provided by SAP Business One
    If any body has resolved this. Please help Me...!
    Thanks
    Mritunjay

    Hi.
    We've seen that error too few times.
    We downloaded the sourcecode for the wdsl generator and discovered,
    that in our case, it was because we had no user defined objects.
    Its actually a bug as far as I can see, where the wdsl generator tries
    to enumerate a empty recordset, and crashes.
    Regards
    Jørgen T.

Maybe you are looking for

  • Not showing the button

    Hi, Further to this thread I don't know why the vbs file is not showing which button has been clicked, when it is running this file Many Thanks & Best Regards, Hua Min

  • Not able to add rss to my mac mail

    i m not able to add rss to my mac mail after i deleted my rss folder in my mac mail

  • Need help with network

    hi, i am trying to leave ubuntu, so i installed Arch Linux. it seems everything went allright on the CD installation, but i am having trouble with the network. i have a dell XPS M1330 with the intel 4965 card, and i believe that the card is recognize

  • Wiki problems after Snow Leopard Upgrade

    Hi, I upgraded an XServe running 10.5.(whatever the last version was) to Snow Leopard Server using a 10.6.3 retail disc. At the end of the install I was given a message saying: The following actions failed or were not attempted: Setting locale Upgrad

  • QT 7.4

    I was going to ask why QT 7.4 seems to have 'broken' VBR. Then I realized my question had already been answered (if I rip at 256 and have VBR checked, it should still display 256, even though the actual bitrate is different). Board software won't let