Queries Errors

Hello,
i have abit of a problem with my queries
1) Sorting: Select all employees time.
SQL> select * from employees
2 group by employee_name;
select * from employees
ERROR at line 1:
ORA-00979: not a GROUP BY expression
This one I want to group
2) Grouping: List courses and group them by Course Level or Course Title
SQL> select course_id, course_title, course_level
2 from course
3 where course_level='L3'
4 group by course_title, course_level;
select course_id, course_title, course_level
ERROR at line 1:
ORA-00979: not a GROUP BY expression
Also this one I need to group
3) Comparison Operator (Not Equal): List all employees whose name is not Steve Smith.
This one I don’t know whats wrong as I want “not =” to “steve smith”
SQL> select employee_name
2 from employees
3 where employee_name != 'Steve Smith';
EMPLOYEE_NAME
STEVE SMITH
STEVE SMITH
STEVE SMITH
CHARLIE SPRING
CHARLIE SPRING
CHARLIE SPRING
ALI HUSSEIN
ALI HUSSEIN
ALI HUSSEIN
DANIEL WHITE
DANIEL WHITE
EMPLOYEE_NAME
DANIEL WHITE
PETER HAYDEN
PETER HAYDEN
PETER HAYDEN
15 rows selected.
Thank You in advance

user13038840 wrote:
Last 2 questions promise, Ive tried it and its giving me a headache. Ive done everything else so just need help on these 2.
SQL> select id, first_name
2 from trainer
3 where first_name IN (select first_name
4 from trainer
5 where course type = 'computer networks');
where course type = 'computer networks')
ERROR at line 5:
ORA-00920: invalid relational operator
2)
SQL> select count (*)
2 from employees
3 where employees is NULL;
where employees is NULL
ERROR at line 3:
ORA-00904: "EMPLOYEES": invalid identifier
Edited by: user13038840 on Apr 26, 2010 5:20 AMPerhaps you meant,( besides an extra coffee ;) ):
where course_type = 'computer networks');
(I added an underscore)
and 'employees' is your table name, not a column name.

