Length of Description Field

Is there any way to put more than 254 characters in the description or comment fields?

Probably not, but what version ID3 tags are you using?
Here is some info on ID3 tags, but I can't find where they say how long the field is supposed to be.
http://www.id3.org/d3v2.3.0?highlight=%28comment%29

Similar Messages

  • Creation of a product description field of length 250 car. used for search?

    Hi all,
    we need to create a specific description field for products  with a length of 250 (the standard description is too short at 40 car, =>table COMM_SHTXT) . That field should also be added to the search criteria.
    What would be the best solution for this creation , given that the field must exist also in ECC SD from where the product is replicated to CRM :
    -creation of a Z-append to the product table in ECC (table MARA?) and a corresponding include in the product table in CRM (COMM_PRODUCT) ?
    -creation of an attribute in ECC (or Z-append) and creation of a "set attribute" in CRM (i.e transaction COMM_ATTRSET), but there are warning in CRM when you create an attribute of length > 132.
    -using the standard Texts (no limitation of lenght) attached to products : is a search possible on these texts?or too complicated/poor performance ?
    Regarding the display in CRM UI, is it possible to display all the 250 caracters  if the field is a customized "set attribute" or a Z-append? It seems that it is not possible to display a string field on more than one line in the UI configuration, or even, on more than 8 columns in an assignment block?
    thanks for your help
    Ludovic

    well, I have found at least how to replace the error message (length of max 75 car  for PC UI) . Instead of trying to edit manually table T100C, there is an entry in customizing SPRO (cross appl/SAP Product/basic settings/Define Characteristics of System Messages
    ) which allows to customize standard messages , and so change from Error to Warning.

  • Owb error while edit a mapping:the minimum length of this field is 1

    after creating a mapping,an error always occur when i attemp to
    edit it just as add a mapping table,the error description is:
    the minimum length of this field is 1 and its maximum length is
    15,You have 19 characters.
    can some one help me?thanks

    Hi Vidyanand,
    Did you create the runtime access user using the runtime assistant? Did you select the correct runtime repository (if you have more) to associate your runtime access user with?
    Note that there are 4 database roles being created when you create a runtime repository owner:
    - OWB_A_<runtime repository owner>
    - OWB_D_<runtime repository owner>
    - OWB_R_<runtime repository owner>
    - OWB_U_<runtime repository owner>
    If you would grant those roles to a user, then that user becomes an access user for the user with username <runtime repository owner>.
    Note that you can also use the runtime repository credentials to connect to the runtime repository for deployment purposes, but you may not want that because of security concerns.
    Thanks,
    Mark.

  • Increasing of the length of the field of short text

    hai gurus
    i want to increase the length of the field while creating the purchase order is there any facility for  that plese give me the details

    Hi Rao,
    If you want to give some description in the short text you can use Purchase order text for giving complete details about your requirement to the vendor.
    Regards,
    Vijay

  • How to list "Tabel Name,Tabel Description, Field Name, Field Description...

    Dear All,
    I'm trying to produce a list , using query , to produce the following list:
    Table Name, T.Description, Field Name, F.Description, FieldType, Length
    I use DD02L, DD02T and DD03L, DD03T.
    Somehow - I dont get the same results as I see in the SE16, or SE11. Especially I mis some descriptions on filed level, and I do see them in the SE11.
    Using a query, save effort of exporting the DD for evry table sepratlly.
    This is strange.
    Your help is greatly Appriciated.
    Kind Regards,
    Doron Zaccai

    Helle Andreas, and all Others,
    Thanks very mucht for the input!
    The DD03M has the:
    Tabel name, Field Name, Field Description, Type, Length, Decimals
    Table description is abscent.
    I have joind the DD02T, (Tabelname, and language).
    And now I have all of them.
    Thank you all very much.
    I will try the FM mentioned, in the mentioned program. And will report on the result.
    Kind Regards,
    Doron Zaccai.

  • Copy keywords into description-field

    Hello,
    I have to work on many pictures so i don't want to do every step for every picture. I have no experience with scription so i ask you.
    I'm searching for a script (or somthing else) that copies the keywords of one file into the description-field of the same file automaticly.
    Yours Robin from Germany

    I have just done a quick test and this seems to work.<br />Copies the keywords to the description field.<br />Make sure that you do a test first!<br />NB:Folder.userData Adobe/XMP/Metadata Templates, folder must exist.<br />Paul<br /><br />#target bridge<br />var items = app.document.selections; <br />      for (var i = 0; i < items.length; ++i) { <br />         var item = items[i];       <br />var m = item.synchronousMetadata; <br />m.namespace = "http://ns.adobe.com/photoshop/1.0/"; <br />var Des = m.read("http://purl.org/dc/elements/1.1/","dc:description");<br />var Keywords = m.Keywords;<br />if(Des.length >0) {<br />     var Description = Des + ";"+Keywords;<br />     }else{<br />               var Description = Keywords;<br />          }<br />          KeywordsToDesc(m, Description);<br />      }; <br /><br />function KeywordsToDesc(metadata, Description) <br />{ <br />var strTmpl = "TempTmpl"; <br />var strUser = Folder.userData.absoluteURI; <br />var filTmpl = new File(strUser + "/Adobe/XMP/Metadata Templates/" + strTmpl + ".xmp");  <br />var fResult = false; <br />try <br />{ if (filTmpl.exists) <br />filTmpl.remove(); <br />fResult = filTmpl.open("w"); <br />if (fResult) <br />// CS3<br />{ filTmpl.writeln("<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"Adobe XMP Core 4.1-c036 46.276720, Mon Feb 19 2007 22:40:08        \">");<br />//CS2<br />//{ filTmpl.writeln("<x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"3.1.2-113\">"); <br />filTmpl.writeln(" <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">"); <br />filTmpl.writeln(" <rdf:Description rdf:about=\"\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\">"); <br />filTmpl.writeln("<dc:description>");<br />filTmpl.writeln("<rdf:Alt>");<br />filTmpl.writeln("<rdf:li xml:lang=\"x-default\">"+Description+"</rdf:li>");<br />filTmpl.writeln("</rdf:Alt>");<br />filTmpl.writeln("</dc:description>");<br />filTmpl.writeln(" </rdf:Description>"); <br />filTmpl.writeln(" </rdf:RDF>"); <br />filTmpl.writeln("</x:xmpmeta>"); <br />fResult = filTmpl.close(); <br />metadata.applyMetadataTemplate(strTmpl, "replace"); <br />filTmpl.remove(); <br />} } <br />catch(e) <br />{ fResult = false; } <br />return fResult; <br />};

  • Descriptions field in TV shows

    Forgive me if there is a current answer to this problem in existence and my poor searching skills didn't uncover it but, here goes:
    I am backing up my Smallville episodes and when I do so, I am putting episode descriptions in the description field. When I sync with my apple tv, some appear, some do not and I was wondering if perhaps there is a length limit or specific format I should be using to enable all of them to be shown. Any help would be greatly appreciated.

    Well, not the end of the world, but more than any other manufacturer in the market, I trust Apple to do the right thing. And if something is supposed to work a certain way and it doesn't, then that is bad business, regardless of how insignificant it seems. My love for Apple and Volkswagen stem from their excellent attention to detail.

  • I want to editable description field  in my web dynpro application

    Hi expert,
    The requirement is to make the Description field editable. However, the container for the dynpro only appears to allow for a certain type of action and is essentially used to display the Line Item details, giving no option to change the Line Item Description.
    so i want to editable in this description field  in my web dynpro application  /SAPSRM/WDC_DOTC_PC_I_BD .
    Kindly give me soulation ASAP.
    Thanks and Regard's.
    Vikash

    Thanks for the reply.
    The name of the view is V_PC_DOTC_ITM on which we have the records. On each line item there is a description field which is of type (LinkToAction). I want to enable user so that it can change the Description text (I will handle the action). Also, if you have any idea about updating the database table from here as it needs to be updated in BBP_PCPOS table.
    -vikash

  • Length of a field in a structure

    Hi,
    Is there any restriction on the length of the field in a structure which is CHAR type ??
    Thanks.

    Sample
    report zrich_0001
           line-size 1023.
    data: begin of s,
          a(65510) type c,
          b(25) type c,
          end of s.
          s-a = 'This is field 1 asdfkljas;dfkja;sldkjf;aslkdjf;alskdjfa' &
                'asdfkajsd;kfjas;dlkfj;aslkdjf;alksjdf;lkasjdf;lasdfasdf' &
                'asdfkljas;dlkfj;askdjf;askjdf;lkasdjf;lkasj  thd end'.
          s-b = 'This is field 2'.
          Write:/ s-a.
          write:/ s-b.
    Regards,
    Rich Heilman

  • Make "invoice number" and "description" fields both mandatory on payables

    I want my 'invoice number" and "description" fields both manadatory on quick invoice to force users to fill in the fields.

    995170 wrote:
    I want my 'invoice number" and "description" fields both manadatory on quick invoice to force users to fill in the fields.Please see my reply to your other thread -- https://forums.oracle.com/forums/thread.jspa?threadID=2514322
    Thanks,
    Hussein

  • Is there a way to have the description field in a calendar list item to support enhanced rich text?

    We have a user who has a few hundred calendar items created in outlook. If you open the calendar item, the description includes tables with borders, shading, etc. It seems that the description field in Sharepoint calendars only support basic rich text,
    so if I copy the items from the user's calendar to the sharepoint calendar, the formatting is lost. Is there any way to create a custom calendar with enhanced rich text for the description field?

    This is a workaround that is working for us.  I created a new column "Event Description", selected "Plain Text" and then created a basic workflow that updated Description from Event Description.  #160 is no longer showing.
    Please be aware that the trick to this is that you must write everything in a string.  In other words, don't use the Enter key. 
    In my case it was worth it as we couldn't rebuild and the user needed a valid and quick fix.
    Cynthia Duke
    Cynthia Duke

  • Is there a way to display again the description field by clicking on the gold star near the url (useful to type memos about this site)?

    In the previous versions of Firefox, when you click on the star near the url, you can add this website on your favorites. Another click and you can edit some fields about this bookmark, like the url, the folder, etc...
    But with FF17, the Description field is no longer there. You can only find it when managing your bookmarks, that is not really user friendly.
    Is there a way to add again the description field when clicking on the gold star? It's very useful for adding notes about this website, and it's also synch with addins like Xmarks

    Add code to the userChrome.css file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #editBMPanel_descriptionRow { visibility: visible !important; }
    </nowiki></pre>

  • I used Duplicate Annihilator to isolate dups in iPhoto on my iMac. At the end it told me it had marked the word duplicate in the comments / description field. How do I find and delete the marked photos?

    I used Duplicate Annihilator to isolate dups in iPhoto on my iMac. At the end of its search, it told me it had marked the word duplicate in the comments / description field. How do I find and delete the marked photos?

    File -> New Smart Album
    Description -> contains -> Duplicate
    will find them.
    Then the keystroke to delete depends on which version of iPhoto you have. All the keyboard shortcuts are under the Help menu.

  • How to get the length of a field value, not the length of DB's CHAR(20)

    Hello.
    I'm trying to handle a String from my DataBase and get its length:
    String myName;
    int i;
    PreparedStatement sql = Conn.prepareStatement("SELECT NAME FROM MY_TABLE");
    ResultSet results = sql.executeQuery();
    results.next();
    myName = results.getString("NAME");
    i = myName.length();
    out.println("The value is " + myName + " and the length is " + String.valueOf(i) );
    I get:
    " The value is Tom and the lengh is 20 "
    20 is the length of the field (it's a CHAR (20) ), but I would like to get the length
    of 'Tom'.
    On other hand, I would like to detect if this value is 'Tom' or not, but trying with:
    if (myName.equals("Tom")) {...}
    or
    if (myName == "Tom") {...}
    There is no response.
    Any experience?

    myName = results.getString("NAME");
    if(myName!=null) myName = myName.trim(); //Take out trailing spaces
    i = myName.length();Sudha

  • Error when creating a description field. MySQL syntax to use?

    I'm creating a form which has a description field in it. I created this form with many fields. However I then got an error and decided to limit the form to only 2 fields. These 2 fields (user and title) insert with no problem. However when I added the description field into the mix. I gat the same error I had previously gotten.
    Error:
    Internal error.
    Developer Details:
    tNG_fields.getFakeRecordset:
    SQL error: Error creating temporary table:
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'desc TEXT, job_id TEXT)' at line 1
    SQL:
    CREATE TEMPORARY TABLE KT_fakeRS_20080204 (client_id TEXT, name TEXT, desc TEXT, job_id TEXT) (FIELDS_FAKE_RS_ERROR)
    tNG Execution Trace - VIEW
    * tNG_insert.executeTransaction
    o STARTER.Trigger_Default_Starter
    * tNG_insert.getRecordset
    * tNG_insert.getLocalRecordset
    * tNG_insert.getFakeRecordset*
    I'm using the "Text" syntax for the field "desc" (description)
    What am I doing wrong? Do I need to define the table row in a different way?

    Hi,
    I am working on an image gallery using the tutorials.
    I used the sql
    SELECT *,
    rand() as random_number
    FROM image_img
    ORDER BY random_number DESC LIMIT 1
    on my default.php page but on preview i get the message
    You have an error in your SQL syntax near 'LIMIT 0, 10' at line 1
    I tried the solution above by removing the desc limit.
    I got the same prob.
    I will like to know how best to tackle this.
    Thanks
    Yomi

Maybe you are looking for

  • Icloud for my iphone 4s is disabled, how I can reactivate it?

    someone plz let me know how to reactivate icloud in my iphone 4s?? Thanks for your comments.

  • Maximum number of drives OSX will mount?

    I have seen that Apple says that OSX can mount an "Unlimited" number of volumes. Does that mean then that I can hook up lets say 100 hard drives? In a nutshell I am running into an issue having 24 drives show up in OSX SL. Only a maximum of 16 show.

  • Maps Language - map data vs phone system

    Ovi Maps stores all available language versions of map data for a certain city (e.g. both Chinese & English for Hong Kong), but will only display the language according to the phone system settings. If I want to switch map languages I need to change

  • HP Pavilion DM3 1039wm Notebook System Recovery Issue

    HP Pavilion Dm3 currently running on Windows 7 Home Premium About a month ago I purchased a recovery dvd from the website and a external usb cd drive.When I recieved the external usb drive in the mail and the disk I realized that I had purchased the

  • How can join two tables if column values does not match

    Hi guys, i have table col1 col2 abcd 123 asdf 234 wert 456 sedf 789 and another table with col1 abcd aaaa but i need the output like abcd 123 abcd 234 abcd 456 abcd 789 aaaa 123 aaaa 234 aaaa 456 aaaa 789