Formula not working, Plz help

Hi all i have one scenario for formula$
I am calculatingYTD value in period dim and one more dime CATGORY and INDICATOR
scenario is wen indicator member is ID3 we have to calculate ytd values and we have to displaythe values for ytd crossing(which is in cat dim)
Structure$
TIME
2009
YTD09
CATOGORy
....Mtd
....;;YtD(formula)
......y_tech
indicator
Id12
....ID121
....ID123
..........1231
..........1232
ID3
....ID31(+)
....ID123(/)(sheredmember)
iam using formula
iif([INDICATOR].currentmember=[ID-3],[Ytd09],[y_tech]) , its validating
but its not working , I am new to mdx formulas , plz can any one help on this
can any one give the link for mdx formulas syntax and sample formulas
Thanks
Edited by: user8815661 on 26 mars 2010 06:19
Edited by: user8815661 on 26 mars 2010 06:33

I am not sure what your complete formula looks like,
But in your IIF = condition, use OR instead of commas - pretty basic, dont know for sure if it will work.
post your formula if you need more help

Similar Messages

  • IN Clause with Ampersand(Lexical Parameters) not working plz help

    hi
    I m writing the following query but it is not working. plz help how can i apply ampersend(lexical parameter) with IN clause.
    select * from emp where to_number(empno) IN (&p_1);
    thnx

    Hi,
    Try to change the query as
    SELECT <field_list> FROM EMP &P_1and in the AFTER PARAMETER FORM trigger write the WHERE condition including the WHERE clause, Column_Name etc.
    Hope this helps.
    Regards,
    Manu.

  • My vibraton not work plz help me

    my vibraton not work plz help me

    Well you do one thing!
    Download the latest version of iTunes and install it! Here's the link : http://www.apple.com/itunes/download/
    After you download iTunes, you connect your iPhone to the computer and sync it once. After that right click on the iPhone under the devices in the sidebar on the left and hit backup. After it's done. Hit the restore button. It will download the latest version of iOS and it's gonna take a while to download it. After download is completed, it will start restoring your iPhone with the latest iOS, it will take few minutes, and you're done installing the latest iOS in your iPhone.
    This should solve your problem anyhow

  • Hi i installed wrong iousbfamily on osx and now my login screen is frozen, keyboard and mouse not working plz help

    hi i installed wrong iousbfamily on osx and now my login screen is frozen, keyboard and mouse not working plz help

    How and why did you install that?  What steps did you take in that process.  I can then help with some steps to undo them. 

  • Plz help my ipad mini is just bringing the apple logo again and again and it is not working plz help

    plz help my ipad mini is just bringing the apple logo again and again and it is not working plz help

    If the reset doesn't work, you have to force iPad into Recovery Mode
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • My i phone4 camera not work        plz help

    my i phone4 camera not work        plz help

    Reset your phone by holding the power/lock button at the top and your home button at the bottom until you see the Apple logo on the screen.
    Once phone is fully rebooted try again.

  • My iphone's setting menu is not working.plz help me

    When i enter into the setting tab all the menu is not working i cant eneter to any item there or even i cant scroll down.plz help me

    Try hard resetting the phone.
    Hold down the sleep/wake button and the home button at the same time until the apple appears and let the phone reset itself.
    Let me know if you've already tried this or if it works.

  • Code for radio button is not working plz help

    checkboxes are working fine but when i put radio code submit button does nothing
    plz help
    thanks in advance
    <%@ page language="java" contentType ="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" import= "java.sql.*,java.io.*,com.anaghan.MyBeans.CmsConnection"%>
    <jsp:useBean id="obj" scope="request" class="com.anaghan.MyBeans.DepartmentBean"/>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" >
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <script language="javascript" >
    function cmdOnSelect()                                   
                   var deptcode=document.DepartmentPage.cmdSelect.value;
                   DepartmentPage.method="post";
                   DepartmentPage.action="./vsnlemployee_calldatasheetcallhistory.jsp?flag=select&cmdSelect="+deptcode;
                   DepartmentPage.submit();           
    function validate()
         var user_etime = document.DepartmentPage.etime.value;
         var etime_length = document.DepartmentPage.etime.value.length;
         var user_edate = document.DepartmentPage.edate.value;
         var edate_length = document.DepartmentPage.edate.value.length;
         var user_calltype = document.DepartmentPage.calltype.value;
         var calltype_length = document.DepartmentPage.calltype.value.length;
         var user_callstatus = document.DepartmentPage.callstatus.value;
         var callstatus_length = document.DepartmentPage.callstatus.value.length;
         if( edate_length==0 )
              alert("Please enter the call date");
              return false;
         else if( calltype_length==0 )
              alert("Please enter the call type");
              return false;
         else if( callstatus_length==0 )
              alert("Please enter the call status");
              return false;
         else if( etime_length==0 )
              alert("Please enter the call timing");
              return false;
         else if(etime_length!=0 && etime_length!=4)
              alert("Entered timing is invalid");
              return false;
         else if (etime_length!=0)
              for (var i = 0; i < etime_length; i++)
                   valid_characters = new RegExp ("[0-9]", "g");
                   var part_user_etime = user_etime.charAt (i);
                   if (!valid_characters.test (part_user_etime))
                        alert("Special characters like '" + part_user_etime + "' are not allowed in timing" );
                        return false;
                   valid_characters = null;
              return true;
         else
              return true;
    function cmdOnClick()                                   
              if (validate())
                        DepartmentPage.method="post";
                        DepartmentPage.action="/anaghan/CallSheet?flag=call";     
                        DepartmentPage.submit()     
    </script>
    <script language="javascript" src="calendar1.js">
    </script>
    </head>
    <body>
    <%
    String uname=(String)session.getAttribute("employeeName");
    if(uname==null)
         response.sendRedirect("/Error.jsp?login=Login Session Problem");
    %>
    <%
         String date1="";
         String date2="";
    %>
    <%!
         ResultSet rs=null;
         Connection con =null;
         String conStr="sun.jdbc.odbc.JdbcOdbcDriver";
         String tableStr="jdbc:odbc:Anaghan";
    %>
    <%
         String companycode=request.getParameter("cmdSelect");
         HttpSession hs = request.getSession();
         hs.setAttribute("companycode",companycode);
         System.out.println("CALLLLL="+companycode);
    %>
    <%
         String flag="";
         String deptcode="";
         String commissioningdate="";
         String closuredate="";
    %>
    <%
         String a2="";String a1="";
    %>
    <form name="DepartmentPage" >
    <TABLE cellSpacing=0 cellPadding=0 width="100%" border="0" >
         <TR>
              <TD align=CENTER>
                   <h2> CALL DATA SHEET </h2>
              </TD>
         </TR>
         <TR>     
              <div>
                                  <FONT face="Arial " color=#000000 size=2>
              <TD valign="top">          
                   <TABLE cellSpacing=15 cellPadding=0 width="100%" border="0">
                        <TD width="50%" vAlign="top" align=CENTER height=24 bgcolor=#F8F8F8 >
                                       <tr>
                                            <TD align=RIGHT>Select Company - </TD>
                                                 <td><SELECT name="cmdSelect" size="1" onChange="cmdOnSelect();">
                                                 <OPTION SELECTED></OPTION>
                                                      <%
                                                           deptcode=request.getParameter("cmdSelect");
                                                           response.setContentType("text/html");
                                                           ResultSet rs = obj.onSelect();
                                                           while(rs.next())
                                                                String tempName=rs.getString(2);
                                                      %>
                                                 <OPTION id= "a<%=tempName %>" value= "<%=tempName%>"> <%=tempName %></OPTION>
                                                 <%}%>
                                                 </SELECT></td>
                                       </TR>
                                            </TD>
                                       </TABLE>
                                       <TABLE cellSpacing=15 cellPadding=0 width="100%" border="0">
                                            <TR>
                                                 <TD>
                                                 <table align="center" width="90%" cellspacing="2" cellpadding="2">
                                                      <tr>
                                                           <td align="center"><h2>Contact Person</h2></td>
                                                      </tr>
                                                 </table>
                                                 <table align="center" width="90%" border="1" cellspacing="2" cellpadding="2">
                                                 <tr><th>Name</th><th>Landline</th><th>Mobile</th><th>Fax</th><th>E-mail</th></tr>
                                                 <%!
                                                      ResultSet result=null;
                                                 %>
                                                 <%
                                                      response.setContentType("text/html");
                                                 try{
                                                      Connection con = DriverManager.getConnection("jdbc:odbc:Anaghan");
                                                      Statement stmt=con.createStatement();
                                                      result =stmt.executeQuery("select * from enquiry_details where companycode='"+deptcode+"' ");
                                                      while(result.next())
                                                      %>
                                                      <tr>
                                                           <OL><td align ="center"><%=result.getString(9) %></td>
                                                           <td align ="center"><%=result.getString(10) %></td>
                                                           <td align ="center"><%=result.getString(11) %></td>
                                                           <td align ="center"><%=result.getString(12) %></td>
                                                           <td align ="center"><%=result.getString(13) %></td></OL>
    <tr>
                                                           <OL><td align ="center"><%=result.getString(14) %></td>
                                                           <td align ="center"><%=result.getString(15) %></td>
                                                           <td align ="center"><%=result.getString(16) %></td>
                                                           <td align ="center"><%=result.getString(17) %></td>
                                                           <td align ="center"><%=result.getString(18) %></td></OL>
                                                           <%}
                                                      catch(Exception e)
                                                           e.printStackTrace();
                                                      }%>
                                                 </tr></table>
                                                 </TD>
                                            </TR>
                                            <TR>
                                                 <TD>
                                                 <table align="center" width="90%" cellspacing="2" cellpadding="2">
                                                      <tr>
                                                           <td align="center"><h2>Call History</h2></td>
                                                      </tr>
                                                 </table>
                                                 <table align="center" width="90%" border="1" cellspacing="2" cellpadding="2">
                                                 <tr><th>Call Type</th><th>Call Status</th><th>Service Type</th><th>Feedback</th><th>Next Visit</th><th>Call Date</th></tr>
                                                 <%!
                                                      ResultSet result1=null;
                                                 %>
                                                 <%
                                                      response.setContentType("text/html");
                                                 try{
                                                      result1=obj.onSelectCallHistory(deptcode);
                                                      while(result1.next())
                                                      %>
                                                      <tr>
                                                           <OL><td align ="center"><%=result1.getString(3) %></td>
                                                           <td align ="center"><%=result1.getString(4) %></td>
                                                           <td align ="center"><%=result1.getString(6) %></td>
                                                           <td align ="center"><%=result1.getString(7) %></td>
                                                           <td align ="center"><%=result1.getString(9) %></td>
                                                           <td align ="center"><%=result1.getString(8) %></td>
                                                           </OL>
                                                           <%}}
                                                      catch(Exception e)
                                                           e.printStackTrace();
                                                      }%>
                                                 </tr></table>
                                                 </TD>
                                            </TR>
                                       <TABLE cellSpacing=15 cellPadding=0 width="100%" border="0">
                                            <TD width="50%" vAlign="top" align=CENTER height=24 bgcolor=#F8F8F8 >
                                            <TR>
                                                 <TD></TD>
                                            </TR>
                                            <TR></TR>
                                            <TR>
                                                 <TD align=RIGHT>                                   
                                                 Type of Call - </TD>
                                            <td>
                                            <input type = radio name=calltype value=personal/>personal
                                            <input type = radio name=calltype value=email/>Email</td>
                                                 <!-- <TD><SELECT name="calltype" size="1" >
                                                      <OPTION SELECTED></OPTION>
                                                      <OPTION id= "s" value= "personal"> Personal </OPTION>
                                                      <OPTION id= "s" value= "telephonic"> Telephonic </OPTION>
                                                      <OPTION id= "s" value= "email"> E-mail </OPTION>
                                                      <OPTION id= "s" value= "meeting"> Meeting </OPTION>
                                                      </SELECT>
                                                 </TD>-->
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT>                                   
                                                 Status of Call - </TD>
                                                 <TD>
                                                 <SELECT name="callstatus" size="1" >
                                                      <OPTION SELECTED></OPTION>
                                                      <OPTION id= "s" value= "cold"> Cold </OPTION>
                                                      <OPTION id= "s" value= "warm"> Warm </OPTION>
                                                      <OPTION id= "s" value= "hot"> Hot </OPTION>
                                                      <OPTION id= "s" value= "closed"> Connection Executed </OPTION>
                                                      <OPTION id= "s" value= "upgrade"> Upgrade </OPTION>
                                                      <OPTION id= "s" value= "downgrade"> Downgrade </OPTION>
                                                      <OPTION id= "s" value= "shiftingoflocation"> Shifting of Location </OPTION>
                                                      <OPTION id= "s" value= "connectionterminated"> Connection Terminated </OPTION>
                                                      </SELECT>
                                                 </TD>
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT>Date - </TD>
                                                 <TD><input type="text" readonly name="edate" id="edate" size="10" value="<%=date1 %>">
                                                 <img src="./cal.gif" width="16" height="16" border="0" alt="Click Here to Pick up the date">
                                                 </TD>
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT>                                   
                                                 Time - </TD>
                                                 <TD><input type="text" size="4" name="etime" maxlength="4"></TD>
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT>                                   
                                                 </TD>
                                                 <TD>(Write timing in 0000 - 2400 in this format only)</TD>
                                            </TR>
                                            <TR><TD align=CENTER> INFRASTRUCTURE DETAILS
                                                 </TD></TR>
                                            <TR></TR>     
                                            <TR>
                                                 <TD align=RIGHT bgcolor=#00CCFF>     
                                                 <font color="#CC6600" size=4>Details of service </font></TD>
                                                 <TD></TD>
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT>                                   
                                                 Circuit Specification - </TD>
                                                 <TD><SELECT name="servicetype" size="1" >
                                                      <OPTION SELECTED>---Services---</OPTION>
                                                      <OPTION id= "s" value= "IPLC"> IPLC </OPTION>
                                                      <OPTION id= "s" value= "VPN"> VPN </OPTION>
                                                      <OPTION id= "s" value= "ILL"> ILL </OPTION>
                                                      <OPTION id= "s" value= "VoIP"> VoIP </OPTION>     
                                                      <OPTION id= "s" value= "ISDN"> ISDN </OPTION>
                                                      <OPTION id= "s" value= "IDC"> IDC </OPTION>
                                                      <OPTION id= "s" value= "V-IPLC"> V-IPLC </OPTION>
                                                      <OPTION id= "s" value= "contactcenter"> Contact Center </OPTION>
                                                      </SELECT>
                                                 </TD>
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT vAlign=TOP>
                                                 Feedback Details - </TD>
                                                 <TD><TEXTAREA wrap="virtual" name="feedback" rows=5 cols=30 MAXLENGTH=100></TEXTAREA></TD>
                                            </TR>
                                            <TR>
                                                 <TD align=RIGHT>Next Visit Scheduled - </TD>
                                                 <TD><input type="text" readonly name="nextvisit" id="nextvisit" size="10" value="<%=date2 %>">
                                                 <img src="./cal.gif" width="16" height="16" border="0" alt="Click Here to Pick up the date">
                                                 </TD>
                                            </TR>
                                            <TR></TR>
                                            <TR>
                                                 <TD></TD>
                                                 <TD>     
                                                      <input type="button" name="bill" value="SUBMIT" onClick="cmdOnClick();">
                                                         <input type="reset" name="reset" value="RESET" >
                                                 </TD>
                                            </TR>
                                       </FONT>
                             </div>
                        </TD>
                   </TR>
              </TABLE>
         </TD>
         <TD vAlign=TOP bgcolor=#FFFFFF>
                   </TD>
         </TR></TABLE>
    </form>
    <script language="JavaScript">
         var cal1 = new calendar1(document.forms['DepartmentPage'].elements['edate']);
         var cal2 = new calendar1(document.forms['DepartmentPage'].elements['nextvisit']);
    </script>
    <script language="javascript">
    document.getElementById('a<%=request.getParameter("cmdSelect")%>').selected=true;
    </script>
    <BR><BR>
    <jsp:include page="index-end.jsp"/>
    </body>
    </html>

    If the reset doesn't work, you have to force iPad into Recovery Mode
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • I used to run this scrip before updating my FireFox and it worked fine, now it is not working, plz help javascript:%20void%200

    I used to use this Java Scrip before updating my FireFox
    now its not working, the script is as under
    javascript:%20void%200
    this script open more then 50 pages in sequence as per the http addresses given on few web pages.
    please help

    All I am trying to do is enable "one click" functions for downloading gifts on Farmtown. I am on Windows Vista; have upgraded to Firefox5; updated Java today. When I try to download stuff from www.farmtown-links.com, a tab appears with "javascript:%20void%200" I have NO IDEA what this all means...I need an easy fix, PLEASE. I know a lot of FT people are going to this site. I have also added this addon: http://www.grizzlyape.com/addons/multilinks/. Still no luck. Even though some claim Chrome works better, I am still a happy camper w/Firefox and hardly ever use IE.

  • Tiger to Leopard transition- user name and password not working. plz help!

    Hi all. Last year I purchased a MacBook Pro with Tiger OSX. Anyways I wanted to switch to leopard, so I did. Now when I want to install updates, as usual it requires my user name and password. But after I installed leopard, my old user name and password does not work (my login name does not even show up in the box anymore). I can not install any new software on my computer because of this so called "new password." Any assistance would be greatly appreciated because this is very frustrating since I just purchased an iPhone and I can't sync it because I need the new version of itunes.

    can you log in at all as another user? if not activate root and log in as root using [these instructions|http://support.apple.com/kb/TS1278]. then look in the /Users folder at the top level of the hard drive. do you see the home directory with your old username there? post back with what you find.

  • Can not understand why it is not working, plz help.

    I am a student trying to understand flex builder 3, but it is very hard and when something is going wrong I think that I will never undersand how is it working.
    Hete is my program and do not see a problem. Maybe someone could help me?
    MAIN APLICATION :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" horizontalAlign="left"
    xmlns:omp="components.*" themeColor="#444444"
    backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#686868, #111111]"
    initialize="klaseServ.send(),mokinysServ.send()"
    xmlns:comp="components.*">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    [Bindable] private var klaseArray:ArrayCollection;
    [Bindable] private var mokinysArray:ArrayCollection;
    // PRIVATE -------------------------------------------------------------------------
    private function resultKl(event:ResultEvent):void{
    klaseArray=event.result.ROWSET.ROW;
    private function resultMo(event:ResultEvent):void{
    mokinysArray=event.result.ROWSET.ROW;
    // PUBLIC ---------------------------------------------------------------
    ]]>
    </mx:Script>
    <mx:HTTPService id="klaseServ"
    url="data/vkklase.xml"
    result="resultKl(event)" />
    <mx:HTTPService id="mokinysServ"
    url="data/vkmokinys.xml"
    result="resultMo(event)" />
    <mx:VBox x="0" y="0" width="100%" verticalGap="0">
    <mx:Canvas height="70" width="100%">
    <mx:Panel title="{horizontalList.selectedItem.PAVADINIMAS}"
    height="70" width="100%" layout="horizontal">
    <mx:HorizontalList id="horizontalList"
                        labelField="PAVADINIMAS"
                        dataProvider="{klaseArray}"
                        itemRenderer="icon"
                        columnCount="10"
                        columnWidth="30"
                        rowCount="1"
                        rowHeight="30"
                        horizontalScrollPolicy="on" />
    </mx:Panel>
    </mx:Canvas>
    <mx:VBox height="90" width="100%">
    <mx:Panel height="90" layout="horizontal" title="Asmuo" width="100%" backgroundAlpha="1.0">
    <mx:HorizontalList height="50" width="100%" dataProvider="mokinysArray"/>
    </mx:Panel>
    </mx:VBox>
    <mx:HBox height="15" color="#FFFFFF" width="100%" backgroundColor="#636161">
    <mx:Label id="vardasLab" text="Vardas" />
    <mx:Label id="pavardeLab" text="Pavardė" />
    <mx:Label id="amziusLab" text="Amžius" />
    </mx:HBox>
    <mx:HBox>
    <mx:VBox width="60" verticalGap="0">
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    <mx:Image source="icons/photoIco.jpg" height="60" width="60"/>
    </mx:VBox>
    <mx:Canvas>
    </mx:Canvas>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>
    ICON.MXML
    <?xml version="1.0" encoding="utf-8"?>
    <!-- http://blog.flexexamples.com/2008/02/15/creating-a-simple-image-gallery-with-the-flex-hori zontallist-control/ -->
    <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
            horizontalAlign="center"
            verticalAlign="middle">
        <mx:Label text="{data.PAVADINIMAS}" />
        <mx:Label text="{data.KIEKMOKINIU}" />
    </mx:VBox>
    data/vkklase.xml
    <?xml  version="1.0" ?>
    - <ROWSET>
    - <ROW>
    <ID>2</ID>
    <PAVADINIMAS>7B</PAVADINIMAS>
    <KIEKMOKINIU>1</KIEKMOKINIU>
    </ROW>
    - <ROW>
    <ID>1</ID>
    <PAVADINIMAS>1A</PAVADINIMAS>
    <KIEKMOKINIU>2</KIEKMOKINIU>
    </ROW>
    - <ROW>
    <ID>3</ID>
    <PAVADINIMAS>7C</PAVADINIMAS>
    <KIEKMOKINIU>3</KIEKMOKINIU>
    </ROW>
    </ROWSET>
    data/vkmokinys.xml
    <?xml  version="1.0" ?>
    - <ROWSET>
    - <ROW>
    <ID>2</ID>
    <KLASE>1A</KLASE>
    <VARDAS>Paulius</VARDAS>
    <PAVARDE>Paulauskas</PAVARDE>
    <GIMMETAI>2002</GIMMETAI>
    <GIMMEN>12</GIMMEN>
    <GIMDIEN>20</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>3</ID>
    <KLASE>1A</KLASE>
    <VARDAS>Saulius</VARDAS>
    <PAVARDE>Saulenas</PAVARDE>
    <GIMMETAI>2003</GIMMETAI>
    <GIMMEN>1</GIMMEN>
    <GIMDIEN>12</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>1</ID>
    <KLASE>7B</KLASE>
    <VARDAS>Antanas</VARDAS>
    <PAVARDE>Antanavicius</PAVARDE>
    <GIMMETAI>1997</GIMMETAI>
    <GIMMEN>2</GIMMEN>
    <GIMDIEN>1</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>5</ID>
    <KLASE>7C</KLASE>
    <VARDAS>Stasys</VARDAS>
    <PAVARDE>Stasevicius</PAVARDE>
    <GIMMETAI>1997</GIMMETAI>
    <GIMMEN>3</GIMMEN>
    <GIMDIEN>18</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>6</ID>
    <KLASE>7C</KLASE>
    <VARDAS>Bronius</VARDAS>
    <PAVARDE>Broniavicius</PAVARDE>
    <GIMMETAI>1996</GIMMETAI>
    <GIMMEN>12</GIMMEN>
    <GIMDIEN>30</GIMDIEN>
    </ROW>
    - <ROW>
    <ID>4</ID>
    <KLASE>7C</KLASE>
    <VARDAS>Mantas</VARDAS>
    <PAVARDE>Mantavicius</PAVARDE>
    <GIMMETAI>1996</GIMMETAI>
    <GIMMEN>11</GIMMEN>
    <GIMDIEN>3</GIMDIEN>
    </ROW>
    </ROWSET>

    Something wrong with ITEMRENDERER.... I dont know what is wrong, but it is just isnt working when i try to compile.. =(

  • MX200 Not working plz help !!!

    I really need help, i just got a
    MX200
    Pro2-32s
    geforce 2
    MSI graphic card
    I am running
    Win XP Pro
    on a PIII 800MHz
    With 192ram
    now before it i had a NVIDIA RIVA TNT2 Model64 I take it out and put this card in (mx200), and i started windows and it said found a new hardware and then installed one by it self, when i went to Display Properties it still had the name of my old card (NVIDIA RIVA TNT2 Model64 ) so i when into advanced, adapter, properties and clicked on updated driver. i have downloaded Nvidia driver 41.07 ( it also came with no wizard !!!)  and chose install from a list or specific location and chose the place that i have extracted the "Nvidia driver 41.07" but it says "Cannot Continue the hardware update wizard, the wizard could not find a better match for ur hardware than the software you currently have installed." :O
    the card came with a cd but when i put it in the wizard comes up and i have only two options
    Read me file
    Explore
    (i did the same thin and tried to find a driver in the cd up all came with the same thing "wizard could not find a better match... ;( )
    if u need anymore info plz tell me THANKX !!
    [size=15]HELP[/SIZE]  

    First i'd like to say thank you soo much for helping me on this this is the best online support ever.
    now i did wat u tolde me Deathstalker and it's the same thing !
    as for listing the PCI Cards and the slots they are in. well is there a program that will find this out for me  :D
    well i have network card, a 56k modem (not using it), an ADSL modem, sound card, and the MSI NVIDIA GeForce2 ( that am not likening at all !!! :( )
    i would like to know if there is a program that tells me wat my 3dcard really is ! with out using windows so like it tells wat it is by finding out wat hardware i have installed.
    and is there a driver for MX200  ?(  coz as i said befor
    "downloaded Nvidia driver 41.07 there was only one diver that might be from me and that was the
    MSI MS-StarForce MX Series (Nvidia GeForce2 MX-100/200)
     but wats "MS-StarForce" thats not my one !!!
    i just want a dirver for
    MSI NVIDIA GeForce2 MX 200
    Pro2-32s  ;(

  • NOT WORKING PLZ HELP!!

    theres something wrong w/ my i pod nano 1st gen
    i can turn it on but nothing works, the buttons or the click wheel. i tried restoring it but it still didnt work
    what should i do?

    Not sure this will help but my Ipod 5th Gen packed up yesterday and I depressed the middle button and menu button together for about 10 secs and it kicked back into life.
    You could also try middle and pause buttons, same thing.
    Good luck!!
    Mark

  • TS4006 Locate my iPhone not working plz help!

    Software Version 5.1(9B176) I have always had "locate my iPhone" activated and working correctly. For some reason it isn't working now. It will not locate my iPhone. It just says "location not available". Location services is turned on and Locate my iPhone is on. Can anyone help?

    Solution: even though "Find my iPhone" was turned on under "Location Services" and under "iCloud" all I did was click on iCloud under Settings on my iphone and location services began working. I dot understand this but it is now working. Hope this helps someone in the future with the same issue!

  • OBIEE  not working-plz help me

    Hi My name is Priya
    I installed OBIEE 10.1.3.4.2 sucessfully on windows 7 ultimate OS and database Oracle 11g R2 11.2.0.1.0
    but when I tried to Import SH schema from OBIEE Admin Tool the SH schema is not appearing in the select data source under connection type ODBC 3.5.
    I can see only DSN:Analyticsweb and Driver:Oracle BI server in select datasource under ODBC 3.5.
    and even I cannot see the SH schema under any connection types(ODBC 2.0,DB2 CLI(unicode),XML,OCI 10g/11g.
    but when I checked System DSN in ODBC Data Source Administrator even the SH schema was added as (Name:SH Driver:Oracle in OraDb11g_home1).
    everything looks ok,but still I dont understand why SH schema is not appearing when am trying to Import it from Database in Oracle BI Administration.
    Please help me I tried everywhere but no one is able to resolve my issue.
    even you can email your responses at [email protected]
    waiting for your replies with eager

    Hi,
    Thanks for your reply I really appreciate it.
    I checked in SQL with the query select table_name from all_tables where owner='SH';
    but it came with has no rows selected message
    and also I tried to download the schema from the link which you have sent(http://gerardnico.com/wiki/database/oracle/sample_schemas)
    but when I clicked the link it took me to Oracle Database - Sample Schemas and there under SH I clicked on ■Installation of the Oracle® Database Sample Schemas
    but when I clicked on that the page says Http 400 bad request and the webpage cannot be found.
    and also I clicked ■Oracle® Database Sample Schemas under reference,here also the page says samething.
    and also I downloaded SH.zip under OBIEE,but here once I open the SH folder and opened sh in this folder 'SH' directly Oracle BI Administration tool is opening.
    In this tool I can see the SH schema under presentation,Buisness model & mapping,Physical layers,but again when I start the OBIEE Administration tool under Oracle Business Intelligence from All programs and trying to import from database the SH is not appearing under ODBC 3.5 in select datasource.
    I dont understand where Iam going wrong,please help me.

Maybe you are looking for