Query Conversion

Hi, I am new in oracle. I have one BI query as follows:
case
when TimestampDiff(SQL_TSI_DAY, Dim_W_SRVREQ_D.OPEN_DT, ifnull(Dim_W_SRVREQ_D.CLOSE_DT , TIMESTAMP '2009-06-08 00:00:00.000')) <= 5 then 'A: <= 5'
when TimestampDiff(SQL_TSI_DAY, Dim_W_SRVREQ_D.OPEN_DT, ifnull(Dim_W_SRVREQ_D.CLOSE_DT , TIMESTAMP '2009-06-08 00:00:00.000')) <= 10 then 'B: 6 - 10' else 'G: 61+' end.
Now i wanna in oracle. So searched internet and got the query as follows:
case
when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 5 then 'A: <= 5'
when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 10 then 'B: 6 - 10'
else 'G: 61+' end.
This query is correct. Can you explain the above query, if it is correct. Otherwise please give a solution.
Thanks for advance.

In oracle,
select a.days as Days_Category,count(a.ID) as No_of_SRs,a.severity
from
(select a.SEV_CD as severity, (case when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) is null then 'A: >= 5'
when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 5 then 'A: <= 5'
when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 10 then 'B: 6 - 10'
when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 15 then 'C: 11 - 15'
     when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 30 then 'D: 16 - 30'
     when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 45 then 'E: 31 - 45'
when trunc((((86400*(a.OPEN_DT-NVL(a.CLOSE_DT,current_date)))/60)/60)/24) <= 60 then 'F: 46 - 60'
else 'G: 61+' end) as days,b.SR_WID as id from W_SRVREQ_D a,W_SRVREQ_F b where a.ROW_WID = b.SR_WID) a group by a.days order by 1
In which, following columns are date datatype.
CLOSE_DT, OPEN_DT

