Query book

Hi all
I have just finished reading a book called "SAP Query Reporting" while I wish to go further with query building such as deeper understanding of logical database and coding for an infoset. Is there any book that you can suggest or any website to look into? I was searching in help.sap.com but not that much mentioned there. Thanks in advance for any input.
Best, Yu

Hi
Please check this link.
[https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40bec8da-4cd8-2910-27a9-81f5ce10676c]
Regards,
Neeraj

Similar Messages

  • Book mark icon in Adhoc query?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is on

    Vasu,
    then there seems to be some issue with your ad-hoc template - was it modified in any way ? that could be causing this issue. If the temnplate was not modified then reactivate the same from business content and check.
    The ad-hoc template depends on your BI version. Which version of BI are you on ?
    Arun

  • Saving a query in Work book

    hi experts,
    I have made the changes in query and the changes is not reflecting in the work book of that query.. can u give solution for this....
    regards,
    preety

    Dear Preety,
    After saving the Query SAVE it as a EXISTING WORKBOOK.
    Regards,
    Ramkumar.

  • Incorrect data for proportional factor in query based on Planning Book

    hi,
    We have upgraded from APO 3.1 to SCM 5.0.
    Post upgrade, the proportional factor is being displayed incorrectly in the BEX query based on the Planning Book data if we run the query for multiple months.
    for eg,
    if, in the planning book, the proportional factor for months 10.2009 and 11.2009 are as follows :
    Brand  >> Month >> Proportional Factor
    B1 >> 10.2009 >> 70%
    B2 >> 10.2009 >> 30%
    B1 >> 11.2009 >> 80%
    B2 >> 11.2009 >> 20%
    When we execute the query for the above brands for months 10.2009 and 11.2009,
    then, at the total level, the % displayed is 100% and the data at brand level is halved.
    We do not have any exits or formulae operating at the key figure level in the query and hence are unable to figure out why this is happenning...
    Any clue on this ?
    regards,
    Anirudha

    Resolved.

  • Query: SQL Server Book Recommendations

    Hi folks!
    There are Books Online. There are the SAP Notes and Documents created by people like Jürgen Thomas (THANKS!!!) ...
    There are many sources of information in the WWW - blogs, documents, discussons ...
    And there are many BOOKS. Too many ...
    I ask you to recommend your favourite books about SQL Server.
    Your recommendations should help all of us to buy those books which are helpful ...
    Kind regards, Rudi

    Hi Rudolf,
      Do you focus only on SQL server, not including Windows Server Failover Cluster and SAP? If yes, I  recommend you to ask in MSDN -> Database Engine.
    Because this is a SAP on SQL forum, I will talk a little bit about WSFC and SAP. Here is my MATERIAL list. Hope this helps.
    PS: These are very useful for troubleshooting and performance optimization. Regarding to reviews, there are so many people wrote in Amazon in great detail. I will skip it.
    1. Search "Failover Cluster" from MS TechEd 2008~2014
    2. Search "SQL Server Performance/Query/execution plan/AlwaysOn" from MS TechEd 2008~2014
    3. A book "Microsoft SQL Server 2005 administrator’s companion"
    3.5 Troushooting Sql Server ( Troubleshooting SQL Server: A Guide for the Accidental DBA )
    4. A material from SAP course "BC 490: ABAP Performance & Tuning"
    5. CD 262: Tune Your Custom ABAP Code.
    6. Performance Do’s and Don’ts – ABAP: http://service.sap.com/performance
    7. SAP performance optimization guide: http://www.amazon.com/SAP-Performance-Optimization-Guide-Edition/dp/1592293689
    8. Juergen best practices: http://scn.sap.com/docs/DOC-1006
    9. SAP DBA Cockpit and Microsoft SQL Server | SCN
    10. DBA Cockpit SQL scripts: http://blogs.msdn.com/b/saponsqlserver/archive/2007/06/05/sap-dbacockpit-and-some-related-sql-scripts-part-1.aspx
    11. Search "Enhancment Package/Solution Manager" from SAP TechEd

  • Finding std query for Time booking report in BW

    Hello,
      Time booking for service engineers are done in CRM Service. Need to furnish report on this time booking in BI portal.Can anyone help me in finding std. query built in BI on time booking.
    Regards
    Devika.S

    Hi gabbeta,
    not sure, but I try:
    1) you want in single columns values <4 or <8...:
    You can use Formula with boolean operator '<'. It gives you as feed-back 1 or 0 if corresponding to the operator.
    2) you want single columns for single values of Priority:
    You create a set of Restricted Key Figures with the corresponding value of Priority.
    3) you can combine previous settings if you need both situation: Restricted Key Figure and values greater or less then 4, 8, 12.
    Ciao.
    Riccardo.

  • Complicated Query Problem - Booking System

    I am currently developing a hotel booking system for my University final year project and am having some serious problems with my queries to calculate room availability.
    I felt the best method to calculate room availability was to first calculate which rooms were already booked for any specific queried dates and then to subtract those results from the list of total rooms. That would then return which rooms were available on those dates.
    My first query successfully calculated which rooms were already booked using my test dates which were rooms 1,3 & 5. This result was stored in a temporary table. The second query then obtained the list of total rooms (1-10) and from this subtracted the results in the temporary table (1,3 & 5) which should have returned 2,4,6,7,8,9,10 as the rooms available. However, it returned the rather strange result "2,3,4,5,6,7,8,9,10,1,2,4,5,6,7,8,9,10,1,2,3,4,6,7,8,9,10"
    It seems to take each result from the temporary table individually, subtract it from the total list of rooms, return the result and then move on to the next value in the temporary table. Which is why '1' is missing from the first 9 numbers, '3' from the second 9 and '5' from the last 9.
    If anyone can help me solve this problem or suggest alternative methods I would be most appreciative.
    Below is my MySQL code for the relevant parts of my database, the test values I am using and the two queries I am having problems with.
    Advance Thanks!
    CREATE TABLE booking
    booking_id               INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
    e_mail                VARCHAR(40),
    arrival_date          DATE NOT NULL,
    departure_date          DATE NOT NULL,
    PRIMARY KEY(booking_id)
    insert into booking (booking_id,e_mail,arrival_date,departure_date)
    values ('[email protected]','2004-02-25','2004-02-28');
    CREATE TABLE roombooked
    booking_id      INTEGER UNSIGNED NOT NULL REFERENCES booking(booking_id),
    room_id               INTEGER UNSIGNED NOT NULL REFERENCES rooms(room_no),
    no_of_nights          INTEGER UNSIGNED NOT NULL,
    PRIMARY KEY(booking_id,room_id)
    insert into roombooked(booking_id,room_id,no_of_nights)
    values ('1','1','1'),('1','3','1'),('1','5','1');
    CREATE TABLE rooms
    room_no               INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
    room_name           VARCHAR(11),
    room_type               VARCHAR(9),
    single_price          DECIMAL(5,2),
    double_price          DECIMAL(5,2),
    PRIMARY KEY(room_no)
    insert into rooms (room_name,room_type,single_price,double_price)
    values ('shakespeare','principal','165','225'),
    ('keats','principal','165','225'),
    ('kipling','standard','125','165'),
    ('tennyson','superior','135','185'),
    ('shelley','deluxe','155','205'),
    ('brooke','superior','135','185'),
    ('wordsworth','deluxe','155','205'),
    ('milton','deluxe','155','205'),
    ('masefield','deluxe','155','205'),
    ('browning','deluxe','155','205');
    FIRST QUERY
    CREATE TEMPORARY TABLE roomsoccupied          
    SELECT roombooked.room_id FROM roombooked, booking
    WHERE
    roombooked.booking_id = booking.booking_id
    AND
    booking.arrival_date = '2004-02-25'
    AND
    booking.departure_date = '2004-02-28';
    SECOND QUERY
    SELECT rooms.room_no FROM rooms, roomsoccupied
    WHERE
    rooms.room_no != roomsoccupied.room_id;

    you haven't got a join in your second query
    SECOND QUERY
    SELECT rooms.room_no FROM rooms, roomsoccupied
    WHERE
    rooms.room_no != roomsoccupied.room_id;will return rubbish because you have created a valid view of your data with a sensible join.
    try something like
    SELECT rooms.room_no FROM rooms
    WHERE rooms.room_no NOT IN (SELECT roomsoccupied.room_id FROM roomsoccupied);instead, which I believe should give you more meaningful data

  • Query name from work book id

    Hi Guys,
    Iam in bex browser, iam seeing a report here how to find a query name using the work book id.
    Thanks,
    V.Singh.

    Hi,
    I am not sure how to do it in browser but if you have workbook id and you want to know all the queries inside it, then follow the below given procedure,
    Goto table RSRWORKBOOK put your workbook id and collect all the GENUNIID's.
    Now goto table RSRREPDIR and copy all the GENUNID's you will get required list of queries.
    Regards,
    Durgesh.

  • Specifying multiple books in WS2 web services query

    Hi,
    I am wondering if anybody has managed to use web services to query data and restrain by more than 1 book of business. According Oracle Support this can be done though the use of searchspec to determine the Book. I have tried this with no success
    Here is a SOAP message with just a single Book reference. It returns no results?
    <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
    <ContactQueryPage_Input xmlns="urn:crmondemand/ws/ecbs/contact/">
    <ListOfContact xmlns="urn:/crmondemand/xml/Contact/Query">
    <Contact searchspec="([ContactFirstName] = 'John') AND ([BookId] = 'AHIA-N3S58')"><Id />
    </Contact>
    </ListOfContact>
    </ContactQueryPage_Input></soap:Body></soap:Envelope>
    For multiple books the searchspec would be
    <Contact searchspec="([ContactFirstName] = 'John') AND ([BookId] = 'AHIA-N3S58') AND ([BookId] = 'AHIA-N3S76')"><Id />
    Any guidance is appreciated.
    Edited by: user10730659 on 11-Nov-2012 20:59

    Hi Christina,
    Thanks for your response. I had a typo in my initial description the searspec should have read:
    <Contact searchspec="([ContactFirstName] = 'John') AND (([BookId] = 'AHIA-N3S58') OR ([BookId] = 'AHIA-N3S76'))"><Id />
    Have you been able to specify the BookId in the searchspec successfully?
    I dont get an error thrown just no results returned - when I just specfiy 1 book. I normally set the book Id in the query but when using multiple books this won't work, hence why I am looking to use the searchspec...

  • Modification to SQL Scrap book requires query re-creation

    In CR4E, SQL Scrap book is used to write the query and the select fields can be added to report. This is the equivalent option of Add Command option as windows version.
    But we have encountered issue using the SQL scrap book in the eclipse version of plugin.
    Issue description:
    A report is created with 5 set of fields mapped out from SQL scrap book to layout. Now when developer needs to modify the query such as adding a field, when the query is modified in the scrapbook, new sql is created. There is option to delete the initial query. But all the associated that was made to the layout are also getting deleted. This means the data field from the query has to be re-laid out in the layout again.
    This issue is currently only the eclipse verion of crystal reports and the windows version "Add Command" option works for the modification of the query alone.  Thus we had to switch to the Windows version to get full developer productivity.

    Generally speaking this is something in common with most of our SDK's.  If you modify fields in your database query, such as adding or removing them or renaming them, it is likely that the fields from the report will be dropped when this happens.  Since the Eclipse designer is based on the Java Print Engine, this is probably why you are seeing this behavior.
    Using the Crystal Reports Designer to modify your query at design time makes sense as a work around for you because Crystal Reports has the capabilities of allowing you to do this.

  • How do tune sql query? Can somebody help me in this? Atleast prescribe book

    how do tune sql query? Can somebody help me in this? Atleast prescribe a reference book.
    I am not able understand How to analyze tkproof output.

    Check out asktom.oracle.com
    Lot's of threads on interpreting tkprof output - no simple easy solution here.
    You need to understand what is happening and THINK. Then you can be a good engineer.
    As for good books...
    Tom Kyte's books are really, really good.
    http://www.amazon.com/Effective-Oracle-Design-Osborne-ORACLE/dp/0072230657/ref=sr_1_3?ie=UTF8&s=books&qid=1266783471&sr=8-3
    http://www.amazon.com/Expert-Oracle-Database-Architecture-Programming/dp/1590595300/ref=sr_1_1?ie=UTF8&s=books&qid=1266783471&sr=8-1
    Good luck!

  • New Sample Code: Querying techniques, integration events, book assignment

    We have just posted a new CRM On Demand Web Services code sample to Oracle Sample Code. This sample uses a combination of WS v1.0 and WS v2.0 to demonstrate advanced samples like querying techniques, processing integration events, and book assignment.
    The sample is written using .Net framework 1.1 and VS studio 2003. Users will need to have Microsoft .NET (.Net Framework 1.1) installed on their machine.
    <a title="Click here" href="https://codesamples.samplecode.oracle.com/servlets/Scarab/action/ExecuteQuery?query=crm_on_demand" target="_blank">Click here</a> to go to the CRM On Demand code samples. Look for Artifact ID S517, Advanced WS Techniques (in .NET Framework 1.1)

    I found some examples in the Web Services Resource Library.
    you can access this through the "Training and Support" link from within CRM OD.
    Then click on "Web Services Library" then download the Getting Started kits
    Edited by: user10730659 on 20/01/2009 16:11

  • A query for barrow books

    Hi,
    I have a table that shows the people who have barrowed a book :
    book_id     user_id     date_barrowed     date_returned
    16     340     01/05/1998     05/05/1998
    16     340     20/02/2007     25/02/2007
    17     340     01/05/1998     05/10/1998
    17     450     04/12/1998     
    23     500     20/02/2007     25/02/2007
    65     510     18/03/2008     
    76     7540     05/07/2008     10/07/2008How can I query those who have presently barrowed a book that they have already barrowed before ?
    Thank you.

    Pls., re-post your SQL and PL/SQL doubts in PL/SQL
    Regards,
    Sabdar Syed.

  • Query-Automatic assignment of Record type to Book of Business-Pls help me

    I have a query about Automatic assignment of record in Book of Business.
    Using 5 record types & 50 regions as a part of Book of Business. You can say 50 sub-books.
    I want to assign these 5 record type to particular Book when to create & modify.
    Eg. When I create new account it should be automatically assigned to Book 1 & later I modify this account for reassignment to new user then it should be automatically added to the new user’s book.
    I need to create workflow for this as Assign to book criteria for both when new record saved & when modified record saved.
    I have tried this & its working; however problem is with the creation of two many workflows.
    50 region (Books) x 5 record types * 2 - Create/modify flow = 500 workflows for one country!
    If I am right then I can assign 1 record type with action as create or modify in 1 book only.
    How to reduce these no. of workflows?
    Pls help me out in this regard.
    Regards
    Mangesh

    Mangesh,
    I am sorry to tell you that there is no quick answer to this but i will say that maybe you need to rethink your book structure and their requirements here.
    I have 4 types and 7 regions so you need to create books to allocate all these on create and also modify. Customers have raised concerns with this to Oracle and they are looking into it but they are along way from completing this. Sorry to spoil your day but i would strongly ask you to consider your books structure before you complete this.
    Otherwise if you are using webservices you could assisgn the book when the record is piped into the CRM and then you only need to complete the modify workflows.

  • Auto query based on set of books where web page is launched.

    I have created a simple search page in the OA Framework. What I need to do is that when this page is launched, I need to do auto execute query of VO based on set_of_book of responsibility so that it displays only USD records if responsibility is in USD book. Can you give me an idea how I can achieve this requirement?

    Set the required where clause and its value on the VO associated with the results table and invoke executeQuery api on the VO.

Maybe you are looking for