No summarization result is selected

Hi all,
When Iam trying to fill up setup tables for QM, its giving the error as "No summarization result is selected".
I have initailly deleted the setup tables before running the set up.
Pls give ur Valuable suggestions.Its urgent.
Thanks in advance,
Mohan

HI,
please check LBWE application 05 weathe your data sources in active or not. then directly goto OLIQBW t-code and select the check boxes for Notifications, inspection lot and inspection results and then execute.
Regards,
Chandra,
Edited by: chandrasekhar reddy on Feb 16, 2011 11:56 AM

Similar Messages

  • Setup table no summarization result

    Hi,
    While loading the set up table i am getting error "no summarization result is selected. what to do
    Thanks
    Prashant

    Hi Ram,
    I hope you are using the same tcode - Go to Txn OLIQBW
    give the Name of run and execute in Background.
    I hope you done the same thing, if not please let me know
    Regards,
    Kiran

  • How to get result of select query from  oracle  in VC

    Dear All ,
    I have a application in oracle which insert the data in the oracle database table.
    Now i want to show all the data that has been inserted into the database table in my VC application but i don't know how to handle select query in VC.
    Regards
    Krishan

    Hi Goivndu
    Thanks for your reply .
    I know all those things.
    I have created the system & alias  for my backend oracle system.
    I can also see all the stored procedure that are there in my oracle system.
    I just want to know how to write a select query in a stored procedure .
    you can insert data , Update data through oracle procedure but i don't think there is any way to get the result of select query in stored procedure .
    If you know any way to do that please do let me know .
    Regards
    Krishan

  • How to get result of Select from stored function.

    I need to get result of select from a stored function.
    In the end of my stored function I makes final select (four columns).
    How it can be retrived from function?

    Hi,
    A function can only return one value, but it sounds like you want to return 4 values.
    The one value that you return can be a record, with many columns, such as a ROWTYPE, or a TYPE that you define.
    You can return an XMLTYPE that has whatever elements you want.
    You can write a procedure that has several OUT parameters. (You can have OUT parameters in a function, but a lot of people find that confusing.)
    In very special circumstance, you might consider returning a string that is a delimited list of values, such as '7639,SMITH,,17-DEC-1980'.
    Someoneelse has a good point.
    We could give a better answer if you ask a specific question, like:
    "I have this table ...
    I want a function such that, if I call it with these parameters ... I get ...
    but if I call it like this ... then I get ..."

  • Is there an easier way to get tabular report results with select lists?

    Ok, as a newbie, I have gotten this query to work in my report region but I figure if I am doing something this convoluted then I am not letting a wonderful feature of HTML DB do its job.
    I have 3 select lists that I want to "AND" together to filter the result list. Two of the selected items to filter could have null values.
    I want to have the entire results to appear when the list is reset (clear cache is working and sets each select list value to null). However, it appears to me, if one select list is used and the others are not, the other select lists by default have %null% (Null return value setting left blank) which isn't really null.
    Well if that wasn't confusing so far. Here is the select:
    select [my columns]
    from my_table
    where (instr(upper("COL1"),upper(
    decode(:P1_FILTER_COL1,'%null%',"COL1",
    null,"COL1",:P1_FILTER_COL1))) > 0 -- COL1 is mandatory
    AND
    (instr(upper("COL2"),upper(
    decode(:P1_FILTER_COL2,'%null%',"COL2",
    null,"COL2",:P1_FILTER_COL2))) > 0 OR "COL2" IS NULL)
    AND
    (instr(upper("COL3"),upper(
    decode(:P1_FILTER_COL3,'%null%',"COL3",
    null,"COL3",:P1_FILTER_COL3))) = 1 OR "COL3" IS NULL)
    Do I have to use decode for the select values being reset, selected/not selected? Is there some way for the Null return value setting to really be null not %null%?
    Thanks,
    Kelly

    Rather than creating your report directly from a SQL statement use the "Sql Query (PL/SQL Function Body returning Sql Query)" option and re-write your code in PL/SQL. PL/SQL gives you greater control and allows you to test the "null" values and add where clauses to your SQL query based on whether or not a value was selected in the SELECT list.
    For example, I have a report parameter screen that has a state drop down list that returns a value of -1 if no state is selected. I can, therefore, code:
    IF :P6_STATE_CODE != -1 THEN
    query := query + " WHERE state_code = ' ||
    :P6_STATE_CODE ;
    END IF ;
    I have a more complete example if you would like to send me an email ([email protected])
    Jeff

  • Limiting results for select statement against view in "apps"

    Hello (again),
    Our application queries the 'apps.fnd_concurrent_programs_vl' view in order to retrieve concurrent program names (long names). We also query 'apps.fnd_application' in order to retrieve application names.
    I'm wondering, is there a way to limit the results of these based on security? Maybe, based on responsibility or user...?
    I would think if I had added a new EBS user, it would also add a corresponding DB user, which would only have access to those items that its responsibility allowed it to access, however I suppose this isn't really the case.
    Is there some way?
    EDIT: I would also like to know if there's a similar thing for log files (well, their locations at least), but I suppose if you can answer my previous question, it might also answer this one.
    Edited by: asci on Sep 20, 2012 1:01 PM

    asci wrote:
    Hello (again),
    Our application queries the 'apps.fnd_concurrent_programs_vl' view in order to retrieve concurrent program names (long names). We also query 'apps.fnd_application' in order to retrieve application names.
    I'm wondering, is there a way to limit the results of these based on security? Maybe, based on responsibility or user...?
    I would think if I had added a new EBS user, it would also add a corresponding DB user, which would only have access to those items that its responsibility allowed it to access, however I suppose this isn't really the case.
    Is there some way?
    EDIT: I would also like to know if there's a similar thing for log files (well, their locations at least), but I suppose if you can answer my previous question, it might also answer this one.
    Edited by: asci on Sep 20, 2012 1:01 PMHere is the query you need:
    SQL> SELECT *
    FROM FND_CONCURRENT_PROGRAMS_VL P,
    FND_CONCURRENT_REQUESTS R,
    FND_USER U
    WHERE P.CONCURRENT_PROGRAM_ID = R.CONCURRENT_PROGRAM_ID
    AND P.CREATED_BY = U.USER_ID;Thanks,
    Hussein

  • Function results in SELECT and WHERE

    Is there a way to avoid calling a function twice in order to have its results appear in the SELECT clause and used in the WHERE clause?
    This SELECT statement will not work (as promised by documents):
    select name, getLocation(name) as location
    where location is not null
    The only way to avoid it that I can see is to wrap this into another select with the additional criteria:
    select * from ( select name, getLocation(name) as location )
    where location is not null
    Any alternatives?
    Thanks.
    --Peter

    The nested select statements are much quicker than even doing a count(*) in the select and using the function call in the where clause. It appears that a function call in the where clause is expensive. The function involves selects from the same table and others, and joins but no updates, deletes, etc.
    select count(*) from ... where location(...) is null
    takes > 6 min. !
    select count(*) from (select location(...) ) where location is null takes < 10 sec. !

  • Result in SELECT-OPTIONS not valid

    Hi, I wrote the next statment about SELECT-OPTIONS..but for example if the selection criterio S_HKONT is initial..this is don´t have a value...all the result are true when I compare..
    I wrote:
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS:   S_BUDAT        FOR  EKBE-BUDAT OBLIGATORY,    "Posting Date in the Document
                      S_HKONT        FOR  BSEG-HKONT.
    SELECTION-SCREEN END OF BLOCK 1.
    When I wrote:
      SELECT BUKRS BELNR GJAHR KOART SHKZG BUZEI DMBTR
        WRBTR PSWBT PSWSL SAKNR HKONT LIFNR WERKS MENGE EBELN EBELP
        INTO CORRESPONDING FIELDS OF FILTER_BSEG
        FROM BSEG
        WHERE BELNR = A1
          AND GJAHR = A2.
          AND HKONT IN S_HKONT.
          APPEND FILTER_BSEG.
      ENDSELECT
    The result are many rows behind S_HKONT don´t have results..this mean..is initial..
    Or If I compare:  
          IF FILTER_BSEG-HKONT IN S_HKONT.
               Sentence...
          ENDIF.
    all the sentence that be in inside of IF are made..
    Only when S_HKONT has a value... the condition is evaluated ok.
    I hope that someone can help me.
    Thank you

    Hi Alicia...I see that you finally understand about reward points...coz you assign me some points -:) Thanx -:)
    Yes...I speak spanish, it's my mother language...But you know...We can't speak spanish here... -;)
    Of course you can write me to my personnal e-mail...But i actually prefer to answer in the forums, coz here at work, i just can access my mail -:(
    This is the link to my business card, you can check my e-mail in there -:)
    <a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=nkxegtflwze%3d">blag's Business Card</a>
    If i undestand what you're saying...You actually need to delete HKONT initial records only if the SELECTION-SCREEN is initial, right??? If so...You need to use the DELETE code. Or maybe you only need to get record if the SELECT-OPTION is not initial...
    So...AFAIK you can do this...
    IF NOT MY_FILTER[] IS INITIAL.
    SELECT *
    INTO MY_TABLE
    FROM SOME_TABLE
    WHERE SOME_FIELD IN MY_FILTER.
    ENDIF.
    Now, you only select record if MY_FILTER got some value on it.
    Hope this helps you -:)
    Greetings,
    Blag.

  • Very strange problem. Result = Cannot select HD to perfom install.

    Apologies for length, but this requires a LOT of explaining to be thorough.
    Problems began with attempting installation of 10.6.5 software update. Installation failed and all subsequent attempts failed. Attempted to update Safari and failed. Result was Safari would not open. Attempts to repair permissions with disk utility failed. Permission repair would error and stop. Did some digging online and read possible problem with BSD.pkg? I found this file, It showed zero kb in size. Decided to do a reinstall of Snow Leopard from my backup SL copy (keep the retail copy stored away). This is where 2nd set of problems begin...
    Attempting to do a reinstall over top of the current system failed. Error, installation failed. Decided to try retail copy in case the backup was bad. Same failure. Backed up my system on external and decided to reformat, erase, re-partition, and start anew, which I did erasing both the Mac partition and small Windows partition. Set up the resulting single Volume as the basic default setting named "Untitled".
    With the retail SL disc in the iMac, I went through the installation wizard as directed to install on the new "Untitled" Volume. The installation failed with "Error: could not copy necessary support files." I now presumed the disc to be stuck in the drive since I could only boot into the installer. I learned to hold the mouse button down on start up to get it out. (At this point, the iMac is booted into the installer with no disc in the slot)
    Decided to try a restore from disc image. Made a .dmg of the retail SL on a MacBook. Put the image on my external and connected to my iMac. Scanned the image ahead of time from the drop down menu as online guides indicate. Selected the image from the external as the SOURCE and the "Untitled" volume as the DESTINATION. Began restore. Here's where it gets really messed up...
    The restore from the disc image failed. I cannot remember the error "Could not allocate...?" erased and reformatted again because I really wasn't sure what to try. Upon restart, the computer boots into the installer (No disc in) and the "Untitled" Volume has somehow been renamed "Mac OS X Install Disc" and all options for the volume are grayed out! Can't erase, partition, or do anything to the Volume. Put SL disc in to run installer, but when prompted to select destination, only my external HD will show up.
    Booted into Tech Tool Pro 5 disc. The Volume Structures test fails of course. Specifically: "Validation Error Encountered Precheck Structures"
    My last idea was to try a target install using the MacBook.
    Help and guidance greatly needed and appreciated! I hope I can save it...

    I was only able to get part way through your post however from what I can tell you may have lost the internal HD. So here is what I'd try to do:
    Using the Original OS X install disc that came with the computer OR the retail Snow Leopard upgrade disc restart the computer while holding down the Option key. If this works it will give prompt you to start from the disc installed in the Superdrive. Choose that disc, it may take a few minutes to boot, then choose the language. At that point choose Utilities-Disk Utility and select the internal HD on the left then the First Aide tab and choose Repair Disk, you may have to run this a few times if it finds errors. If it continues to find errors after 3-4x then it's probably best to replace the internal HD. If the system can't find the internal HD to begin with then you know it's gone already.
    If the disk does repair at this point then I'd recommend doing a Erase and Install of 10.6.
    Let us know what happens.
    Roger

  • Decimal Result from Select Statement

    I have the following select:
    select (sum(state_months)/count(state_key)) from state_tab;.
    If I do a select on it I get, *1*: +(state_months summed to 3 and the count for state_key is 2)+, but
    if I do the following select: select 3/2 from dual, the result is *1.5*,
    The numbers are declared, in the table, as follows:
    state_months - number(38)
    state_key - number
    Is there any way to get 1.5 for the equation, *(sum(state_months)/count(state_key))* ?
    The result will be put updated to a number or decimal field.
    Thanks

    user1687851 wrote:
    I have the following select:
    select (sum(state_months)/count(state_key)) from state_tab;.
    If I do a select on it I get, *1*: +(state_months summed to 3 and the count for state_key is 2)+, but
    if I do the following select: select 3/2 from dual, the result is *1.5*,
    The numbers are declared, in the table, as follows:
    state_months - number(38)
    state_key - number
    As an aside, it doesn't matter that state_key is a number. You are dividing sum(something) by count(somthing). Now, state_months DOES need to be a number, because you are SUMmming it. But COUNT() returns a number regardless of the data type of what is being COUNTed.
    Is there any way to get 1.5 for the equation, *(sum(state_months)/count(state_key))* ?
    Please show us the actual result you are getting in sqlplus:
    column my_average 999,999,999.999999
    select sum(state_months)/count(state_key)
    from your_table;COPY the ENTIRE sqlpus session and PASTE back here.
    The result will be put updated to a number or decimal field.
    Thanks

  • Inserting results from select query into another table

    Hi: Is there a way to insert results returned from a SQL query into another table within the same SQL statement.
    For example
    SELECT a.SRCID,
    SUM(DECODE(a.CLASS_ID,91147,1,0)) BLOCK,
    SUM(DECODE(a.CLASS_ID,91126,1,0)) ALLOW,
    FROM EVENT_DATA a
    where
    a.class_id in (91147,91126)
    GROUP BY SRCID
    order by TOTAL DESC;The columns returned SRCID, BLOCK and ALLOW need to go into another table called AGGREGATE_COUNT. This table has fields SRCID, BLOCK and ALLOW. Or is the only way this can be done from outside of SQL like using perl or C.
    Thanks
    Ray

    INSERT INTO aggregate_count
         ( chart_id
         , srcid
         , block
         , allow
    SELECT 2234  chart_id
         , srcid
         , SUM(DECODE(class_id, 91147, 1, 0))
         , SUM(DECODE(class_id, 91126, 1, 0))
      FROM event_data
    WHERE class_id IN (91147, 91126)
    GROUP BY chart_id, srcid
    ORDER BY total DESC;

  • No results, reports selecting

    Hi.
    I have three reports A, B and C. I'm used this approach
    [http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-selecting-reports-from-dashboard-prompts-and-guided-navigation-sections/|http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-selecting-reports-from-dashboard-prompts-and-guided-navigation-sections/]
    to select report.
    When i select report that have no results, then it's shows nothing. Do you know how i can show the No results message?
    Thanks in advance.

    I know exactly what you're talking about. What you are experiencing is exactly how OBIEE is supposed to function. So to get what you want, you need to tweak Venkat's solution. This is what you need to do:
    Let's focus on Report C. You can repeat this procedure for the other two reports if you wish.
    1) Put Report C in its own section and turn on Guid. Nav. for the section to display the section (and report) when the report returns rows. (This step you already have.)
    2) Drag another section directly below the one above in step 1).
    3) Drag a Text object to this section. In the text box, type this HTML:
    <center><font color="red"><h3><b>This report returned no records.</b></h3></font></center> 4) Check the "Contains HTML markup" box.
    5) Now for this section, check the Guid. Nav. link, but unlike in step 1) check the box "if the report returns no rows."
    Now when Report C returns no rows, you will actually get a message.

  • Getting results of select query

    hi guys! I'm really into web app/java stuff and usually our dba takes care of our database problem. But now, one project that im involve with needs me to be familiar with pl/sql so if this question is really that stupid please bear with me. Anyway, i need to implement this logic to my stored procedure. Basically this is what i need to do:
    I have a Users table, Permission table and Temp table.
    I have to do a Select * from users order by uid
    I need to get hold of the resultset of this query, how can i do that in pl/sql?
    I need to get hold of it because I need to loop through the results of the users table.
    Then whenever i loop through the result I would check if the user is found in the permission the table, if found i would get the uid, lastname, firstname, age, description and I would insert that record into the Temp table. And also when i insert the description item into the Temp, I've got to make sure that white spaces are removed before it gets stored in the database, how can I do that?
    I hope somebody there can give me a helping hand. thanks.

    I was trying to give an example that is related to what I need to do. Apparently, i can't seem to make a good sample out of it. Anyway, this is really what i need to do:
    This is my logic right now:
    I need to query different tables in order to populate my arrticle table.In doing so I need to know the category of an article, then I have to test if that category should be posted into the article table. So here it goes:
    Delete all rows from articles table
         DELETE FROM articles
    Get a list of all categories
         SELECT * FROM category ORDER BY parentid
    For each category
         If the category is visible to public
              Insert the category to the article table:
    For a given category:
         Set IS_PUBLIC to false
         If this category has a parent id?
              Find the top level category id (top level categories do not have parent id)
         } else {
              Query permission table to see if this category is accesible by Public
                   SELECT access FROM permission
                   WHERE role_name = 'Public'
                   AND resource_name = 'knowledgebase.#top_category_id#'
              If there are any records
                   Set IS_PUBLIC to true
    Return IS_PUBLIC.
    Category table:
    sample data:
    ID PARENTID CATEGORY
    1 ROOT 1
    2 ROOT 3
    3 2 ROOT 3.1
    4 1 ROOT 1.1
    5 4 ROOT 1.1.1
    6 5 ROOR 1.1.1.1
    7 3 ROOT 3.1.1
    Basically, the validation that i need in here is i need to check every row of the category table then check for its id until i find a combination wherein the said doesnt have any parent id, meaning i reached already the topmost category.

  • Saving results of "selected pass" into MDB

    hello everybody.
    i am using the TS2 inherent MDB savig of test results.
    but it saves only when runnung the whole sequence (F5)
    when i run "selected steps" it doesnt save the results
    i need both options of savig test results..
    thanks in advance..
    simon

    Hi Simon,
    By default, TestStand will log UUT results to the UUT_RESULT, and individual step results to the STEP_RESULT table. Are you not seeing any entries in STEP_RESULT?
    There are several configuration options that might be set incorrectly that would turn off database logging for individual step results, you'll want to check these:
    1) Global setting for databases - Configure >> Database Options >> Logging Options tab: the "Include Step Results" checkbox must be turned ON.
    2) Global setting for result recording - Configure >> Station Options >> Execution tab: the "Disable Result Recording for All Sequences" checkbox must be turned OFF.
    3) Global setting for result recording for Interactive Executions ("Run Selected Steps...") - Conf
    igure >> Station Options >> Execution tab: the Interactive Executions "Record Results" checkbox must be turned ON.
    4) Per-sequence setting for result recording - Edit >> Sequence Properties: the "Disable Result Recording for All Steps" checkbox must be turned OFF.
    5) Per-step setting for result recording - right-click the step, go to Properties. On the "Run Options" tab, the "Record Results" checkbox must be turned ON.
    These are just the ones I thought of off the top of my head. If some of these configuration options are not set correctly, then that would explain why your STEP_RESULT table has no entries.
    Another possibility is that the step's results could be programmatically being removed from the ResultList, but that's a whole 'nother ballgame, see the TestStand Reference Manual for information about the ResultList.
    David Mc.
    NI Application Engineer

  • Pivot not getting result in select statement

    Here are the details oracle version 11g R2 on windows 7 OS
    CREATE TABLE OTBOOKINGDETAILS
    (     EMPNO VARCHAR2(10 BYTE),
         OTBOOKEDDATE DATE,
         WEEKDAY NUMBER(5,0),
         DAYCEILINGHRS VARCHAR2(10 BYTE));
    Here is the data
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','03-03-2013',1,'09:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','04-03-2013',2,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','05-03-2013',3,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','06-03-2013',4,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','07-03-2013',5,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','08-03-2013',6,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','09-03-2013',7,'00:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','03-03-2013',1,'09:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','04-03-2013',2,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','05-03-2013',3,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','06-03-2013',4,'02:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','07-03-2013',5,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','08-03-2013',6,'04:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('102','09-03-2013',7,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','10-03-2013',1,'00:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','11-03-2013',2,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','12-03-2013',3,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','13-03-2013',4,'04:45');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','14-03-2013',5,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','15-03-2013',6,'01:00');
    INSERT INTO OTBOOKINGDETAILS VALUES ('101','16-03-2013',7,'01:00');
    here I want the Dayceiling hrs as below output using pivot
    EMPNO OTBOOKEDDATE DAY1_HRS DAY2_HRS DAY3_HRS DAY4_HRS DAY5_HRS DAY6_HRS DAY7_HRS
    101 03-03-2013 09:00 01:00 01:00 01:00 01:00 01:00 00:00
    102 03-03-2013 09:00 01:00 01:00 02:00 01:00 04:00 01:00
    101 10-03-2013 00:00 01:00 01:00 04:45 01:00 01:00 01:00

    ChakravarthyDBA wrote:
    I need to include the pivot query in select statementYou can'y use PIVOT here since you don't know upfront what OTBOOKEDDATE values are. So use:
    select  empno,
            otbookeddate - weekday + 1 otbookeddate,
            max(
                case weekday
                  when 1 then dayceilinghrs
                end
               ) day1_hrs,
            max(
                case weekday
                  when 2 then dayceilinghrs
                end
               ) day2_hrs,
            max(
                case weekday
                  when 3 then dayceilinghrs
                end
               ) day3_hrs,
            max(
                case weekday
                  when 4 then dayceilinghrs
                end
               ) day4_hrs,
            max(
                case weekday
                  when 5 then dayceilinghrs
                end
               ) day5_hrs,
            max(
                case weekday
                  when 6 then dayceilinghrs
                end
               ) day6_hrs,
            max(
                case weekday
                  when 7 then dayceilinghrs
                end
               ) day7_hrs
      from  otbookingdetails
      group by empno,
               otbookeddate - weekday + 1
      order by otbookeddate,
               empno
    EMPNO      OTBOOKEDDA DAY1_HRS   DAY2_HRS   DAY3_HRS   DAY4_HRS   DAY5_HRS   DAY6_HRS   DAY7_HRS
    101        03-03-2013 09:00      01:00      01:00      01:00      01:00      01:00      00:00
    102        03-03-2013 09:00      01:00      01:00      02:00      01:00      04:00      01:00
    101        10-03-2013 00:00      01:00      01:00      04:45      01:00      01:00      01:00
    SQL> SY.

Maybe you are looking for

  • Custom Scheduler Error  and guidance required

    Hello Experts, I am creating a custom scheduler on OIM 11g R1, while running the importmetadata.bat am getting the following error: FYI: OIM on win 32 platform: While running script first am getting the your environment has been set then the followin

  • Need help with publishing for web

    Hi, I am a new user to Captivate but am trying to create an online demo that will be accessible via a link on a website. I have recorded the content and have added the animation. I have published the file as an executable and also as a flash (export

  • How can I filter or block foreign language emails or email addresses

    How can I filter or block foreign language emails or email addresses?? TIA C

  • Can I re-download songs that I've already paid for?

    I lost my harddrive with my main iTunes library and my backup was a couple months old (I know, I know, stupid move). Anyway, can I re-download the songs that I'm missing that I've already paid for (and still have the elecronic receipts)? Thanks in ad

  • IPhone truncated download speed?

    We have 7mb download speeds at our home. I check the speed via our laptops and indeed it is 7mb. When I test the speed via the iPhone the best it can do is 2mb. Is there an issue with my iPhone or is this simply a limitation on the hardware?