BIA physical indexes with no assignment to logical index (InfoCube)

Hi there.
In RSDDBIAMON2 I can see the following warning: one BIA physical indexes is not assigned to any logical index. They explain it as the following: when a BI InfoProvider is deleted from the BI accelerator, some physical indexes of this kind of index join may not be fully deleted and may remain on the hard disk.
Question: how to delete this physical index which is not assigned any more to any BIA index? If I even rebuild all BIA indexes this physical index may not be affected as I suppose.
Have anybody had such kind of issues? Please advise.
Thanks
Vadim

Zdravstvyite i vi Vitali
It's exactly my question. Yes, I know the physical index name but unfortunately I cannot find the way to delete it not in TREXADMIN transaction, not in TREX Admin stand alone tool...
Will try again if you think it's there
Thanks,
Vadim

Similar Messages

  • Assignment of Logical Structures to Users

    Hi,
    I have a question regarding the assignment of logical structures to users of a database. The following is what Sam Alapati states in his book "Expert Oracle9i Database Administration:"
    "By organizing space into logical structures and assigning these logical entities to users of the database, Oracle databases achieve the logical separation of users (owners of the database objects, such as tables) of the database from the physical manifestations of the database in terms of data files and so forth."
    The question is what the unit of assignment is. Can a DBA assign an entire tablespace to a user, or is assignment done in units of segments? Please advise.
    Thanks,
    Karim

    The question is what the unit of assignment is. TABLESPACE. Each user has a default tablespace, where his objects (tables, indexes) go if not differently specified. The DBA can assign quota of other tablespaces to any user.
    Can a DBA assign an entire tablespace to a userNot directly, but the DBA can assign a quota (or unlimited quota) of a specific tablespace to a user only, and quota 0 to any other user, which practically means to assign the entire tablespace to that user.

  • Error while creating  a PO with Account assignment

    HI MM Gurus
    In our case, we need to create the STO for account assignment cat `Unknown`.
    In SPRO I maintained combination of account assign cat and item cat.
    Now, while creating  a PO with Account assign U we get Error message -  ME069 :Unknown account assignment not defined for use here.
    Please advise how to resolve this issue.

    Hi
    When you are posting actuals, you need to give true account assignment object. With U (unknown), system cannot identify which account to be posted. Change account assignment in PO to another.
    In standard SAP Unknown account assignment is not allowed in PO's. Only exception is Blanket PO.
    Unknown is allowed only in PR and Blanket PO.
    The reason is logically you are releasing the PO to the external vendor or Plant in this case you must know the account assignment.
    Regards,
    Ninad Kshirsagar

  • Help me with  this assignment

    can anyone out there help me with this assignment ????? i`ll attach the file to this topic
    In this assignment, you are to write a Java applet, using arrays, to simulate the functions of a drinks-vending machine.
    The assignment requirements described below are broken down into 2 stages of development, described in this document
    as 'Basic Requirements' and 'Additional Features'. You are advised to do your programming progressively in these
    stages. An Activity Plan has also been specified for you to follow. Refer to the 'Grading Criteria' on page 5 to have
    an idea of how the different components are graded.
    1.     1. BACKGROUND
    A company intends to build computerised drinks-vending machines to enlarge its business portfolio. You have been tasked to develop a
    Java applet that simulates the operation of such a machine to determine if it will meet their needs.
    2.     1. BASIC REQUIREMENTS
    The machine should have a wide range of drinks available. A customer can choose a drink according to the following criteria:
    a)     a) Category of Drinks
    �     � Beverages
    �     � Soft Drinks
    (For beverages, there is choice of whether sugar and/or creamer is required, for which there is an additional charge.)
    b)     b) Type of Beverages
    �     � Hot
    �     � Cold
    Once a customer has specified the drink he wants, the amount payable is displayed. The unit prices to be displayed are as follows:
    Drinks     Price per Cup/Packet ($)
    Beverage:     Coffee     1.00
         Tea     1.20
         Milo     1.40
         Horlicks     1.35
         Chrysanthemum     1.00
         Ginger     0.80
    Soft Drinks:     Apple     1.40
         Orange     1.40
         Pineapple     1.50
         Carrot     2.00
         Longan     1.20
         Bandung     1.00
    (For beverages, a request for sugar or creamer attracts an additional charge of $0.10 each. Creamer is not applicable for
    chrysanthemum and ginger.)
    The customer may then confirm his order by entering the amount payable (this symbolises his payment for the drink). Whenever the
    payment input is not correct, an appropriate error message is displayed, whereupon the customer has to re-enter the amount again.
    When the correct amount is paid, the required drink is dispensed.
    For any drink that is out of stock, a message is shown, stating that it is not available. Each time a drink is dispensed, the stock for that
    drink is updated (For beverages, the stock is stored in units of servings for each cup.) To simplify the testing, you may start the simulation
    by setting the stock for each drink to 10 packets or cup-servings.
    3.     2. ADDITIONAL FEATURES
    In addition, the simulator can have the following features:
    a)     a) Smart Graphical User-Interface (GUI)
    You may build upon the basic requirements by recommending alternative drinks of the same category, whenever a requested
    drink is not available (as signified from the stock). In this case, only drinks which are available (i.e., in sufficient stock) are
    displayed for the customer to choose. And if only soft drinks are available, the selections for creamer and sugar should be disabled.
    b)     b) Multiple Orders
    A customer could order more than one drink. The system could allow him to specify as many drinks as he wants, prompting him
    for an appropriate payment, and then dispensing the drinks accordingly, subject to availability. This may also entail the extension
    of the graphical user-interface.
    c)     c) Sales Analysis
    Periodically, the total revenue accumulated since the last collection is printed in descending order of sales for each drink sold,
    together with a grand total. The cash is then cleared from the machine. This feature requires password-protection.
    d)     d) Replenishment of Stock
    Periodically, the stock is checked to determine how much of each drink needs to be replenished. For this purpose, a list of the
    drinks with the corresponding quantity on hand is printed in ascending order of stock level. Drinks with insufficient stock are
    topped up to a level of 10 servings or packets. This feature also requires password-protection.
    e)     e) Any other relevant features
    You are limited only by your creativity. You can add any other relevant features for this project. Please consult your tutor before
    you proceed.
    To qualify for the full marks for this section, you need to implement 2 features, at least one of which must be either (a) or (b) above.
    4.     3. ACTIVITY PLAN
    Suggestions for Getting Started
    There are many ways that you could complete this assignment. The most important part is to think about the entire project first so that
    it is easy to integrate the various pieces. You should also consider what type of graphics you want to incorporate.
    a)     a) Analysis
    1. Understand the program specification and the requirements before attempting the project.
    b)     b) Program Design
    2.     Work out the GUI components (e.g., TextFields, CheckBoxes, ChoiceBoxes, Buttons, etc.) needed to get the user input.
    3.     3. Work out the main logic of the program using modular programming techniques; i.e. use methods appropriately. E.g., tasks that perform
    4.     4. a well-defined function or those that are repeated should be coded as methods. For example, you can write the methods, displayBill(),
    5.     5. makePayment(), computeTotal(), dispenseDrink(), etc. You need to think carefully about the return type and the parameters of each
    6.     6. method.
    7.     7. You are required to use arrays appropriately for this assignment. Marks will be deducted for inefficient use or non-usage of arrays.
    c) Implementation & Testing
    8.     8. Write the method definition of each method ONE at a time.
    9.     9. Test your program logic to make sure that it works. In the interim, you can use �g.drawString(�);� or �System.out.println(�);� to print
    10.     10. out intermediate results so that you can see whether your program is working correctly. You may not want to bother about error-checking
    11.     11. at this point. You should test each method as soon as it is written, as it is much easier to debug your program in this way.
    5.     4. DELIVERABLES
    By Monday, 25th February before 5:00 p.m., hand in the following to the School of ICT Administrative Office at Block 31, level 8:
    �     � A copy of the printout of your .java file.
    �     � A diskette labelled with your name, group, student ID. The diskette should contain ALL the necessary files (.java, .html, and .class)
    to run your applet.
    �     � The above in an envelope topped with the Assignment Completion Report (see pages 6, 7 & 8). Page 6 is for you to paste on top
    of your envelope whilst pages 7 and 8 are for you to document your Test Plan, and write your comments (including any
    special instructions to run your program) - to be inserted into the envelope.
    In your .java program, you are to include a blocked comment at the top stating:
    q     q Your name, group, student ID.
    q     q Assumptions (if any) or any deviations from the specified requirements.
    q     q Any features that you would like to highlight.
    6.     5. WALK-THROUGH OF PROGRAM
    Monday 25th February at 9:30 a.m. SHARP
    In the walk-through, you will be asked to give short, written answers to some questions about your program. These questions will assess
    your basic understanding of the code that you are handing in. If you fail to display adequate understanding of your own program, you can
    be down-graded by up to two letter grades from what you would have normally received. It is also possible that you will be called to
    perform a demonstration cum explanation of your work if it is suspected that you have copied someone else�s work. Lesson: do your own
    work and you will have no problem!
    7.     6. GRADING CRITERIA FOR PROGRAMMING
    Correct and robust implementation of basic features     55 %
    Additional features     20 %
    Programming style:�     � Program design�     � Appropriate use of arrays�     � Appropriate use of variables, methods, and parameters�     � Proper usage of control structures (e.g. if/else, loops)     15 %
    Good programming practice:�     � Meaningful variable names �     � Proper indentations�     � Useful and neat comments     5 %
    Adequate (black-box) testing:�     � Suitably-designed test plan     5 %
    Total:     100 %
    PROBLEM SOLVING & PROGRAMMING II
    (Dip IT/MMC/EI, Year 1, Semester 2)
    Assignment Completion Report (to be attached to cover of envelope)
    Name: ___________________________________ Group: ________
    ID: ___________________ Date & Time submitted: ____________
    Requirements     % Done (0-100)     Remarks
    BASIC FEATURES          
    �     � Can choose category (and select appropriate additives)          
    �     � Can choose drink (with error checking)          
    �     � Can display amount payable          
    �     � Can indicate availability of drink (with error checking)          
    �     � Can accept payment for drink (with error checking)          
    �     � Can dispense drink          
    �     � Can update stock          
    ADDITIONAL FEATURES          
    �     � Smart GUI          
    �     � Multiple Orders          
    �     � Sales Analysis (with password checking)          
    �     � Stock Replenishment(with password checking)          
    �     � Any other relevant features          
    Test Plan
    Using black-box testing, record your test specification and the results according to the following format (the examples here are provided
    for your reference only):
    Test No.     Purpose     Test Shot/Data     Expected Result     Actual Result
    E.g. 1a)     Check whether beverage can be selected      Click on �Chrysanthe-mum� button     Checkbox for �Sugar� but not �Creamer� appear     �Sugar� and checkboxes appeared
    E.g. 1b)     Check whether chrysanthemum with sugar can be ordered      Select sugar and click on �Order� button     Amount payable appears as �$1.10� (i.e., $1.00 + $0.10)     Amount payable shown as $1.10
    E.g. 1c)     Check whether correct payment can be accepted      Enter �1.00� in �Payment� textfield     Error message �Insufficient payment - $0.10 short� appears     Confirmation message �Drink being dispensed� appeared � ERROR!
    E.g. 1d)     Re-test 1c), after amending program      As above     As above     Error message �Insufficient payment - $0.10 short� appeared
    etc.                    
    etc.                    
    Remember to hand in this test plan together with the other deliverables in the envelope.
    Have you�
    1.     1. Checked to make sure program still works properly even with windows resized?
    2.     2. Tested your program thoroughly, as if you're trying to break it?
    Any comments about this assignment? Any special instructions to run your program? Write it here.

    public class testing1 {
    String gg;
    public void testing3() {
    System.out.print(gg); }
    // this is are constructor for the object and method we are going to make
    next code
    class testing {
    public static void main(String[] args) {
    testing1 tes = new testing1();
    tes.gg = "hello there";
    tes.testing3(); //here we have made a object and a method
    hope this helps

  • PO with Account Assignment P and NON Valuated Material

    Hi ,
    As per my undersatnding if I create a PO with Account Assignment "P" , system consumes it immediately and stock doesn;t get updated in any storage location.
    But
    If I use Account Assignment "P" with "NON valuated" stock , system is asking for Slocation at the time of MIGO and also updates Qtys in Storage location , although cost is being booked to consumption account.
    Could u pls help to understand the logic for this ?
    Regards
    Shrey

    Hi,
    PLease read this para from SAP help .. it is useful to undestand your scenarion
    Goods Receipt of Non-Valuated Materials  
    Use
    If the stock of a given material is only managed on a quantity basis, an account assignment must be defined in the purchase order. However, this account assignment does not result in the goods receipt being posted to consumption/usage. Instead, it results in the costs being debited to the account assignment object.
    The goods receipt is posted to the warehouse stock, thus increasing the unrestricted-use stock of the material.
    *It is not possible to post goods receipts of non-valuated materials directly into consumption/usage. You have to post the goods receipt into the warehouse first and then enter a goods issue.*
    Regards
    Krishna

  • Print of GR without material no and with Account assignement K / Q

    Dear Freinds,
    I want make Print out of Material Document with Material text (without  Material code with account assignement K or Q Project). I made out put setting for WE03, Transaction event type WE Print version 3 and Print Item 1, Material document.
    But i am not able to print in after MIGO. In MIGO Disply, it is showing error as "The system could not create any outputs"
    But I can able to make print out for Material document with material no. i am facing this problem only for text without material no with account assignement like K and Project refernce.
    Please guide me.
    Rgds
    Madhavan

    Hi Madhavan
    Go to MN22 , put WE03 , prsee enter , if u r alrady created any condition record , that will be diplayed , now select one line item , and clik communication . then after going in second screen , u will find box as " LOGICAL DESTINATION " ,  put the logical destination ( LP01 ) and check the tick box " print immediately , and save the condition record ...
    after donig these things ur problem will be solved , as i was also facing same problem , after doing this i got solution

  • Assign a Logical System Name of a production client

    Hi everybody,
    We have an ERP system (now upgraded to ECC 6.0) that is in productive use since 7 years. Until now, no Logical System Name have been assigned to the production client - the field in transaction SCC4 is empty/blank.
    Now we plan to implement a BW, so a test and a productive BW systems have been installed. According to the attached file and content of note 184447 we choose to use "Option 1: Uniform Logical System names clients by system type" for naming convention for LSN's.
    All the systems/clients (BW test and productive, ERP test only) now are assigned with corresponding LSN's, except the production ERP client. It is still without LSN and the client is not defined as Source System for productive BW system.
    So, my question is:
    Should I expect any problems if the LSN of the production client is set up now, after long time, effective productive use?
    I would mention that this is infact initial setup, not a change of LSN. Therefore transaction BDLS is not relevant, I think.
    Thanks in advance

    Hi DB49,
    I already did an initial setup of LSN in the test ERP client (that client is copy of the productive ERP client, i.e. the LSN has not been set). And everything seems to be OK.
    But the documentation says that ".... In a production system, the logical system must not be changed ...".
    "Changed" is not "ïnitial setup" of course, so there will not be any problems I hope, but ...
    SCC4 --> LSN field --> F1 -->
    "System in which applications run integrated on a shared data basis.
    The distribution of data between systems requires that each system in the network has a unique identification. The logical system is used for this purpose.
    In the SAP System the client corresponds to a logical system. You can assign a logical system to a client in the client maintenance (choose Goto -> Detail).
    The logical system is relevant in the following SAP areas:
    ALE  general: two or more logical systems communicate with one another.
    ALE - ALE business processes (for example, cost center accounting): definition of a system where a specific application runs. Changes to master data can only be made in this system, for example.
    Workflow objects: the logical system in which the object is located is always included in an object's key.
    When maintaining the logical system, note the following:
    The logical system must be unique company-wide. It must not be used by any other system in the ALE integrated group. In a production system, the logical system must not be changed. If the logical system of a document reference is not set to initial and does not match your own, the system assumes the document is located in a different system."

  • Forward physical standby archivelog files to a logical standby database

    Hi,
    We have a production database (1) and we have a physical standby database (2) for it.
    Is it possible to forward the archivelogs files from (2) to a logical standby database (3). We want to use the (3) as a UAT - Ad Hoc read only Database.
    Thanks.

    Hi,
    The following Data Guard configurations using cascaded destinations are supported.
    A. Primary Database > Physical Standby Database with cascaded destination > Physical Standby Database
    B. Primary Database > Physical Standby Database with cascaded destination > Logical Standby Database
    A physical standby database can support a maximum of nine (30 as of Version 11.2) remote destinations.
    Physical Standby Forwarding Redo to a Logical Standby :
    Advantages :
    1. Users can connect to Logical Standby database and they can access
    2. Instead of querying primary database they can use logical standby database.
    3. without any additional overhead on your primary system, and without consuming any additional transatlantic bandwidth.
    Disadvantages :
    The following data types will not support in Logical standby database just check your application before implementing logical standby
    a. BFILE
    b. Collections (including VARRAYS and nested tables)
    c. Multimedia data types (including Spatial, Image, and Oracle Text)
    d. ROWID, UROWID
    e. User-defined types
    f. LOBs stored as SecureFiles
    g. XMLType stored as Object Relational
    h. Binary XML
    Thanks
    LaserSoft

  • How to track BIA delta index merge and rebuild

    Hi Gurus,
                 I have set up process chains which load the BIA delta index and full index rebuild in separate process chains.
    Is there any way to check if BIA is behaving as desired? I know to check RSDDSTATTREX table.
    Regards,
    Anil

    Not a reply from Guru..
    But I put my thoughts in and here are few take aways for you ,which you may wish to have a look in to..
    PS - BI Accelerator is quite a Virgin territory ..few documentations or persons worked with ..
    You can execute some performance checks with tcode - RSRV to validate the same.
    <b>BI Accelerator Performance Checks</b>
    1)Size of Delta Index
    If you have chosen delta mode for an index of a table, new data is not written to the main index but to the delta index. This can significantly improve performance during indexing. However, if the delta index is large, this can have a negative impact on performance when you execute queries. When the delta index reaches 10% of the main index, the system displays a warning.
    The system performs a merge for the index in repair mode. The settings are retained.
    2) Propose Delta Index for Indexes
    It is useful to create a delta index for large indexes that are often updated with new data. New data is not written to the main index, but to the delta index. This can significantly improve the performance of indexing, since the system only performs the optimize step on the smaller set of data from the delta index. The data from the delta index is used at the runtime of the query.
    The system determines proposals from the statistics data: Proposals are those indexes that received new data more than 10 times during the last 10 days. A prerequisite for these proposals is that the statistics for the InfoCube are switched on.
    Data in the main index and delta index should be merged at regular intervals (see test Size of Delta Index).
    In repair mode, the system sets the Has Delta Indexproperty for the proposed indexes. The delta index is created when the data is next loaded for this index.
    3)Compare Size of Fact Tables with Fact Index
    The system calculates the number of records in both fact tables (E and F tables) for the InfoCube and compares them with the number of records in the fact index of the BI accelerator index. If the number of records in the BI accelerator index is significantly greater than the number in the InfoCube (more than a 10% difference), you can improve query performance by rebuilding the BIA index.
    The following circumstances can result in differences in the numbers of records:
    &#9675;       The InfoCube was compressed after the BI accelerator index was built. Since the BI accelerator index is not compressed, it may contain more records than the InfoCube.
    &#9675;       Requests were deleted from the InfoCube after the BI accelerator index was built. The requests are deleted from the BIA index in the package dimension only. The records in the fact index are therefore no longer referenced and no longer taken into account when the query is executed; however, they are not deleted.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/6b/cda64246c6c96ae10000000a155106/content.htm
    Hope it Helps
    Chetan
    @CP..

  • VQY sample withdrawals with account assignment

    Hello,
    I have a problem PM FI MM related.
    In TRX QA12 when I want to move some material as sample for testing there is a message that says " Determination of account not posible for entry CODK GBB 1020 VQY 3001".
    But I only want to use VQP = sample withdrawals without account assignment  instead of VQY for sample withdrawals with account assignment for sample withdrawals.
    Please could you help and tell me where do I have to change this ???
    Thanks and Regards.
    Elena Cornejo.

    I guess you need to write the code under one of the user exits,you can use simple logic to get list of purchase order ,i think no need to have BAPI or BDC.
    Thanks
    Seshu

  • Hi.  My new computer had Acrobat on it.  Suddenly, I was unable to open any PDF's.  and then I tried to update and was forwarded to the Adobe site that said I had to buy a monthly subscription.  I do not have the physical box with a serial number and was

    Hi.  My new computer had Acrobat on it.  Suddenly, I was unable to open any PDF's.  and then I tried to update and was forwarded to the Adobe site that said I had to buy a monthly subscription.  I do not have the physical box with a serial number and was going to buy the one advertised on the website until I discovered it's only for students and teachers, which I am not.  What should I do next as I need to use PDFs on a daily basis.  Thanks!  I would like to be able to download this and pay online.  Possible? I currently have Adobe Acrobat XI Pro.  I have a Windows 7 system.  Please help!

    As long as you know your serial number you can download PSE from here:
    Download Photoshop Elements products | 11, 10
    If you don't know your serial number:
    Find your serial number quickly

  • An SLD system has not been assigned to logical system TEC101

    Hello all
    We are trying to send an message RFC or IDOC from our SRM (5.0) system to the XI (7.0). But we allways get the error
    "An SLD system has not been assigned to logical system TEC101". In the SLD the system is visible, sldcheck works.
    Does anyone know this problem and can give me a hint how to fix this problem?
    Thanks a lot
    Stefan

    Hi Stefan,
    Is there a technical & Business System for SRM5.0 in SLD? If entry exists then confirm if the logical system name mentioned in Business System is TEC101.
    If entry does not exist in SLD for SRM, then in SRM run t-code
    1) SLDAPICUST .. Enter relevant details
    2) RZ70 : Give XI Server details , activate and then Execute.
    Once you do that you can see entry for SRM in SLD.
    After that try running the schenario again.
    Regards,
    Sumit

  • Exchange rate problem between GR&IR for PO with account assignment category

    ear SAP experts.
    We have used expense puchase order through account assignment category.
    the cost object include cost center,sale order,order.because we don’t use Fixed assets module in SAP,when purchase fixed assets,we also use account assignment category but no need to fill assets number(Not use account assignment category A).
    the processing in current system when there is exchange rate difference between GR&IR  as follows.
    purchase order Currency :USD  company code currency:HKD
    example 1-- when something purchased into expense account,
    Good receipt  (1USD=7.75HKD)
    Dr :expense account  100USD    775HKD
      Cr: GR/IR        100USD    775HKD
    Invoice receipt
    Dr : GR/IR         100USD    775HKD
        Expense account            25HKD
    CR: Vendor        100USD    800HKD
    Example 2-- when something purchased into Fixed assets account,
    purchase order :USD  company code currency:HKD
    Good receipt on Oct .01. 2007  (1USD=7.75HKD)
    Dr :Fixed assets account  100USD    775HKD
      Cr: GR/IR           100USD    775HKD
    Invoice receipt on Dec.01.2007  (1USD= 8HKD)
    Dr: GR/IR              100USD     775HKD
       Fixed assets account                25HKD
      Cr: Vendor            100USD     780HKD     
    The fixed assets is depreciated from Nov,2007.
    There is one problem that after the fixed assets is depreciated, the value for the fixed assets is added , the finance clerk have to adjust the added value from fixed assets account to Exchange Difference-Gain/Loss account by manual.
    Our problem is
    How to configure in order to make  the exchage rate difference into Exchange Difference-Gain/Loss account for purchase order with account assignment category,not the original assigned account in purchase order item.
    Many thanks
    Fanny

    Hi Fanny
    Even though the question is bit unclear, I guess you are looking for the T-Code OBYC. Use transaction key KDM for configuring the exchange gain/loss
    S Jayaram

  • PO with account assignment category F

    Hi Gurus,
    For PO with account assignment category F, the system is creating aaccounting documents during GRN for some POs & for some pOs it is not . What could be the reason.
    Regards,
    Kumar

    Hi SAPMM6,
    Check details of account category refernce 'F' whether tick is there for GR Valuated.
    Also when you are creating PO with multi-account assignment then also GR is non-valuated as per SAP standerds.
    Also check the both POs for material code and there valuation classes.
    Hope your problem gets resoled.
    Regards,
    Gitesh

  • Po with account assignment cost centre

    dear friends,
    When creating PO with account assignment cost centre, system should default GL account (i.e G/L will be picked automatically instead of entering manually.
    How this can be customized?
    regards, thanks

    The following configs are required.
    1. SPRO -> MM -> Purchase -> Material Master -> Entry aids -> here you maintain all relevant material groups, corresponding valuation class and Purchasing valuation key
    2. Then in OKB9, you will maintain company code, cost element, and cost center
    3. THen in OBYC, Valuation group code, valuation class and GL account.
    With the above settings, the system will automatically detemine the GL account.
    Thanks and warm regards,
    Jagadeesh

Maybe you are looking for

  • Ssrs group report expand-collapse in html render

    I created a ssrs report in a server and this report has row groups. My use in the report is through my website as i use the reportexecutionserivcesoap to render the report in HTML4.0 format. I put the html result (after i set the parameters in my app

  • Ipod classic says it has been restored by itunes but will not get out of recovery mode

    Hello, about a week ago my ipod classic 120gb shut off unexpectedly and gave me the big red X, telling me to restore. I connected it to itunes (on a mac) and attempted to restore, but it kept on giving me error message 1439. I kind of gave up, but th

  • 3rd gen touch rebooting constantly after DFU restore

    I've spent a lot of time googling this problem, and found some advice in the forums here but nothing quite like my problem, so I joined up so I could hopefully get an answer. I have a 3rd gen 32 GB, not jailbroken, that keeps restarting itself when p

  • 10.2.0.1 on AIX5L-64bit

    Hi, Installing on 10.2.0.1 on AIX5L-64 bit, there are other Oracle dbs running on different homes, but this one is a new one, nothing is running underneath. When trying to install, giving: Checking swap space: 0 MB available, 150 MB required. Failed

  • Omni portlet problem

    hi all i'm trying to create an XML portlet and this is what i get as a error message: Error : Insufficient Privilege. Please contact the administrator for privilege in Default Provider Builder Instance. i'm the portal administrator so i really have n