Setting an existing StringBuffer to String?

I have an existing property that is a StringBuffer. I need to update it several times with a String value.
Currently I have:
protected void setDescription(String description)
m_sDescription = new StringBuffer(description);
Is this correct I don't see a delete keyword. What happens to the old memory taken up by the old StringBuffer. Is it automaticlly removed?

Yes, the garbage collector will eventually clean up the memory used by unreferenced objects.

Similar Messages

  • I am getting following error! XML Parsing Error: undefined entity Location: chrome://weave/content/options.xul Line Number 6, Column 3: setting id="weave-account" type="string" title="&account.label;" / --^

    I am getting followong error
    XML Parsing Error: undefined entity
    Location: chrome://weave/content/options.xul
    Line Number 6, Column 3: <setting id="weave-account" type="string" title="&account.label;" />
    --^

    I had this problem - it appeared to be due to having Firefox 4 with the Firefox Sync installed as an add-on. Firefox 4 has sync included so there is no need to have it as an add-on. I went to the add-on manager and removed Firefox Sync and now appears to be working correctly.

  • How to get a set of character within a string?

    Hi,
    I need to cut a set of character within a string. I have tried everthing but I need help.
    Example.
    Database Version 11.2.0.3
    create table tst_string (message varchar2(600));
    insert into tst_string values ('ANR0166I Inventory file expiration finished processing for node OSOGBO, filespace OSOGBO\SystemState, copygroup BACKUP and object type GROUP BASE with processing statistics: examined 43, deleted 43, retrying 0, and failed 0. (SESSION: 1506, PROCESS: 2)');
    insert into  tst_string values ('ANE4175I Starting Full VM restore of VMware Virtual Machine ''mfujiwara'' target node name=''VC1_DC1'', data mover node name=''VC1_DC1_DM3''  (SESSION: 3780)');
    commit;
    select * from tst_string;
    MESSAGE
    ANR0166I Inventory file expiration finished processing for node OSOGBO, filespace OSOGBO\SystemState, copygroup BACKUP and object type GROUP BASE with processing statistics: examined 43, deleted 43, retrying 0, and failed 0. (SESSION: 1506, PROCESS: 2)
    ANE4175I Starting Full VM restore of VMware Virtual Machine 'mfujiwara' target node name='VC1_DC1', data mover node name='VC1_DC1_DM3'  (SESSION: 3780)
    ## I want get
    # From first line following values:
    node OSOGBO
    filespace OSOGBO\SystemState
    examined 43
    deleted 43
    retrying 0
    failed 0
    # From second line
    mfujiwara
    VC1_DC1
    VC1_DC1_DM3Any help can be useful...
    Thanks in advance.

    Hi Frank,
    It looks like message can be seen as delimited lsit of sub-messages, where a number of different characters (perhaps ',' amd ':') may serve as delimiters. Each sub-message may or consist (entirely or in part) of something you want to display.Yes. In my first case where is "ANR0166I" I want get the characteres before "," (e.g "OSOGBO," I want get "OSOGBO") excluding "(SESSION: 1506, PROCESS: 2)"
    Would a user-define PL/SQL function be okay for you?Yes.. no problem.
    I'm not good with shell script, but will try show what I want using SHELL commands:
    See this example:
    ### I create a file named "tst_string"
    $ vi tst_string
    ANR0166I Inventory file expiration finished processing for node OSOGBO, filespace OSOGBO\SystemState\NULL\System State\SystemState, copygroup BACKUP and object type GROUP BASE with processing statistics: examined 43, deleted 43, retrying 0, and failed 0. (SESSION: 1506, PROCESS: 2)
    ## So I used a function sed to get my desired values. The command bellow is poor, but My point is the result.
    $ cat tst_string | sed 's/ANR0166I.*node //g' | sed 's/, filespace//g' | sed 's/, copygroup BACKUP and object type GROUP BASE with processing statistics: //g' | sed 's/. (SESSION.*//g' | sed 's/, deleted//g' | sed 's/, retrying//g' | sed 's/, and failed//g'
    OSOGBO OSOGBO\SystemState\NULL\System State\SystemState 43 43 0 0The result was:
    NODE     FILESPACE                              Examined     Deleted     Retrying        Failed      
    OSOGBO      OSOGBO\SystemState\NULL\System State\SystemState     43           43      0           0I will go check the links wich you mentioned.
    Thanks

  • Can set charset in jdbc url string?

    can set charset in jdbc url string
    like mysql
    ?

    China,
    As far as I know, you cannot set the charset in the JDBC URL string. However, there are ways to set it. Although I have no experience with setting the charset, I believe the "Oracle JDBC User's Guide and Reference" contains this information. The guide is available from:
    http://tahiti.oracle.com
    Allow me to give you some advice. Each DBMS does things differently. Oracle's JDBC driver does not work exactly the same way as the JDBC driver for "mySQL". You need to learn how Oracle's JDBC driver does things. In my opinion, the "Oracle JDBC User's Guide nad Reference" is very good for learning how to use Oracle's JDBC driver.
    Good Luck,
    Avi.

  • Insert set of character in a string

    hi guys,
    I have created a string of length 19, i need to insert set of character and compare them if its right format or not.That is for barcode i need. i WANT MY PROGRAM TO GENERATE THIS FORMAT BARCODE.
    eg : INV40602007RE000155

    Hi
    SEARCH
    Variants:
    1. SEARCH f    FOR g.
    2. SEARCH itab FOR g.
    Note
    Like all string processsing statements, you can only use character-type operands here.
    If the type of an operand is not STRING, the operand is treated like a type C field, regardless of its actual type, even though no actual conversion takes place.
    See Only character fields allowed in string processing.
    Variant 1
    SEARCH f FOR g.
    Additions:
    1. ... ABBREVIATED
    2. ... STARTING AT n1
    3. ... ENDING   AT n2
    4. ... AND MARK
    Effect
    Searches the contents of f for the string in the field g. This string can have any of the following formats:
    'str'
    a character string (trailing spaces are ignored)
    '.str.'
    any character string between the periods
    '*str'
    a word ending with "str", including "str"
    'str*'
    a word beginning with "str", including "str"
    You can use any non-alphanumeric character as a separator, that is, spaces, punctuation marks and non-printable characters.
    Note
    The search patterns 'str' and '.str.' are identical apart from a few exceptions. You must use '.str.' when the pattern str contains spaces (at the end), the '.' character (at the beginning and end), or the '*' character (at the end). You should also use '.str.' when the contents of the search string str is a variable, since you cannot predict when you write the statement what the contents of the string will be.
    The system does not distinguish between upper and lower case characters.
    The return code is set as follows:
    SY-SUBRC = 0:
    The search string g was found in the field f. SY-FDPOS contains the offset of the found string or the found word within the field.
    SY-SUBRC = 4:
    The search string g was not found in the field f.
    Addition 1
    ... ABBREVIATED
    Effect
    Searches the field f for a word containing the character string specified in the field. Here, the characters specified in g may be separated by other characters in the word. If the string g occurs in a word, the return code in system field SY-SUBRC is set to 0. The first letter of the search string g and of the word must match.
    Example
    DATA F(50).
    MOVE 'Alaska Texas California' TO F.
    SEARCH F FOR 'Clfrn' ABBREVIATED.
    Here, SY-SUBRC is set to 0, since not only does the string 'Clfrn' occur (separated by other characters) in 'California', but 'Clfrn' and 'California' begin with the same letter.
    Addition 2
    ... STARTING AT n1
    Effect
    Searches the field f starting from the position n1. Here, n1 can also be a field containing the corresponding value. The first character in the field f is in position 1.
    When you use the addition STARTING AT, the position specified for the found pattern in SY-FDPOS does not refer to the start of the field, but to the position n1.
    Addition 3
    ... ENDING AT n2
    Effect
    Searches the field f up to the position n2.
    Addition 4
    ... AND MARK
    Effect
    If the search string g is found, all the characters of the search string and all the characters occurring in between (in the case of SEARCH ABBREVIATED) are converted to upper case in the field f.
    Example
    DATA F(20) VALUE 'Peter Paul Mary'.
    SEARCH F FOR '*UL' AND MARK.
    SY-SUBRC is now set to 0, since the search string was found in 'Paul'. SY-FDPOS has the value 6, since the character string found starts at the offset 6. Also, the search string is marked, so that the new contents of f are as follows:
    'Peter PAUL Mary'
    Variant 2
    SEARCH itab FOR g.
    Additions:
    1. ... ABBREVIATED
    2. ... STARTING AT line1
    3. ... ENDING   AT line2
    4. ... AND MARK
    Effect
    Searches the internal table itab for the string in field g. The string can have the same format as in variant 1. The value of SY-SUBRC is set to 0, if the search string is found in the table. The system field SY-TABIX then contains the number of the table line where the string was found. Meanwhile, SY-FDPOS specifies the offset of the found string within the table line.
    Note
    The statement does not search the header line of an internal table itab.
    Addition 1
    ... ABBREVIATED
    Effect
    As with SEARCH ABBREVIATED, searches the internal table itab for a word that contains the character string specified in the field g. Here, the characters specified in g can be separated by other characters in the word. The return code value of the system field SY-SUBRC is set to 0, if the string g occurs in a word. The first letter of the search string g and of the word must match.
    Addition 2
    ... STARTING AT line1
    Effect
    Searches the internal table itab starting from line line1 to the end. line1 can be a field that contains the corresponding values.
    Addition 3
    ... ENDING AT line2
    Effect
    Searches the internal table itab up to the line line2.
    Addition 4
    ... AND MARK
    Effect
    If the search string g is found, all the characters of that search string and all the characters occurring in between (in the case of SEARCH ABBREVIATED) are converted to upper case in the internal table itab.
    Example
    Let T be an internal table which is empty:
    TYPES: BEGIN OF T_TYPE,
            LINE(80),
          END OF T_TYPE.
    DATA: T TYPE STANDARD TABLE OF T_TYPE WITH
                 NON-UNIQUE DEFAULT KEY,
          WA_T TYPE T_TYPE.
    MOVE 'Alaska Texas       ' TO WA_T.
    APPEND WA_T TO T.
    MOVE 'California Arizona ' TO WA_T.
    APPEND WA_T TO T.
    SEARCH T FOR '*ONA' AND MARK.
    SY-SUBRC is now set to 0 because the search string was found in 'Arizona'. SY-TABIX contains the value 2 because 'Arizona' appears in the second line of the table T. SY-FDPOS is set to 11 because the found character string begins at the offset 11. Also, the search string was marked in the second line in such a way that the contents of that line now look as follows:
    'California ARIZONA'
    Note
    Performance:
    Searching generically for a string in an internal table is much more runtime-intensive (approx. 5000 msn (standardized microseconds)) than searching for 'str' (approx. 20 msn). This was measured using a table with 200 entries and 10 fields.
    If you perform a search in a field which is 50 bytes long for 'str' or 'str', the runtime consumption is approx. 300 msn, whereas searching for 'str' takes about 15 msn.
    Regards,
    Raghav

  • Set "url" in HTTPService using String variable

    Hi,
    How can I set "url" in HTTPService using String variable (see below). I've tried different formats of string & variable concatenations.
    privtate var myurl:String = "http://localhost/";
        <mx:HTTPService id="post_submit_service"
            url="{myurl+'test.php'}"
            method="POST"
            resultFormat="text"
          result="result_handler(event)"
          fault="fault_handler(event)">
            <mx:request xmlns="">
          </mx:request>
        </mx:HTTPService>
    Thanks,
    ASM

    try following:
    url="{myurl}test.php"

  • Creating new String using only specific set of chars from another String

    I've performance troubles doing this task:
    I have a very long String A (up to 1 million character length)
    This String contains different characters.
    I need to create a String B containing only specific characthers (with a defined character code)
    An example:
    String A: [80]='P' [65]='A' [71]='G' [69]='E'For example I want to extract only character 65 and 71
    String B: [65]='A' [71]='G'I already did the code to do this, (it's quite simple) but I think I have some very big performance issues, and I suppose I can do this task much more quickly!!
    String out = "";
              for (counter = 0; counter < text.length(); counter++) {
                   char currentchar = text.charAt(counter);
                   int currentvalue = (new Integer(currentchar)).intValue();
                   switch (currentvalue) {
                   case 65:
                        char[] newstring = new char[1];
                        newstring[0] = currentchar;
                        out += new String(newstring);
                        break;
                   case 71: //
                        break;
                   // other cases
                   default:
                        // nothing to do...
              }Can you suggest me something to improve the performances?
    Thank you!

    If you've got a number of characters in your acceptance set I'd use indexOf, and I'd probably use StringCharacterIterator. Mind you, with a million characters I'd probably not load them all at once anyway, but process them as streams.
    StringBuffer out = new StringBuffer(s.length() / 5); // allocate plenty
    StringCharacterIterator it = new StringCharacterIterator(s);
    for(char c = it.first(); c != CharacterIterator.DONE; c = it.next())
      if("AG".indexOf(c) >= 0)
          out.append(c);
    return c.toString();

  • Setting substitution variable to connection string (not ODBC name)

    Hi,
    I havce a question regarding the use of a sub variable in SQL data loads as the data source. I find this works great when the variable is set to an existing ODBC. What I would really like to do is skip the ODBC creation step and have the substitution variable be the actual connection string, such as "Driver={SQL Native Client};Server=myServerAddress;Database=myDataBase; Uid=myUsername;Pwd=myPassword;"
    Can anyone confirm or deny whether this functionality exists? As usual, the documentation is vague on the subject and doesn't exclude the possibility, but doesn't include it, either.
    Thanks!

    My first thought is that no, you can't do that. Even if you could, I'm not sure if you'd want to do that. The easiest way to find out is simply to try. But more than likely I think you should just have "hard-coded" values for the source/target server. If you are trying to stay with the same load rule for dev/test/prod servers, you might just be better off coming up with a naming scheme that let's you keep them all separate.
    Cheers,
    Jason Jones
    [http://www.jasonwjones.com]

  • Replacing a set of characters from a string in oracle sql query

    I want to replace a set of characters ( ~    !     @    #     $     %     ^     *     /     \     +    :    ;    |     <     >     ?    _  ,) from a STRING in sql
    select 'TESTING ! ABC 123 #'
    FROM DUAL;
    What is the best way to do it? Please provide examples also.

    What is your expected output... The query I posted just removes them, it never replaces them with spaces..your string already has space.. if you want to remove space as well .. try this...
    SELECT TRANSLATE ('TESTING ! ABC 123 #', '-~!@#$%^*/\+:;|<>?_, ', ' ') FROM DUAL;
    Output:
    --TESTINGABC123
    Else post your expected output..
    Cheers,
    Manik.

  • Setting current row using a string key in an iterator

    Hi ,
    I am using Studio Edition Version 11.1.1.6.0 and integrated wls.
    QUESTION:_
    As suggested by Sudipto i want to brief up my query.
    I have a master-detail relationship .Using that relation's Tree model i am displaying through an <af:iterator> . I want to set the current row in the iterator of the parent view object . Is there a way please help .
    Description:_
    I have 2 master-details tables . FormSections is the mater and SectionContents is the child.
    I have an use case and using the tree collection model in an iterator to display the nodes.The jsf page has the following markup
    <iterator id="i1" value="#{bindings.FormSectionsView1.collectionModel}"
    var="section">
    <decorativeBox id="db2">
    <facet name="top">
    <commandLink text="#{section.Sectionname}" id="cl1">
    <showPopupBehavior triggerType="action" popupId="p1"/>
    </commandLink>
    </facet>
    <facet name="center">
    <iterator id="i2" value="#{section.children}" var="field">
    <outputText value="#{field.Fieldlabel}" id="ot3"/>
    </iterator>
    </facet>
    </decorativeBox>
    </iterator>
    on the popup p1 i have #{DesignBean.createField} popupfetch listener.Now i want to insert a new row in the child when i click on the commandlink.
    I have tried the following
    1) Tried binding setCurrentRowWithKey and setCurrentRowWithKeyValue (namedvalue as #{section.Sectionid}) but there was no change i get the current row set to empty
    2) Tried using the following bean codes
    a) DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding sectionsIterator =
    (DCIteratorBinding)bindings.get("FormSectionsView1Iterator");
    System.out.println(sectionsIterator.getCurrentRow());
    String key_str="21";
    sectionsIterator.setCurrentRowWithKeyValue(key_str);
              executeOperationBindings("CreateInsert1");// child createinsert binding execution
         b)     DCBindingContainer bindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding sectionsIterator =
    (DCIteratorBinding)bindings.get("FormSectionsView1Iterator");
    System.out.println(sectionsIterator.getCurrentRow());
    String key_str="21";
    Key key=sectionsIterator.createKey(key_str);
    if(key!=null)
    sectionsIterator.setCurrentRowWithKey(key.toStringFormat(true));
              executeOperationBindings("CreateInsert1");
              Now i have a problem of setting the parent to the current row on the iterator of the parent i am getting null pointer exception when tried to set the key.
    Thanks,
    Raj
    Edited by: RajaSekharReddy.M on Jan 30, 2013 6:11 AM
    Edited by: RajaSekharReddy.M on Jan 31, 2013 4:39 AM

    Rajasekhar ,
    What model layer do you use ? If ADF BC then shouldn't the parent child relationship already been defined as a View Link ?
    Also I'm a little confused as to why you are setting a hardcoded the key with a string , since you are clicking the command link from the row , you should be accessing it as
    #{section.sectionId}
    Also I didnot understand this line-
    Now i have a problem of setting the parent to the current row on the iterator of the parent i am getting null pointer exception when tried to set the key.A small tip is you can start giving briefly what you are trying to achieve and whats failing to get accurate replies . Please refer -
    https://forums.oracle.com/forums/ann.jspa?annID=56

  • Need help Setting Up Existing JSP app

    I just downloaded release 2 to get a look and see if it's time to make the switch (currently using an old version of JBuilder).
    I have an application built with JSP's with an existing directory structure. What I'd like to do is import the structure into a project so that the files are available and the includes are picked up. Currently when I'm looking at one of the JSP's (main.jsp) which has a reference to an include I'm getting an error that it can't find the include file. The include looks like:
    <%@ include file="/app/include/navbar_images.jsp" %>
    I've tried to set the project src path to D:\java\jsp (which is where the app directory from the above include lives). This doesn't seem to solve the problem.
    The file I'm working with lives in D:\java\jsp\app\main by the way.
    Can someone point me in the right direction?

    Make sure to set your "html source directory" to D:\java\jsp\. By doing so, you can reference all your
    files by a uri relative to your "html source directory".

  • How to set a very very long string in Binder

    Hello Everybody,
    I want to set a string in the binder from my Filter.
    Is there some limit to length of string that can be set.
    fyi i am using the following code to do that.
    serviceBinder.putLocal("ListOfNames", strItemName.toString());
    thanks,
    sapan
    Edited by: sapan on Apr 19, 2010 1:58 AM
    From the filter i send an email, in this email I access this list. The list that i get in email template is not complete. e.g. In my filter I get 3500 names in the list while in the email i get only around 200. This number is also not fixed.

    Hi Sapan
    Why not create a result set instead. There easier to work with.
    /Tony

  • Why does ESTK get hung up when setting ListItem.image to a string?

    The following code seems to hang up ESTK whether the target is ESTK or InDesign.
    try{
    var warning_icon = "\x89PNG\r\n\x1A\n\x00\x00\x00\rIHDR\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1F\xF3\xFF\x61\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6F\x66\x74\x77\x61\x72\x65\x00\x41\x64\x6F\x62\x65\x20\x49\x6D\x61\x67\x65\x52\x65\x61\x64\x79\x71\xC9\x65\x3C\x00\x00\x01\x86\x49\x44\x41\x54\x78\xDA\xA4\x52\xBB\x4A\x03\x51\x10\x9D\x48\xC8\x03\x05\x05\x5D\x88\xA8\x85\x8F\x8D\x11\xAC\x4C\x3A\x41\x4C\x95\x0F\x90\x68\xE1\x0F\x58\x58\x5A\xD9\xEC\xDA\xF8\x19\xDA\x18\x11\x82\x1F\x90\x42\xB4\x09\x56\x06\x4B\x41\x62\xAB\x12\xC1\x22\x45\xDE\x59\xE7\x4C\xF6\xDE\xE4\xAE\x16\x42\x06\xCE\xEE\x99\x33\x67\x66\x6F\x32\x77\xC2\xF3\x3C\x1A\x07\x61\xE2\x78\x2B\x86\xE8\x8F\xD8\x65\xDC\xFB\x3C\xCB\x78\x08\x1A\x56\xF2\x1E\xC9\x94\xD7\x1B\xBC\xAB\x06\x58\xE3\x52\x55\xE0\xF3\x60\x5D\x7A\x27\x30\xA9\xDB\xE5\x47\xAF\xAE\xF1\x52\x58\x75\x67\x52\x47\x3A\x07\x87\x36\xEA\x91\x1E\x0E\x19\xD0\xEB\x61\xCA\xB7\x06\xE7\xCE\x5C\xEA\x40\xE7\xE0\xD0\x02\x9E\xE1\x80\x4E\x07\x8F\x2F\xC1\xF3\x55\xD6\x9D\x5D\xDF\x17\x5E\x74\xB2\x94\xD9\x3E\x11\x0E\x0D\x35\xE5\x93\x1E\x35\x40\x8E\xD3\xF9\x14\x30\x77\x12\xC9\x9D\x41\xAE\x82\x39\x34\xD4\x46\x7C\x81\x13\xB4\xDF\xE9\xB1\x70\xEC\x4A\x33\x73\x81\x0A\x3F\x47\x0D\x1E\x70\xE3\x04\x83\x9F\x20\xA2\xB3\x68\xAF\x09\x07\xAC\x85\x79\x4A\x6F\x4E\xE9\x1C\x35\x78\x7C\xAF\x39\xE0\xEE\xFA\xC2\x5D\xB2\xED\xE1\xD7\x19\x56\x62\x92\xD2\x1B\x9E\xA1\xC1\x03\xAF\x1A\x10\xC2\x2E\x4B\xE7\x72\x91\xBC\xDC\xDE\x16\xFD\x27\x4A\xB7\x15\xE9\xCD\x9D\x7A\xFA\x04\xEE\xB2\x3D\xAD\x37\xA1\x50\xBC\xAC\x50\xE6\x30\xF4\x4B\x87\x17\x3D\xA3\xF7\xC0\x49\xDA\x7D\xE3\x2E\x08\x54\x04\x74\x78\xE5\x5E\x70\x84\xD5\x1A\x6B\x1F\x75\xB2\x2C\xF3\xA8\xF9\x3C\xF0\xC4\x5F\x30\xF5\x5A\x8D\xF4\x1A\x65\x40\xBF\x4F\x67\xE5\x32\x39\xB1\x18\x11\x10\x8F\x13\x45\xA3\x44\x91\x88\xBF\xC5\x36\x51\xAB\x45\xD4\x68\x10\x35\x9B\x03\xA0\x47\xFF\x89\xE3\xC4\x8F\x00\x03\x00\x96\x57\x59\x74\xF3\xF4\xB0\x1A\x00\x00\x00\x00\IEND\xAEB`\x82";
    var w = new Window('palette');
    var l = w.add('listbox');
    l.minimumSize = w.minimumSize = [200,-1];
    var item = l.add('item', 'test');
    item.image = warning_icon;
    w.show();
    }catch(e){$.writeln(e);}
    I'm basing this on the fabulously helpful work by Marc Autret: Re: get swatches in dropdown list with color preview...
    The code runs and the dialog shows up with the working icon, but ESTK gets stuck afterwards. I can't edit the code and do anything useful without restarting ESTK.

    Hi Peter & Justin,
    I general if the target is ESTK and not ID the png strings will cause problems like hanging or not being able to use keyboard shortcuts.
    ID has no problems with the strings, although it could be quicker to define the variable as warningIcon = ScriptUI.newImage("\u0089PNG..........")  Ai has some issues so for Ai scripts I include a string and create a resource file from it if the file does not exist. You could try the same for ESTK.
    Trevor

  • Set up existing expresses with new extreme base station

    We just replaced our old extreme base station with the new fast one. It works good so far except that now my two existing airport expresses- one I use for airtunes and the other to relay the wireless signal to a far corner of the house- don't work. What do I need to do to set them up with the new station? I tried a reset but it didn't help.

    Either connect them with ethernet to configure the Expresses or find them wirelessly(you can use Airport Utility or the older Airport Admin Utility). The bottom line is to get the Express selected in Airport ie the icon on the top file menu then use the Utility. If your nearwork is not visible to select then use the preferred drop down menu found in Network pane of system preferences. You may need to type in the network name or use the + button.

  • Enhancing component fails-Enhancement Set doesnt exist

    Hi All
       I am trying to enahce a component. I naviagted to the component. I clicked on the 'Enhance Component' button. I entered the name of a Enhancement Set which doesn't exist. The system throws an error 'Enahncement Set XYZ doesnt exist'. I created a Z Component in the BSP_WD_CMPWB transaction. I entered this value in the field for Enhancement Set and it still gives me the error message. What should I do? Search help returns no values.
    Thanks and regards,
    Sowmiya

    Hi,
    use the standard componet with the enhancement set .You can see all the views displayed(standard).
    Right click to enhance that.
    Then the standard view with name BT_HEAD/BPdetails(view) will be changed to (ZBT_HEAD/BPdetails) automatically.
    this will serve the copying purpose.
    This will happen, provided when u enhance the component u should have give the BSP application name as ZBT_HEAD.
    Hope this helps you.
    Thanks
    Jgds

Maybe you are looking for

  • Why isn't my SharePoint online document library showing anything in the Title column for PDFs I upload?

    I've got a document library on my SharePoint Online site. I've enabled the Title column in the library view. When I upload Word documents, the title I entered into the document properties list (Word 2010, File > Info > Properties list > Title) appear

  • How to jump to a control

    Hello, I was wondering if anyone can help me with the correct javascript to use in my form that will jump to a particular control. Basically, when someone clicks a button I want a previously hidden text field to become visible (which I have done), an

  • Problem with "Shockwave Flash is busy or not responding" message

    Hello, I am getting the "Shockwave Flash is busy or not responding" message, visiting the site on which I am working on for one client. Site is http://www.puntacanajustsafari.com/ I have installed one flash widget for weathercast and imediatelly afte

  • Photos from ipoddy to lappy

    hello, i have a windows comp, and my friend has a mac. i took my nano over to his mac and uploaded some photos onto my nano. however, rather than saving the photos in a file on the harddrive, i reconfigured the nano to his mac, so that i could look a

  • Possible to benefit from subscription when using s...

    Hi.  Can anyone tell me if I sign up for a worldwide subscription and am using skype to go numbers from my mobile phone, whether the subscription will be used or whether I'll still be charged by the minute? Thanks.