Locale problem with circular dependancies

locale -a output
$ locale -a
C
POSIX
el_GR
el_GR.iso88597
el_GR.utf8
greek
locale output
$ locale
locale: Cannot set LC_ALL to default locale: No such file or directory
LANG=C
LC_CTYPE="C"
LC_NUMERIC=en_US.utf8
LC_TIME=en_US.utf8
LC_COLLATE=C
LC_MONETARY=en_US.utf8
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT=en_US.utf8
LC_IDENTIFICATION="C"
LC_ALL=
locale-gen output
# locale-gen
Generating locales...
el_GR.UTF-8... done
el_GR.ISO-8859-7... done
en_US.UTF-8...circular dependencies between locale definitions
In /etc/locale.gen i have uncomment these 4: "el_GR.UTF-8", "el_GR ISO-8859-7", "en_US.UTF-8" and "en_US ISO-8859-1" (i have triple check that)
and in /etc/locale.conf i have these 2 lines:
LANG="en_US"
LC_COLLATE="C"
I'm searching in forums here and googling for about 2 days now, i would appreciate some help.
I haven't notice any real problem yet, i can write and read in both languages, but i think i surelly will.
Last edited by s0lid7 (2013-03-07 12:55:39)

Had not see that but it didn't help. I don't want to change LC_ALL=
As it seems the problem is only with en_US whatever other language i uncomment in /etc/locale.conf works propertly.
I remember myself editing the /usr/share/i18n/locales/en_US file when trying to change "workday 2" in order to have monday first in calendar but i'm not sure if that causes the issue since i'm pretty sure that i changed it to default values again anyway.
I tried LC_ALL="" in /etc/locale.conf but it didn't work either.
Last edited by s0lid7 (2013-03-07 13:48:37)

