Set values in matrix

hi ,
i created matrix in screen painter. it includes 3 columns unit of measurement, length, width.
i want to set values to length and width manually.
when the form is loaded the length and width should appear in matrix
Regards,
Puneeth

Here an sample to add DataSource-Information via a XML-Editor.
    <form appformnumber="WREDE_CREDITNOTES" FormType="WREDE...
              <datasources>
                    <dbdatasources>
                        <action type="add">
                            <datasource tablename="@WREDE_CREDITNOTES"/>
                            <datasource tablename="@WREDE_CN_LINES"/>
                        </action>
                    </dbdatasources>
                    <userdatasources>
                        <action type="add">
                            <datasource uid="FolderDS" type="9" size="1"/>
                            <datasource uid="NumAtCard" type="9" size="100"/>
                            <datasource uid="cnnumber" type="9" size="100"/>
                            <datasource uid="dnline" type="0" size="4"/>
                            <datasource uid="lines" type="0" size="4"/>
                            <datasource uid="sum" type="6" size="8"/>
                            <datasource uid="sum2" type="6" size="8"/>
                            <datasource uid="draft" type="0" size="4"/>
                            <datasource uid="Folder2" type="9" size="1"/>
                            <datasource uid="FolderDS" type="9" size="10"/>
                            <datasource uid="FolderDS" type="9" size="10"/>
                        </action>
                    </userdatasources>
                    <DataTables>
                        <DataTable Uid="OPENDN">
                            <Columns/>
                        </DataTable>
                    </DataTables>
                </datasources>
                <Menus>