Similar Messages

  • ABAP Query conversion

    Hello All,
    While creating an SAP Query using SQ01, SQ02 transactions on an ECC 6 IDES system, a message appears : "Convert First"
    The detailed message is as :
    Convert First
    Message No. AQ898
    Diagnosis
    Before you work with queries, functional areas or user groups in this query area, you must convert the objects.
    Procedure
    Get your system administrator to convert the objects. The ABAP Query Release Information for Release 4.0A describes how to convert these objects. Also read Note 92124
    I have read the note, but that doesnt apply in my case. This is on ECC 6 IDES system, 700 kernel.
    Please help me resolve.
    Thanks,
    Shahid Ahmed.

    Thanks for your replies.
    For the programs mentioned above, what should be the inputs inorder to execute it?
    And are these programs and the conversion, compatible with the 700 kernel?
    I have just recently installed the latest patch of 710 GUI. I dont think that would be the reason for the conversion of objects.
    Thanks,
    Shahid.

  • Access Query to Oracle Query conversion

    I am converting an Access database to Oracle 8.1.6.
    There are lot of reports in Access. HOw can I convert the Access
    query to Oracle equivalent query??? Is there any tool available
    for conversion???

    FYI,
    Microsoft Access is using ANSI SQL. And Oracle has introduced ANSI SQL from Oracle 9i so, it is also in 10g.
    Oracle 10g does not stop backward compatibilty so, It is depends on person. And I am not forcing you to migrate query from ACCESS to Oracle. I have simply answer the question which you have asked. Whether you want to perform efficiently or not it's your choice.
    But one thing is sure, ORACLE (9i or 10g) provides ANSI SQL and MS ACCESS is using ANSI sql so, this task is feasible. No doubt about it.

  • Query conversion from Brio 6 to Hyperion 8.5

    Hi, All.
    A user has a Brio 6 query that contains 3 pivots and 6 reports. When she opens it in Hyperion, she loses all 6 of the reports.
    Has anyone seen this issue? Is there a solution for it? The reports are fairly complex and it would require serious effort to recreate them.
    Thanks.
    Barbara

    By other copies...I mean do you have older copies of the file or copies in other locations? on the server or other people's computers. And have you tried those.
    Some of my clients use a version control software like "SourceSafe" or implement a versioning practice when developing bqys so that if a file gets corrupted they have a backup file to use.
    when a version control system is not available I have often started each day by making a backup of the file and adding the year, month, day (YYYYMMDD) to the end of the file name. And if it is a day with quite a bit of development I will even save a backup with the time (HHMM) after the date.
    Also have you opened a Service Request with Oracle?
    You can contact me offline and I may be able to offer other suggestions (email address in my profile)
    Wayne Van Sluys
    TopDown Consulting

  • Sub Query Conversions

    I'm converting from SQLServer7 to Oracle9i. The following statement produces a parse error pointing at the JOIN just before the sub query:
    CREATE PROC dbo.spGetOnHoldProject
    AS
    SELECT p.ProjectId, p.ProjectType, p.ProjectName
    FROM tblProject p
    JOIN (
    SELECT r.ProjectId
    FROM tblRequest r
    JOIN tblAction a ON a.RequestId = r.RequestId
    JOIN tblStatus s ON a.ActionId = s.ActionId
    WHERE r.OnHold = 0
    AND s.LocationId = 2
    AND s.SentToLocationDate IS null
    GROUP BY r.ProjectId
    ) onhold ON onhold.ProjectId = p.ProjectId
    I'm fairly certain Oracle9i will allow use of a sub query as a join partner. Am I wrong on that?
    Bruce

    Just a reply so I could track this thread with my NEW E-MAIL ADDRESS! (OTN really needs to allow e-mail address changes.)

  • Query conversion from access to sql server

    I have sql in access I need to convert to sql server . I am stuck three days please help me
    TRANSFORM First(Eval1to4.answer) AS FirstOfanswer SELECT Eval1to4.evalOid, Membershiptypemap.mappedvalue as membership, First(Eval1to4.answer) AS [Total Of answer] FROM (Members RIGHT JOIN (Eval1to4 LEFT JOIN Orders ON Eval1to4.evalOid = Orders.oid) ON Members.CID
    = Orders.cid) LEFT JOIN MembershipTypeMap ON (Members.MembershipStatus = MembershipTypeMap.membershipstatus) AND (Members.Membership = MembershipTypeMap.membershiptype) WHERE Orders.program = 20141128 AND Eval1to4.evalProgID=20141128 GROUP BY Eval1to4.evalOid,
    Membershiptypemap.mappedvalue PIVOT Eval1to4.questionID

    There isn't an exact equivalent to pivot queries in t-sql.
    There is a pivot operator but it requires that you know and explicitly specify the pivoted columns when you're creating your code.
    Just a heads up... Some one here will most assuredly either provide you with or point you to code that will allow you to do a "dynamic pivot"... Yes, it will allow you to pivot the data the way you're used to doing it in Access (without having
    to specify the pivoted column names). The problem with dynamic pivots is the fact that they are useless. You can't put them in views, functions or stored procs and I'm not aware of any reporting software that can work with a variable number of input columns.
    So, unless you simply want to copy & paste from SSMS to Excel, they aren't good for anything other than patting yourself on the back.
    So... My 1st suggestion is to not pivot the data at all in SQL. Instead, pivot the data in whatever application you're using to display the data.
    Since no one ever wants to hear suggestion #1, use aggregated case expressions. Based on the code you provided, it should look kinda like this...
    SELECT
    Eval1to4.evalOid,
    Membershiptypemap.mappedvalue as membership,
    SUM(CASE WHEN Eval1to4.answer = 1 THEN 1 END) AS Answer1,
    SUM(CASE WHEN Eval1to4.answer = 2 THEN 1 END) AS Answer2,
    SUM(CASE WHEN Eval1to4.answer = 3 THEN 1 END) AS Answer3,
    SUM(CASE WHEN Eval1to4.answer = 4 THEN 1 END) AS Answer4,
    SUM(CASE WHEN Eval1to4.answer = 5 THEN 1 END) AS Answer5
    FROM
    Eval1to4 e
    JOIN Orders o
    ON e.evalOid = o.oid
    JOIN Members m
    ON m.CID = o.cid
    LEFT JOIN MembershipTypeMap mtm
    ON m.MembershipStatus = mtm.membershipstatus
    AND m.Membership = mtm.membershiptype
    WHERE
    o.program = 20141128
    AND e.evalProgID = 20141128
    GROUP BY
    e.evalOid,
    mtm.mappedvalue
    #3... There is still the "PIVOT" operator. I personally don't use it because the aggregated case expressions are more flexible... But some people love them, so do a little Googleing and decide for yourself.
    #4... Dynamic Pivot... If you're dying to try it, the interwabs are full of examples... or wait a bit and someone will post some for you.
    HTH,
    Jason
    Jason Long

  • SAP B1 HANA - Query conversion

    hello
    how would I change this to work in SAP b1 HANA Sbo trns notification stored procedure?
    IF @OBJECT_TYPE='17' AND @TRANSACTION_TYPE in ('U','A')
    BEGIN
    IF exists
    (select count(*) from rdr1 T0 inner join oitm T1 on T0.ItemCode = T1.ItemCode inner join OITW t2 on t2.ItemCode = t1.ItemCode and t0.WhsCode = t2.WhsCode     
    where T1.U_ALLOWNEG = 'No'      
      AND T0.DocEntry = @list_of_cols_val_tab_del     
    having  SUM(t2.OnHand + t2.OnOrder - t2.IsCommited ) < 0 )   
    select TOP 1 @ERROR = 1 ,@ERROR_MESSAGE = 'This Item Cannot be Ordered - Causing Negative Stock' END

    Hi,
    Please check this document http://scn.sap.com/docs/DOC-47664
    Thanks & Regards,
    Nagarajan

  • Curerency conversion for a Formula in the query designer

    Hi
    I have a ' Financial Loss Formula' in the report. I want to convert this 'Financial Loss' into USD Currency at query designer level.
    Source Currency = SAR
    Target Currency = USD
    So how can i do the curerency conversion for a Formula in the query designer.
    pls let me kow
    kumar

    Hi,
    If you define your query conversion in BW then it is easy to do currency conversion through Bex.What you need to do is use calculated key figure instead formula and do a right click select properties there at the currency translation area you ca select defined currency conversion in BW and your target currency.
    /people/rasim.manavoglu/blog/2007/04/30/currency-currency-currency
    Regards.

  • Excel Pivot Table with Date Hierarchies - query performance degradation

    For the sake of this explanation, I’m going to try and keep it simple. Slicing the data by additional dimensions only makes the issue worse. I’ll keep this description to one fact table and three dimensions. Also, I’m fairly new to SSAS Tabular; I’ve worked
    with SSAS Multidimensional in the past.
    We’ve got a fact table that keeps track of bill pay payments made over time. Currently, we only have about six months of data, with the fact row count at just under 900,000 rows. The grain is daily.
    There is an Account dimension (approx. 460,000 rows), with details about the individual making a payment.
    There is a Payment Category dimension (approx.. 35,000 rows), which essentially groups various Payees into groups which we like to report on: Automobile Loan, Mortgage, Insurance, etc.
    There is the requisite Date dimension  (exactly 62093 rows-more days than we need?), which allows visibility as to what is being paid when.
    Using this DW model, I’ve created a SSAS BISM Tabular model, from which Excel 2010 is ultimately used to perform some analysis, using Pivot Tables. In the tabular model, for easier navigation (doing what I’ve always done in SSAS MultiDimensional), I’ve created
    several Date Hierarchies, Year-Month, Year-Quarter-Month, etc.
    There are currently only two measures defined in the Tabular model: one for the “Sum of PaymentAmount”; one for the “PaymentsProcessed”.
    OK, in Excel 2010, using a Pivot Table, drag the “Sum of PaymentAmount” measure to the Values section, next to/under the PivotTable Field List. Not too exciting, just the grand total of all Payments, for all time.
    Drag the “YearMonth” hierarchy (from the Date dimension) to the “Column Labels” section. After expanding the year hierarchy to see the months, now the totals are for each of the months, for which we have data, for June through November, 2013.
    Drag the “PaymentCategory” (from the Payment Categories dimension) to the “Report Filter” section. Filter accordingly: We just want to see the monthly totals for “Automobile Loans”.
    Now, some details. Drag the “AccountSK” (hiding the actual account numbers) to the “Row Labels” section. This shows all accounts that have made Automobile Loan payments over the last six months, showing the actual payment amounts.
    So far, so good. Remember, I’m using a Date Hierarchy here, in this case “YearMonth”
    Now, if any of the other attributes on the Account dimension table, say “CreditScore”, or “LongName”, are subsequently dragged over to the “Row Lables” section, under the “AccountSK”, the results will never come back, before timing out or by giving up and
    pressing ESCape!
    If this exact scenario is done by removing the Date Hierarchy, “YearMonth” from the “Column Labels” and replace it with “Year” and “MonthName” attributes from the Date dimension, these fields not being in any sort of hierarchy, adding an additional “Account”
    attribute does not cause any substantial delay.
    What I’m trying to find out is why is this happening? Is there anything I can do as a work around, other than what I’ve done by not using a Date Hierarchy? Is this a known issue with DAX and the query conversion to MDX? Something else?
    I’ve done a SQL Profiler trace, but I’m not sure at this point what it all means. In the MDX query there is a CrossJoin involved. There are also numerous VertiPaq Scans which seems to be going through each and every AccountSK in the Account dimension, not
    just the ones filtered, to get an additional attribute (About 3,600 accounts which are “Automobile Loan” payments.).
    Any thoughts?
    Thanks! Happy Holidays!
    AAO

    Thanks for your reply Marco. I've been reading your book, too, getting into Tabular.
    I've set up the Excel Pivot Table using either the Year/MonthName levels, or the YearMonth hierarchy and then adding the additional attribute for the CreditScore.
    Incidentally, when using the YearMonth hierarchy and adding the CreditScore, all is well, if the Year has not been "opened". When this is done, I suspect the same thing is going on.
    From SQL Profiler, each of the individual MDX queries below (formatted a bit for readability).
    Thanks!
    // MDX query using separate Year and MonthName levels, NO hierarchy.
    SELECT 
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    CrossJoin(
    {[Date].[Year].[All],[Date].[Year].[Year].AllMembers}, 
    {([Date].[MonthName].[All])}
    ,[Date].[Year].[Year].AllMembers, [Date].[MonthName]
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON COLUMNS, 
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    CrossJoin(
    {[Accounts].[AccountSK].[All],[Accounts].[AccountSK].[AccountSK].AllMembers}, 
    {([Accounts].[CreditScore].[All])}
    ,[Accounts].[AccountSK].[AccountSK].AllMembers, [Accounts].[CreditScore]
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON ROWS  
    FROM [PscuPrototype] 
    WHERE ([PaymentCategories].[PaymentCategory].&[Automobile Loan],[Measures].[Sum of PaymentAmount]) 
    CELL PROPERTIES VALUE, FORMAT_STRING, LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS
    // MDX query using separate YearMonth hierarchy (Year, MonthName).
    SELECT 
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    {{DrilldownLevel({[Date].[YearMonth].[All]},,,INCLUDE_CALC_MEMBERS)}}, 
    {[Date].[YearMonth].[Year].&[2013]},,,INCLUDE_CALC_MEMBERS
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON COLUMNS,
    NON EMPTY 
    Hierarchize(
    DrilldownMember(
    CrossJoin(
    {[Accounts].[AccountSK].[All],[Accounts].[AccountSK].[AccountSK].AllMembers}, 
    {([Accounts].[CreditScore].[All])}
    ,[Accounts].[AccountSK].[AccountSK].AllMembers, [Accounts].[CreditScore]
    DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
    ON ROWS  
    FROM [PscuPrototype] 
    WHERE ([PaymentCategories].[PaymentCategory].&[Automobile Loan],[Measures].[Sum of PaymentAmount]) 
    CELL PROPERTIES VALUE, FORMAT_STRING, LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS
    AAO

  • Conversion routine PROJ in case master data doesn't exist

    Hi gurus!
    I have a problem with info-object 0PROJECT. It has a conversion routine PROJ, which converts the values nicely from external format to internal only if the master data for such project exists. If I use a interval variable in bex query the query user needs to give the upper value in internal value (for example Y3000 instead of Y-3000) in case he or she doesn't know if the value exists in database or not. That is understandable because of the logic of conversion routine PROJ (uses attribute project_ex).
    But what explains the fact that query variable input value Y3000 doesn't give data of Y-3000, but only one smaller (Y-2999). To get data of project Y-3000 one has to give upper variable value Y3001.
    Has anyone better understanding of this query/conversion behaviour?
    Sari

    Check the example here
    http://help.sap.com/saphelp_nw04s/helpdata/en/dd/f470375fbf307ee10000009b38f8cf/frameset.htm
    In master data updates, you can either load time-dependent and time-constant data individually, or together.
    Hope it Helps
    Chetan
    @CP..

  • Convert Date to Text, Display Unique Values Only

    Hi. I have a table that receives information on a weekly basis. The record includes a number and a date. (For example, "ID, 150, 01/15/2005") I am using the following to convert the whole date into the format I want it to be displayed in:
    select "ID",
    TO_CHAR (DATEFIELD, 'MON-YY')
    "NUMBERFIELD"
    from "TABLENAME"
    where "DATEFIELD" BETWEEN '01-JAN-05' and SYSDATE
    The query/conversion works fine, however I want to display only one total for any given month. That is, (now) if there are two entries in the month of January, the output will list "JAN-05" twice and display the unique value of each record. Instead, I would like to display all January records as a single "JAN-05" output with a cooresponding total. I'm thinking "unique" or a "group by" function, but so far I have been unsuccessful. Any suggestions? Thanks!

    column XXX noprint
    select
           TO_CHAR (DATEFIELD, 'MON-YY') MONTH
          ,SUM(NUMBERFIELD) sum_of_numbers
          ,TO_CHAR (DATEFIELD,'YYYYMM') XXX
      from TABLENAME
    where DATEFIELD >= trunc(to_date('01.01.2005','dd.mm.yyyy'))
       and DATEFIELD < trunc(sysdate+1)
    group by TO_CHAR (DATEFIELD, 'MON-YY')
             ,TO_CHAR (DATEFIELD,'YYYYMM')
    order by
              TO_CHAR (DATEFIELD,'YYYYMM')

  • Deleted Questions Still display in Published Version

    After deleting a Question slide and inserting a new Quesion
    Slide, The deleted question still appears in the published version.
    In addition, the new Question will only display after completing
    the quiz and going back to review. It then displays as incomplete.
    Before republishing the presentation with the new Question, I
    deleted the old version of the presentation.
    I would appreciate any suggestions on how to resolve this!
    Thanks!

    Hi,
    1.) How do I delete the B version of reports in Q? (Open system is not an option)
    Use the T code RSZDELETE,  Choose the object version as 'B', it will delete all the queries which are saved as backup.
    Before that implement the correction program in the function module RSZ_X_COMPONENT_DELETE. The correction program is given in the SAp note 1097674
    2.) What can I do to ensure the Actual Cutover will have B version deleted as well (A,B,M)
    you can check in the same table RSRREPDIR with B as selection
    3.) Why is there a B version report? Apart from due to BI7 query conversion, any other reason?
    B version is a back up version.  For example, you have created a query in 3.x features and changed in 7.0 query designer so generally this can't be opened in 3.x query designer. But if you wanted to do same, you can overwrite the current version of the query with back version so that it can be opened in 3.x query designer, you will loose all the changes done with 7.0 designer.

  • Deleted queries still exist with B version

    Dear Gurus,
    I am currently doing housekeeping of old reports deletion.I have deleted the 20 queries from D and transported to Q system.
    In RSRREPDIR of D system, the table is blank.
    However when I check RSRREPDIR in Q system, it is showing the 20 queries but OBJVERS = B. A or M Version has been successfully deleted, but only B still remains.
    What I do not understand is, why in Dev system the table does not have OBJVERS = B (I would assume the deletion has deleted A,M,B version) but why when transported over to Q system, the A & M version of the queries has been deleted successfully except B version. Why is that so?
    So my question is :-
    1.) How do I delete the B version of reports in Q? (Open system is not an option)
    2.) What can I do to ensure the Actual Cutover will have B version deleted as well (A,B,M)
    3.) Why is there a B version report? Apart from due to BI7 query conversion, any other reason?
    Thanks a lot !

    Hi,
    1.) How do I delete the B version of reports in Q? (Open system is not an option)
    Use the T code RSZDELETE,  Choose the object version as 'B', it will delete all the queries which are saved as backup.
    Before that implement the correction program in the function module RSZ_X_COMPONENT_DELETE. The correction program is given in the SAp note 1097674
    2.) What can I do to ensure the Actual Cutover will have B version deleted as well (A,B,M)
    you can check in the same table RSRREPDIR with B as selection
    3.) Why is there a B version report? Apart from due to BI7 query conversion, any other reason?
    B version is a back up version.  For example, you have created a query in 3.x features and changed in 7.0 query designer so generally this can't be opened in 3.x query designer. But if you wanted to do same, you can overwrite the current version of the query with back version so that it can be opened in 3.x query designer, you will loose all the changes done with 7.0 designer.

  • Conversion of Mysql query in oracle acceptable query format

    Hi
    I have successfully converted my MySql database in oracle. Now the problem is how to execute already written hundreds of Mysql query on the oracle. There are many syntax variation in Mysql query format which is not acceptable for oracle.
    For Example
    Select case_id as 'this is alias' from cases
    The above query can run on Mysql database but have problem while executing Oracle, because single quotes should be replaced with double quotes before executing it on oracle. There are also many other syntax conflicts.
    I have tried to resolve the problem through SwisSQLAPI but problem still exist as SwisSQLAPI is not dealing with all syntax conflict. In my case (select if (expresion, true,false)) must be replace with decode (expression, value,true,false) function of oracle and this conversion is not supported by SwisSQLAPI.
    Please help me in resolving this problem
    Thanks

    The problem with trying to port from one language (mysql SQL) to another (oracle SQL) is that there's generally no hard rules for a computer to follow, that it will get it 100% correct.
    Look at babelfish when you translate a foreign language to English. The end result is readable (usually), but it's rarely completely correct.
    The problem is when you feed something into Oracle SQL, it needs to be 100% correct.
    All you can really do here is rewrite these queries. It shouldn't actually take as long as you think, because 50% of queries will generally need very minor changes you can do in a minute, and 25% won't need any changes at all.

  • Unit Conversion in Info Set Query

    Hello Experts
    I have create a query on infoset in which I want to show the qty field with the unit conversion factor . but I am not able to do so.
    It is giving an error message while saving the query
    0Material is not a valid characteristics for Info provider ZINFOSET
    Diagnosis
    Customer enhancement RSR00002 or the implementation of BAdI RSR_OLAB_BADI delivers 0MATERIAL as the characteristic to be calculated. 1. is, however, not a valid key figure for InfoProvider ZIS_BILL.
    System Response
    The information from 0MATERIAL is ignored.
    Procedure
    Check the exit.
    Procedure for System Administration
    Please help me out
    Thanks
    Neha

    Hi,
    You can try unit conversion planning function,create planning function and add it at the back of button.
    Can refer to link below:-
    Not sure if it can solve your problem.As it also depends upon source and target keyfigure used.
    http://help.sap.com/saphelp_nw70/helpdata/en/44/21643cedf8648ee10000000a1553f7/content.htm

