Simple REGEx Group Question...

Hi,
Can someone please explain something with RegEx's to me concerning groups?
In the following code:
Pattern p = Pattern.compile("([A-Z][a-z]+) ([a-z]+) .*");
Matcher m = p.matcher("Aus bus L. 1771");
if (m.matches()) {
     System.out.println("Groups:");
     for (int i=0; i<m.groupCount(); i++) {
          System.out.println("  " + i + ": " + m.group(i));
}I expected group 1 to be "Aus" and there to be a group 2 of "bus".
If I change the RegEx to
Pattern p = Pattern.compile("([A-Z][a-z]+) (([a-z]+)) .*");Then I do get groups 0, 1 and 2.
Why does it need the extra "(" and ")" at the last group.
Thanks for any help!

Oooops:
for (int i=0; i<=m.groupCount(); i++) {Be the fix.... <= and not <

Similar Messages

  • Simple logic group to operate prior to custom import script?

    Hi all,
    Thanks for taking the time to read my question. I will gladly mark this thread as helpful or answered if you can help me. I'm a novice at FDM so please bear with.
    I have a custom import script that assigns ICP None to a specific account (overriding any ICP detail). However, now I need the ICP detail for that account in a second statistical account. I setup a simple logic group to create the logic account that I can map to the statistical but then realized that the import script runs prior to the logic group so I lose all ICP detail in the logic account as well.
    Is there a way to run the logic group prior to import script or is there a better way to accomplish what I'm trying to do?
    I'm not sure how critical this is but I'm using FDM v11.1.1.3.01 adapter 11x-G5-C
    Edited by: user4591089 on Aug 17, 2011 2:10 PM
    Edited by: user4591089 on Aug 17, 2011 2:50 PM

    Do the following:
    1) Remove the custom import script.
    2) Create a complex logic account and override the ICP dimension in the Group By Column with the Value [ICP None]. This will then be what is diplayed on the import screen for this logic account.
    3) Map the original source as the statistical account and the logic account as appropriate
    Edited by: SH on Aug 18, 2011 9:48 AM

  • Simple X-fi Question, Please Help

    !Simple X-fi Question, Please HelpL I've been looking for an external sound card that is similar to the 2002 Creative Extigy and think I may found it in the Creative X-Fi. I have some questions about the X-fi though. Can the X-fi:
    1. Input sound from an optical port
    2. Output that sound to 5. surround- Front, surround, center/sub
    3. Is the X-Fi stand-alone, external, and powered by a USB or a wall outlet (you do not need a computer hooked up to it)
    Basically I want to connect a TosLink optical cable from my Xbox to the X-Fi. That will deli'ver the sound to the X-Fi. Then I want that sound to go to a 5. headset that is connected to the X-fi via 5. front, surround, and center/sub wires. The X-Fi has to be stand-alone and cannot be connected to a PC to do this.
    Thank you for your help.

    The connector must match, and the connector polarity (plus and minus voltage) must match.  Sorry, I don't know if the positive voltage goes on the inside of the connector or the outside.    Any wattage of 12 or more should be adequate.
    Message Edited by toomanydonuts on 01-10-2008 01:29 AM

  • WebDynpro Table Simple Row Group

    Hello.
    How to create a table Grid with simple Row Group with this structure ?
    COMPANY   |   CONTACTS
        Cp1          John
                     Jimmy
                     Michael
        Cp2   |      Louis
                     Taylor
                     Michel
        Cp3   |      Dave
                     Kelly
                     Harry
    Is not a Tree view in Table ...I need only grouped rows expanded in a table.
    Thanks in Advance.
    Taylor
    Edited by: Taylor on Jul 29, 2010 10:56 AM

    Hi Taylor,
    Try This:
    1.Create a Context node with Following Structure:
       TableNode
    __Attr1
    __Attr2
        |__Attr3
    You'll have the number of attributes based on your requirement
    Fill the elements in the node.
    Here we want to group the rows based on Attr1 value
    2.Create a table with DataSource = TableNode
    3.Add a TableColumnGroup in the table Say TableColumnGroup1.
    4.Add 3 ( 3 in this example otherwise based on your requirement) columns say Colum1,Column2,Column3 in this Grouped column with TableCellEditors' values bound to the attributes in the TableNode respectively.
    5.Select the Column1 (column used for Attr1) and bind its groupingValue propety to TableNode->Attr1
    When you deploy, it will display the rows Grouped by the Value in Attr1.
    Regards,
    Ajay

  • Simple Crop tool question... how do I save the crop section?

    Hi,
    I have a very simple crop tool question. I'm a photoshop girl usually... so Illustrator is new to me. When I select the crop section I want... how do I save it?... if I select another tool in the tool panel, the crop section disappears and I can't get it back when I re-select Crop tool. If I select Save as... it saves the whole document...and not just my crop section.
    Like I said, simple question...but I just don't know the secret to the Illustrator crop tool.
    Thanks!
    Yzza

    Either press the Tab key or F key.

  • A Simpler, More Direct Question About Merge Joins

    This thread is related to Merge Joins Should Be Faster and Merge Join but asks a simpler, more direct question:
    Why does merge sort join choose to sort data that is already sorted? Here are some Explain query plans to illustrate my point.
    SQL> EXPLAIN PLAN FOR
      2  SELECT * FROM spoTriples ORDER BY s;
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT |              |   998K|    35M|  5311   (1)| 00:01:04|
    |   1 |  INDEX FULL SCAN | PKSPOTRIPLES |   998K|    35M|  5311   (1)| 00:01:04|
    ---------------------------------------------------------------------------------Notice that the plan does not involve a SORT operation. This is because spoTriples is an Index-Organized Table on the primary key index of (s,p,o), which contains all of the columns in the table. This means the table is already sorted on s, which is the column in the ORDER BY clause. The optimizer is taking advantage of the fact that the table is already sorted, which it should.
    Now look at this plan:
    SQL> EXPLAIN PLAN FOR
      2  SELECT /*+ USE_MERGE(t1 t2) */ t1.s, t2.s
      3  FROM spoTriples t1, spoTriples t2
      4  WHERE t1.s = t2.s;
    Explained.
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT       |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   1 |  MERGE JOIN            |              |    11M|   297M|       | 13019 (6)| 00:02:37 |
    |   2 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   3 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    |*  4 |   SORT JOIN            |              |   998K|    12M|    38M|  6389 (4)| 00:01:17 |
    |   5 |    INDEX FAST FULL SCAN| PKSPOTRIPLES |   998K|    12M|       |  1460 (3)| 00:00:18 |
    Predicate Information (identified by operation id):
       4 - access("T1"."S"="T2"."S")
           filter("T1"."S"="T2"."S")I'm doing a self join on the column by which the table is sorted. I'm using a hint to force a merge join, but despite the data already being sorted, the optimizer insists on sorting each instance of spoTriples before doing the merge join. The sort should be unnecessary for the same reason that it is unnecessary in the case with the ORDER BY above.
    Is there anyway to make Oracle be aware of and take advantage of the fact that it doesn't have to sort this data before merge joining it?

    Licensing questions are best addressed by visiting the Oracle store, or contacting a salesrep in your area
    But I doubt you can redistribute the product if you aren't licensed yourself.
    Question 3 and 4 have obvious answers
    3: Even if you could this is illegal
    4: if tnsping is not included in the client, tnsping is not included in the client, and there will be no replacement.
    Tnsping only establishes whether a listener is running and shouldn't be called from an application
    Sybrand Bakker
    Senior Oracle DBA

  • When do simple parenthetical grouping matter in PowerShell code?

    When do simple parenthetical grouping matter in PowerShell code?
    Here's one example when using parenthesis matters (thanks to Boe Prox for inspiring this example):
    <#c:#> 'abc' >xo
    <#c:#> gc xo | set-content xo
    set-content : The process cannot access the file 'C:\users\larry\documents\windowspowershell\xo' because it is b
    used by another process.
    At line:1 char:9
    + gc xo | set-content xo
    + ~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [Set-Content], IOException
    + FullyQualifiedErrorId : System.IO.IOException,Microsoft.PowerShell.Commands.SetContentCommand
    <#c:#> 'abc' >xo
    <#c:#> (gc xo) | set-content xo
    <#c:#> type xo
    abc
    Here's an example of arithmetic expression evaluation and added parenthesis
    <#c:#> 10*100+1000
    2000
    <#c:#> 10*(100+1000)
    11000
    <#c:#>
    Are there other coding examples using PowerShell where adding parenthesis changes the semantics of a statement?

    Hi Larry,
    In addition,I also find an explanation from other forum may be helpful for you:
    In powershell certain types of expressions, when used as statements, are not displayed. Voidable statements include assignments and the increment/decrement operators. When they are used in an expression, they return a value, but when they’re used as a standalone
    statement, they return no value. It is very well explained in Windows Powershell in Action by Bruce Payette.
    The increment and decrement operators were almost not included in PowerShell because they introduced a problem. In languages such as C and C#, when you use one of these operators as a statement: $a++ nothing is displayed. This is because statements
    in C and C# don’t return values. In PowerShell, however, all statements return a value. This led to confusion. People would write scripts like this:
    $sum=0
    $i=0
    while ($i -lt 10) { $sum += $i; $i++ }
    $sum
    and be surprised to see the numbers 1 through 10 displayed. This was because $a++ returned a value and PowerShell was displaying the results of every statement. This was so confusing that we almost removed these operators from the language. Then
    we hit on the idea of a voidable statement. Basically, this means that certain types of expressions, when used as statements, are not displayed. Voidable statements include assignments and the increment/decrement operators. When they are used in an expression,
    they return a value, but when they’re used as a standalone statement, they return no value. Again, this is one of those details that won’t affect how you use PowerShell other than to make it work as you expect. (source: Windows Powershell in Action).
    Reference:
    Why it needs an extra pair of bracket?
    If you have any feedback on our support,
    please click here.
    Best Regards,
    Anna
    TechNet Community Support

  • Simple Java SDK question for server group assignment

    I have a snippet of code below in which I am trying to apply the setProcessingServerGroup() and setProcessingServerGroupChoice() methods to my report object. My question should be relatively simple: I believe I need to cast(?) my iObject report object to iProcessingServerGroupInfo per the API in order to use the setProcessingServerGroup() and setProcessingServerGroupChoice() methods, but I'm not sure how to do so.
    Can someone please advise how to cast my iObject to iProcessingServerGroupInfo?
    Thanks in advance...
    Code:
    IInfoObject iObject = (IInfoObject) childReports.get(i); 
    int sgID_view = Integer.parseInt(serverGroupID_view);
    int sgPref_view = Integer.parseInt(serverGroupPref_view);
    !!!!!  CONVERSION / CAST NEEDED HERE !!!!!
    iProcessingServerGroupInfo.setProcessingServerGroup(sgID_view);
    iProcessingServerGroupInfo.setProcessingServerGroupChoice(sgPref_view);

    To followup, I've been able to cast to IShedulingInfo in order to use the setServerGroup() and setServerGroupChoice() methods successfully:
    IInfoObject iObject = (IInfoObject) iObjects.get(i);    
    ISchedulingInfo iSchedulingInfo = iObject.getSchedulingInfo();
    iSchedulingInfo.setServerGroup(427);
    iSchedulingInfo.setServerGroupChoice(2);
    But I don't know how to perform the cast to be able to access the setProcessingServerGroup(), sterProcessingServerGroupChoice() methods.
    Any help appreciated.
    Thanks!

  • Simple (dumb) role/group question

    Hi all,
    I see in a number of places where I can define roles using a
    "principal-name". Can I use a realm group here as well as a single user?
    What I'm looking for is a method where I can set up my roles in my web appps
    and ejbs and then on the fly grant users rights by adding them to a group.
    Certainly seems possible but I must be missing something.
    Consider the following example (from the weblogic documentation) and let me
    know if I can use realm groups for the section attributed to the
    weblogic.xml file. (I marked it with ***).
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>SecureOrdersEast</web-resource-name>
    <description>
    Security constraint for resources in the orders/east directory
    </description>
    <url-pattern>/orders/east/*</url-pattern>
    <http-method>POST</http-method>
    <http-method>GET</http-method>
    </web-resource-collection>
    <auth-constraint>
    <description>constraint for east coast sales</description>
    <role-name>east</role-name>
    <role-name>manager</role-name>
    </auth-constraint>
    <user-data-constraint>
    <description>SSL not required</description>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <security-role> <description>east coast sales</description>
    <role-name>east</role-name></security-role>
    <security-role> <description>managers</description>
    <role-name>manager</role-name></security-role>
    weblogic.xml entries *** Can these come from the realm????????***
    <security-role-assignment> <role-name>east</role-name>
    <principal-name>tom</principal-name>
    <principal-name>jane</principal-name>
    <principal-name>javier</principal-name>
    <principal-name>maria</principal-name> </security-role-assignment>
    <security-role-assignment> <role-name> manager </role-name>
    <principal-name>peter</principal-name>
    <principal-name>georgia</principal-name></security-role-assignment>

    I am not sure what exactly you are looking for. Here is what I can tell you.
    For EJBs you can defind a group in NDS and map this group to a role in EJB deployment
    descriptor xml file. Then every one in the group will be authenticated to access
    the EJB by WLS.
    Yong
    "Ilango Maragathavannan" <[email protected]> wrote:
    >
    I am facing the same problem. To add the version of Weblogic it is WLS6.0sp1.
    I would appreciate any help.
    "Kent Mitchell" <[email protected]> wrote:
    Hi all,
    I see in a number of places where I can define roles using a
    "principal-name". Can I use a realm group here as well as a singleuser?
    What I'm looking for is a method where I can set up my roles in my web
    appps
    and ejbs and then on the fly grant users rights by adding them to agroup.
    Certainly seems possible but I must be missing something.
    Consider the following example (from the weblogic documentation) and
    let me
    know if I can use realm groups for the section attributed to the
    weblogic.xml file. (I marked it with ***).
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>SecureOrdersEast</web-resource-name>
    <description>
    Security constraint for resources in the orders/east directory
    </description>
    <url-pattern>/orders/east/*</url-pattern>
    <http-method>POST</http-method>
    <http-method>GET</http-method>
    </web-resource-collection>
    <auth-constraint>
    <description>constraint for east coast sales</description>
    <role-name>east</role-name>
    <role-name>manager</role-name>
    </auth-constraint>
    <user-data-constraint>
    <description>SSL not required</description>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <security-role> <description>east coast sales</description>
    <role-name>east</role-name></security-role>
    <security-role> <description>managers</description>
    <role-name>manager</role-name></security-role>
    weblogic.xml entries *** Can these come from the realm????????***
    <security-role-assignment> <role-name>east</role-name>
    <principal-name>tom</principal-name>
    <principal-name>jane</principal-name>
    <principal-name>javier</principal-name>
    <principal-name>maria</principal-name> </security-role-assignment>
    <security-role-assignment> <role-name> manager </role-name>
    <principal-name>peter</principal-name>
    <principal-name>georgia</principal-name></security-role-assignment>

  • Simple Query (GROUP BY?) Question

    I have a verity search on a website of mine, and today added
    a logging feature. When the user submits a search I write the
    search criteria to a table with two columns; one column stores the
    search criteria (string), and the other a date/time stamp.
    I'm writing a report that return the searches performed on a
    given day, which is easy enough thanks to my date/time stamp.
    Let's say the following searches have been run today...
    - superman movie
    - concert tickets
    - concert tickets
    - used car stereos
    Obviously I don't want the report page to list "concert
    tickets" twice, instead it should be shown as follows:
    - superman movie (1)
    - concert tickets (2)
    - used car stereos (1)
    And furthermore, it should be ranked in order of popularity,
    as such:
    - concert tickets (2)
    - superman movie (1)
    - used car stereos (1)
    The "GROUP BY" statement in SQL can help me group together
    identical searches just fine, but determining the number of
    attempts is another story. Here is what I came up with for now, but
    I can't order the results by the number of searches like this:

    SELECT search_criteria, count(search_criteria) thecount
    FROM table_name
    GROUP BY search_criteria
    order by count(search_criteria) desc

  • Simple how to question ...

    ... here is the situation: I'm brand new to Motion ... I received footage and applied some simple lower thirds to it ... now, I received much higher resolution footage ... how can I re-use/merge/export the motion effects I created with/to the new high resolution footage?
    It is probably not the correct venue, but I'm kinda under the gun timeline wise.
    Thank you.

    Alan, brief follow-up question: I finally got the new footage (1280x720 ... oh my, so crisp!) ... I imported the elements from my first, low res project ... all good ... but now I can not move the imported elements freely ... I can move the group (the "old" project was 720 x 486) within the new canvas, but individual elements "disappear outside the old canvas dimensions ... almost like a mask has been imported, masking everything beyond the old dimensions ...
    Thanks again,
    Stephan

  • A few SQL related protection group Questions - DPM 2012 R2

    Hi - Here is my environment: DPM 2012 R2 backing up SQL 2012 DBs. Some of the DBs are simple recovery model, some are full recovery model in the same protection group.
    1) Regarding the fact that DPM only looks to the recovery model when the DB is first added to the protection group, if I ever changed the recovery model in the future, would stepping through the "Modify Protection Group" wizard without changing
    anything be the solution for DPM not changing its methodology on the backing up or not backing up the log files? Or would I have to remove the affected databases from the protection group and add them back in?
    2) I have disk protection configured for 30 Days, sync every 15 minutes, and application recovery points once per day. Online protection is configured for 90 Days. Does this mean my disk consumption on the DPM side for full model databases will be the full
    size of the databases, plus the amount of changes observed over 30 days? OR does it mean it will keep 30 full copies of the DB? I am fairly sure the former.
    3) If I do decide to reduce the retention range on the disk side of this protection group to say 14 days, are there any specific issues with changing that after the PG has been working for some time?
    4) My former backup solution had an option to run consistency checks after every SQL job. Is that still considered best practice? Would the "Run a daily consistency check" be a better choice than the "Only run if a replica becomes inconsistent"
    option that I currently have in place? Would there be any ramifications to enabling this now after this PG has been in place for some time?
    Thanks very much!

    Hi
    Q1) Regarding the fact that DPM only looks to the recovery model when the DB is first added to the protection group, if I ever changed the recovery model in the future, would stepping through the "Modify Protection Group" wizard without changing
    anything be the solution for DPM not changing its methodology on the backing up or not backing up the log files? Or would I have to remove the affected databases from the protection group and add them back in?
    A1)
    Changing the Recovery Model of a Database
    To change the recovery model of a protected database to the simple recovery model
    Stop protection of the database, selecting the retain replica option.
    Change the recovery model on the SQL Server database.
    Add the database to a protection group.
    Q2) I have disk protection configured for 30 Days, sync every 15 minutes, and application recovery points once per day. Online protection is configured for 90 Days. Does this mean my disk consumption on the DPM side for full model databases will be the full
    size of the databases, plus the amount of changes observed over 30 days? OR does it mean it will keep 30 full copies of the DB? I am fairly sure the former.
    A2) Your disk consumption on the DPM will be for size of model databases plus the amount of changes observed over 30 days.
    Q3) If I do decide to reduce the retention range on the disk side of this protection group to say 14 days, are there any specific issues with changing that after the PG has been working for some time?
    A4) Not really, but to gain back the potential extra space allocated for the original 30 day retention - you can try shrinking the recovery point volume once the retention range is reduced and the older recovery points are pruned.  I would wait until
    after midnight to be sure the old RP's are deleted, then try to shrink.
    Q4) My former backup solution had an option to run consistency checks after every SQL job. Is that still considered best practice? Would the "Run a daily consistency check" be a better choice than the "Only run if a replica becomes inconsistent"
    option that I currently have in place? Would there be any ramifications to enabling this now after this PG has been in place for some time?
    A4)  A consistency check will only run if DPM detects the replica is inconsistent.  Even if you have the option selected to run nightly, if the replica is already consistent a consistency check will be skipped.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Simple java architecture question

    This should be a simple question to answer but I haven't been able to find a good answer.
    I have an application that establishes a network connection with a server and registers event listeners on that connection.
    What I want to do is find a way without a busy-wait/while loop to keep the main() thread running so that the listeners can do their job.
    Here is a sample of what I've got:
    public static void main(String[] args)
    SomeConnection conn1 = null;
    try
    conn1 = new SomeConnection("someaddress");
    TrafficManager tm = conn1.getTraffictManager();
    TrafficHandler th = tm.createTraffichandler(new MessageListener()
                        public void processMessage(Message message)
                             System.out.println("Received: " + message.toString());
         catch (Exception e)
              e.printStackTrace(System.out);
         conn1.disconnect();
    The problem is that the application doesn't stay running to respond to traffic coming across the connection.
    Any guidance would be appreciated.
    Thanks

    Well, what is the job of the MessageListener if it isn't to listen for messages? And apparently it isn't doing that because your application terminates.
    Bear in mind that I don't have any idea how any of those four classes work, or even how they are supposed to work. So let me just quote this line from the API documentation of the Thread class which says when your application will terminate:
    "All threads that are not daemon threads have died, either by returning from the call to the run method or by throwing an exception that propagates beyond the run method."
    That must be the case in your application.

  • Simple Java Coding Question

    I know this is a simple question, but I can't search for the answer to this because it involves syntax that Google and the like don't seem to search for..
    I am trying to figure out some Java code that I have found. I would like to know what:
    a[--i] and a[++j] mean.
    My first thought was that they meant to look at the position in the array one less (or more) than i (j). But that doesn't seem to be the case. A is an array of Strings, if that matters...
    Thanks for you help.

    muiajc wrote:
    I know this is a simple question, but I can't search for the answer to this because it involves syntax that Google and the like don't seem to search for..
    I am trying to figure out some Java code that I have found. I would like to know what:
    a[--i] and a[++j] mean.
    It mean increase/decrease the int i/j by 1. This is done before it gets you the value of a[]. for example if i=5 and you said a[--i] it is really a[4] and i is now equal to 4;

  • Simple Java EJB question.

    When it comes to EJB v3 Remote and Local interfaces,
    (With JBoss EJB Container Software in mind, for this question,)
    -Does the Remote interface for the EJB include method signatures from the Bean class
    -that are to be seen
    -that are to be hidden?
    -Does the Local interface for the EJB include method signatures from the Bean class
    -that are to be seen
    -that are to be hidden?
    Which is which for
    -EJB 2.1 ?
    -EJB 3.x ?
    - is EJB 3.x reverse compatible in that it allows use of the javax.ejb.* interfaces,
    and would accept a EJB 2.1 approach, or does it force one to use Annotations
    exclusively?
    Edited by: Zac1234 on Jul 21, 2010 5:21 PM

    muiajc wrote:
    I know this is a simple question, but I can't search for the answer to this because it involves syntax that Google and the like don't seem to search for..
    I am trying to figure out some Java code that I have found. I would like to know what:
    a[--i] and a[++j] mean.
    It mean increase/decrease the int i/j by 1. This is done before it gets you the value of a[]. for example if i=5 and you said a[--i] it is really a[4] and i is now equal to 4;

Maybe you are looking for

  • Problem in BDC for F-02 -- Currency Problem

    Dear Experts, I have written a BDC for F-02 to upload the opening balances of vendors. Problem is , this BDC is for Libya country,  where decimal places is 3. Now when i run my BDC, if the amount is  22.54, it will upload it as 22.540, which is ok, b

  • W2 PDF Print - Need to add some custom fields

    Hello, We are upgrading from 4.7 to ECC 6.0.  PDF form HR_F_W2_MULT_07 is working well and good. But we noticed that some of the custom code in the sapscript didnt get translated into the PDF. For eg, We need to print a Sequence No.  right below Empl

  • HT1338 Why can't I search in my toolbar anymore?

    I now have to open google up in a separate tab/window but I used to be able to just put my search straight into the toolbar. A small thing but it's driving me nuts! It seemed to happen after my son had been playing around on it.

  • GRC 10.1, AC - BC set with Warnings and no data

    Hi Gurus, We are on GRC 10.1. We activated the BC set GRAC_RA_RULESET_SAP_R3, which ended with warnings, but no errors. Warning messages in two sets as below: 1. VC_GRFN_CCI_TS_CONNECTOR Customizing object VC_GRFN_CCI_TS_CONNECTOR passed to activatio

  • [Seeking help] How to create a bean with annotations @ runtime?

    I would like 2 create a bean, @ runtime, as below: public class A {   @MyAnnotation(id = "ID")   private String id = "";   public String getId() { ... }   public void setId(String id) { ... } }Can anyone tell me how 2 achieve this? I know how 2 creat