Similar Messages

  • To set a value in matrix cell which is linked

    In sales order if I enter  form no of TAX TAB as "form c" , each cell of the TAX Code column of the matrix of contents tab should be set the value as "CST". I have tried to set the value, but it is showing "Form item not editable". I have tried to make the cell as editable but still the error message is coming and it is not setting the defined value. How can this be solved?
    Thankx in advance

    Hi Priya Manoj
    Some notes you can find on this [Thread: Set Value in Itemcode in Purchase Order Form|Set Value in Itemcode in Purchase Order Form;.
    There are I has posted some examples in vbcode.
    Hope the notes can help you.
    Regards
    Sierdna S.
    Edited by: Sierdna S on Oct 22, 2008 9:45 AM

  • How to set default value in matrix column

    Hi all,
    Does any one know how to set a default value in matrix column ?. I just want , when an event right click and add row. so i set a default value in a column field for example 'Test'. FYI the matrix is in the UDO.
    so my code will be like this
    If pVal.ItemUID = "Matrix" And pVal.MenuUID = "1292" Then
                        Try
                            Dim oColumn As SAPbouiCOM.EditTextColumn
                            Dim matrix As SAPbouiCOM.Matrix
                            matrix = oForm.Items.Item("Matrix").Specific
                           oColumn = mat.Columns.Item("Code").specific
                            oColumn.Value = "Test"
                        Catch ex As Exception
                            Debug.Print(ex.Message)
                            Debug.Print(ex.ToString)
                        End Try
                    End If
    I have run it and when i right click and add row it still can not set the default value in one of the matrx column.
    does any one know how to solve it. thanks in advance

    Hi Bodhi
    Sandeep is right you can set value using SetValue() function
    If pVal.ItemUID = "Matrix" And pVal.MenuUID = "1292" Then
                        Try
                            Dim matrix As SAPbouiCOM.Matrix= oForm.Items.Item("Matrix").Specific
                            oForm.DataSources.DBDataSources.Item("UDT").Clear()
                            matrix .AddRow()
                            matrix .FlushToDataSource()
                            With form.DataSources.DBDataSources.Item("UDT") 
                                    .SetValue("UDF", matrix .RowCount - 1, "Test")
                            End With
                            matrix .LoadFromDataSource()
                        Catch ex As Exception
                            Debug.Print(ex.Message)
                            Debug.Print(ex.ToString)
                        End Try
    End If

  • Set value of project code to Reciept from production matrix.

    Hello Friends,
    I want to set value of project code to Reciept from production matrix after selecting Production order number.I have taken project code field in Production order header.That project code value i have to set  in Reciept from production. I got the Project code no by query but I cant set it to Reciept from production  Matrix project column.
    RS.DoQuery("Select U_PrjCode from OWOR where DocEntry='1')
    str = RS.Fields.Item("U_PrjCode").Value
    oMatrix.Columns.Item("21").Cells.Item(1).Specific.value = str
    this code give me an error
    "Item-Cant set value on item because the item cant get focus"
    Plz give me solution for this..
    Thanks & Regards,
       Swati

    Hello Swati,
    The cell should be foucsed before setting value for it. try this:
    RS.DoQuery("Select U_PrjCode from OWOR where DocEntry='1')
    str = RS.Fields.Item("U_PrjCode").Value
    oMatrix.Columns.Item("21").Cells.Item(1).Click()
    oMatrix.Columns.Item("21").Cells.Item(1).Specific.value = str
    Kind Regards
    -Yatsea

  • Set value to system matrix (38) cell

    Hello,
    Thanks for your reply.
    I need to set value for some UDF on a system matrix (38). Crurrently ,I use following code:
    public void SetValue(string columnUniqueId, int matrixRowIndex, string value);
    (I'm using the coresuite framwork)
    The coresponding way in SDK would be:
    oMatrix.Columns.Item("columnUniqueId").Cells.Item("matrixRowIndex").Specific.value = "value"
    This works but when I have more than 10 UDF to fill together, the performance is bad. It takes nearly 3-4 seconds to load one item(row).
    Is there any fast way to set the value? Or is there any other suggestion how to do it?

    No, the problem is not by loading of UDFs by a existing document.
    But when you create a new document and you add a new postion to the document by choosing an item. Then our AddOn copies the UDF values from the item master data into the corresponding UDFs in the postion. At this moment I have to write them manually.
    The best would be when the UDFs in the Item Master Data would be autiomatically created also  in the postion of documents. Because in this way they would be automatically loaded by SBO itself.
    I think SBO has a mistake in its design by here.

  • Display value in matrix

    hi ,
    i created matrix in screen painter. it includes 3 columns unit of measurement, length, width.
    i want to set values to length and width manually.
    when the form is loaded the length and width should appear in matrix
    Regards,
    Puneeth

    Hallo,
    use the form_load event - here's a c# snippet:
    if (pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD && pVal.FormType == insertformtype && pVal.BeforeAction = false)
                ((SAPbouiCOM.EditText)((SAPbouiCOM.Matrix)(oForm.Items.Item("mtxUID").Specific)).Columns.Item("colUID").Cells.Item(insertrow).Specific).Value = "1";
    insertformtype  = FormType of the form (like AR Invoice 133)
    mtxUID = matrix itemUID
    colUID = column UID
    insertrow = the row you want to change the value
    lg David

  • How to set values in a JSP from DTO

    My requirement is to print matrix report of students and their subject markets
    Student Name | Sub1 Sub 2 ...........
    Std Name1
    Std Name 2
    That is printing subject names horizontally and student names vertically.
    <c:forEach items="${dto.subList}" var="item" varStatus="count">
              td><c:out value="${item.sub_name}"/> </td>
    </c:forEach>
    <tr>
    <c:forEach items="${dto.StudentsList}" var="item" varStatus="count">
    <c:set value="${count.count}" var="totalstudents"/>
    <tr class="odd">
         <td><c:out value="${item.student_name}"/> </td>
    <c:forEach items="${dto.subList}" var="item" varStatus="count">
         <c:set value="${dto.marksList}" var="item"/>
          </td>
    </c:forEach>     
    </tr></c:forEach>
    i have done upto this part. wat i need is for each student it needs to check sub1 and soon and put that marks in that sub place

    public DTO GenerateMatrixReport(DTO params) throws DAOException
         DTO resultDto = new DTO();
    int totalstudents = new Integer(params.get("totalstudents").toString()).intValue();
    int totalsubjects = new Integer(params.get("totalsubjects").toString()).intValue();
         for(int i=1;i<=totalstudents;i++)
              List list = new ArrayList();
         for(int j=1;j<=totalsubjects;j++)
                   list = new ArrayList();
         list.add(params.get("email"+i));
                   list.add(params.get("subject_name"+j));
                   list.add(changeDateToDBFormat((String)params.get("start_date")));
                             list.add(changeDateToDBFormat((String)params.get("end_date")));
                             DTO tempDto = super.get("SQL QUERY",list);
                             if(null != tempDto.getDataList());
                                  List l1=new ArrayList();
                                  l1 = tempDto.getDataList();
                                  if(l1 != null)
                                       for(int k=0;k<l1.size();k++)
                                            Map m =(Map)l1.get(k);
                                            m.put("marks",""+new Double(m.get("marks").toString()).doubleValue());
                                            tempList.add(m);
                                  else
                                       System.out.println(0);
                   resultDto.put("ubjectList",getAllSujectNames());
                   resultDto.put("studentsList",getAllStudents());
                   resultDto.put("marksList",tempList);
                   return resultDto;
              public Collection getAllSujectNames() throws DAOException
                   Collection list = new ArrayList();
                   DTO resultDto = super.get(Utility.getSQL("getallsubjectnames"),new ArrayList());
                   if(null != resultDto.getDataList())
                        List tempList = resultDto.getDataList();
                        for(int i=0;i<tempList.size();i++)
                             Map m = (Map)tempList.get(i);
                             m.put("subject_name",m.get("subject_name"));
                             list.add(m);
                   return list;
              public Collection getAllStudents() throws DAOException
                   Collection list = new ArrayList();
                   DTO resultDto = super.get(Utility.getSQL("getallstudents"),new ArrayList());
                   if(null != resultDto.getDataList())
                        List tempList = resultDto.getDataList();
                        for(int i=0;i<tempList.size();i++)
                             Map m = (Map)tempList.get(i);
                             m.put("student_name", m.get("first_name") + " " + m.get("last_name"));
                             m.put("email",m.get("email"));
                             list.add(m);
                   return list;
    These are the methods iam using ,can u set me the solution to print the values in matrix format

  • Help on how to set value on LinkButton type column

    Hello,
    Can I programmatically set a value on Item No. in matrix on Sales Quotation which is of type SAPbouiCOM.LinkedButton?
    This code helped me set values to an edittext type column
    Dim et As SAPbouiCOM.EditText = oMatrix.Columns.Item(matrixColumnID).Cells.Item(rowNumber).Specific
    et.Value = value
    Dim et As SAPbouiCOM.LinkedButton = oMatrix.Columns.Item(matrixColumnID).Cells.Item(rowNumber).Specific
    How can set value for the Item No.?
    Thanks and Regards,
    Sheetal

    Just treat the Item No. column as an EditText for purposes of setting its value.
        Dim sboEdit As SAPbouiCOM.EditText
        Set sboEdit = sboMatrix.Columns("1").Cells(lngRow).Specific
        sboEdit.Value = "XXXXXX"
    John.

  • Added values in Matrix Footer

    Hi To All,
    How to display the sum of values in matrix footer.For example,
    Inventory -
    >  Goods Receipt
    Here, the values of the TOTAL column will got added and displayed in the FOOTER of the MATRIX.
    Same like that i want to add some values and that values should be displayed in matrix footer.. How to do this..?

    There are 2 ways how to achieve it:
    1. if the matrix is filled with query, use UNION with sum() clause
    2. or use edittext under matrix and set there sum values - app. 6 months ago here was some example with code how to achieve it and link it to matrix (columns width, ...)

  • Set-Up Risk Matrix

    Hi Gurus,
    In Industrial hygiene and safety,How to customize IHS--SPRO set-up risk matrix.
    according to the probability and severity.
    in CBIH12 Risk assessment I am unable to see my values.
    how to define the risk matrix please elaborate it.
    Thanks in advance.
    Naveenn
    OUR STRENGTH IS THE SUM OF THE INDIVIDUALS WHO WORK HERE PRACTICE SAFETY ALWAYS.

    Dear Ian ,
    Thanks for your reply .
    Following are the course of events in my testing for the SNP Optimizer :
    (a) I have not selected Discrete Optimisation with Fixed Material and Resource Consumption as 30 days .
    (b) The resource did not have a set up matrix assigned to the resource and the PPDS which was CIF from ECC was having the figure of variable as well as fixed consumption .
    (c) Conversion of the PPDS PPM into SNP PPM with variable lot size generated the variable and fixed consumption figures in the SNP PPM as well ,
    (d) During the SNP Optimiser Run it considered the set up time defined in the fixed consumption and the processing time in the variable consumption leading to giving the right quantity after considering say 0.5 hrs of set up time .
    (e) Now after attaching the set up matrix to the resource the PPDS PPM generated has to read set up from the set up group and key and thus has no figure in the fixed consumption .
    (f) SNP PPM converted from the PPDS PPM as generated in point (e) leads to capturing no figure of fixed consumption in the SNP PPM .
    Request you to review the above points and advice how to set up the master data objects and SNP Optimiser Profile so that even after the set up matrix assigned it should pick up the set up time .
    Thanks and Best Regards ,
    Prashant Kumar

  • Dynamic action with set value on date field

    Hi,
    I'm using APEX 4.02
    I'm trying to calculate the age based on the date of birth dynamically on a form. I'm trying to do this with a (advanced)dynamic action with set value.
    I'm able to get this kind of action working based on a number field etc, but NEVER on a date field.
    I've read all posts on this subject but so far no solution. Even if I try to simply copy the value over to another date field or typecast it to a string ( to_char function ) it does not work. So for me the problem seems to be in the source field being a date field.
    I've tried using the source value as is in a select statement :
    select :P33_GEBOORTEDATUM from dual;
    and also type casted based on the date format :
    select TO_DATE(:P33_GEBOORTEDATUM,'DD-MON-YYYY') from dual
    but still no luck.
    On the same form I don't have any issues as long as the calculation is based on number fields, but as soon as I start using dates all goes wrong.
    Any suggestions would be greatly appreciated. If you need any extra info just let me know.
    Cheers
    Bas
    b.t.w My application default date format is DD-MON-YYYY, maybe this has something to do with the issue .... ?
    Edited by: user3338841 on 3-apr-2011 7:33

    Hi,
    Create a dynamic action named "set age" with following values.
    Event: Change
    Selection Type: Item(s)
    Item(s): P1_DATE_OF_BIRTH
    Action: Set value
    Fire on page load: TRUE
    Set Type: PL/SQL Expression
    PL/SQL Expression: ROUND( (SYSDATE - :P1_DATE_OF_BIRTH)/365.24,0)
    Page items to submit: P1_DATE_OF_BIRTH
    Selection Type: Item(s)
    Item(s): P1_AGE
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • SQL Query (updateable report) Region - Conditionally Hide and Set Values

    SQL Query (updateable report) Region - Conditionally Hide and Set Values
    Outline of requirement :-
    Master / Detail page with Detail updated on same page using SQL Query (updateable report).
    The detail region has the following source
    SELECT item_id,
           contract_id,
           CASE WHEN hardware_id IS NOT NULL THEN
                   'HA'
                WHEN backup_dev_id IS NOT NULL THEN
                   'BD'
                WHEN hardware_os_id IS NOT NULL THEN
                   'HS'
           END item_type,
           hardware_id,
           backup_dev_id,
           hardware_os_id
    FROM   "#OWNER#".support_items
    WHERE  contract_id = :P26_CONTRACT_IDThe table support_items implements arced relationships and has the following columns
    CREATE TABLE SUPPORT_ITEMS
      ITEM_ID         NUMBER                        NOT NULL,
      CONTRACT_ID     NUMBER                        NOT NULL,
      HARDWARE_ID     NUMBER,
      BACKUP_DEV_ID   NUMBER,
      HARDWARE_OS_ID  NUMBER
    )A check type constaint on support_items ensures that only one of the fk's is present.
          (    hardware_id    IS NOT NULL
           AND backup_dev_id  IS NULL
           AND hardware_os_id IS NULL
    OR    (    hardware_id    IS NULL
           AND backup_dev_id  IS NOT NULL
           AND hardware_os_id IS NULL
    OR    (    hardware_id    IS NULL
           AND backup_dev_id  IS NULL
           AND hardware_os_id IS NOT NULL
          )    Hardware_Id is a FK to Hardware_Assets
    Backup_dev_id is a FK to Backup_Devices
    Hardware_os_id is a FK to Hardware_op_systems
    The Tabular Form Element based on item_type column of SQL query is Displayed As Select List (based on LOV) referencing a named list of values which have the following properties
    Display Value     Return Value
    Hardware Asset    HA
    Backup Device     BD
    Computer System   HSThe Tabular Form Elements for the report attributes for hardware_id, backup_dev_id and hardware_os_id are all Displayed As Select List (Based on LOV).
    What I want to do is only display the Select List for the FK depending on the value of the Select List on Item Type, e.g.
    Item_Type is 'HA' then display Select List for hardware_id, do not display and set to NULL the Select Lists for backup_dev_id and hardware_os_id.
    Item_Type is 'BB' then display Select List for backup_dev_id, do not display and set to NULL the Select Lists for hardware_id and hardware_os_id.
    Item_Type is 'HS' then display Select List for hardware_os_id, do not display and set to NULL the Select Lists backup_dev_id and hardware_id.
    There are properties on elements to conditionally display it but how do we reference the values of the SQL query Updateable region? they are not given a page item name?
    Also on the Tabular For Elements there is an Edit tick against a report item - however when you go to the Column Attributes there is not a property with which you can control the Edit setting.
    What's the best way of implementing this requirement in APEX 3.1?
    Thanks.

    >
    Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "user13515136".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    I have a multi-row region that displays values and allows entries in a number of fields.Provide exact details of how this has been implemented. (An example on apex.oracle.com is always a good way to do this.)
    I should like the fields to be conditional in that they do not permit entry, but still display, if certain conditions apply (e.g. older rows greyed out). Can this be done? Almost anything can be done, often in multiple ways. Which are appropriate may be dependent on a particular implementation, the skills available to implement it, and the effort you're willing to expend on it. Hence it's necessary to provide full details of what you've done so far...

  • How to set value from one view to other view's context node attr b4 save

    HI all,
    My requirement is as below:
    There are two views in component BP_CONT.
    BP_CONT/ContactDetails    IMPL class
    BP_CONT/SalesEmployee   SALESEMPLOYEE    STRUCT.SALESEMPLOYEE
    I want to set value from first view to second view's context node's attribute.
    i get Sales Employee BP number in ContactDetails view, from here i want to set that value in to STRUCT.SALESEMPLOYEE
    of second view in the same component.
    please send me code snippet for doing the same.
    Thanks in advance.
    seema

    Hi Seema
    You can access the fields from different views by either using custom controllers or by using component controllers, in your case you can access the Sales employee BP number from the Component controller.
    first access the component controller  as below in BP_CONT/SalesEmployee  (in do_prepare_output method) or in (specific setter method)
    lv_compcontroller type ref to CL_BP_CONT_BSPWDCOMPONENT_IMPL,
    lv_partner type ref to cl_crm_bol_entity,
    lv_role type string,
    lv_partner_no type string.
    lv_employee TYPE REF TO if_bol_bo_property_access,
    lv_compcontroller  = me->COMP_CONTROLLER.
    lv_partner ?= lv_compcontroller  ->typed_context->-partner->collection_wrapper->get_current( ).
    lv_role = lv_partner->get_property( iv_attr_name = 'BP_ROLE' )
    IF LV_ROLE = 'SALESEMPLOYEE'
      lv_partner_no ?= lv_current->get_property( iv_attr_name = 'BP_NUMBER' ).
    endif.
    now set the value
    lv_employee ?= me->typed_context->salesemployee->collection_wrapper->get_current( )
    CHECK lv_employee IS BOUND.
        lv_employee->set_property( iv_attr_name = 'SALESEMPLOYEE' iv_value =  lv_partner_no  )
    Thanks & Regards
    Raj

  • Help to set value of an attribute based on value selected in another field

    Hi all,
    I want to set the value of an attribute STRUCT.ITM_TYPE to a default value whenever i select one of the value from dropdown list in LC_STATUS.
    I tried to add an event in the get_p method of the lc_status but there i cant able to access the context of the ITM_TYPE as the fields are in different views.
    Please Help,
    Rewards will be awarded.
    Naveenn

    Hi Vineet,
    Thanks for the suggestion.
    Please chech my code and suggest me for any corrections.
    In the Get_P_LCSTATUS method of Context Node BTADMINH in View1.
    METHOD GET_P_LCSTATUS.
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_picklist.
        WHEN if_bsp_wd_model_setter_getter=>fp_server_event.
          rv_value = 'ACT_STATUS_SELECTED'.
      ENDCASE.
    ENDMETHOD.
    In event handler method in Context Node BTADMINI in View2
    method EH_ONACT_STATUS_SELECTED.
    * Added by wizard: Handler for event 'ACT_STATUS_SELECTED'
    data: lr_ent1 type ref to cl_crm_bol_entity,
             lr_ent2 type ref to cl_crm_bol_entity.
    lr_ent1 = me->typed_context->BTADMINH->collection_wrapper->get_current( ).
    check lr_ent1 is bound.
    * To Get Value of First Attribute
    lv_attr1 = lr_ent1->get_property_as_string( 'LC_STATUS' ).
    * To Set Value of 2nd Input Field now based upon this value
    lr_ent2 = me->typed_context->BTADMINI->collection_wrapper->get_current( ).
    *lr_ent2->lock( ).
    lr_ent2->set_property_as_string( iv_attr_name = 'ITM.TYPE'  iv_value = 'RREQ' ).
    endif.
    endmethod.
    but during syntax check its showing error messge as BTADMINH is unknown.
    2) How and where to bind the context node in custom controller.
    Please help.

  • Dynamic Action on tabular form: to auto set value for all changes rows

    Hi All:
    I am using APEX4.2.3 and I am not very familar with JQUERY or Javascript.
    I am having a tabular form to support Update and Delete action. The tabular form has 4 columns:
    Column A: ID                      (Number)     : Read-only column
    column B: Name                 (Varchar2)   : Editable
    Column C: Age                    (Number)     : Editable
    Column D: ChangeFlag      (Varchar2)   : Read-only column                             ==> however, I want this column been automatically upldated by my APEX application
    Here is the requirement: First user update Column B, or C or both for # of rows; then user click "Save Change" button. For ALL updated rows, I need to automatically update Column D with below logic:
    For a given row,
                   IF Column D IS NULL  THEN
                         set value = 'M'                           -- M means modified
                   ELSE --- column D has a value already
                        IF last character of Column D is 'M', THEN
                               don't do anything;
                        ELSE
                              set value of D = existing value + 'M'                       (here + means concatenate
                       END IF;
                END IF;
    I thought this can be done by creating dynamic action on tabular form ... I have researched this on this forum and can't find a good match example ..
    I know I can implement this using a DB trigger; however, I want to learn if this can be achived via Dynamic Action.
    Thanks!
    Kevin

    Hi Expert:
    Anyone can offer any direction or help on this?
    Thanks!
    Kevin

Maybe you are looking for

  • HP LaserJet Pro CM1415fnw Color Multifunction Printer - CAN'T FIND ANY WIRELESS NETWORKS

    PRINTER: HP LaserJet Pro CM1415fnw Color Multifunction Printer OS: Windows 7 OWNED: Over 2 years with no problems LOCATION/SET-UP: At my personal residence. All-in-one wireless router through cable company. ISSUE: All of a sudden, printer cannot find

  • Transaction Isolation Level to Read UnCommited in Non OLTP Database

    HI, We are having a database which for NOT OLTP process. That is OLAP DB. Operation on that DB is only Select and (Incremental Insert - FOR DWH ) not Update/Delete and we are performing ROLAP operations in that DB. By Default SQL Server DB isolation

  • Can't drag songs using itunes 11

    After purchasing songs, I can't transfer them to a playlist.  Within the playlist, however, I can't change the order of the songs.  When I try to drag one to the top of the list I am unable to.  Any suggestions?

  • Can i use my ipad mini while charging?

    can i play my ipad while charging? hindi ba siya ma-ooveruse? since na nag-charge and nagddrain (while using the ipad)?

  • Vertical output of a result?

    I need only one record from table and when i get report i am getting results from top to bottom in tabular form, how can i get these results form left to right. Thanks in advance Maz