Similar Messages

  • Query Of Queries : Error When Trying To Fake Left Outer Join

    Hi there
    I am trying to replicate a left outer join, combining two query of queries using a method I located here
    However, I keep getting an error message..
    Here is the code I am using....
        <cfquery dbtype="query" name="qry">
                    SELECT *
                    FROM returnQry, returnQry2
                    WHERE returnQry.mediumImage = returnQry2.mediumImage
                    ORDER BY returnQry.name   
                </cfquery>
                <cfquery name="returnQry3" dbtype="#application.mx#">
                    SELECT *
                    FROM trackmeanings AS t
                </cfquery>      
               <cfquery dbtype="query" name="endQry">
                    SELECT name,nameRcd,mediumImage, COUNT(sMessage) AS comments
                    FROM qry, returnQry3
                    WHERE qry.name = returnQry3.sNameTrack
                    UNION
                    SELECT name,nameRcd,mediumImage, COUNT(sMessage) AS comments
                    FROM qry, returnQry3
                    WHERE #qry.name# NOT IN (#QuotedValueList(returnQry3.sNameTrack)#)
                    GROUP BY name,nameRcd,mediumImage
                </cfquery>
    When I try to use the query output in a page, i get the error message "Incorrect conditional expression,  Expected one of [like|null|between|in|comparison] condition"
    Would anyone have any ideas?
    Many thanks

    Actually , spoke a little too soon, my query now seems to be outputting duplicates when the value is found on both sides of the union, my group by clause doesnt seem to be eliminating them like it usually does.
    My SELECT code now reads
    <cfquery dbtype="query" name="endQry">
    SELECT name,nameRcd,mediumImage, COUNT(sMessage) AS comments
    FROM qry, returnQry3
    WHERE qry.name = returnQry3.sNameTrack
    GROUP BY name,nameRcd,mediumImage
    UNION
    SELECT name,nameRcd,mediumImage, 0 AS comments
    FROM qry
    WHERE qry.name NOT IN (<cfqueryparam
    value="#returnQry3.sNameTrack#"
    cfsqltype="cf_sql_varchar"
    list="yes"
    />)
    GROUP BY name,nameRcd,mediumImage
    ORDER BY name DESC
    </cfquery>
    and my ouput...is producing duplicates
    <cfoutput query="rc.qryTopTracks" group="name">
    #rc.qryTopTracks.name#
    </cfoutput>
    Would you have any idea of how to eliminate them here?  Thanks

  • Query of Queries Error

    I am using the same datasource to create a query of queries
    but one of my queries is not being recognized. The code and error
    message are as follows:

    You don't use the datasource property with a query of query
    <cfquery...>
    tag. When you do query of query you are dealing with record
    sets in
    memory. Drop the 'datasource' parameter in the third
    <cfquery...> tag.

  • Coldfusion query of queries error

    I have a long query named "Results.Itinerary" in a CFC which
    I have to add this query to.
    <CFLOOP QUERY = "Results.Itinerary">
    <CFQUERY NAME = "GetPorts" DATASOURCE="x">
    SELECT *
    FROM Itinerary_Ports
    WHERE (ItineraryID = #ItineraryID#)
    AND (Name NOT LIKE '%At Sea%')
    </CFQUERY>
    <CFSET ThisPortList = ValueList(GetPorts.Name)>
    <CFSET QuerySetCell(Results.Itinerary,
    "PortList","#ThisPortList#", CurrentRow)>
    </CFLOOP>
    Now this query below gives me an error, I know I need to have
    the single quotes around PortList for it to work , but coldfusion
    is getting confused and throwing errors.
    <cfquery name="Search.Results.ThisShip" dbtype="QUERY">
    SELECT *
    From Search.Results.Itinerary
    Where ShipID = #ShipID#
    AND NumberOfNights = #NumberOfNights#
    AND PortList = '#PortList#' < - Coldfusion will sometimes
    get screwed up on this line.
    ORDER BY DepartureDate ASC
    I need to know a different way to write this. Thanks.

    Thanks to you and Dan. I think the key was getting rid of the
    apostrophies that coldfusion added. I still dont know if its a
    QuerySetCell that adds them or what, but having them makes
    problems.
    Here is what I did to fix it
    In the query I used QuotedValueList and used a delimiter.
    Then I stripped out the apostrophies that coldfusion added.
    Then I reset the QuerySetCell with the apostrophies removed.
    <CFLOOP QUERY = "Results.Itinerary">
    <CFQUERY NAME = "GetPorts" DATASOURCE="Cruises">
    SELECT *
    FROM Itinerary_Ports
    WHERE (ItineraryID = #ItineraryID#)
    AND (Name NOT LIKE '%At Sea%')
    </CFQUERY>
    <CFSET ThisPortList =
    QuotedValueList(GetPorts.Name,";")>
    <CFSET QuerySetCell(Results.Itinerary,
    "PortList","#ThisPortList#", CurrentRow)>
    <cfset a = replace(PortList,"'","","all")>
    <CFSET QuerySetCell(Results.Itinerary, "PortList","#a#",
    CurrentRow)>
    </CFLOOP>
    The next part I did was the "PortList IN ('#PortList#'). "
    SELECT *
    From Search.Results.Itinerary
    Where ShipID = #ShipID#
    AND NumberOfNights = #NumberOfNights#
    AND PortList IN ('#PortList#')
    ORDER BY DepartureDate ASC

  • RSA7 Delta Quere error when reading the data

    I am working on BW3.5
    I have six datas sources which extracts data from R/3 to BW
    one of the datasource is failed. when checked RSA7, selected the failed datasource and executed, throws the short dump error.
    I have analysed the error.
    The shortdump is creating when it is reading data from the datasource.
    There is a problem in the standard RFC table TRFCQOUT and ARFCSSTATE.
    The table TRFCQOUT has one record for Payment for the ARFCTIME which is missing in the ARFCSSTATE table.
    The table ARFCSSTATE has no record for the payment
    When extracting data for the payment data source short dump error is thrown because of mismatch entries in both the tables.
    Kindly let me know what exactly the tables are taken into account when the data is moved from R/3 to BW
    I think if the data can be deleted from the TRFCQOUT table then if will go fine but I am sure what could be implications
    Kindly let me know how best I can resolve the issue.

    Hello Pavan ,
    You can delete the Records from Deleted from TRFC* and the load will be fine BUT you are not suppose to do that, this simply would mean that we have lost the record , hence this is not advisable.
    Instead check and analyse the record there to see if :
    1.The record is an old one hence not useful anymore
    2.The record has correct values that are suppsoed to be
    If the record seems to be obviously redundant or useless we can delete it , else the correction should eb done on the source system side.
    Regards,
    Tapish

  • Queries error... any idea?

    SELECT T0.[ItemCode], T0.[Dscription],  max(T1.[OnHand]) AS 'NOW',
    max(T1.[OnHand]) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate], GETDATE()) WHEN 0 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate], GETDATE()) WHEN 0 THEN T0.[InQty] ELSE 0 END)AS 'M1',
    max(T1.[OnHand]) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[InQty] ELSE 0 END) AS 'M2',
    max(T1.[OnHand]) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[InQty] ELSE 0 END) AS 'M3',
    max(T1.[OnHand]) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 3 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 3 THEN T0.[InQty] ELSE 0 END) AS 'M4',
    max(T1.[OnHand]) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 3 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 3 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 4 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 4 THEN T0.[InQty] ELSE 0 END) AS 'M5',
    max(T1.[OnHand]) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 0 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 1 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 2 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 3 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 3 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 4 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 4 THEN T0.[InQty] ELSE 0 END) +
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 5 THEN T0.[OutQty] ELSE 0 END) -
    SUM(CASE DATEDIFF(MM,T0.[DocDate],GETDATE()) WHEN 5 THEN T0.[InQty] ELSE 0 END) AS 'M6'
    FROM OINM T0  INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode, OWHS T2
    GROUP BY T0.[ItemCode], T0.[Dscription]
    ORDER BY T0.[ItemCode]
    this code is working, it showing the inventories that i want to see in the query results... but the figure is always multiplied by 4... any idea? please try and see whether it's working fine in your database... I just need to know why it's multiplied by 4.. i've search everything and still unable to spot the problem.
    FYI, it's required not to use XLR for this...
    any comment will be appreciated..
    Thanks,
    Martin

    Suda,
    It means the rows generated as a result when i run the query is correct ( which is the number of my item master), but the amount is multiplied by 4....
    Wow!! i'm typing this while trying to remove the owhs t2, and it's CORRECT!!
    Thank you everyone!!
    Thanks,
    Martin

  • Error while saving a smartform in pdf with action profile in service order

    Hi experts,
    I have a problem in saving a smartform which is converted in pdf.
    WHat i m doing is.
    The action profile is configured with new Z class and Z method. CL_DOC_PROCESSING_CRM_ORDER and CRM_SRVORDER_EXEC_SMART_FORM.
    But when i click the button in the Order, i m able to save the pdf in local drive, but an error is coming in the Order page(at the bottom) "Action could not be executed successfully".
    The action has been setup with "Printonly" and "Smartforms print" in customization.
    I have a dount whether, this action Printonly is only to print the smartform ??? Or can we use just to save the smartform in pdf.
    But when i remove the pdf conversion and save dialog and try to print it directly, Its printing the smartform. No errors are coming.
    But guys, please help me on this. I have tried all the tricks i know.
    I just want to save a smartform in pdf with action profile configured.
    Thanks in advance.
    <REMOVED BY MODERATOR>
    KK
    Edited by: Alvaro Tejada Galindo on Mar 19, 2008 4:26 PM

    Hi;
    Did you checked
    Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1] << seems similar error like yours
    Forms FRM-92050, FRM-92100, FRM-92101, FRM-92102 Reference Guide [ID 444690.1]
    If its not help please enable trace
    How To Perform System Tracing For All Forms Runtime Processes? [ID 400144.1]
    Regard
    Helios

  • FRM-92010 Error while saving a form in HRMS

    Hi,
    I created a new 12.1.1 instance and impletented HRMS as per doc id#145837.1.
    Applied patch 8934107, Ran DataInstall and hrglobal.drv.
    Now while saving the forms we are getting the following error: (in application.log)
    10/05/13 18:12:03.269 formsweb: Forms session <1> aborted: unable to communicate with runtime process.
    10/05/13 18:12:03.270 formsweb: Forms session <1> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    I have also applied patch 8682249 as per doc 867501.1 (since error was the same) but still no luck.
    Please help.
    Regards,
    Neeraj
    Edited by: user556153 on May 13, 2010 6:19 AM

    Hi;
    Did you checked
    Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1] << seems similar error like yours
    Forms FRM-92050, FRM-92100, FRM-92101, FRM-92102 Reference Guide [ID 444690.1]
    If its not help please enable trace
    How To Perform System Tracing For All Forms Runtime Processes? [ID 400144.1]
    Regard
    Helios

  • Error 403

    Having spoken to India on 2 occasions re error 403.. this occurs when i use the BT search bar,, say for "Argos"  error 403 comes up.. if i make any search same error comes up.. i can access all sites using differnet web browser...  on both occasions India said it was a fault at Bt and should be sorted soon... still waiting any suggestions... have complained to Bt twice now re this still no solution from them

    There are a few people reporting this.
    https://community.bt.com/t5/Other-Broadband-Queries/error-403-searching-the-internet-from-bt-com-hom...
    Why not use the google search https://www.google.co.uk/  until/if the problem is resolved.

  • Post Moved error code 0x800ccc0f

    Post Moved to other BB Queries  http://community.bt.com/t5/Other-BB-Queries/error-​code-0x800ccc0f/td-p/521635
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

    alones wrote:
    It is not timeout settings, or firewall, or connectiosn speed. It is a problem with Yahoo.
    BT have been tring to fix it for about 2 months now...
    Yes there is probably a problem with the Yahoo servers prematurely timing out. But the originator of the thread was looking for some advice on alleviating their problem. The size of the email,  timeout settings, firewall, virus scanning and connection speed all potentially have a bearing on the issue.  So the advice given is valid but depending on circumstances may be more or less effective.

  • FRM-920101 error webserver logic issue

    Hi All,
    EBS R12 Linux
    Module: Purchase Order approval
    I encounter FRM-920101 error when approve button is click :(
    Please help.............
    Thanks
    MsK

    Hi yxes;
    Please check Note:Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1]
    Asset addition from asset workbench (FAXASSET) results in FRM 92101 [ID 754898.1]
    Please mention your EBS version and OS level can give you more support
    Regard
    Helios

  • 554 Transaction failed : Cannot send message due t...

    Hello there
    Had a problem with the above about a month ago and had remote techies on m y PC for several hours over two days trying to fix it.  They said it was my PC but in the end it was a yahoo server problem. It's happened again!  However, this time I can receive and send emails but not more than one recipient whereas last time I couldn't send at all.
    I don't have the time or energy to do it all again but, because I work from home, not being able to send emails to several recipients at the same time is a right pain.
    Does anyone from BT/Yahoo know how to fix this without by wasting a whole day with a techie?
    Hoping someone can help.
    Many thanks

    Welcome to this forum. This is a BT domestic customer to customer help forum, any messages posted here do not go to BT.
    Its possible one of the forum members may be able to help you.
    Please look at this thread http://community.bt.com/t5/Other-BB-Queries/Error-code-when-sending-Cannot-send-message-due-to-possi...
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Error while Activating / running Bex queries/reports

    Hello
    I have following ERRORs while activating / running BEx reports/queries.
    1. While Activating BEx reports, I keel getting following ERRORS
    Object directory entry R3TR ELEM E341OIR6G715GUMGN0MRXP3MA does not exist
    Error when activating element BX7FOOKQB4588RROCBTC2YVZN
    BEx transport request 'BIDK901352' is not available or not suitable
    2. While running the BEx report/query in Bex Analyzer, I'm getting ERROR in entering the parameters, its NOT allowing / giving me option to select the parameters, for example for 0COSTCENTER, it is NOT displaying list costcenters to select before I can RUN that particular report.
    3. How can I trouble shoot ERRORs related to BEx and Portal connectivity.
    4. How would I setup the Variants for a Bex query/report ? Are these Variants for per user basis / per report basis. Can I have each variant for particular users OR all users must select their own variant each time when they RUN the report ? 
    Thanks, Sorry I have asked multiple questions, in jst one thread.
    BI

    Goto SE03 -->Search for Objects in Requests/Tasks  option , select the object type and execute it will give all the transports it has collected before ..
    Also you can use transport connection in RSA1 and select the query and find out all the objects in query locked by what request etc ..
    Thanks,
    Ravi

  • Error while transporting Queries

    Hi,
    I am getting this error while transporting queries!!
    Object '!ZTIC_UKA' (ELEM) of type 'Query' is not available in version 'A'
    Message no. RSO252
    Diagnosis
    You wanted to generate an object with the name '!ZTIC_UKA' (in transport request ELEM) of type 'Query' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
    System Response
    The object was not taken into account in the next stage of processing
    Thanks

    Hi Murali,
    YOu are trying to transport the element ZTIC_UKA'  of the query,may be an variable  which is not colelcted in the request.
    Try to transport the query through RSA1> Transport connection->Query-->give you query name -->Drag and Drop to Right hand side  and Click on collect all dependent objects and check whetehr they have collected in the same request.Make sure ur variables are collected.
    Tranport it now and Check.
    Rgds
    SVU123
    Edited by: svu123 on Mar 4, 2010 7:41 AM

  • Errors while copying queries from Infoset to DSO in BI 7.0. Why

    Hi All,
    I am trying to copy queries from Infoset to DSO in BI 7.0.
    Message displayed after entering the data target names in Source Infocube (Infoset) & Target Infocube (DSO).
    : Errors when reading InfoObjects for InfoCube (Infoset).
    My Infoset has 2 queries.
    I need to copy only one query to the DSO which is part of the infoset. How can we achieve this.
    Please explain.
    Thanks

    Hi Murali,
    who said the target is different.
    The target is different in the sense, source is an Infoset & Target is an DSO.
    This DSO is a part of the above Infoset.
    RSZC works here but its giving errors as mentioned above.
    Regenerate in the sense, u mean i need to create the same again on DSO.
    Is there any other way.
    If providing some solution, let it be clear.
    Thanks.

Maybe you are looking for

  • ITunes 7.6.1...the torture never stops

    I have to say upfront that iTunes 7.6.1 is the worst version. Ever. I couldn't use 7.6 because I got spinning beachballs ALL the time. Had to revert backwards. When 7.6.1 came out I gave it a go and things have ben great. Until now. I decided to rent

  • How do you go to end of sentence when typing or editing an email?

    thanks

  • I forget the password for client 000

    Hi, Quite new to sap , I installed the sap 4.7 ides and after installation i forget the password of above client , so now when i want to run the sap gui to login it ask for a password which i forget , as i am new to sap the solutions provided on the

  • Caret position in JFormattedTextField

    How to I configure a JFormattedTextField so that the initial position for editing is on the right rather than the left? I'm using the default, left, and most users of my application complain that it isn't intuitive.

  • 10 g AS (How to restart)

    Hi My database is up but how to restart Application server ? (Environment AIX 5.3, 10 g ) Regards Den