REDEFINING QUERY

Hi aLL,
COULD ANY HELP ME OUT BY DIRECTING ME TO WHERE I COULD REDEFINE THE QUERY FOR QUICK REPORT ON ZENWORKS 7?
Whenever I launch the quick report it gives this message thT IT Cnnot retrive more than 500 WS that the query for quick report has to be redefined.
Regards.

aawosanmi,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Redefining Query method for BP search

    Hi All,
    I added sales office and sales group field in BP search page (COMM_BUPA_SEARCH) ,
    I created child class for CL_BSP_BP_ACCMOD i.e. ZCL_BSP_BP_ACCMOD and tried to redefined Query method.
    But in IF_CRM_BSP_MODEL_ACCESS_IL~QUERY there are some private attribute of Super class, because of that I am facing the error.
    Please advise me in
    1) What should I do to add sales office and sales group in query  criteria .
    2)To add sales office and sales group fields on search screen I created new field group and add that in BUP_BUS1006_SEARCH_ALL_FIELDS (Group type attribute is set to Screen Group) But on page the title of screen group is still "Search By Role", insted of "Search by sales Info" (This is description of newly added field grp)
    Swanand

    1) If am not mistaken, there is a variable in the standard SAP program called lv_where_clause for the search query.But this would be a modification. try looking into this program SAPLCRM_BUPA_BSP_SEARCH_ACC. try putting a break point and see if this is where you wanted to add the field in your query.
    Thanks,
    Shailaja

  • Scrolling, Counting (the whole shebang?)

    Bear with me here, this one's causing me headaches and sleepless nights (and I'm not exaggerating. While this issue sits in Bugzilla the boss cannot be silenced.)
    <cliche>The story so far...</cliche>
    An implementation of a scrolling result set I built recently for one of the queries in our system was done like this (The database system in question is Postgresql, btw):
    (1) Count the rows using a SELECT count(*) ...
    (2) Get a cursor with DECLARE CURSOR FOR SELECT ...
    (3) Use FETCH to grab rows, MOVE to move the cursor, etc.
    (4) Finish up at some point in the future with a CLOSE.
    Now...
    The entire reason we went through this horror was because ResultSet in Postgres isn't implemented using native Postgres cursors. This made the development team uneasy (we thought the performance wouldn't be up to scratch) so we eventually decided we would go for a somewhat more brute-force way of using Postgres' built-in commands. The result, a very fast scrolling result set, which works fine, for the one or two pages in our system which use it.
    But (there is ALWAYS a but, right?)...
    Since the DECLARE CURSOR, FETCH, MOVE, and CLOSE statements are not in the SQL standard, the query doesn't work under, say, DB2. Likelihood is it wouldn't work under any other database at all. And for portability's sake, we're considering this to be a bad thing.
    In addition to this, the need to get the count separately from the query itself means that in every place where we do a SELECT, we have to have an equivalent SELECT to do the count (which in some cases can bear little or no resemblance to the one used to do the query.)
    So...
    Question 1: Is doing an 'ordinary' SELECT query, holding the ResultSet in memory and simply reading off row by row only parts of it considered 'safe', where 'safe' is defined by not causing OutOfMemoryError for queries in the order of 10,000-100,000 results?
    Now, we require a count of the number of the results. In our existing system this is the slowest part of the process because the SELECT count(*) takes orders of magnitude more time to execute than the DECLARE CURSOR. That is, the DECLARE CURSOR takes about 10ms, and the SELECT count(*) can take a minute, depending on the size of the result set, presumably because the DECLARE CURSOR doesn't actually do the query, and that the query executes as you fetch more results from it, or in the background. (Beats me, anything involving databases is magic as far as I'm concerned.)
    Since we 'require' the count though (for the user interface only, despite the fact that it cripples the query speed somewhat), we might be able to get away with doing it this way, so...
    Question 2: Would doing the following set of commands likely take the same amount of time to run (or less, or more), compared to doing the SELECT count(*)?
    PreparedStatement ps = /* insert code here ;-) */
    ResultSet rs = ps.executeQuery();
    rs.afterLast();
    int numRows = rs.getRow();
    rs.beforeFirst();I guess another part of Question 2 is, is that sequence of commands considered an 'acceptable' way of counting the number of rows returned? It seems to me they would take a long time to run, but sob I don't know.
    The main thing is, we have an extraordinarily large number of different queries in this system, and all of them pretty much use joins of some sort, and all of them are incredibly complex. The system as a whole is quite monolithic, which is why I'm trying to make this enhancement as simple as possible. The count-and-then-cursor method would not only be incompatible with DB2, Oracle and whatever, but would probably take an order of magnitude more time to roll into the system than something which simply caches the result sets.
    Question 3: Does anyone know of an independent group, which might have implemented cursor-based ResultSet scrolling into Postgres' JDBC driver? This would be a big time saver, as the lack of this in their driver makes the database nearly useless for any sizable system, and 'unfortunately' our company has a heavily Open-Source philosophy (believe me, I love OS too, but in this case it's crippling us.)
    Question 4: Does anyone know of a company in the Sydney region who is looking to recruit a guy who knows a hell of a lot about Jabber and various IM protocols, but not so much about databases? [Disclaimer: if you are my current employer, this is a JOKE.]
    Since this is such a weight on my shoulders at the moment, I'll put up a fairly sizable number of dukes. Let's hope we attract the hot-shots. These problems must have been done 1000 times before, but I've never seen a tutorial on them, and not even the 5kg JDBC book we have here helps at all.

    To have scrollable ResultSet you can use CachedRowSet (you can use it with any DBMS):
    http://developer.java.sun.com/developer/earlyAccess/crs/
    To prevent OutOfMemoryError you can:
    PreparedStatement ps = /* insert code here ;-) */
    PreparedStatement.setMaxRows(int�maxRows);
    ResultSet rs = ps.executeQuery();
    CachedRowSet crs = new CachedRowSet();
    crs.populate(rs);
    crs.afterLast();
    int numRows = crs.getRow();
    crs.beforeFirst();
    and if numRows = maxRows promt users that there are more records and let them redefine query
    or if you don't have to display all rows (who needs 100000 rows once anyway? ;)
    retrieve and cache just keys and display result page by page (there are some other paterns to do paging).
    100000 records is a lot, but it depends on number of users and RAM - it's still can be done.
    there is another OpenSource JDBC driver for PostgreSQL: jxDBCon http://sourceforge.net/projects/jxdbcon/
    you can compare it with PostgreSQL driver

  • Subquery in cursor

    Hi, I'm using the below cursor
    CURSOR C3 IS
        SELECT SUM(decode(art_currency,:cp_currency,
        NVL((ART_BAL_LDR-ART_BAL_LCR)/art_ex_rate,0),
        NVL((ART_BAL_LDR-ART_BAL_LCR)/ (Select Cur_Exrate From Currency_Master
                                        Where Cur_Company = :P_Company
                                        And Cur_Code = :cp_currency
                                        And Trunc(Cur_Eff_Date) <= Art_Doc_Date
                                        AND   cur_status = '0' and rownum = 1),0)))
        FROM
         AR_TRANSACTIONS
        WHERE
                        ART_COMPANY=:P_COMPANY
        AND ART_CODE=:CUM_CODE1
        AND ART_DOC_DATE<:P_FROM_DATE;For this i'm getting error : Encountered the symbol 'SELECT' When expecting....
    I'm using this in reports6i
    Any fix?
    Thanks

    Ya, the same query works in sql developer.
    But in reports it is not supporting.
    Thanks for understanding that, I want a redefined query for report.
    I tried
         CURSOR C3 IS
        SELECT SUM(decode(art_currency,:cp_currency,
        NVL((ART_BAL_LDR-ART_BAL_LCR)/art_ex_rate,0),
        NVL((ART_BAL_LDR-ART_BAL_LCR)/ Cur_Exrate ,0)))
        FROM
         AR_TRANSACTIONS,CURRENCY_MASTER
        WHERE
                        ART_COMPANY=:P_COMPANY
        AND ART_CODE=:CUM_CODE1
        AND ART_DOC_DATE < :P_FROM_DATE
        And Cur_Company = :P_Company
        And Cur_Code = :cp_currency
        And Trunc(Cur_Eff_Date) <= Art_Doc_Date
        AND   cur_status = '0'; This was working until they defined one more exchange rate for same currency.
    Now the query doesnt work anymore, works -- but it calculates for both the exchange rate, so for every one record, i'm getting 2 instead.
    I want to take only the most recent ex rate, based on the Art_Doc_Date(<=)
    Any help?
    Thanks

  • PCUI: Create confirmation from Z_CRMD_BUS2000116

    Hi All,
    I am trying to 'Create confirmation' from the 'Z' service order application and it does not work.
    Here is what I have done.
    1. Copy CRMD_BUS2000116 to Z_CRMD_BUS2000116.
    2. Implement access class ZCRM_CL_CRM_BSP_AM_HEADME_1O as subtype of CL_CRM_BSP_AM_HEADME_1O and redefined query and Read methods.
    I get the display fine according to the logic. However when I select one line and click button, 'create confirmation', it does launch a new window and the URL seems to be the same as clicking from SAP standard CRMD_BUS2000116 application(except the CRM_PSID_GUID regenerated each time same as in the case of standard CRMD_BUS2000116 application). However when the control goes into the CRMD_BUS2000117(Create confirmation)application, it behaves differently for my Z application where as the standard working fine. Where am I doing wrong or what can I do to get this working.
    your help is greatly appreciated.
    thanks
    johnson zavier
    Solution:
      I was calling the method SUPER->IF_CRM_BSP_MODEL_ACCESS_IL~PROCESS_EVENT without the parameter IV_EVENT_INDEX and hence the subsequent read to a table failed (read with index 0). Once I passed the IV_EVENT_INDEX (value came up was 1), it started working.
    Message was edited by: Johnson  zavier

    was calling the method SUPER->IF_CRM_BSP_MODEL_ACCESS_IL~PROCESS_EVENT without the parameter IV_EVENT_INDEX and hence the subsequent read to a table failed (read with index 0). Once I passed the IV_EVENT_INDEX (value came up was 1), it started working.

  • Issue while redefining BEx query in NW Gateway

    Hi Friends,
    I am trying to redefine a BEx query in Netweaver Gateway system using SEGW transaction, and MDX query option. I am getting the following error after step 2 (step 1 is selecting the catalog and query name, and step 2 is assigning model/service name)  :
    Could not retrieve the Model Name 'Z_ODATASERVICE_2_MDL' and Version '0001'
    I have already created one test odata service by redefining another query from the same system, but I was able to do it successfully. Any help on the error would be appreciated !

    Hi Juhi,
    I am facing the same issue. BW query has three input parameters i.e. Year, Month and Profit center.
    I can create the service when query has only one input parameter i.e. Year. But when query has more parameter other than year, I cant create the service. Getting an error 'Association AZPROFIT_CToListOfValues: referential constraint property not found in entity ZMFIGL_ZFIGL_COST_FINAL_FIORIParameter.'
    As per your last reply, if we have multiple input parameters then it does not allow to create the service from BEX query. How did you resolve this issue. Please provide some details.
    Thanks in Advance.
    Abhishek.

  • Add subquery to main query in Report Builder 6i

    Usually, when you add a subquery to an existing query in a report, you'll see the query in data model marked by a paper clip icon with a forward slash across it (means "Subquery Inside"). All current field names in current query (except CF and CS) will have a '1' appended after it (CF and CS fields are not affected), but in your sql, the column names stay the same. So there is an out-of-sync situation with the column names.
    To fix this:
    1) before change anything, back up old report somewhere else
    2) copy the original query somewhere else as backup
    3) open the query in Report Builder
    4) wipe out the query, replace it by "select 1 from dual" to reset it and press ok.
    5) replace "select 1 from dual" with your new query with an embedded subquery.
    6) All field names will be without the '1' appendix.
    7) check all the CS fields, the source should be reset to null. Redefine the CS fields using backed up report as reference. CF fields are not affected.
    8) move the fields and restore the break orders according to backed up report.
    9) Recompile whole report.
    10) save report again and you're done.
    Maybe you don't need this in the latest version of Report Builder, but in 6i, this is what I do.

    If you use aliases for your item names in your original query you avoid this problem....
    eg
    Select field1 item1, field2 item2 from table.....
    item 1 and item2 will stay in your layout between query changes.
    D

  • Error while creating service for BW query

    Hi All,
              I am creating service in gateway system by using BW query.
              I had created service using Entity Type -> Redefine -> BW query Service
              It is generated successfully but when i am running through Gateway Client, It is throwing error, given below
              " The argument '67.504.82831' cannot be interpreted as a number."
              All properties are string but still it is giving error in number.
              I am using Netwiever Gateway 7.3.
             Kindly advise, what could be issue and , how we can analyse.
    Thanks in Advance.
    Regards
    Vivek

    Thanks for the reply.
    We are aware that system will not allow to create Service entry sheet for held po. But it is allowed me to create on a particular date. Another day i tried to create/delete a SES for the same PO or new PO(held status)  system is not allowing me to delete/create SES.
    Please help me what might be the reason which allowed me on a particulare date.
    Thanks in Advance,
    Vinod....

  • Error in executing Std query -  Incorrect FRANGE row in FORM/DIM?FAC

    Hi,
    NOTE: We are on BI 7.0 Spport Pack 12 (SAPKW70012)...
    When I try to execute a query(one of the standard queries in HR - 0PA_C01_Q021), I got the following error messages:
    ABEND: Incorrect FRANGE row in FORM/DIM?FAC for InfoObject 0AGE
    ABEND: Incorrect FRANGE row in FORM/DIM?FAC for InfoObject 0ORGUNIT
    ABEND: Program error in class SAPMSSY1 method: UNCAUGHT EXCEPTION
    I searched the OSS and found a note 1001621 which said apply support package: SAP_BW_VIRTUAL_COMP - Rel 700 - Pkg name SAPK70012NVCBWTECH
    But, our basis guys came back with the reply that the solution suggested in OSS note is for SAPKW70011, but our system is already on SAPKW70012. So, this note cannot be applied.
    Is there any hidden solution out there? Please respond asap.
    Thanks

    Hi Raj and Sunny,
    Actually solution is very simple. You have to open this query in Query Designer and redefine the corresponding selection. The problem is that OLAP in BW 7.x is much more strict to query definition than in BW 3.x. Therefore queries from BW 3.x  are not accepted quite often. This error is just one example. So try to touch  the corresponding selection using hierarchy and save a query once again. For sure this will help. If not, create a message, we will look at the problem directly in your system.
    Best regards,
    Maxim

  • Using IN keyword in an sql query in a view criteria

    Hi,
    I am using jdev 11.1.1.1.0 and defined an lov query/viewobject as
    select a, b, c from myTable
    I now need to predefine filtering for lov search functionality and need something like the following
    select a, B, c from myTable where B in ('X','Y')
    I could not find a way to do it (i.e. specify the use of IN Keyword) in the Create View Criteria dialog box. I tried to define OR, but is that the best way to redefine IN as i have a long list (the above is just an example)
    (( ( (UPPER(B_FLAG) = UPPER('X') ) ) OR ( (UPPER(DISPLAY_FLAG) = UPPER('Y') ) ) ))

    If you know how many variables are in your "in" You can just write this in the sql query of your VO:
    http://www.oracle.com/technology/obe/obe11jdev/ps1/ria_application/images/t136.gif
    From this tutorial:
    http://www.oracle.com/technology/obe/obe11jdev/ps1/ria_application/developriaapplication_long.htm#ah1

  • Using Keyfigures with selections in a query

    Hi Experts,
    I am designing a query which has the selection criteria as (Condition1) OR ( Condition2 and Condition3) and all the selection are for a single month. For this I have created a Structure and am using two selections.
    I also need to display a SINGLE keyfigure which displays the number of records for the month. The problem that I am facing is, as soon as I hide the selections the Keyfigure values do not show up.
    Any ideas.
    Thanks
    RB

    Hi Vijay,
    Though it should not make a difference whether the result values are suppressed or not because I am using selections in a structure but still I tried this and it did not work. Let me redefine my problem to ease the understanding of the logic.
    select all sales order whose (priority is high) OR ( status is inprocess And owner = X)
    For the above criteria I created one selection which had the restriction on Priority as high and the other selection has status as inprocess and Owner = X.
    Now I do not want to show the selection criteria on the report so I have hidden both the selections.
    I also want to display a keyfigure which counts the number of records.
    The problem is If I hide the selections it does not display the number of records but If I show the selections then it does. I do not want to display the selections but still do want the number of records value to appear.
    I hope this time I was more clear.
    Thanks
    RB

  • Unable to retrieve results using dynamic query

    Hi Experts,
    I have created a custom table and have created a custom bol to integrate it with web ui. I have redefined the dynamic query result method of genil layer. I find the data into LT_RESULT but when I invoke the root list method the LR_OBJECT does not contain the values.
    Please see below the code that I have written.
    ====================================
    METHOD IF_GENIL_APPL_INTLAY~GET_DYNAMIC_QUERY_RESULT.
    DATA: LR_OBJECT TYPE REF TO IF_GENIL_CONT_ROOT_OBJECT,
    LT_RESULT TYPE TABLE OF ZCRMST_XXXX,
    LV_DYN_WHERE TYPE STRING,
    LV_LEN TYPE I,
    LS_RANGE TYPE SELOPTOBJ.
    DATA: LT_XXXX TYPE TABLE OF SELOPTOBJ,
    LT_YYYY TYPE TABLE OF SELOPTOBJ.
    FIELD-SYMBOLS: <LFS_RESULT> TYPE ZCRMST_XXXX,
    <LFS_SELECTION_RANGE> TYPE GENILT_SELECTION_PARAMETER.
    decomposition of selection parameters and build a dynamic where condition
    SELECT * FROM ZXXXX INTO TABLE LT_RESULT[].
    CHECK LINES( LT_RESULT[] ) > 0.
    LOOP AT LT_RESULT[] ASSIGNING <LFS_RESULT>.
    LR_OBJECT = IV_ROOT_LIST->ADD_OBJECT( IV_OBJECT_NAME = 'Root'
    IS_OBJECT_KEY = <LFS_RESULT>-XXXX ).
    CHECK LR_OBJECT IS BOUND.
    LR_OBJECT->SET_QUERY_ROOT( ABAP_TRUE ).
    ENDLOOP.
    ENDMETHOD.
    ==================================================
    Thanks in advance,

    Hi,
    Please check your get_objects method of the genil class. I made some changes to my implementation of get_objects method and it fixed the problem.
    Regards,
    Sandeep

  • Displaying the SQL Query in the report

    How can i display the query used to display a report..
    My query to get the records is as below
    select ename,empno from emp
    where deptno = :p_dept
    When i run the report i want to display the select statement as a message....
    How can we do this?

    One way is to create a column formula which you specifically redefine your query in. However, if you change your query you will need to also change your column formula. So this way could be prone to a mismatch of data. Unfortunately, I don't know of any better way. Hopefully someone else can suggest a better method. Good luck.

  • Easy Query not appearing in Gateway Service Builder

    Hi,
    I am working on SAP HCM MSS Analytics lane which gets data from Easy Queries via Gateway Service. We are using ODP framework and required ODP configuration mentioned in SAP documents is maintained. I have installed Bex Query Designer ( based on 7.3 Sp 06 Revision 724 ) .
    I am trying to create easy query and build gateway Service for that in ECC. I am able to open ODP query and change it property in Extended tab to "By Easy Query" but when I redefine service for BW Query in SEGW I do not see any easy query showing for RFC of ECC . In query designer message says successfully created , I even created simple query from info area of ODP , even then no success .
    All configuration mentioned in documentation for Easy Query is maintained. Any suggestions would be of great help!

    Hi,
    I have the same problem, Please Could you solve it?,
    Regards,
    Johnny

  • How to localize operator labels on af:query

    Hi,
    I have localized af:query component by using skin resource bundle. I still need to change labels for operators. On af:query there are select one choice components that can be used for operator selection. Labels for operators are: "Not equal to","Starts with", "Ends with",... These can not be customised through skin boundle. I think that these labels are defined in class oracle.jbo.CSMessageBoundle.java and they are localized in more then twenty languages but not in the one I need. I tried to create custom MessageBundle for my model project with keys I found in CSMessageBundle. It did not work.
    Does anyone knows how to solve this.
    Thanks!!!
    Maxa

    Hi Gorane,
    you have to create and apply new custom skin for your application. Register new resource bundle for that new skin and in that resource bundle you redefine labels for ui components.
    For creating custom skin look at: "Web User Interface Developer’s Guide for Oracle Application Development Framework" chapter: "20 Customizing the Appearance Using Styles and Skins".
    To find out what keys you need to override check out these link:
    Re: Keys in ResourceBundle
    Here is my resource bundle class with keys for query:
    package com.mycomp.myapp.resources;
    import java.util.ListResourceBundle;
    public class MyAppSkinBundle extends ListResourceBundle {
        public MyAppSkinBundle() {
            super();
        public Object[][] getContents()
            return contents;       
        static final Object[][] contents = {
                {"af_dialog.OK","U redu"},//ok
                {"af_dialog.CANCEL","Odustani"},//ok
                {"af_dialog.LABEL_OK", "U redu"},
                {"af_dialog.LABEL_CANCEL", "Odustani"},
                {"af_dialog.LABEL_YES", "Da"},
                {"af_dialog.LABEL_NO", "Ne"},
                {"af_panelWindow.CLOSE", "Zatvori"},
                {"af_document.LABEL_SPLASH_SCREEN","U\u010Ditavanje"},           
                {"af_document.SPLASH_SCREEN_MESSAGE","Dobrodo\u0161li"},
                {"af_selectManyShuttle.MOVE", "Prebaci"},//ok
                {"af_selectManyShuttle.MOVE_ALL", "Prebaci sve"},//ok
                {"af_selectManyShuttle.REMOVE", "Vrati"},//ok
                {"af_selectManyShuttle.REMOVE_ALL", "Vrati sve"},//ok
                {"af_panelCollection.Detach", "Ra\u0161iri tabelu" },
                {"af_table.Detach", "Ra\u0161iri tabelu" },
                {"af_panelWindow.Detach", "Ra\u0161iri tabelu" },
                {"af_dialog.Detach","Uredu"},
                {"af_panelSplitter.COLLAPSE_PANE","Skupi prozor"},
                {"af_panelCollection.MENU_VIEW", "Prikaz"},
                {"af_panelCollection.MENUITEM_DETACH", "Ra\u0160iri"},
                {"af_panelCollection.MENUITEM_COLUMNS_SHOWALL", "Prika\u017Ei sve"},
                {"af_panelCollection.MENUITEM_COLUMNS_SHOWMORECOLUMNS", "Prika\u017Ei jo\u0161 kolona..."},
                {"af_panelCollection.MENUITEM_REORDER", "Preuredi kolone..." },
                {"af_panelCollection.MENU_COLUMNS", "Kolone"},
                {"af_panelCollection.SHOW_COLUMNS", "Prika\u017Ei kolone"},
                {"af_panelCollection.REORDER_COLUMNS", "Preuredi kolone"},
                {"af_panelCollection.HIDDEN_COLUMNS", "Skrivene kolone"},
                {"af_panelCollection.VISIBLE_COLUMNS", "Vidljive kolone"},
                {"af_panelCollection.DETACH_DIALOG_TITLE", "Ra\u0161irena tabela"},
                {"af_table.FETCHING", "Dobavljanje podataka..."},
                //Lokalizovanje labela na Search popupu
                {"af_query.LABEL_MODE_BASIC", "Osnovni"},
                {"af_query.LABEL_MODE_ADVANCED", "Napredni"},
                {"af_query.LABEL_HEADER_TEXT", "Pretraga"},
                {"af_query.LABEL_REQUIRED_INFO_TEXT", "Obavezno"},
                {"af_query.LABEL_INDEXED_INFO_TEXT", "Bar jedan je neophodan"},
                {"af_query.LABEL_FOOTER_ADD_FIELDS", "Dodaj polja"},
                {"af_query.LABEL_CONJUNCTION", "Poklapanje sa"},
                {"af_query.LABEL_CONJUNCTION_AND", "svim"},
                {"af_query.LABEL_CONJUNCTION_OR", "bilo kojim"},
                {"af_query.LABEL_MODE_BASIC", "Osnovna"},
                {"af_query.LABEL_MODE_ADVANCED", "Napredna"},
                {"af_query.LABEL_SCREEN_READER_MODE_BASIC", "Osnovna pretraga"},
                {"af_query.LABEL_SCREEN_READER_MODE_ADVANCED", "Napredna pretraga"},
                {"af_query.LABEL_SAVE", "Sa\u010Duvaj..."},
                {"af_query.LABEL_RESET", "Obri\u0161i"},
                {"af_query.LABEL_SEARCH", "Pretra\u017Ei"},
                {"af_query.LABEL_DELETE", "Obri\u0161i"},
                {"af_query.LABEL_DUPLICATE", "Dupliciraj"},
                {"af_query.LABEL_APPLY", "Primeni"},
                {"af_query.LABEL_DUPLICATE_NAME_PREFIX", "kopijaOd_"},
                {"af_query.LABEL_SAVED_SEARCH", "Sa\u010Duvana pretraga"},
                {"af_query.LABEL_SAVED_SEARCH_PERSONALIZE_ENTRY", "Prilagodi..."},
                {"af_query.LABEL_PERSONALIZE_SAVED_SEARCHES_DLG", "Prilagodi sa\u010Duvane pretrage"},
                {"af_query.LABEL_CREATE_SAVED_SEARCH_DLG", "Kreiraj sa\u010Duvanu pretragu"},
                {"af_query.LABEL_SAVED_SEARCH_NAME", "Naziv"},
                {"af_query.LABEL_UIHINT_SAVE_RESULTS_LAYOUT", "Sa\u010Duvaj izgled rezultata"},
                {"af_query.LABEL_UIHINT_AUTO_EXECUTE", "Pokreni automatski"},
                {"af_query.LABEL_UIHINT_SHOW_IN_LIST", "Prikaži u listi pretraga"},
                {"af_query.LABEL_UIHINT_DEFAULT", "Postavi za podrazumevano"},
                {"af_query.MSG_SAVED_SEARCH_NAME_UNIQUE_CONSTRAINT", "Pretraga sa ovim imenom ve\u0107 postoji."},
                {"af_query.MSG_SAVED_SEARCH_NAME_UNIQUE_CONSTRAINT_DETAIL", "Morate obezbediti jedinstveno ime."},
                {"af_query.MSG_SAVED_SEARCH_NAME_NOTNULL_CONSTRAINT", "Ime je potrebno"},
                {"af_query.MSG_SAVED_SEARCH_NAME_NOTNULL_CONSTRAINT_DETAIL", "Molimo Vas unesite validno ime za sa\u010Duvanu pretragu."},
                {"af_query.MSG_SAVED_SEARCH_DELDUP_CONSTRAINT", "Potrebno je odabrati sa\u010Duvanu pretragu"},
                {"af_query.MSG_SAVED_SEARCH_DELETE_CONSTRAINT_DETAIL", "Molimo Vas odaberite validnu sa\u010Duvanu pretragu za brisanje."},
                {"af_query.MSG_SAVED_SEARCH_DELETE_WARNING", "Obri\u0161i sa\u010Duvanu pretragu: {0}?"},
                {"af_query.MSG_SAVED_SEARCH_DUPLICATE_CONSTRAINT_DETAIL", "Molimo Vas odaberite validnu sa\u010Duvanu pretragu za dupliranje."},
                {"af_query.TIP_DELETE_SEARCH_FIELD", "Ukloni: {0}"},
                {"af_query.TIP_DELETE_WARNING", "Upozorenje"},
                {"af_query.TIP_OPERATOR", "Operatori za"},
                {"af_query.LABEL_VALUE_LOV_POPUP", "Pretra\u017Ei i odaberi:"},
                {"af_quickQuery.LABEL_DEFAULT", "Pretraga"},
                {"af_quickQuery.LABEL_VALUE_LOV_POPUP", "Pretra\u017Ei i odaberi:"}
    }You can see that I had to use UTF codes for serbian letters.
    //š \u0161
    //Š \u0160
    //č \u010D
    //Č \u010C
    //ć \u0107
    //Ć \u0106
    //ž \u017E
    //Ž \u017D
    //đ \u0111
    //Đ \u0110
    I will be glad to answer on any other question!!!
    Maxa

Maybe you are looking for

  • IE Not Working since system restore!

    So today I found a problem on my laptop so I did a system restore (factory setting) on HP G62. Everything went fine, I was able to reset everything including reloading wireless information with password.  The laptop then did an automatic update (whic

  • ORA-13786: missing SQL text of statement object - Unable to profile a sql_id in oracle 11g -

    11.2.0.3.5 / 2 node rac on rhel-6 / 64-bit I would like to a profile a sql_id since its following 4 plans and one of them is the optimal. But im unable to do it as it throwing ORA-13786. Steps I followed : {code} SET SERVEROUTPUT ON -- Tuning task cr

  • Convert SAP R/3 Database from IBM DB2 to Oracle

    Hi. I'm looking for information regarding whether SAP provides any tools to help with the process of converting an instance on a DB2 database to an Oracle database.  Did anybody do this before?  I would appreciate if you would share your experiences

  • Viewing photo in iPhoto and it jumps to another photo

    I am unable to select and view a specific photo. When selecting a photo to view in "Library", the selected photo briefly appears and then another random photo replaces it.

  • Opening Project in 2 computers

    I have an HDV project with about 50 hours worth of footage on an external SATA drive.  Sometimes I edit using premiere CS4 on my desktop and sometimes on my laptop. What changes do I need to make so that when I open the project it doesn't need to be