Maybe you are looking for

  • HT1947 Remote app on iPad no longer rotates after upgrade to iOS 7

    I love Remote, use on both my iPhone and iPad.  However, after upgrading the iPad to iOS 7, the app no longer rotates to horizontal view - in fact, it doesn't rotate at all.  Bad enough no horizontal, but to not rotate at all means that I can't orien

  • EAP-TLS configuration issues

    Hi , I am trying to set up a mixed vendor NIC wireless environment and have opted to use EAP-TLS. I am however having some problems getting it to work. I am using AP1100, Aironet 350 PCMCIA cards , Microsoft CA, and ACS3.1. I have successfully setup

  • When I install some drivers I get multiple error messages in CM15

    When I was upgrading Mozilla and a Bamboo writing pad I got multiple errors. Unable to write to system extension @ "/System/Library/Extensions/CM15. Using a fully updated Intel Core Duo 2GHz. 2 GB 667 MHz DDR2 SDRAM Software Version 10.6.7

  • CRLF Injection issue wrt microsoft_reportviewer_webforms_dll.Microsoft.Reporting.WebForms.ReportDataOperation

    Hi Team, we are using Microsoft report viewer in one of our projects and recently our code is scanned by Veracode and identified CRLF Injection issues with respect to improper nuetralization. please find below the issue reported : This call to system

  • Visual Age 4.0

    Hi, I am a student and currently use Visual Age 4.0 at University. I understand it is now not downloadable anymore, are there any earlier versions which are still downloadable which run similar to 4.0? Thanks