Similar Messages

  • Lost Locale problem with Struts/Validator Plugin client side validation

    Has anyone else had problems losing the locale in the generated javascript ?
    With the following tiles def and layout (nmLayout.jsp) I can get the locale from the browser OK with
    <html:html locale="true"> and it works ok for imported text (picking up the enCA properties file. But when the javascript executes in the provisionCustomer.jsp the locale reverts to the default property file.
    The Strruts Validator loses the locale of the containing html page. (I do a show source.) I've tried an explicit <fmt:setLocale value="en_CA" scope="session"/> but this has no effect either.
    Thanks
    Bruce
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE tiles-definitions PUBLIC
    "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <!--
    Tiles definition file
    -->
    <tiles-definitions>
    <definition name="nm.MainMenu" path="/nmLayout.jsp">
    <put name="pageTitle" value="Distibutel Network Management" />
    <put name="header" value="header.jsp" />
    <put name="body" value="mainMenuBody.jsp" />
    <put name="footer" value="footer.jsp" />
    </definition>
    <definition name="nm.customer" path="/nmLayout.jsp">
    <put name="pageTitle" value="Distibutel Network Management -- Provision Customer" />
    <put name="header" value="header.jsp" />
    <put name="body" value="provisionCustomer.jsp" />
    <put name="footer" value="footer.jsp" />
    </definition>
    <!-- sample tiles definitions
    <definition name=".mainLayout" path="/common/layouts/classicLayout.jsp">
    <put name="title" value="Sample Page Title" />
    <put name="header" value="/common/header.jsp" />
    <put name="menu" value=".mainMenu" />
    <put name="footer" value="/common/footer.jsp" />
    <put name="body" value=".portal.body" />
    </definition>
    <definition name=".mainMenu" path="/common/layouts/vboxLayout.jsp" >
    <putList name="list" >
    <add value=".menu.links" />
    <add value=".menu.taglib.references" />
    <add value=".menu.printer.friendly" />
    <add value=".menu.old.documents" />
    </putList>
    </definition>
    <definition name="aPage" extends=".mainLayout">
    <put name="title" value="Another Title" />
    <put name="body" value=".aPage.body" />
    </definition>
    end samples -->
    <definition name="${YOUR_DEFINITION_HERE}">
    </definition>
    </tiles-definitions>
    nmLayout.jsp :
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
    <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
    <%@ taglib uri="http://struts-menu.sf.net/tag" prefix="menu" %>
    <%@ taglib uri="http://struts-menu.sf.net/tag-el" prefix="menu-el" %>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
    <%@ taglib uri="http://java.sun.com/jstl/sql" prefix="sql" %>
    <html:html locale="true">
    <head>
    <title><tiles:getAsString name="pageTitle"/></title>
    <link rel="stylesheet" type="text/css" media="screen"
    href="styles/global.css" />
    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
    <style type="text/css">
    body { background: AliceBlue; }
    #appcontent {
                             position:absolute;
                             top: 300px;
                             left: 200px;
                   h1 {color: red;}
                   h2 {color: green;}
    </style>
    </head>
    <body topmargin="0" leftmargin="0">
    <!--
         <fmt:setBundle basename="ApplicationResources"/>
         <fmt:setLocale value="en_CA" scope="session"/>
    -->     
         <script type="text/javascript" src="./scripts/coolmenus3.js"></script>
         <!-- Custom config for this example -->
         <script type="text/javascript" src="./scripts/coolmenu2-config.js"></script>
         <menu:useMenuDisplayer name="CoolMenu"
         bundle="org.apache.struts.action.MESSAGE">
         <menu:displayMenu name="ToDoListMenuProvision"/>
         </menu:useMenuDisplayer>
    <table>
    <tr>
    <td><tiles:insert attribute="header"/></td>
    </tr>
    <tr>
    <td><div id="appcontent"><tiles:insert attribute="body"/></div></td>
    </tr>
    <tr>
    <td><tiles:insert attribute="footer"/></td>
    </tr>
    </table>
    </body>
    </html:html>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
    <html:javascript formName="customerForm" />
    <html:errors/>
    <h1><fmt:message key="ProvisionCustomer.title"/></h1>
    <html:form action="/saveCustomer"
    onsubmit="return validateCustomerForm(this)" >
    <table>
    <tr>
    <td><h2><fmt:message key="ProvisionCustomer.TenantName"/>:</h2></td><td> <html:text property="tenantName"/></td>
    </tr>
    <tr>
    <td><h2><fmt:message key="ProvisionCustomer.TenantID"/>:</h2></td><td> <html:text property="tenantID"/></td>
    </tr>
    <tr>
    <td><h2><fmt:message key="ProvisionCustomer.CustomerID"/>:</h2></td><td> <html:text property="customerID"/></td>
    <td></td><td><input type="submit" value=<fmt:message key="ProvisionCustomer.insert"/>></td>
    </tr>
    </table>
    </html:form>

    you can always get the locale from the request like so....
    <html>
    <%
    request.getLocale().toString();
    %>
    </html>
    you can even stuff it into javascript like so....
    <html>
    <head>
    <script>
    function foo() {
    var locale = '<%=request.getLocale().toString()%>';
    </script>
    </head>
    </html>
    then you can have access to it in javascript code.

  • Design mode locale problems with 4.5.1

    I tried this in the Flex forum but no answers. I'll try here. I've been working on a project for a year that has worked fine. I upgraded to 4.5.1 and now can no longer edit several of my components that were localized.  I solely get a red X and a design error that says "Assets failed to compile.  Design Mode is unable to display the document styles, skins, and images because the following assets have failed to compile:Details :unable to open 'locale/en_US'(command line - Line:-1)"
    I've a folder with locale/en_US and it actually localizes fine if I run the app, but I can not longer edit in design mode which, as you might guess, really puts a damper on moving objects by pixels.
    Any suggestions?

    I don't have a solution, but i think i pinned the circumstance down to being generated when:
    You have a localised project
    You also embed a generic (non-localised) asset
    In the case I used to file a bug report, including/removing an <s:Image> tag causes/removes the problem:
    https://bugs.adobe.com/jira/browse/FB-32609
    Note: In my builder I had an additional issue making it difficult to pin down - in that once the Design Mode Problem had been raised, even reverting the line of code that caused it didn't clear the problem report - took a couple of odd steps:
    https://bugs.adobe.com/jira/browse/FB-32610
    Message was edited by: creacog - fix typo

  • Witcher 2 gog problem with missing dependancies

    Hi.
    I would like to ask for your help. I want to check Witcher 2 for linux from gog.com. I downloaded it, but when i want to launch it by ./start.sh from Witcher 2 folder, i have this error;
    ./witcher2: error while loading shared libraries: libSDL2_image-2.0.so.0: cannot open shared object file: No such file or directory
    I have installed 32 bit dependancies for it:
    2014-10-17 17:00] [PACMAN] installed lib32-sdl2 (2.0.3-1)
    [2014-10-17 17:02] [PACMAN] Running 'pacman -S lib32-libcanberra'
    [2014-10-17 17:02] [PACMAN] reinstalled lib32-libcanberra (0.30-4)
    [2014-10-17 17:02] [PACMAN] Running 'pacman -S lib32-libcanberra-pulse'
    [2014-10-17 17:02] [PACMAN] installed lib32-libcanberra-pulse (0.30-4)
    [2014-10-17 17:07] [PACMAN] Running 'pacman -S sdl2_image'
    [2014-10-17 17:07] [PACMAN] installed sdl2_image (2.0.0-2)
    I have also mentioned libSDL2_image
    [firekage@arch_desktop ~]$ locate libSDL2_image-2.0.so.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu/libSDL2_image-2.0.so.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu/libSDL2_image-2.0.so.0.0.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/libSDL2_image-2.0.so.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/libSDL2_image-2.0.so.0.0.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime.old/amd64/usr/lib/x86_64-linux-gnu/libSDL2_image-2.0.so.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime.old/amd64/usr/lib/x86_64-linux-gnu/libSDL2_image-2.0.so.0.0.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime.old/i386/usr/lib/i386-linux-gnu/libSDL2_image-2.0.so.0
    /home/firekage/.local/share/Steam/ubuntu12_32/steam-runtime.old/i386/usr/lib/i386-linux-gnu/libSDL2_image-2.0.so.0.0.0
    [firekage@arch_desktop ~]$
    Could somebody points me in good direction? This Witcher 2 edition is from gog.com, not from Steam. It id standalone version downloaded directly from my gog.com account.
    Last edited by firekage (2014-10-18 01:27:35)

    Ok, solved. I just copied all .so files from steam folder:
    ~/.local/share/Steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu
    ~/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib
    ~/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/lib/x86_64-linux-gnu
    ~/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib
    many of missing dependancies are also in /usr/lib and /usr/lib32. I had to copy these symlinks:
    libasn1.so.8
    libasn1.so.8.0.0
    libcrypto.so.1.0.0
    libcurl-gnutls.so.4.2.0
    libcurl.so.3
    libcurl.so.4
    libcurl.so.4.2.0
    libcurl.so.4.3.0
    libgcrypt.so.11
    libgcrypt.so.11.7.0
    libgnutls.so.26
    libgnutls.so.26.21.8
    libgssapi.so.3
    libgssapi.so.3.0.0
    libhcrypto.so.4
    libhcrypto.so.4.1.0
    libheimbase.so.1
    libheimbase.so.1.0.0
    libheimntlm.so.0
    libheimntlm.so.0.1.0
    libhx509.so.5
    libhx509.so.5.0.0
    libkrb5.so.26
    libkrb5.so.26.0.0
    liblber-2.4.so.2
    liblber-2.4.so.2.10.3
    liblber-2.4.so.2.8.1
    libldap-2.4.so.2
    libldap_r-2.4.so.2
    libldap_r-2.4.so.2.10.3
    libldap_r-2.4.so.2.8.1
    libopenal-eon.so.1
    libroken.so.18
    libroken.so.18.1.0
    librtmp.so.0
    libsasl2.so.2
    libsasl2.so.2.0.25
    libssl.so.1.0.0
    libtasn1.so.3
    libtasn1.so.3.1.12
    libwind.so.0
    libwind.so.0.0.0
    No my Witcher 2 works ok. I'm amazed that it runs just like the one running on Windows. Nice.
    There is only one thing that i would like to know. These .so files are shared object. Could somebody tell me how to instead of copying it over to Witcher 2 folder, make an symlink from these symlinks that are stroed in ~/.local/share/Steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu and so on? As a matter of fact, there are files with :
    -libgcrypt.so.11
    -libgcrypt.so.11.7.0
    One file is with "arrow", other don't have it. If i understand, in these example, libgcrypt.so.11 points to libgcrypt.so.11.7.0? If yes, how to symlink this to a Witcher 2 folder from this long Steam folder? I know that for this is ln -s command, but could somebody explain it to me? Witcher 2 works because i just copied these symlinks, i would like to learn how to do it instead of copying them.
    Thanks.
    BTW - for one thing im happy, that the Witcher 2 comes for Linux (i read that it is not native port, but rather something just as Wine, i tried to install it directly under Wine from Windows .exe installers but it fails), but the other...well, so many missing dependancies? I  think that the file that we can download from gog shoud have al dependancies for it!
    Last edited by firekage (2014-10-18 01:40:30)

  • Problem with circular buffer

    Hi,
    For some reason, whenever my circular buffer is filled and wraps around, right at that moment, my graph screws up for a split second by drawing a line across the graph. But for some reason, this doesn't happen all the time, only sometimes.
    The picture is below:
    Attachments:
    graph jump.JPG ‏105 KB

    Sorry, made a new thread since that one showed "Solved".
    It seems the buffer works fine, something is wrong with the data being inserted in there. I don't know why it only messes up with that data.
    I managed to capture some messed u p data. I will post it below. 
    Message Edited by Bilal_J on 04-12-2010 02:46 PM
    Attachments:
    Circular Buffer Debug.vi ‏17 KB
    Circular Buffer.vi ‏39 KB
    Circular Buffer Action Enum Typedef.ctl ‏5 KB

  • Local problem with error 1068

    Cannot install/connect new local printer.  Px spooler AND LCD services are stopper and will not start.  Tried LPD first, as px spooler is dependent on it.  What to do?  Also, do not have password for Service local (local, network...etc)...how
    to get/change????
    ****I'm not a tech/geek...just a knowledgeable user.
    Thanx so much

    Hi Ellaris,
    -->Px spooler AND LCD services are stopper and will not start.  Tried LPD first, as px spooler is dependent on it.
    Please type services.msc in RUN to open Services panel and novigate to the dependency service, then start the service. Then re-start the Print Spooler service and monitor the result.
    Please also refer to following FAQ article and check if can help you.
    Forum FAQ:Error 1068 is received when you try to enable Print
    Spooler Service
    If this issue still exist, please let me know the detailed dependency service name and error message.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • 7912G user-local problems with CME 4.0

    Hi,
    I have set the user-local to IT (italian), and have 2 7960's and 1 7912G.
    The 7960's pick up the italian display on the phones, but the 7912 does not.
    Any tips would be highly appriciated.

    Another thing that I needed to do, when I reverted back to manual configuration, was setting the phone type to 7912 in the ephone section.
    ephone 3
    no multicast-moh
    mac-address 0011.xxxx.xxxx
    type 7912
    button 1:3

  • Problems with /usr/local/lib after installing

    After I installed Leopard, I noticed that some of my files in usr/local/lib seemed to have disappeared. When I tried to open /usr/local/lib I got the following error: 'lib: Too many levels of symbolic links.' and it appeared that there was also a 'lib 1' directory in /usr/local which had all of my files in it. I managed to fix it using:
    sudo rm -rf /usr/local/lib
    sudo cp -R '/usr/local/lib 1' /usr/local/lib
    Just wanted to give a heads up since this was rather annoying to figure out. Other than this I have very few issues with leopard, so far limited to:
    -DivX playback doesn't appear to work
    -after login it appears to take a while for finder to start
    -a few problems mounting external devices, such as my USB drive and iPhone

    I’ve found this on my system as well! I had some trouble installing MacFuse under Leopard. The installer just said "Das Installations konnte einige Dateien nicht nach '/' kopieren. Wenden Sie sich an den Hersteller", which basically means that it couldn't write to the root directory.
    Then I found out about the /usr/local/lib symlink. This is very disturbing and clearly a major bug. I think it's a problem with the installation process of the developer tools. I’ve upgraded to Leopard two weeks ago. Everything worked. Then I’ve installed XCode 3.0 this and then the problem started. The circular symlink in /usr/local/lib has the timestamp of the XCode 3.0 installation…

  • Problem with formatting date with JSTL ans swedish locale

    Hi,
    I have a strange problem with JSTL fmt:formatDate -tag and swedish locale.
    -------------------------- Extract from the JSP ------------------------------
    <jsp:useBean id="date" class="java.util.Date" />
    <fmt:formatDate value="${date}" pattern="dd.MM.yyyy HH:mm" />
    With en_US and fi_FI locales date is printed just the way I want: 29.04.2005 13:28 but in se_SE locale it is printed: Fri Apr 29 13:30:09 EEST 2005
    Has anyone had this problem before?
    Thanks in advance!

    Hi
    Try using "sv_SE" locale.

  • "There is a problem with your account..." when opening online OneNote file within local OneNote app

    Hi,
    We have a tenancy DirSync connection a small number of staff so that they can have access to SharePoint, Visio and OneNote Online. When one such user logs onto the http://[groupsite].sharepoint.com site on his Windows 7 PC with Office 2013 installed,
    he can access the site successfully. He might then open a OneNote file online. However, if he was to then click the "Open In OneNote" button from the toolbar, and clicked "Yes" to the Microsoft OneNote Security Notice:
    "Microsoft Office has identified a potential security concern. This location may be unsafe".
    ... and then sign in with the same account to this box
    ... and then enters his correct credentials into the next "Sign In" window, it returns with the following message:
    "There is a problem with your account. Please try again later".
    Finally, the following message is returned within the MS OneNote app:
    "We couldn't open that location. It might not exist or you might not have permission to open it. Please contact the owner of onenote:https://[groupsite].sharepoint.com/sites/....one#SharePoint Team Site for more information."
    The user has reinstalled MS OneNote 2013 on the PC with no change. We have also removed all cached credentials from within Windows Credential Manager and rebooted with no success. The user can access all web-based resources such as SharePoint, OneNote and
    Visio, and he can open web-based Visio files locally on the locally-installed Visio app with no issues. This problem is specifically experienced when opening an online version of OneNote locally on a  PC that has either MS OneNote 2010 or OneNote 2013.
    Any assistance that you may be able to provide would be greatly appreciated.
    Regards,
    Brian

    Thanks Maurice, for your reply.
    My Windows Account is already used to log into OneNote. It is the same Windows Account used to log into, and access online, the SharePointOnline, OneNote Online, etc., services. I tried, indeed, to sign out from my account within the client-version of OneNote
    but it returns the message "We can't remove Windows accounts".
    Again, this is the only account that has been used with this installation of OneNote, and it is that which has been uploaded by way of DirSync to Azure. It works for online versions of OneNote items, SharePoint and Visio, and for VisioOnline-based files
    that are opened within the local client-version of Visio. When trying to open the OneNote Online notebook within the local client-version of OneNote we get this issue.
    I have reinstalled Office with no success.
    Any help that you can provide in this regard would be greatly appreciated.
    Regards,
    Brian

  • Problem with local interface

    Hi all,
    I have a problem with the local interface,
    after I change the Home and Local interface I get a message when compiling saying that the bean has to implement the inherited abstract method javax.ejb.EJBLocalObject.isIdentical (EJBLOcalObject) and the mothd isPrimaryKey()...why is that, do I need to implement these methods?
    Thanks,
    A.

    solved, wrong code

  • Problem with local editing after update to SP13

    Hallo,
    we have updated our Enterprise Portla 7.00 to SP13. Now many user have Problem with local editing. The error message is "The download of the document fail".
    I know that every PC needs the "Docservice" Active X component installed. The "Docservice" is also installed.
    At my PC theres only this problem with "html" documents.
    What could be the problem. ?
    Please help.
    Many thanks
    Ronald

    We found that there is a problem with the Docservice Active X Component.
    If we work in a deeper folder there is a problem with the length of the url. I changed the TEMP Setting
    "Setting a different TEMP directory:                                     
    In cases that it is problematic to use the standard %TEMP% directory,   
    setting the environment variable SAPKM_USER_TEMP pinpointing to a       
    corresponding directory path (e.g.                                      
    X:\SHARES\USERS\xxx\CheckedOutDocuments) will be also supported. If the 
    access to that directory fails the standard %TEMP% directory will be    
    used as fallback."
    I used "C:\TEMP" and now it works.......  but this cant be the solution....
    thans Ronald

  • Problem with Local Intranet in IE 11

    Hi
    We are experiencing a strange problem with Local Intranet in IE 11. We have a public company site which has been put into the Local Intranet site. The site contains content from 3 internal sites, which of course are part of Local Intranet per default.
    Sometimes when I refresh the public company site I receive a security warning because IE says it's between zones.
    Why? :-)
    Might this be an issue because the 3 internal sites aren't hardcoded into Local Intranet through policy?
    Lasse
    /Lasse

    Hi Lasse,
    I would like to know if this issue happened in all user's IE browser.
    Meanwhile,please post the screenshot here
    so that we can help you analyze the issue.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • Problem with Local DCs View in NWDS 7.0

    Hi!
    I' ve got a problem with Local DCs view in NWDS: None of the standard-DCs (BI_MMR, BI_UDI, CAF a.s.o.) can be expanded and show their content. I already reinstalled IDE, but without success.
    Has anybody got an idea?
    Thanks a lot in advance!
    Regards,
    Thomas

    Hi,
    This is due to some files missed in Local development.
    Let me know Are you able to see <b>.confdef, .syncdb</b> and <b>buildvariant.config </b> files under Local Developement.
    If you are not able to see, UnInstall your NWDS, Remove Local developement under .dtc folder, then Re-Install NWDS.
    Hope this will help you.
    Thanks & Regards
    Vasundhara

  • Problem with Local DCs View in NWDS

    Hi!
    I' ve got a problem with Local DCs view in NWDS: None of the standard-DCs (BI_MMR, BI_UDI, CAF a.s.o.) can be expanded and show their content. I already reinstalled IDE, but without success.
    Has anybody got an idea?
    Thanks a lot in advance!
    Regards,
    Thomas

    Your setup might be incomplete: The SAR file extraction creates very long paths on your filesystem. If you do not extract to the rootfolder of disk, chances are the paths become too long and the installation exits, without any warning.
    If this is not the cause of your problem, check if the .dcdef files for the local DCs (plugin com.sap.tc.ap if I'm correct) were copied during installation.

Maybe you are looking for

  • Display pdf file on browser

    Hi, I am using struts 1 in my web application. I have to show a pdf, placed on my local machine, on the browser. So how should i proceed? Thanks Edited by: 848168 on Mar 29, 2011 12:37 AM

  • How do you zoom in a portfolio?

    I can zoom documents when viewing portfolios created in Acrobat 9 pro ext'd but the zoom option is grayed out in portfolios created in Acrobat X pro, am I doing something wrong or has the feature been removed in the 'improved' version X?

  • Sap security certifications

    Hi All, Can somebody please explain security certifications offered by SAP.I am having exp of around 6+ years on 4.7,ecc6,hr,bw,crm,GRC etc.What should be best suited for me.Is NetWeaver security certification in only offered at Prof.level--and shoul

  • Return as XML in NWDS Expression editor

    Hello experts, when I`m building mapping in swing application, I can set that target node will be returned as XML (return as XML checkbox in context menu). I did not find that choice in expression editor in NWDS. Can you please point me how to get sa

  • Videos-Sound plays, Moving image does not.

    All of the videos I have from bonus albums won't play the actual video. I get sound and a static image. Files are linked. They're in my iTunes folder. Is this a bug with the upgrade? Do I need to change a setting? They show up in my library but don't