Add large value in dropdown

I am loading data in dropdown.One of the value is
NUT HEX.4BA BRASS 0.284 INCHES A/F 0.135 INCHES THK
While adding this value it gives error as
valid value-value exceeds the boundaries [66000-60]
This value is stored as itemname in oitm.How can I add this value in the dropdown ?

Vishnu ist nearly right.
but 100 is too much.
i usually cannot add strings longer than 50.
it depens on the letters because the font in comobox is usuallly not true type !
also be sure that you don't want to add the same value twice.

Similar Messages

  • Add values in Dropdown list

    Hi,
    My reqiurement is to add values in Dropdown list which is standard one. Already threre some values are there, like
    hourly,daily,wekly.
    Now I need to add montly value to the above dropdown list.How this can be done.
    Suggest me.
    Thanks,
    Brahmaji

    Hi,
    Expand the Attribute Period_type and double click on its GET_V method.
    You will find following code line :
    lr_ddlb->set_selection_table( me->job_wizard ).
    Double click on the Set_selection_table method to open the method code.
    You will find a LOOP.. ENDLOOP there. Here,to remove the values, comment out this LOOP- ENDLOOP.
    and  add following lines
             ls_ddlb-key   = 'Y'.
            ls_ddlb-value = 'Yearly'.
            APPEND ls_ddlb TO me->ddlb.
    Thats All .
    Hope it Helps.
    Regards,
    Suchita

  • Add New value to the special reference indicator on the TO field

    Can you please tell me how to add a new value to the special reference indicator dropdown which is on the transfer order. 
    LTAK->SPEZI  ?  Currently it is displaying values  A & B in the drop down and want to add a new value to the indicator.
    Thanks
    John

    Hi,
    I dont think you will be able to add more values to this field from configuration.
    If you check the data element and domain associated with this field (LTAK_SPEZI) in SE11. You can see that the value range for the domain has been defined there as  A and B only.
    So if you want to add a new value you can ask and ABAP/technical consulatnt to add new values to this Domain.
    However i am not sure it will be useful (unless you have a specific requirement and want to modify the standard programs) as the field is checked in different program (eg in inculde  LL03AF4V , LL03AF7F ) against these fixed values A and B.

  • How to insert new values in dropdown box through coding

    hi,
      I want to insert new values in dropdown box in a table.
    Please provide me the corresponding coding.i already did this code but result is empty dropdown.I mapped the context properly..
    int sklength=wdContext.nodeSkills().size();
          for(int i=0;i<sklength;i++)
        String getsub=wdContext.currentSkillsElement().getSubject();
        if(getsub.equals("50000138"))
             //IPrivateDetails1.INewskillElement el=wdContext.createNewskillElement();
             List lis=new ArrayList();
             //lis.add("Abap");
             //lis.add("Workflow");
             IPrivateDetails1.INewskillElement el=wdContext.createNewskillElement();
             el.setTskill("abap");
             lis.add(el);
              el.setTskill("workflow");
              lis.add(el);
              wdContext.nodeNewskill().bind(lis);
              //wdContext.nodeMonthsOfYear().bind(MonthsOfYear);
              wdContext.nodeNewskill().setLeadSelection(1);
        else
              wdContext.currentNewskillElement().setTskill("C++");
    waiting for a positive reply......
    with regards,
    S.Kiruthika

    kiruthika,
    Too many logical errors to explian.
    Should be:
    IPrivateDetails1.ISkillsNode nSkills = wdContext.nodeSkills();
    IPrivateDetails1.INewskillNode nNewSkill = wdContext.nodeNewskill();
    int sklength = nSkills.size();
    boolean cppAdded = false;
    for(int i=0;i<sklength;i++)
      String getsub=nSkills.getSkillsElementAt(i).getSubject();
      if(getsub.equals("50000138"))
        List lis=new ArrayList();
        IPrivateDetails1.INewskillElement el1 = nNewSkill.createNewskillElement();
        el1.setTskill("abap");
        lis.add(el1);
        IPrivateDetails1.INewskillElement el2 = nNewSkill.createNewskillElement();
        el2.setTskill("workflow");
        lis.add(el2);
        nNewSkill.bind(lis);
        nNewSkill.setLeadSelection(1);
      else if (!cppAdded)
        cppAdded = true;
        IPrivateDetails1.INewskillElement elCpp = nNewSkill.currentNewskillElement();   
        if (null ==  elCpp) {
          elCpp = nNewSkill.createNewskillElement();
          nNewskill.addElement(elCpp);
          nNewskill.setLeadSelection( nNewskill.size() - 1);
        elCpp.setTskill("C++");
    VS

  • You cannot add "WarehouseCode" value... dreaded DTW error65171

    Trying to import Inventory Revaluation for a large number of items and get the dreaded error message 65171.  The full message is You cannot add "WarehouseCode" value when SAP Business One manages item cost per companyApplication-defined or object defined error65171.
    OMRV
    DocEntry     DocDate     Reference2     Comments     JournalMemo     Series     TaxDate     RevalType     RevaluationIncomeAccount     RevaluationExpenseAccount
    DocEntry     DocDate     Ref2     Comments     JrnlMemo     Series     TaxDate     RevalType     RIncmAcct     RExpnAcct
    1     20110117          Revalue for Negative     Inventory Revaluation               P     _SYS00000000172     _SYS00000000172
    MRV1
    ParentKey     LineNum     ItemCode     Quantity     Price     WarehouseCode     DebitCredit     RevaluationDecrementAccount     RevaluationIncrementAccount
    DocNum     LineNum     ItemCode     Quantity     Price     WhsCode     RActPrice     RDcrmAcct     RIncmAcct
    1     0     DE-D1000-X          11.386               _SYS00000000172     _SYS00000000172
    1     1     DE-D1005-X          11.41               _SYS00000000172     _SYS00000000172
    There is no value under Quantoty, WhseCode or RActPrice
    Any thoughts???
    Edited by: Gary Feldman on Feb 8, 2011 9:13 PM
    Edited by: Gary Feldman on Feb 8, 2011 9:23 PM

    I did have the same problem of incompatibility between SDK 2007 and SDK 8.8 at Material Revaluation cost.
    I use only ID-API in my Addon.
    I tried to insert a material revaluation, debit/credit, in SBO, in one company isn't administrated cost by warehouse (the cost is equal everywhere), I filled field "warehouse" and SBO returned error message:
    "10001465 - You cannot add "WareHouseCode" value when SAP Business One manages item cost per company"
    Apparently, in SDK 8.8, what it was permitted in SDK 2007 was changed, ie, not permitting fill field u201Cwarehouseu201D in SDK 8.8.
    Then, now, in SDK 8.81, for my surprise, it is re-changed.
    I installed version SBO 8.81 in my PC, and to continue to use SDK8.8 at the Addon (ie, compile AddOn with DIAPI 8.8), and the prohibition to inform field u201Cwarehouseu201D disappeared.
    Apparently, in SDK 8.81 or the last version of DIAPI SDK 8.8, in a material revaluation using DI-API, if you inform warehouse, ok, SBO will insert in this warehouse, whether don't inform warehouse, SBO, assume the system default warehouse (01) ou default warehouse defined by user.

  • Delete values in Dropdown list

    Hi
    I want to delete values from a dropdown list.
    The attribute is:
    Component: ICCMP_BP_DETAIL
    View: ICCMP_BP_DETAIL/BuPaCreate
    Context Node: PARTNERTYPE
    Attribute: BP_CATEGORY
    Do you have any idea of how to achieve this?
    Best regards.
    JM

    Hi,
    My reqiurement is to add values in Dropdown list which is standard one. Already threre some values are there, like
    hourly,daily,wekly.
    Now I need to add montly value to the above dropdown list.How this can be done.
    Suggest me.
    Thanks,
    Brahmaji

  • Rendering large values on the LinearAxis(Y)

    Hi all,
    In our app, theres a problem when we send out very large value as the max value for Y axis for a ColumnChart.
    LinearAxis is being used for y axis and when page loads, timeout occurs  and nothing is dsiplayed
    (some error in AxisRenderer)
    So the question is
    1. Can i get around this by writing a custom label function. If so How (i have seen some common examples..but thats
    for a limited and where max is small)
    2. Is there any bug related to this
    Please advice
    Thanks
    sbelur

    Hi Mike,
    More info on what your chart is reporting an what it it reading from its source chart is probably what it will take to give you an actual solution. Cmd-shift-4 will turn your cusor into a crosshairs you can drag a selection that is saved to your desktop as a screenshot.
    But here is this anyway.
    So this is my step by step. Sorry I wasn't clearer. I have a table where I am reading the left hand column for my Y axis. 4 other columns for a bar graph.
    In the reference sheet I select the table and add a header column before my first (the one being used for Y values). On my Mac the change shows up right away in my graph. This worked for me also in iOS.
    More directly, on my Mac, I can select the chart, double tap on the y axis label and edit directly. I can also edit the legend directly like this.
    My X axis is simple numbers- it is reporting the frequency a entry shows up. The main control I have here is how many steps to show from 0 to 24 (the largest result), it must be a number as that is all it gets from my source table.
    Quinn

  • Displaying ui element when selecting value from dropdown

    hi,
    i have a requirement when user select value from dropdown( some x from dropdown) textedit ui(where user can enter some text) should be displayed and submitted. please give some idea

    Hi Babanmohi     ,
    First create a node in your context and under that create an attribute. Then add a Dropdown by Index and TextEdit UI on to your view. Bind both the UI element with the same attribute.
    Then create an action on onSelect event of the DropDown UI element. Go to its implementation and write the following:
    wdContext.current<Node name>Element.set<attribute name>(wdContext.current<Node name>Element.get<attribute name>)
    For example, if in my context there is a node called testnode and under that if im having an attriburte called name, then do the following coding in the onSelect method of dropdown:
    wdContext.currentTestnodeElement().setName(wdContext.currentTestnodeElement().getName());
    Reply me if you have any issues
    Regards,
    Jithin

  • How can i add two values under the same property?

    Hi all,
    How can i add two values under the same property name in a
    prop list? For example:
    [question1: "item1","item2", question2: "item3","item4"]
    To be more precise, i am creating a property list and I want
    whenever a two values have the same property name to be added int
    he list under the same property. For example:
    gMyList.AddProp (#""&question&"" & x,
    member("input").text)
    question is a variable that is updated fromt he user's input.
    Now, whenever somethign like this happens:
    question = "question1"
    member("input").text = "five"
    question = "question1"
    member("input").text = "six"
    I want to output list to be:
    [question1: "five","six"] and so on
    Any ideas?

    Maybe you could make each property a list (so you have a
    property list full
    of lists), and add multiple values to the list held in a
    particular
    property?
    Cheers
    Richard Smith

  • How to add a value set in a custom form in query_find screen in R12 please

    Hello,I need to add a value set fileld found in the fnd_flex_value_set table in a query find screen . How do I proceed please ?
    Do I create a record group followed by a 'LOV' ?
    Thanks.

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Forum Home » Application Development in PL/SQL » Forms which you can get more quick response
    Regard
    Helios

  • Error in saving  large value with the data input query

    Hi,
       I  am  trying to save a large value in 0Quantity using the data input query into a realtime infocube
    e-g
    123456789.1234
    Error says too many digits.
    When i try to save 8 digits before the decimal point ,no error, if it is 9digits before decimal it's thro' error.
    Is there any limitation before the decimal.
    i know that 0Quantity can take 17 digits including the sign.
    Any suggestions.?
    regards,
    ram

    try budgetting in thousands in stead of units? (setting on query itself)
    D

  • Error occurred in deployment step 'add solution' value cannot be null Parameter name: g

    Hi!
    I have a SharePoint Server 2013 with latest updates. Worflow Manager 1.0 installed and configured correctly. The server has a website, site temblate is Reacods Center. This site is default. On the site I created a blank Document library "TestLib"
     If I create workflow in SharePoint Designer 2013, workflow works normally. Workflow set Title of element to "MyCustomTitle" and Write to History string "Done!".
    If I create Empty Solution in Visual Studio 2013, insert into solution Workflow and make same actions, my solution at deployment step fails with error:
    "error occurred in deployment step 'add solution' value cannot be null Parameter name: g"
    Please, help me to resolve this problem?
    Thanks!

    Hi,
    What if stop this service, then start it again, perform an iisreset? It will make the change applied to the whole farm.
    Also, you can check the ULS logs to see if there is any unexpected error occurs when deploying this solution.
    About how to check the ULS logs:
    http://blogs.technet.com/b/fesiro/archive/2013/11/11/sharepoint-logging-and-troubleshooting-using-ulsviewer.aspx
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • FM - Add new value to WRTTP Field

    Hi experts,
    I would like to add a new value to the table Value types.
    Currently this table contains values form 1- 3C.
    Could Anybody tell me how I 'd add a new value?.
    Thanks in advance,
    Greetings,
    Nachos

    Hi,
    I dont think you will be able to add more values to this field from configuration.
    If you check the data element and domain associated with this field (LTAK_SPEZI) in SE11. You can see that the value range for the domain has been defined there as  A and B only.
    So if you want to add a new value you can ask and ABAP/technical consulatnt to add new values to this Domain.
    However i am not sure it will be useful (unless you have a specific requirement and want to modify the standard programs) as the field is checked in different program (eg in inculde  LL03AF4V , LL03AF7F ) against these fixed values A and B.

  • How to add statiscal value in intrastat report for free of charge Pur Order

    Hi Experts,
    In Purchase Order if 'free of charge' check box is ticked then it wont allow us to have condition tab ( as there should not be any pricing for FOC) - SAP Standard functionality.
    But since I want to report this purchase order in Intrastat report, I need to have some statiscal value for this purchase order.
    Can somebody help me how I can add statistical Value to this PO in Intrastat Report ?
    I have already tried following option :
    1) I try to update through user exit but it is again coming as ZERO - Hence not allowing to update.
    2) VEFU-  Manually update the records - Not possible to edit Stats/Invoice Value of PO - Hence ruled out.
    3) Incompletion log - It is showing/ directing me to the PO in change mode but I cannot edit this as there is no condition tab - Hence not possible.
    Can somebody help me ?
    Thanks
    Arpit

    may be you can enetr it in PO header text and extract via z program

  • How can I add new value in a list box in a screen

    Hi All ,
        In transaction CRMD_BUS2000120 (CRM Server), I need to add one value to the list box. Already 4 values are coming. How can I add 1 more value.
      any suggestion is very appreciated.
    Thanks & Regards,
      Shekar.

    Hi,
    Check you have any exits to do that, if there are no exits then you can Copy the program and change the code.
    to add the extra value in list box, you just have to append the new line to the internal table which you are passing to VRM_SET_VALUES FM.
    some thing like this..
    wa_list-key  = sy-tabix.
    wa_list-text = itab1-vbeln.
    Append wa_list to It_list.
    v_name = 'P_VBELN'.
    call function 'VRM_SET_VALUES'
      exporting
        id                    = v_name
        values                = It_list
    EXCEPTIONS
       ID_ILLEGAL_NAME       = 1
       OTHERS                = 2
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Regads
    vijay

Maybe you are looking for

  • How to insert and edit equations with Math Type in IBA??

    Hi, I want to add  fractions in IBA with Math Type. Here is what i found: And here is the General Preferences Like you see, i can't select Insert and edit equations with Math Type, it's grey. How can i use Math Type? Tx

  • Reg: HR report category

    Hi,       How to create report category to configure my selection screen   criteria : PNP  HR report category _X22T60 screen layout fields:    key date          today          other keydate selection        personnel  number        Employee status   

  • Running my servlet on a network?

    I have created a java servlet that runs on TomCat 5. The web application performs various tasks to a Microsoft access database. When I run it on my local machine it works fine. Now I have to put it on a local server so it can be accessed within the d

  • Starting a file download upon command

    I'm new at this, so I'm hoping your brilliant minds can figure out the error that seems to be here. I'm trying to figure out why a file is not downloading upon command from a webpage. I did not write this code, and I'm thinking that it does not actua

  • How do I convert email to pdf in Office Outlook 2013?

    how do I convert email to pdf in Office Outlook 2013?