Restriction for Character in QRY designer

Hi Friends,
               In my Query designer under Rows, I have a field and it has been restricted on couple of values , my question is the values have RED = on the Left hand side of the Value instead of Green, can some one tell me when we use this type restriction.
early input will be really appreciated,
Thanks alot in advance.

Hi Smily,
It means that these values are excluded from the selection. So all values except these ones will be retunred in the report. Generally we try to avoid exclusion as perf is bad and we try to exclude the values simply by including all others...need to balance with total # of values and # of values to be excluded.
Hope this helps...

Similar Messages

  • Query Designer 3.5 does not respond when trying to restrict a charact

    Hello experts!
    I'm trying to restrict characteristic 0BPARTNER in query designer 3.5 but when I try to open the restrict context menu it tries to bring all the business partners to display them from master data and it freezes. We have over 2 millon business partner data in our MD.
    I've already tried performing statistics over the MD tables but it's still not working. Any suggestions that might help me are kindly wanted.
    Thanks,
    Regards,
    Salvador.

    Hello Salvador,
    I don't know if this is what you really need, but you can check and get a better performance in BEx queries by using t-code RSRT in section Properties there you can set ...
    Read Mode
    Req. Status
    Cache Mode
    Optimization Mode
    Statistic Det.
    among others. I hope this helps.
    Regards!
    Bernardo

  • ABAP code for character search

    Hello Gurus
    I have a variable e.g. lv_txtsh which is meant to store a string. Now I want to parse through lv_txtsh and find if it contains a character "x".  The length of the string stored in lv_txtsh is going to be dynamic. Can you please help me to code this scenario in ABAP OO (the new version of ABAP)
    Any help is appreciated and points will be assigned.
    Thanks,
    Rishi

    Hi,
    Pease go through this. You will get an idea.
    FIND
    Syntax
    FIND [{FIRST OCCURRENCE}|{ALL OCCURRENCES} OF] pattern
      IN [section_of] dobj
      [IN {BYTE|CHARACTER} MODE]
      [{RESPECTING|IGNORING} CASE]
      [MATCH COUNT  mcnt]
      { {[MATCH OFFSET moff]
         [MATCH LENGTH mlen]}
      | [RESULTS result_tab|result_wa] }
      [SUBMATCHES s1 s2 ...].
    Extras:
    1. ... {FIRST OCCURRENCE}|{ALL OCCURRENCES} OF
    2. ... IN {BYTE|CHARACTER} MODE
    3. ... {RESPECTING|IGNORING} CASE
    4. ... MATCH COUNT mcnt
    5. ... MATCH OFFSET moff
    6. ... MATCH LENGTH mlen
    7. ... RESULTS result_tab|result_wa
    8. ... SUBMATCHES s1 s2 ...
    Effect
    : The data object dobj is searched for the byte or character sequence specified by the search string pattern. The addition OCCURRENCE[S] determines whether only the first, or all occurrences are searched. The addition section_of can be used to restrict the search range. The addition CASE is used to determine whether upper/lower case is taken into account in the search. The additions MATCH, SUBMATCHES, and RESULTS are used to determine the number, position, and length of the found sequence(s).
    The search is ended when the search string is found for the first time or when all the search strings in the search range have been found, or when the end of the search range is reached. The user is informed of the search result by setting sy-subrc.
    In character string processing, the closing blanks are taken into account in data objects dobj of fixed length.
    Note
    The statement FIND IN TABLE is available for searching in internal tables.
    System fields
    sy-subrc Meaning
    0 The search string was found at least once in the search range.
    4 The search string was not found in the search range.
    8 The search string contains an invalid double-byte character in character string processing.
    Addition 1
    ... {FIRST OCCURRENCE}|{ALL OCCURRENCES} OF
    The optional addition {FIRST OCCURRENCE}|{ALL OCCURRENCES} OF determines whether program only searches for the first occurrence, or all occurrences of the search string. If the addition FIRST OCCURENCE, or none of the additions is specified, only the first occurrence is found. Otherwise, all occurrences are found.
    If sub_string is an empty string in the pattern or is of type c, d, n or t and only contains blank characters, when searching for the first occurrence, the space in front of the first character or byte of the search range is found. If searching for all occurrences, in this case the exception CX_SY_FIND_INFINITE_LOOP is triggered.
    If regex contains a regular expression in pattern that matches the empty character string, the search for one occurrence also finds the space before the first character. When searching for all occurrences, in this case, the search finds the space before the first character, all intermediate spaces that are not within a match, and the space after the last character.
    Addition 2
    ... IN {BYTE|CHARACTER} MODE
    Effect
    : The optional addition IN {BYTE|CHARACTER} MODE determines whether byte or character string processing takes place. If the addition is not specified, character string processing is performed. Depending on the processing type, dobj and sub_string in pattern must be byte-like or character-type. If regular expressions are used in pattern, only character string processing is permitted.
    Addition 3
    ... {RESPECTING|IGNORING} CASE
    Effect
    : This addition is only permitted for character string processing. It determines whether upper/lower case is taken into account in pattern and dobj when searching. If RESPECTING CASE is specified, the text is case-sensitive, and if IGNORING CASE is specified, the text is not case-sensitive. If neither of the additions is specified, RESPECTING CASE is used implicitly. If a regular expression is entered for pattern as an object of the class CL_ABAP_REGEX, this addition is not permitted. Instead, the properties of the object are taken into account in the search.
    Addition 4
    ... MATCH COUNT mcnt
    Effect
    : If the search string pattern is found in the search range, the addition MATCH COUNT stores the number of found locations in the data object mcnt. If FIRST OCCURRENCE is used, this value is always 1 if the search is successful. For mcnt, a variable of the data type i is expected. If the search is unsuccessful, mcnt is set to 0.
    Addition 5
    ... MATCH OFFSET moff
    Effect:
    If the search string pattern is found in the search range, the addition MATCH OFFSET stores the offset of the last found location in relation to the data object dobj in the data object moff. If FIRST OCCURRENCE is used, this is the offset of the first found location. For moff, a variable of the data type i is expected. If the search is not successful, moff contains its previous value.
    Note
    : The system field sy-fdpos is not supplied by FIND.
    Addition 6
    ... MATCH LENGTH mlen
    Effect:
    If the search string pattern is found in the search range, the addition MATCH LENGTH stores the length of the last found substring in the data object mlen. If using FIRST OCCURRENCE, this is the length of the first found location. For mlen, a variable of data type i is expected. If the search is not successful, mlen contains its previous value.
    Addition 7
    ... RESULTS result_tab|result_wa
    Effect:
    If the search string pattern is found in the search range, the addition RESULTS stores the offsets of the found locations, the lengths of the found substrings, and information on the registers of the subgroups of regular expressions, either in an internal table result_tab or in a structure result_wa.
    The internal table result_tab must have the table type MATCH_RESULT_TAB, and the structure result_wa must have the type MATCH_RESULT from the ABAP Dictionary. The line type of the internal table is also MATCH_RESULT.
    When an internal table is entered, this is initialized before the search and a line is inserted in the table for every match found. When a structure is entered, this is assigned the values of the last found location. If FIRST OCCURRENCE is used and the search is successful, only one line is inserted in the internal table.
    The line or structure type MATCH_RESULT has the following components:
    OFFSET of type INT4 for the offset of the substring
    LENGTH of type INT4 for the length of the substring
    SUBMATCHES of table type SUBMATCH_RESULT_TAB with the line type SUBMATCH_RESULT for the offset and length of the substrings of the current found locations that are stored in the registers of the subgroups of a regular expression.
    The lines of result_tab are sorted according to the columns OFFSET and LENGTH. An additional component LINE is only important in the variant FIND IN TABLE.
    Following an unsuccessful search, the content of an internal table result_tab is initial, while a structure result_wa contains its previous value.
    Note
    The addition RESULTS is particularly suitable for use with the addition ALL OCCURRENCES when specifying a table, and for use with the FIRST OCCURRENCE when specifying a structure.
    Example:
    The following search for a regular expression finds the two substrings "ab" at offset 0 and "ba" at offset 2, and fills the internal table result_tab with two rows accordingly. As the regular expression contains three subgroups, the component submatches contains three lines in each case. The first line of submatches refers to the outermost bracket, the second line refers to the first internal bracket, and the third line refers to the second internal bracket. For the first found location, the first and second lines contains the offset and length while the third line is undefined. For the second found location, the first and third lines contains the offset and length, while the second line is undefined.
    DATA: result_tab TYPE match_result_tab.
    FIND ALL OCCURRENCES OF REGEX `((ab)|(ba))`
         IN 'abba'
         RESULTS result_tab.
    Addition 8
    ... SUBMATCHES s1 s2 ...
    Effect:
    This addition is only permitted if a regular expression is used in pattern. The current contents of the register of subgroups of the regular expression for the current found location are written to the variables s1, s2, ..., for which a character-type data type is expected. When ALL OCCURRENCES is used, the last found location is evaluated. If more variables s1, s2, ... are listed than subgroups are available, the superfluous variables are initialized. If fewer variables s1, s2, ... are listed than subgroups are available, the superfluous subgroups are ignored.
    Example
    : The regular expression after REGEX has two subgroups. The search finds the substring from offset 0 of length 14. The content of the register of the subgroups is "Hey" and "my".
    DATA: text TYPE string,
          moff TYPE i,
          mlen TYPE i,
          s1   TYPE string,
          s2   TYPE string.
    text = `Hey hey, my my, Rock and roll can never die`.
    FIND REGEX `(\w)\W\1\W(\w)\W+\2`
         IN text
         IGNORING CASE
         MATCH OFFSET moff
         MATCH LENGTH mlen
         SUBMATCHES s1 s2.
    Reward points if helpful.
    Thanks and Regards.

  • Restrictions for importing WSDL into PI 7.0

    Hello all-
    We have couple of web services mediated through PI 7.0. The WSDL for these services are designed outside and we would like to import them to PI  (Inside-out approach).  Need help on couple of things
    1.Is there any design constraints we need to consider while designing the WSDL ( other than interoperability) ?
    2.Is there any specific restrictions on method names? Is it true that (One PI expert told me) the original method names mentioned in the WSDL will be over written by PI (surprising to me)
    Thanks in advance
    Rajeev

    Hi Rajeev
    1.Is there any design constraints we need to consider while designing the WSDL ( other than interoperability) ?
    2.Is there any specific restrictions on method names? Is it true that (One PI expert told me) the original method names mentioned in the WSDL will be over written by PI (surprising to me)
    1. There is no such constrain while designing the WSDL just take care about the field values, min occur, max occur etc as per requirement. With this if its going to be Sync or Async based on that request and response should come in WSDL.
    2. Original method and names are not over written by XI. While you import WSDL to XI Pi will also generate WSDL so you will see some change. But the actual data to be used is one you bring in the external definition.
    Thanks
    Gaurav

  • Can we perform restriction on attribute in query designer?

    Hi
    can we perform restriction on attribute in query designer? My scenario is to restrict on an attribute..Could any one help me out i this issue?
    Regards,
    Suman

    Hi,
    Restriction can be done only for navigational attribute.U cannot do restriction for display attirbute.
    if it is a display attribute u want to restrict -make it navigational for that infoobject.
    Also the attribute must be 'checked on' as navigational in the infoprovider as well on which the query is built.
    hope it helps.
    Regards,
    Rathy

  • Email name restrictions for icloud

    What are the name restrictions for creating a new name for an iCloud email account.  Can one use some of the keyboard symbols like * # & % ! -  $ __ (   ) or are you restricted to using the alphabet and numbers?

    Hello Tuffy Wuffy,
    This can be done by removing the iCloud account, then readding it.
    On your iOS device’s Home screen, go to Settings > iCloud, then at the bottom of the screen, tap Delete Account.
    iCloud: Change iCloud feature settings
    http://support.apple.com/kb/PH2613
    Cheers,
    Allen

  • Access restriction for PDF generated with Smartform

    Hi there,
    I am generating a PDF from a Smartform using convert_otf.
    What I would like to do is, add restrictions for the generated document just like in Acrobat Professional.
    For example:
    Printing: yes/no
    saving: yes/no
    cut, copy paste: yes/no
    Is there a way to pass this Parameters to the PDF?
    Thanks in advance
    Uli

    Hello,
    check this thread: Mailing PDF Attachment with Password Protected
    Otto

  • PDF Assembly is not working for ddx :Unable to select font for character U+54 'T'

    Hi ,<br /><br />   I am getting the following error while generating the pdf. :<br /><br />Caused by: com.adobe.livecycle.assembler.client.ProcessingException: ALC-ASM-S00-002: Failed to execute the DDX - error messages provided.<br />     at com.adobe.livecycle.assembler.AssemblerServiceImpl.makeResult(AssemblerServiceImpl.java:6 74)<br />     at com.adobe.livecycle.assembler.AssemblerServiceImpl.execute(AssemblerServiceImpl.java:410) <br />     at com.adobe.livecycle.assembler.AssemblerServiceImpl.invokeDDX(AssemblerServiceImpl.java:29 0)<br />     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)<br />     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)<br />     at java.lang.reflect.Method.invoke(Method.java:615)<br />     at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:181)<br />     ... 33 more<br />Caused by: com.adobe.internal.ddxm.DDXMException: DDXM_S18005: An error occurred in the PrepareTOC phase while building <TableOfContents>. Cause given.<br />     at com.adobe.internal.ddxm.task.toc.PrepareTOC.execute(PrepareTOC.java:234)<br />     at com.adobe.internal.ddxm.blueprint.BluePrint.postExecute(BluePrint.java:306)<br />     at com.adobe.internal.ddxm.ddx.Node.execute(Node.java:353)<br />     at com.adobe.internal.ddxm.Executive.execute(Executive.java:244)<br />     at com.adobe.internal.ddxm.Executive.execute(Executive.java:192)<br />     at com.adobe.livecycle.assembler.AssemblerServiceImpl.execute(AssemblerServiceImpl.java:408) <br />     ... 39 more<br />Caused by: com.adobe.internal.pdfm.toc.TOCServiceException: PDFM_S18001: The operation of producing a table of contents failed.<br />     at com.adobe.internal.pdfm.toc.TOCServiceImpl.formatTOCContent(TOCServiceImpl.java:1877)<br />     at com.adobe.internal.pdfm.toc.TOCServiceImpl.getNumberOfTOCPages(TOCServiceImpl.java:1681)< br />     at com.adobe.internal.ddxm.task.toc.PrepareTOC.execute(PrepareTOC.java:217)<br />     ... 44 more<br />Caused by: com.adobe.fontengine.inlineformatting.FormattingException: Unable to select font for character U+54 'T', Requested attributes:Family=Arial|Size=12.0|Stretch=normal|Style=normal|Variant=normal|Weight=400|O TFDiscretionaryLigatures=minimum|WritingMode=lr-tb|BidiLevel=0|ScaleToFit=1.0|Shift=-none- <br /><br />would appreciate if anybody can help on this..<br /><br />Thanks & Regards<br />Masthan Shaik

    I think that all your form parameters must begin with alowercase letters, for example
    startOfSession instead of StartOfSession
    try to rename your selectname paramters.
    Le me know if ti works,
    Giovanni

  • User ID restriction for Project/WBS to create service entry sheet

    Dear All,
    My client requirement is that the user id should be restrict for particular project or WBS to create service entry sheet(ML81N). Can we do it in this manner?
    Further i want to give you my organization structure as given below.
    1. Project :-   20
    2. Plant    :-  Single
    3. Bus. Area:- 2
    4. Co area :- Single.
    Thanx,
    Vishal Kr. Sharma

    Standard restriction is possible for this T code based on document type,purchasing group,purchasing org and plant.
    Others being ruled out I think solution is to restirct using purchasing group which is smaller entity.
    Regards
    Sreenivas

  • Restriction for the use of last_record in 10g forms

    Hi,
    When I was working on Forms 6i with the query in the trigger When_new_form_instance:
    go_block('ABC');
    execute_query;
    last_record;
    first record;
    go_block('DEF');
    execute_query;
    last_record;
    first record;
    It worked and gave correct data on frontend.
    When the same was used in 10g forms, it gave incorrect data.When we removed last_record from the query, it worked.
    Could somebody tell me is there some kind of restriction for the use of last_record in 10g forms? If yes, what kind of?
    Thanks,
    Neha

    When I set Query All records to Yes.
    Surprisingly it gives incorrect data.
    This is what is bothering me.
    As i said earlier i was using last_record for
    navigation purpose to fetch all the records from the
    database and then first_record to highlight the first
    record.
    You don't need to do that, that is poor programming logic. Instead change the block property Query All Records and set it to Yes.
    This will fetch all the records from the database and the highlight will be on the first record;
    Regards,
    Tony

  • Restriction for Profit centers

    Hi All,
    I have an issue here. The client wants the following requirement:
    A set of users needs to be given access to post all the GLS available in FBCJ, wherein the users should get restricted at Profit center level.
    Manual posting through FB50, Fb01 and F-02 should not get affected with this. They have been using validations for this till now.
    How do i go ahead with authorisation object in this scenario. If authorisation object and roles can be used in this, please tell me in detail what all objects i need to use for GLs, PCs, Tcodes and User Names.

    Friends,
             What i found out is we cannot have both hierarchical and flat restriction for one role.The following scenario best explains that..
          let us say we have restricted 0PROFIT_CTR for values P001,P002,P003 and at the same time we have restricted on hierarchy.
          Through this we can succesfully restrict queries which have flat list display of Profit center but for the queries which display result in hierarchy it fails because the query that is framing up for hierarchical display is having the following condition in its select statment
               0PROFIT_CTR=;
            for which we are not authorized.
        So we can have only either Hierarchical restriction or flat list restriction for one role.
         Please if anybody find it incorrect I request them to share their knowledge with me.
    Hansjörg Luzi thanks for the help. 
    Thanks & Regards
    Mrutyunjay

  • SQL*Loader-282: Unable to locate character set handle for character set ID

    How do I fix this error that i'm getting when running SQL Loader and connecting to an Oracle 10g database. I'm on 10g client.
    SQL*Loader-282: Unable to locate character set handle for character set ID (46).
    Here's the NLS parameter settings in database: select * from v$nls_parameters
    PARAMETER     VALUE
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_CHARACTERSET     WE8ISO8859P15
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     CHAR
    NLS_NCHAR_CONV_EXCP     TRUE
    Message was edited by:
    evo

    Yep that's it, thanks, I found out about V$NLS_PARAMETERS:
    SQL> select * from v$nls_parameters;
    PARAMETER                  VALUE
    NLS_LANGUAGE               AMERICAN
    NLS_TERRITORY              AMERICA
    NLS_CURRENCY               $
    NLS_ISO_CURRENCY           AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CALENDAR               GREGORIAN
    NLS_DATE_FORMAT            DD-MON-RR
    NLS_DATE_LANGUAGE          AMERICAN
    NLS_CHARACTERSET           WE8ISO8859P1
    NLS_SORT                   BINARY
    NLS_TIME_FORMAT            HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT       DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT         HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT    DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY          $
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_COMP                   BINARY
    NLS_LENGTH_SEMANTICS       BYTE
    NLS_NCHAR_CONV_EXCP        FALSEGiven that 9i is not available for Solaris x86,
    how do I change NLS_NCHAR_CHARACTERSET to something that
    will work, like UTF-8?
    Thanks
    Ed

  • Selection Screen Validation for Character

    Hi All
    My query is regarding the selection screen validation for character.
    I am using a Select-option: S_ORDER FOR VBAK-VBELN OBLIGATORY.
    and S_order should be only having the numeric field.
    Please help how to validate it for character field.

    Hi,
    Do as below :
    at selection-screen.
    if not s_order[] is initial.
       if s_order-low CA 'ABCDEF.............Z'.
         message 'Enter only numerics only' type 'E'.
      endif.
    "similarly for s_order-high also.
    endif.
    Thanks,
    Sriram Ponna.

  • Access Restrictions for Time?

    I keep trying to set access restrictions for my wrt54g router for time. There is no 12 for time so I'm selecting 11:55 pm to 6am but I keep getting an error message of, "end time must be bigger then begin time." I get this no matter if I select 9pm, 10pm, etc.........
    Any ideas?

    You cannot choose a time frame through midnight. You have to split it in two rules, one before midnight and one after, i.e. choose 12am to 6am and 9pm to 11:55 pm.

  • Need transaction code for opening Bex query designer?

    Hi ALL,
      Can anyone help me with the transaction code for opening Bex query designer?
      Like RRMX for Bex Analyzer similarly i want for Bex query designer.
    Thanks & Regards
    Sameer Khan

    THERE IS NO TCODE FOR QUERY DESIGNER. BUT THERE IS AN ALTERNATIVE..
    OPEN BEX ANALYSER THROUGH RRMX
    OPEN A QUERY
    CLICK ON TOOLS-> EDIT QUERY
    THIS OPENS QUERY DESIGNER AND YOU CAN USE IT NORMALLY..

