AL32UTF8 Page Code

Hi,
I am doing DB lookup using the JDBC Connecor service from Visual Admin, curently the DB which i am using is Oracle 10G code page is set to UTF-8 as i am only dealing with English language values.
Now for the new requirement, i have to read the data in non english (ex chinese or korean) and the codepage of the DB is set to AL32UTF8, since i am reading the non English language i have couple of questions.
Firstly.
1. What are the things i have to take care to read non  english values from D/B using DB lookup trough JDBC Connector service. ( I DNT HAVE ANY CODE PAGE OPTIONS TO SET IN JDBC CONNECTOR SERVICE)
2. I am on PI7.0 it is UNICODE system, with this envinorment what i have to take care.
regards
Nisar Khan

http://en.wikipedia.org/wiki/CESU-8
"The character set AL32UTF8, introduced in version 9.0, is UTF-8 compliant"
There is nothing special to do for you. UTF-8 includes korean and chinese characters.
Regards
Stefan

Similar Messages

  • Landing Page code?

    Hi
    I have SLES11-x64 + Teaming 2.1. Default Landing Page code is UTF-8, can I change it?

    misha,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Get browser title in page code

    Greetings!
    Say I have a page with the following title...
    <title>my page title</title>
    ...In the page code of my jsf page, I want to get at that title. How do I do this?
    public void displayTitle(){
        //something here??
        String title = ?
        System.out.println("Title: " + title);
    }...should result in:
    Title: my page title

    Thanks for the response BalusC!
    You are correct, I'm attempting to get the page title in the backing pagecode. You are also correct that we could potentially store the page titles in a properties file or something else and have access both ways. Perhaps that would be ideal in the long run, but right now our website doesn't do this and it would take more time than what I've got right now to convert it.
    The reason for this is basically our web designer has opted to use bread crumbs on our pages. The bread crumb links will match up with the page titles, and in some instances I will have to dynamically build the bread crumbs. It would be very handy to simply grab the page title, throw it into a bean, and use it on a later page. That would also allow for the page title to remain in the control of the jsp page.
    So, any idea how to determine the page title from inside the backing pagecode?

  • Spry menu bar lost current page code

    I sure can use your help.
    On this site http://www.evtn.com/ I created a drop down menu that originally had the
    current-linked page in a blue background like the one that is now permanently
    sitting on the HOME page link. But it stopped working.
    I want this to work:
    ul.MenuBarHorizontal a.current {
        color: #F4F4F4;
        background-color: #8FC8D1;
    Do you know how I can straighten this out without starting all over again?
    I would also like to have a visited-link-page coded in a separate color if possible as well and don't know how to code it with the java script and spry.css (horizontalmenubar.css)
    I'll send more code of html and spry - whatever you need.
    I've read older posts on this and tried different things but nothing has changed.
    ul.MenuBarHorizontal a:hover  works so I don't know why the content won't
    Thank you!

    Add the following to each page, or to your template
    <script src="SpryAssets/SpryDOMUtils.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">
    function InitPage(){
    Spry.$$('#MenuBar1 li').forEach(function(node){
        var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
        if(a.href == window.location){
            Spry.Utils.addClassName(node,"current");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    making sure that you do have SpryDOMUtils.js in the SpryAssets folder.
    Because the above place a class of current in the list item, you will need to change the selctor to and add
    ul.MenuBarHorizontal li.current a {
        color: #F4F4F4;
        background-color: #8FC8D1;
    Gramps

  • Unable to fetch session variables in my application page code behind

    hi,
    my env:  1  WFE  server which hosts the  central admin and my web appln,  1 sql server box  
    i am having a custom web part[ listviewbyquery web part]  which populates the site collection/ sub site's document library contents . also it reads some query string values and pushes these  values into  session variables.
    and i am having another application page in this application which reads this session variables and  perform some operation in a custom sql db. But i am unable to read these session variables on page load of this  application page.
    am unable to debug also. so, would like to know is there any way i can see, what values  are getting passed to this page and verify the session variables are accessed correctly.
    or
    is this  by design, that its not possible to read session variables in the application page ?
    if i am not having a visual studio env. to debug, how to test these  session variable  existence / to find the root cause of this issue.
    note: already configured session state in IIS , http  modules section. am using Page.Session["myvariable1"].tostring() to fetch the  session variables.
    help is appreciated!

    i have found out myself. i have put  page.response.write(mysessionvariables) in the code and deployed and tested in my env. and i was able to find out the reason and i have fixed it with proper validation check.

  • Changing new page code for doctype

    Hello,
    is it possible to change the code created for a new page when choosing the doctype?
    e.g. if I choose New > HTML > HTML5 I get:
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Untitled Document</title>
    </head>
    <body>
    </body>
    </html>
    Is there somewhere I get edit the default code that gets created?
    Thanks
    Nick

    Hello Murray,
    sorry, i meant to say which version but forgot, I'm using the trial version of CS5.5 on Mac OS.
    I was hoping to be able to change it to use my usual starting point which is:
    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title></title>
    </head>
    <body>
    </body>
    </html>
    In CS4 (which I use at the moment) I start with a blank document and use a snippet to fill in the basic outline. I was hoping 5.5 had a way of changing the default outline (one of the things I dowsnloaded the trial to check out).
    Thanks
    Nick

  • How do you see a pages code?

    Hi,
    I am on a Mac and I know if I hit Command + Option + A it will pull up an activity page which shows the content of a page.  I see .gifs and . jpgs and .css....
    I am curious if I click on the .html page is there a way to see their code?
    Thanks,
    Gary

    From any web browser, you can view HTML code with > View > Source Code or View > Page Source.
    If you have Firebug or the Web Developer Toolbar add-ons for Firefox, you can see a lot more stuff, too.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Reusing JSF Page Code

    I have 3 JSF pages which have the same block of Code.
    Is there a way I could use to make one JSF page say main.jsp with the main block of code and then use something like the include tag to just reuse and insert the main.jsp in my other 3 pages.
    The code is:
    <h:form id="frmRR">
        <f:loadBundle basename="com.eds.send.controller.Resource."
                      var="messages"/>
        <tr:panelHeader styleClass="titleText" text="RR"/>
        <tr:panelHorizontalLayout valign="top">
            <tr:panelHorizontalLayout valign="top">
                <tr:panelGroupLayout layout="vertical">
                    <tr:panelGroupLayout layout="horizontal">
                        <tr:panelGroupLayout styleClass="columnSpace boldAlignLeft"
                                             layout="vertical"
                                             inlineStyle="width:200px">
                            <tr:outputText value="To:"/>
                            <tr:spacer height="18"/>
                            <tr:outputText value="From:"/>
                            <tr:spacer height="18"/>
                            <tr:outputText value="Subject:"/>
                            <tr:spacer height="18"/>
                            <tr:outputText value="Business:"/>
                            <tr:outputText value="#{messages[\date\']}:"/>
                            <tr:outputText value="PN:"/>
                        </tr:panelGroupLayout>
                        <tr:panelGroupLayout styleClass="normalAlignLeft"
                                             layout="vertical"
                                             inlineStyle="width:350px">
                            <tr:outputText value="#{messages[\'hp.email\']} "/>
                            <tr:spacer height="18"/>
                            <tr:outputText value="#{rR.userName}"/>
                            <tr:spacer height="18"/>
                            <tr:outputText value="R R"/>
                            <tr:spacer height="18"/>
                            <tr:outputText value="#{rR.subList.description}"/>
                            <tr:outputText value="#{rR.cyc}">
                             </tr:outputText>
                            <tr:outputText value="#{rR.pN}"/>
                        </tr:panelGroupLayout>
                    </tr:panelGroupLayout>
                    <tr:panelGroupLayout layout="vertical">
                        <f:facet name="separator">
                            <tr:spacer width="10" height="1"/>
                        </f:facet>
                        <tr:outputFormatted inlineStyle="font-weight:bold" styleClass=" columnSpace font_size"
                                            value="Email Message:"/>
                        <tr:inputText id="emailMessage"
                                      value="#{rR.emailMessage}"
                                      columns="50" rows="10" wrap="soft"/>
                    </tr:panelGroupLayout>
                    <tr:panelButtonBar>
                        <tr:commandButton text="Confirm"
                                          action="#{rRBean.createAction}"/>
                        <tr:commandButton text="Cancel" action="home"/>
                    </tr:panelButtonBar>
                </tr:panelGroupLayout>
            </tr:panelHorizontalLayout>
            <f:facet name="separator">
                <tr:spacer width="8"/>
            </f:facet>
            <tr:panelHorizontalLayout valign="top" halign="right">
                <tr:panelGroupLayout layout="vertical">
                    <tr:outputText inlineStyle="width:270px; font-size: 8pt; font-weight:bold; text-align: left"
                                   styleClass="subnav"
                                   value="#{messages[\'rReq.terms\']}"/>
                    <tr:outputText inlineStyle="width:270px; font-size: 8pt; font-weight:normal; text-align: left"
                                   styleClass="subnav"
                                   value="#{messages[\'rReq.body\']}"/>
                </tr:panelGroupLayout>
            </tr:panelHorizontalLayout>
        </tr:panelHorizontalLayout>
    </h:form>I want to be able to put this code in a Main jSP and then just include the tag in other JSPs where ever I want the above fields to be populated.
    How can this be achieved ?
    Thanks

    you already are blessed with the rare event of a Sun employee answering a question for you, now don't push it by demanding more. A simple google query can give you all the answers you need. For example this page can give you some hints:
    http://www.ibm.com/developerworks/java/library/j-facelets/
    The facelets website also has lots of documentation.
    https://facelets.dev.java.net/nonav/docs/dev/docbook.html

  • Secure html page code

    Does anyone have or know of free html code or a behavior to make a single web page secure and password protected? I don't want to have to purchase any software that runs in the shadows. I have to believe there is a simple way to do this but I can not find anything online. I am using MAC CS3 Dreamweaver. Thanks!

    Tony Goedde wrote:
    Does anyone have or know of free html code or a behavior to make a single web page secure and password protected?
    How secure does the security need to be and does everyone need their own login/password or will one do for everyone?
    As bregent says, you can start by putting the page into a password protected directory on the server and giving everyone the same username/password.
    Either your host can create the directory for you or you can create it via a cPanel or Plesk or similar on the server.
    This works for many non-profits I deal with.
    Anything more sophisticated or rigorous usually needs a more robust database-driven approach with server-side scripting.

  • DW CS4 error message with OSMF page code

    Hello all,
    This error started popping up today but did not when I was working with Strobe a few days ago.
    The error:
    "This page contains some SWF objects that may not work properly in the most recent versions of Internet Explorer. Dreamweaver cannot convert them to the new SWF markups. Please delete each of them and insert again."
    First, why wouldn't hsi have appeared several days ago and
    Second, what does it mean to a beginner such as myself?
    Thanks in advance for your help.
    Sincerely,
    wordman

    I have installed 11.0.1 update along with the latest ATI 4850 drivers.I can now start Photoshop and I recieve the message that Photoshop has encountered a problem with the display driver and has temporarily disabled GPU enhancements.I close the box and try to open a photograph when Photoshop crashes with the above error message.I have also tried PSCS4GPU_OptionalPlugins to no avail. I have also checked the ATI Radeon HD 4800 properties and in the General tab it reads This device is working properly.
    Windows did not start a related device driver. To learn more, click the Driver tab and then click Driver Details.I opened the Drivers Details and found that one of the entries was not ticked. C:\Windows\system32\drivers\ATKDispLowFilter.sys.Hope this helps.

  • How to embed widget code in a page or template?

    Hi All - I have been using Dreamweaver 8 for a little over a year and still feel like I'm stumbling along...
    The idea of Widgets is fairly new to me but from all the "Free Widget" sites, I got the idea that it was as easy as cut & paste into the page code...
    Okay, something isn't right... the code shows up on the page as text, not the nice little widget iself.
    HOW do I go about getting these little apps to work on my site?
    I have the macromedia extension manager, but is it an extension or is it the code itself and how to place it that matters?
    Help! .. I am really unsure about anything involving code...so please use small words!
    Thanks!

    journalgrrl wrote:
    I am sorry, I thought it was pretty straightforward... if Dreamweaver is supposed to be designer-friendly.
    It depends what you mean by "designer-friendly". Dreamweaver is a professional web development tool. It speeds up the development of websites using  HTML, CSS, JavaScript, and other web-related languages. If you have been using it for a year and still feel you're stumbling along, it sounds as though you don't understand the tool you're trying to use. Without a sound knowledge of HTML and CSS, Dreamweaver will always remain an uphill struggle.
    If you understand the web technologies you're working with, cutting and pasting a widget isn't particularly difficult. But if you don't understand JavaScript and how it interacts with HTML, the process becomes more difficult.
    I see that you're new to the forum. Please take a few moments to read How to get help quickly. One of the things it explains is that it's always a good idea to put an example of the problem you're having on a website and post the URL. By seeing things in context, it's much easier for others to help you. Solving your problem may be something that can be fixed in a jiffy, or it might be much more complicated. At the moment, though, your question is far too vague. It's like ringing up a garage and saying your car isn't running well. The first thing the mechanic will tell you is to bring it in so he can look at it.
    You have posted this question in the Dreamweaver Application Development forum, which deals mainly with PHP, ASP, and other server-side languages. I'm moving this thread to the main Dreamweaver forum, which has more users who might be able to offer further advice.

  • Getting a printed QR code to point to a specific page within my mobile site?

    Hi All,
    I'm createing a printed marketing campaign for my business and I want to direct a QR code to a page within my mobile muse site (not the home page).
    I can change the url of the QR code but I'm unsure what the url path should be?
    The page is called QR, so I thought that www.wearebrightlights.com/QR would work but I get a 404 error.
    Here are the pages below. The QR code should link to the red page on the right, called QR.
    Any suggestions?
    Thanks,
    Ben

    That file will process a form that is submitted.  If your contact page uses that file then the filename should appear somewhere in the contact page code.

  • Oracle CODE Submission Web Page - MAKE IT WORK  finally ( not temporary! )

    Is it possible to finally FIX Oracle Code Submission web page. Last year ( last half ) it return errors, same this time. Is any possible way to finally FIX it without anytime alert that it is not working or broken. As far as I understand that the place were we share our code/tips/ideas, not publish our friends or something like that. I think if we use it, then at least put warning prior than we try to submit. No conversations about re-type same code ( tip used SQL, new tip - SAME but using PL/SQL function ), but at least make it work.
    Thanks/Ilya

    Thanks, Olivier. That may help me in future and shows me where I can edit some of the HTML code (though I've no experience yet of even reading HTML or Javascript, let alone editing it!).
    The web page I'm trying to edit has a URL of https://....../sap/bc/gui/sap/its/bbpstart which fits your example but the templates under service BBPSTART seem to bear no resemblance to the screen I need. The code under services BBPSC01 and BBPSC02 looks more relevant but still doesn't refer to the screen input field that I'm looking to edit.
    Doing View Source on the web-page dumps the (very lengthy) generated code. Extracted from the header of that code-dump is...
    This page was created by the SAP Integrated ITS, WebAS: SRA, workprocess: 0
    Template: bbpsc02/99/saplbbp_sc_ui_its_2000.html
    Does that point me to the actual editable source?
    (I am using SE80 in the SRA system.)
    I wrote the above on 3rd Jan but was unable to post it.
    Since then I have found template SAPLBBP_SC_UI_ITS 2000 in service BBPSC01 does bear a resemblance to the displayed page code but as a scanty framework. The generated code has vastly more lines. I can't yet see how the template becomes the web page and where all the addditional lines of code come from and are edited.

  • Changing default code in HTML "Create New" page for CS3

    When I open dreamweaver and go to File>New>blank Page>HTML, the code that displays when the page is opened isn't what I want. For instance, I'd like to change the XHTML DOCTYPE to 1.0 strict (from transitional).
    Is there a way I can get in to the backend of this program and change that code so I don't have to do it manually every time I open a blank html page in DW? Or can I make my own, and then make that my default html page code?
    Thanks,
    Luke

    When you Choose FILE>New, you will see a Preferences button at the bottom of the interface.  Click on that and you can choose how to diplay the 'new page' whenever you open up a new document.

  • Blank page with pasted code

    Using Dreamweaver 4. I have problems when I try to paste code
    that is generated by Google AdSense in to our web site index page
    code. The published viewed page is completely blank and removing
    the code brings the page back. I had a similar problem with code
    from Stat Counter and removing the stat code brought the page back.
    If I paste the AdSense code in the wrong place it will
    publishe the code on the published page, which also happens with
    Paypal code as well. Pasting in the correct location always fixes
    the Paypal button issue, but with AdSense I can not get it to work
    and I have tried multiple places. Google says it is due to the
    "what you see is what you get " Dreamweaver software and it is
    altering the code, but it appears to be identical as the code that
    is generated by Google.
    Any ideas would be greatly appreciated.
    Thanks!
    Text

    Here is part of the page with the Google code....the page is
    too large to post it all here. I hope this will help find the
    problem for the published blank page.
    Roy
    <!DOCTYPE HTML SYSTEM><html>
    <td align="center" valign="top" height="243"
    width="279">
    <div align="center">
    <p><img src="67%20sm.jpg" width="200" height="96"
    alt="Pro Mod R67 body" usemap="#Map" border="0"></p>
    <p><font size="2"><b><font
    color="#000000"><i>RAE Pro Mod R67
    Body</i></font><font color="#0000FF"><br>
    </font></b><font color="#000000">(paint by
    Green Light Graphix)</font><b><font
    color="#0000FF"><br>
    <br>
    <br>
    </font></b></font></p>
    <p><font size="2"
    color="#0000FF"><b><br>
    </b></font></p>
    <p><font color="#FF0000"><font size="2"
    color="#000000">Pro Mod body with
    molded hood scoop and extra fine details. Body has narrow
    front at 5.50
    inches and is 7.40 at rear wheels. 19.25 inches long and
    pulled in .030
    Lexan. </font><font color="#000000"
    size="2">Also includes clear covering<b>.<br>
    <font color="#0000FF"><a
    href="Bodies%20page.htm">Part # 603
    $30.00</a></font></b></font></font></p>
    </div>
    </td>
    <td align="center" valign="top" width="279">
    <div align="center"><img
    src="sixmagnet%20motorsm.jpg" width="188" height="208"
    usemap="#Map3" border="0" alt="6 mag motor"><br>
    <p align="center"><font face="Times New Roman,
    Times, serif" color="#000000" size="2"><b><i>6
    Magnet NEO Machined Can Motors:</i>
    </b></font><font face="Times New Roman, Times,
    serif" size="2" color="#000000">The
    installed six neodymium magnets in a <b>NEW
    </b>machnined low carbon
    steel can create a substantial increase in torque resulting
    in a very
    powerful motor.<br>
    <font color="#0000FF"><b><a
    href="Motor%20Battery.htm">Part # 520
    $239.00</a></b></font></font></p>
    </div>
    </td>
    </tr>
    <tr>
    <td align="center" valign="top" height="293"
    width="279">
    <div align="center">
    <p><img src="Monstang%20truck%20sm.jpg" width="200"
    height="147" alt="RAE Pro Body R05" usemap="#Map2"
    border="0"><br>
    <font color="#000000" size="2"><b><i>RAE
    Pro Body R05</i></b></font></p>
    <p><font size="2"><font color="#000000"
    face="Geneva, Arial, Helvetica, san-serif"><i>Lately
    our bodies have been considered for Monster Truck
    applications. </i></font><font
    color="#000000">This
    is our Pro Body R05 mounted on a Clodbuster / Thunder Tech
    chassis.</font></font>
    <br>
    <font color="#0000FF" size="2"><b><a
    href="Monster%20Trucks.htm">Part
    # 600 $30.00</a></b></font></p>
    </div>
    </td>
    <td align="center" valign="top" height="293"
    width="279">
    <p><img src="34%20Roadster%20sm.jpg" width="190"
    height="74" alt="RAE Super Comp R34 body" usemap="#Map4"
    border="0"><br>
    <b><font color="#0000FF" size="2"><br>
    <font color="#000000"><i>RAE Super Comp R34
    Body</i></font><br>
    </font></b><font size="2"
    color="#000000">(paint by Green Light
    Graphix)</font><b><font color="#0000FF"
    size="2"><br>
    <br>
    </font></b></p>
    <p><b><font color="#0000FF"
    size="2"><br>
    <br>
    </font></b><font color="#FF0000"><font
    size="2" color="#000000">Pro Comp
    body with molded hood scoop and extra fine details. Body has
    narrow front
    at 5.40 inches and is 6.90 at rear wheels. 17.25 inches long
    and pulled
    in .030 Lexan. </font><font color="#000000"
    size="2">Also includes clear
    covering, separate rear wing.<br>
    <a href="Bodies%20page.htm"><br>
    <font color="#0000FF"><b>Part #
    602</b></font></a></font></font><a
    href="Bodies%20page.htm"><font color="#0000FF"
    size="2"><b>
    $30.00 </b></font></a></p>
    </td>
    </tr>
    </table>
    <br>
    <table width="850" border="1">
    <tr>
    <td align="left" valign="top" height="74"
    bgcolor="#CCCCCC">
    <div align="center"><font size="3"
    color="#000000"><b>W</b></font><font
    color="#000000" size="3"><b>e
    started Grand Motorsports in 1993 as a business to help
    radio controlled
    car enthusiasts get more enjoyment out of their radio
    controlled cars
    by designing unique products and providing great service.
    Now we have
    transfered all those years of experience and knowledge into
    <i>R.A.E.</i>
    At <i>R.A.E</i> we will concentrate on electric
    motor development for
    the radio control car industry, producing our own line of
    radio control
    drag car bodies and truck bodies, as well as doing advanced
    design and
    engineering work in other areas of the hobby. Feel free to
    contact us
    if you would like us to help you with your radio control
    project. <br>
    Thank you for your interest in our products and we hope you
    continue to
    enjoy the radio controlled car
    hobby</b></font><b><font size="3"
    color="#000000">!</font></b></div>
    </td>
    </tr>
    </table>
    <p align="center"> </p><script
    type="text/javascript"><!--
    google_ad_client = "pub-5364387402318604";
    google_ad_width = 728;
    google_ad_height = 90;
    google_ad_format = "728x90_as";
    google_ad_type = "text_image";
    //2007-05-03: RAE channel number one
    google_ad_channel = "0891715024";
    //-->
    </script>
    <script type="text/javascript"
    src="
    http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    <p align="center">
    <map name="Map">
    <area shape="rect" coords="14,7,187,95"
    href="Bodies%20page.htm" target="_self" alt="PM R67" title="PM
    R67">
    </map>
    <map name="Map2">
    <area shape="rect" coords="14,12,186,134"
    href="Monster%20Trucks.htm" target="_self" alt="PB R05" title="PB
    R05">
    </map>
    <map name="Map4">
    <area shape="rect" coords="8,5,183,68"
    href="Bodies%20page.htm" target="_self" alt="SC R34" title="SC
    R34">
    </map>
    <map name="Map3">
    <area shape="rect" coords="12,15,181,200"
    href="Motor%20Battery.htm" target="_self" alt="6 magnet motor"
    title="6 magnet motor">
    </map>
    </p>
    </body>
    </html>

Maybe you are looking for

  • Data Load : Number of records count

    Hi Experts,           I want to document number of records transferred to BW during an infopackage execution.           I want to automate the process by running a report in background which will fetch a data from SAP tables about number of records b

  • John Lewis and the new iMac

    Can anyone tell me if the iMac's in John Lewis right now come with Leopard pre-installed like they do on apple.com - The reason I ask is because they have the 24" in stock and I can get it now, but they couldn't tell me if Leopard was on it or not!

  • IIf condition between dates using mdx query

    Hi, how to check IIF condition between dates using mdx query. I able to check single year,plese check below mdx query.I need to check members between years. my requirement is member is belongs to between years(2007 to 2010),display "yes" else "NO"; C

  • Bridge doesn't work it crashes everytime how do i get this working?

    It says Bridge encountered a problem and is unable to read the cache. Please try purging the central cache in Cache Preferences to correct the situation, I have - it didn't work.

  • Please tell me about Enhancement Techniques used in SAP Other then BADI/Usr

    Hi Experts . Please guide me about Enhancement Techniques used in SAP apart from BADI/User-Exit . 1.) what is set and how to create it ? 2.) What is formula is SAP and How to set it for Enhancement Pupose . 3.) What is BTE (Buisness Transection Event