Features (pe03) Can wildcard characters be used in Value of Decision Field

Hi
When modifying a Feature using transaction PE03. Is it possible to use a wildcard character (ie.. *, ? or +) when defining the "Value of Decision Fields"?
For example in feature CSTV1
My tree looks as follows:
CSTV1 Cost Grouping
> BAREA Benefit Area
> CA Canada
> WERKS Personnel Area
> CAA*
> ON
> CAB*
> PQ
> otherwise
My Personnel Areas are CAA1, CAA2, CAA3, CAA4....etc. Rather than hardcode them I'd like to use a wild card for the last character. In my testing I can't seem to get it to work.
Any ideas or suggestions?
Thanks
Edited by: bluezerby on Jul 31, 2009 6:50 PM

Dear Blue,
this is not possible .. as u knw... even in SAP Programs also we cannot use Wild Cards/sysmboles in Identifying Codes...
Anywhere, u cn use wild cards to search text but not CODE
Regards
...Sadhu

Similar Messages

  • How can i populate records using LOV value in form 6i

    Create a form based on the following output use EMP Table
    Create a non Database Block i.e Control Block----> Dept No
    Create a Database Block -EMP
    Create an LOV for the Dept no from dept table.
    For the Current Dept No . Populate the Employee Records
    How can i populate records using LOV value????
    thanks

    How can i populate records using LOV value in form 6i Start by posting in the correct forum: {forum:id=82}
    (Seriously: after making all your previous posts in the Forms forum, how do you end up posting in this one? Is it because the Forms forum has changed category?)

  • How can i populate records using LOV value

    Create a form based on the following output use EMP Table
    Create a non Database Block i.e Control Block----> Dept No
    Create a Database Block -EMP
    Create an LOV for the Dept no from dept table.
    For the Current Dept No . Populate the Employee Records
    How can i populate records using LOV value????
    thanks

    Hi maddyd2k
    How can i populate records using LOV valueIt's not clear what u r trying to do create, create then want to...
    1.Pls Create a non-db item db set to > no named DEPT_NAME
    2. when creating the LOV assign the DEPT_NAME FROM DEPT table to that displayed item and u have also to assign the Dept No selected to the Dept No in the emp block
    To populate or display DEPT_NAME after Query - the If i got ur problem then - u need to cretae a Post-Query Trigger then use the following...
    BEGIN
    SELECT DEPT_NAME
    INTO :CONTROL_BLOCK.DEPT_NAME
    FROM DEPT
    WHERE Dept No = :Dept No;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN NULL;
    WHEN OTHERS THEN (ERRTXT);
    END;Hope this helps...
    Regards,
    Abdetu...

  • If i have an ipad 3 with wifi feature only, can I add or use the data plan in another country?, if i have an ipad 3 with wifi feature only, can I add or use the data plan in another country?

    I have an ipad 3 with wifi feature only, can I use the data plan 3G in another country??

    No. You have no place for a sim card in the WiFi only iPad. You MAY be able to purchase a personal MIFI hotspot that will work with a data plan in another country. I have one here in the U.S. that I bought through Verizon, but I assume it will only work on the Verizon network here with my Verizon Data Plan. So you would need a data plan in the country in which you want to use the iPad if this option is available for you.

  • Variables used  as values for Security fields.

    Gurus,
    Since we are all friends, let me show my ignorance.
    There are variables that con be used instead of actual values in security fields, $USER being one of them.
    We use $USER as the value for field BTCUNAME for object S_BTCH_NAM, to indicate that the user ID of the person logged in, is the value to be used.
    Are there any more?
    If so, where can I find information about them?
    This would be for an ERP system, not BI.
    Thanks
    Juan

    > Since we are all friends, let me show my ignorance.
    We are all in the same boat
    > There are variables that con be used instead of actual values in security fields, $USER being one of them.
    > We use $USER as the value for field BTCUNAME for object S_BTCH_NAM, to indicate that the user ID of the person logged in, is the value to be used.
    This is not correct. Please see [SAP Note 101146|https://service.sap.com/sap/support/notes/101146]
    > Are there any more?
    Plenty..see [SAP Note 119147|https://service.sap.com/sap/support/notes/119147] for a tricky example.
    > If so, where can I find information about them?
    [SAP Note 323817|https://service.sap.com/sap/support/notes/323817] and the last paragraph of [SAP Note 410993|https://service.sap.com/sap/support/notes/410993].
    Cheers,
    Julius

  • How to use a value in a field

    Hi!
    I made a tree that shows data from 2 tables.
    When i pick one of the items in this tree, The tree gives me the ID and put it in a text field.
    Now, I want an event that gives me some values using this ID and later fill some text fields in the same page.
    In few words, i want an event after i receive the ID in a text field to get more data and field some text fields with these data.

    Thomas,
    By the time the value appears in a field -- an "item" in HTML DB terms-- you can reference it using bind variable syntax. To populate other items based on this key value, you could use a Before Header process such as:
    select ename, sal
    into :P1_ENAME, :P1_SAL
    where empno = :P1_EMPNO
    Assuming you have items on your page called P1_ENAME and P1_SAL, respectively. Furthermore assuming that the text field (item) that the ID was put in is called P1_EMPNO.
    So, you don't really need to create an event. In this case, the event is the loading of the page, which will trigger your process before its header is rendered. The process will populate form fields (by populating session state) based on a session state value set by you clicking on a tree link.
    Sergio

  • Use the value of a field as column-name of a dynamic table

    Hi All
    I have the following situation:
    a) Internal table TB_ORDER_CONDITION ==>  data: tb_order_condition type standard table of bapicond.
         sample of the internal table TB_ORDER_CONDITION:
    CONT_TYPE # CONDVALUE# CONDBASEVAL  
        ZR00         #    38.800000#  1.000000
        ZR30         #    2.800000  #  0.000000
        SKTO        #    0.000000  #  57.8500000
    b) dynamic-table  <L_TABLE_II> has the following columns:
    ZR00#ZR30#ICM3#IPS2  SKTO  
    c) I would like to move as below:
    ZR00#ZR30# ICM3#IPS2# SKTO 
    38.800000#2.800000#57.8500000
    Observation:
    I used this symbol just to show the separationfrom one column from another.
    Items a) and b) are OK. The problem is that I don't know how to make this move as showed in item c).
    Could you please advise?
    Thanks in advance.
    Gaia

    Hello,
    Check the code snippet below:
    FIELD-SYMBOLS: <wa_order_creation>  TYPE bapicond,
                   <l_table_ii>         TYPE STANDARD TABLE,
                   <l_wa_ii>            TYPE ANY,
                   <l_fieldval>         TYPE ANY.
    SORT tb_order_condition BY itm_number. "Sort by Item Number
    LOOP AT tb_order_condition ASSIGNING <wa_order_creation>.
    * Add a record to the dynamic table for each item
      AT NEW itm_number.
        APPEND INITIAL LINE TO <l_table_ii> ASSIGNING <l_wa_ii>.
      ENDAT.
      ASSIGN COMPONENT <wa_order_creation>-cond_type
      OF STRUCTURE <l_wa_ii> TO <l_fieldval>.
      IF sy-subrc = 0.
        <l_fieldval> = <wa_order_creation>-cond_value.
      ENDIF.
    ENDLOOP.
    BR,
    Suhas

  • How to disable the previously entered user ID's that automatically appear. For example ; when logging into email , first letter of user ID promts the previously used email user IDs... Want to disable this feature---How can ot be done ?

    Question
    How to disable the previously entered user ID's that automatically appear. For example ; when logging into email , first letter of user ID prompts the previously used email user IDs... Want to disable this feature---How can it be done ?

    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    * Tools > Options > Privacy > History: "Remember search and form history"
    * https://support.mozilla.com/kb/Remembering+passwords
    * https://support.mozilla.com/kb/Form+autocomplete

  • How to update and use the values of variables of another class

    I can we update or use the values of the variables of another class. For example, if we have class A
    public class A //(situated in package view)
    public s0,s1;
    public void runFunction()
    ...some coding and proceedings
    s0="Hi";s1"Hello";
    ......some coding
    RequestDispatcher dispatcher = request.getRequestDispatcher("/MainUser.jsp?alert=F");
    dispatcher.forward(request, response);
    ARunner.jsp
    <jsp:useBean id="a" class="view.A" scope="session"/>
    <%
    a.runFunction();
    %>
    MainUser.jsp
    <jsp:useBean id="a" class="view.A" scope="session"/>
    <%
    System.out.println("S0:"+a.s0+" S1:"+a.s1); //should print S0:Hi S1:Hello, but printing S0:null S1:null
    %>
    A.class has some procedures and String variables which can be updated and later can be used in JSP pages. The project starts with ARunner.jsp which uses the A.class and updates the values of string variables s0 and s1of A to hi and hello respectively.And then redirects the page to MainUser.jsp.
    Now what I want is ,when I call those string variables(s0 & s1 of A.class) in any another jsp likeMainUser.jsp it should give me the value of hi and hello respectively not null as it is giving right now. Could you refine the coding for this one?

    public class A //(situated in package view)
    public String s0,s1;
    public void runFunction()
    ...some coding and proceedings
    s0="Hi";s1"Hello";
    ......some coding
    RequestDispatcher dispatcher = request.getRequestDispatcher("/MainUser.jsp");
    dispatcher.forward(request, response);
    ARunner.jsp
    <jsp:useBean id="a" class="view.A" scope="session"/>
    <%
    a.runFunction();
    %>
    MainUser.jsp
    <jsp:useBean id="a" class="view.A" scope="session"/>
    <%
    System.out.println("S0:"+a.s0+" S1:"+a.s1); //should print S0:Hi S1:Hello, but printing S0:null S1:null
    %>
    giving code again to remove the typing errors. Please guide.

  • How to use hashtable values

    if i get all lovsession results in to a hash table
    how to use them
    i mean how to use the value of particular field in hash table(lov ).

    I'm not clear what exactly are you looking for? Is it just the printing/reading of values in hashtable or some interaction of those values with beans?
    --Shiv                                                                                                                                                                                                                                                                                                                               

  • Reposting:urgent....how to use hashtable values

    Hi
    if i get all lovsession results in to a hash table
    how to use them
    i mean how to use the value of particular field in hash table(lov ).
    is it <hashtable>.get(object name);
    if it is what should be my object name...is it VO attribute of LOV???or the Id in that lov page??
    please help me out..
    Regards
    Sandeep.G

    if(pageContext.isLovEvent())
    String lovInputSourceId = pageContext.getParameter(SOURCE_PARAM);
    Hashtable lovResults = pageContext.getLovResultsFromSession(lovInputSourceId);
    if (lovResults != null)
    value = (String) lovResults.get("<Lov Item Name>");
    }

  • Help using -replace with wildcard characters, specifically braces

    Hello all,
    Needing help in using -replace with literal wildcard characters, specifically the braces characters. From reading old posts online this seems to have been a notorious shortcoming of PowerShell, but not sure if it's been resolved or not. My simple
    code tries to remove the braces as follows (would like to keep the foreach loop and everything as is if possible):
    $string = "test[]"
    $braces = @("``[","``]")
    Foreach($brace in $braces){
    If($string -like "*$brace*"){
    $string = $string -replace ($brace,"")
    write-host $string
    This code gives an error at the -replace line, saying "The regular expression pattern `] is not valid." I'm not sure how to pass the literal brace characters to the -replace parameter? Can this be done?

    -like is a wildcard operator (it recognized wildcard patterns like * ,? and [a-z].
    For a regular expression you use the -match operator.  
    Wildcard patterns and regular expressions are not interchangeable.
    See:
    get-help about_wildcards
    get-help about_regular_expressions
    for an explanation and examples of each one, and 
    get-help about_comparison_operators
    for examples of using -like and -match.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • IPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

  • What feature I can use in SQLServer 2014/SQLAzure to Horizontal scaling in case a single machine cannot handle the load

    Hi all,
    I need advise for 
    What feature I can use in SQLServer 2014/SQLAzure to Horizontal scaling  in case a single machine cannot handle the load.
    Please some body suggest.
    I know some features :
    1.AlwaysOn
    2.Peer to Peer replication
    Thanks in advance.

    Hello,
    Windows Azure SQL database is not on-premise SQL Server 2014.
    SQL database not support Always on Availability Group and Replication. Scaling out in Azure SQL Database requires sharding, which horizontally partitions data across multiple databases. You should design custom sharding solutions by using application
    code across multiple databases.
    If you use Azure virtual machines (VMs) with SQL Server 2014, you can configure Alwayson Availability Groups. Please refer to the following article:High Availability and Disaster Recovery
    for SQL Server in Azure Virtual Machines
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How can i poster print using my officejet pro 8600plus? my 8500 had this feature.

    how can i poster print using my officejet pro 8600plus? my 8500 had this feature.
    This question was solved.
    View Solution.

    Yes, the Officejet 8500 driver works with full capability on the Officejet 8600.
    You do not delete the 8600 port, you just right click on the Officejet 8600, select Printer Properties, Ports and just find which port the 8600 is using.  After you write this down click Cancel to exit this part.  I would suggest you leave the Officejet 8600 driver installed, you can install the version with the Officejet 8500 driver and just select the printer you want at print time.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

Maybe you are looking for