Maybe you are looking for

  • Missing Document Number Report in Oracle Accounts Payable

    Hi All, Can you please let me know if there alternative report for Missing Document Number Report in R12...... similar to what we had in 11.5.9 Instance In AP Thanks Edited by: user5358827 on Apr 19, 2010 11:31 AM

  • Email to user getting relayed out?

    We have a customer that, when they send email to any of our users, the server is trying to relay it out and then it comes back in and then out... eventually they get kicked back because it was tried to many times. Why would the email be getting relay

  • "Setup Mac OS" is a no-show

    I just bought a new iMac and I'm networking it to my G5. One problem I keep hitting on both computers is: when I try to install apps, e.g., Adobe CS3, the packages don't auto-install and I have to install them manually. Each app comes with a poop she

  • Error writing metadata when Importing Lr 2.7 catalog in Lr 3 final

    Hi, I imported (and sucessfully converted) my Lr 2.7 Catalog in Lr3 final but now, all my photos have  this little icon that says " Error writing metadata " Why? Thx!

  • Slapd_poll () timed out

    Hello there, I see the below errors in ODSEE11gR1 version on Linux server, can some one tell me what is the reason for this error? error log: [18/Jul/2011:11:54:22 -0400] - DEBUG - conn=-1 op=-1 msgId=-1 - slapd_poll(18) timed out [18/Jul/2011:11:54: