Product search: How to obtain more than 100 items

Hello experts,
I'm working from CRM 4.0 SP08
I find products from Tr. COMMPR01. Entering the citeria search, the screen only is able to display 100 items.
How can I change this maximum of 100 items to be displayed ?
Regards
Juan

hi...
goto t.code commpr01...
goto  Extras---> Settings.... in the general tab ....change the value  in the  Maximum Number of Search Hits
hope it works
kind regards
sandy

Similar Messages

  • Production Order - How to recieve more than one item in a single Prod .ord

    Hello everyone ,
            Hope and wish all is fine with u all ..
    Well .. My scenario is as follows ..
    While producing a particular item ( Item1) using the raw materials (say R1,R2 etc..) ..we also get another by-product ,(item2) which is also a revenue generating item.
    I want to know  , how do we do a receipt for this item ( item2 )  ...
    I did read the forum thread posted on 12/12/07 " Receiving By Products on basis of Production order "
    what I dont understand is , if we add it as a raw material in the BOM and then how or why do we issue it ..
    and if we are goin to issue it ,,then when how  will u update that inventory... I dont know if  scenario in the thread (backflush )  is the right way to do it ..
    Thanks in advance
    Best Regards,
    Arul...

    Arul,
    I beleive this is case of using the functionality of Disassembly Production order. Now your Item no. 1 is a BOM of say RM1RM2RM3. The goods receipt would be Item No.1. Now you can create a disassembly production order where in the by product would be say Item no. 2 which is as as per your information a revenue generating item hence to be marked as a sales item in the Item master.
    Please check this out and let me know.
    Nagesh.

  • How to insert more than 12 items using BDC for MB1C

    Hi,
    When we use LSMW for data transfer of MB1C transaction, more than 12 items can be  inserted in a document.
    But using BDC only 12 and below is possible, if the flat file system has more that 12 item, then the document is not created.
    How to insert more than 12 item in a document.
    Regards

    Hi Gow,
    I have uploaded the MB1C through a BDC and it is working fine for n no of items.
    Here is the code. May be this will be of your help.
    *& Report  ZMB1C
    report ZMB1C
           no standard page heading line-size 255.
    type-pools : slis.
    tables : t100.
    data: begin of record,
            MATNR(018),
            ERFMG(017),
            EXBWR(016),
          end of record.
    data : itab like table of record with header line.
    data : w_bdcdata type bdcdata.
    data : t_bdcdata type standard table of bdcdata initial size 1.
    data : messtab type standard table of bdcmsgcoll with header line.
    data : mstring(300).
    data : vf_index type i,
           no_lines type i,
           count type i value 0.
    data : v_bldat(20),
           v_budat(20).
    *Excel Sheet Data Upload Details
    data : vf_start_col type i value '1',      "start column
           vf_start_row type i value '2',      "start row
           vf_end_col   type i value '100',    "maximum column
           vf_end_row   type i value '10000'.  "maximum row
    */ Internal Table For Excel Data
    data : it_excel type  kcde_cells occurs 0 with header line.
    */ Field symbol
    field-symbols : <fs>.
    data : begin of it_messtab occurs 0,
           plant(10) type c,
           status(10) type c,
           message(90) type c,
           end of it_messtab.
    *Data for ALV display
    data : wa_fcat type slis_fieldcat_alv,
           colcnt type i.
    data : it_fieldcat type slis_t_fieldcat_alv,
           i_events type slis_t_event.
    data : l_title type sychar70.
    data : l_repid like sy-repid.
    * Selction Screen
    selection-screen begin of block b1 with frame title text-000.
    parameters : p_file like ibipparms-path obligatory,
                 p_mode like ctu_params-dismode default 'A'.
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-001.
    parameters : p_bldat like MKPF-BLDAT obligatory,
                 p_budat like MKPF-BUDAT obligatory,
                 p_bwart like RM07M-BWARTWA obligatory,
                 p_werks like RM07M-WERKS obligatory,
                 p_lgort like RM07M-LGORT obligatory.
    selection-screen end of block b2.
    * At Selction Screen
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
        EXPORTING
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
          field_name    = ''
        IMPORTING
          file_name     = p_file.
    *Start of Selection Event
    start-of-selection.
      call function 'KCD_EXCEL_OLE_TO_INT_CONVERT'
        EXPORTING
          filename                = p_file
          i_begin_col             = vf_start_col
          i_begin_row             = vf_start_row
          i_end_col               = vf_end_col
          i_end_row               = vf_end_row
        TABLES
          intern                  = it_excel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          others                  = 3.
      if sy-subrc <> 0.
    * MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    *         WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      if it_excel[] is initial.
        MESSAGE I000(ZCL_TCSABAP).
      else.
        sort it_excel by row col.
        loop at it_excel.
          move : it_excel-col to vf_index.
          assign component vf_index of structure itab to <fs>.
          move : it_excel-value to <fs>.
          at end of row.
            append itab.
            clear itab.
          endat.
        endloop.
      endif.
      if not itab[] is initial.
        DESCRIBE TABLE itab LINES no_lines.
        clear messtab.
        refresh messtab.
        CONCATENATE p_bldat+6(2) '.' p_bldat+4(2) '.' p_bldat(4) into v_bldat.
        CONCATENATE p_budat+6(2) '.' p_budat+4(2) '.' p_budat(4) into v_budat.
        perform map_rec.
        call transaction 'MB1C' using t_bdcdata mode p_mode update 'A'
        messages into messtab .
        clear t_bdcdata.
        refresh t_bdcdata.
        loop at messtab where msgtyp = 'E' or msgtyp = 'S' .
          select single * from t100 where sprsl = messtab-msgspra
                                    and   arbgb = messtab-msgid
                                    and   msgnr = messtab-msgnr.
          if sy-subrc = 0.
            mstring = t100-text.
            if mstring cs '&1'.
              replace '&1' with messtab-msgv1 into mstring.
              replace '&2' with messtab-msgv2 into mstring.
              replace '&3' with messtab-msgv3 into mstring.
              replace '&4' with messtab-msgv4 into mstring.
            else.
              replace '&' with messtab-msgv1 into mstring.
              replace '&' with messtab-msgv2 into mstring.
              replace '&' with messtab-msgv3 into mstring.
              replace '&' with messtab-msgv4 into mstring.
            endif.
            condense mstring.
            it_messtab-message = mstring(300).
            it_messtab-plant = p_werks.
            if messtab-msgtyp = 'E'.
              it_messtab-status = 'Error'.
            else.
              it_messtab-status = 'Success'.
            endif.
            append it_messtab.
            clear it_messtab.
          endif.
        endloop. "messtab
        if not it_messtab[] is initial.
          perform buildcatalog.
          perform display.
        endif.
      endif.
    *&      Form  Map_Rec
    *       text
    form  map_rec.
      perform bdc_dynpro      using 'SAPMM07M' '0400'.
      perform bdc_field       using 'BDC_CURSOR'
                                    'RM07M-WVERS3'.
      perform bdc_field       using 'BDC_OKCODE'
                                    'NPE'.
      perform bdc_field       using 'MKPF-BLDAT'
                                    v_bldat.
      perform bdc_field       using 'MKPF-BUDAT'
                                    v_budat.
      perform bdc_field       using 'RM07M-BWARTWA'
                                    p_bwart.
      perform bdc_field       using 'RM07M-WERKS'
                                    p_werks.
      perform bdc_field       using 'RM07M-LGORT'
                                    p_lgort.
      perform bdc_field       using 'XFULL'
      perform bdc_field       using 'RM07M-XNAPR'
                                    'X'.
      perform bdc_field       using 'RM07M-WVERS2'
      perform bdc_field       using 'RM07M-WVERS3'
                                    'X'.
      loop at itab.
        count = count + 1.
        perform bdc_dynpro      using 'SAPMM07M' '0410'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'MSEG-EXBWR'.
        if count <> no_lines.
          perform bdc_field       using 'BDC_OKCODE'
                                        '=NPE'.
        elseif count = no_lines.
          perform bdc_field       using 'BDC_OKCODE'
                                        '=BU'.
        endif.
        perform bdc_field       using 'MSEG-MATNR'
                                      itab-MATNR.
        perform bdc_field       using 'MSEG-ERFMG'
                                      itab-ERFMG.
        perform bdc_field       using 'MSEG-EXBWR'
                                      itab-EXBWR.
      endloop. "itab
    endform. "Map_Rec
    **      Form  BDC_DYNPRO
    form bdc_dynpro using program dynpro.
      clear w_bdcdata.
      w_bdcdata-program  = program.
      w_bdcdata-dynpro   = dynpro.
      w_bdcdata-dynbegin = 'X'.
      append w_bdcdata to t_bdcdata.
    endform.                    "bdc_dynpro
    **      Form  BDC_FIELD
    form bdc_field using fnam fval.
      if fval <> space.
        clear w_bdcdata.
        w_bdcdata-fnam = fnam.
        w_bdcdata-fval = fval.
        append w_bdcdata to t_bdcdata.
      else.
        clear w_bdcdata.
        w_bdcdata-fnam = fnam.
        w_bdcdata-fval = fval.
        append w_bdcdata to t_bdcdata.
      endif.
    endform.                    "bdc_field
    *       FORM buildcatalog                                             *
    form buildcatalog.
      clear wa_fcat.
      clear it_fieldcat.
      colcnt = colcnt + 1.
      wa_fcat-col_pos      = colcnt.
      wa_fcat-fieldname    = 'PLANT'.
      wa_fcat-tabname      = it_messtab.
      wa_fcat-seltext_l    = 'PLANT'.
      wa_fcat-key          = 'X'.
      wa_fcat-outputlen  = '10'.
      append wa_fcat to it_fieldcat.
      clear wa_fcat.
      colcnt = colcnt + 1.
      wa_fcat-col_pos      = colcnt.
      wa_fcat-fieldname    = 'STATUS'.
      wa_fcat-tabname      = it_messtab.
      wa_fcat-seltext_l    = 'STATUS'.
      wa_fcat-outputlen  = '10'.
      append wa_fcat to it_fieldcat.
      clear wa_fcat.
      colcnt = colcnt + 1.
      wa_fcat-col_pos      = colcnt.
      wa_fcat-fieldname    = 'MESSAGE'.
      wa_fcat-tabname      = it_messtab.
      wa_fcat-seltext_l    = 'Message'.
      wa_fcat-outputlen  = '90'.
      append wa_fcat to it_fieldcat.
    endform.                    "buildcatalog
    *       FORM display                                                  *
    form display.
      l_title = text-002.
      l_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = l_repid
          i_grid_title       = l_title
          it_fieldcat        = it_fieldcat
          it_events          = i_events[]
        TABLES
          t_outtab           = it_messtab
        EXCEPTIONS
          program_error      = 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.
    endform.                    "display
    Regards,
    Amit

  • More than 100 items in Form or Page

    Can Apex allow more than 100 items in a page? I am getting message like
    'Item count exceeds maximum of 100'.
    Even data entered in the form for extra items over 100 is not posted to database.
    Pl help or suggest any workaround.
    I am using HTMLDB 2.0

    Example:
    1. Create the test data
    CREATE TABLE "TEST_TABLE1"
    ("KEY1" NUMBER(10) NOT NULL ,
    "DESC" VARCHAR2(24) ,
    "OPTION1" VARCHAR2(10) ,
    "OPTION2" VARCHAR2(10) ,
    "OPTION3" VARCHAR2(10) ,
    "OPTION4" VARCHAR2(10) ,
    "OPTION5" VARCHAR2(10) ,
    "OPTION6" VARCHAR2(10) ,
    "OPTION7" VARCHAR2(10) ,
    "OPTION8" VARCHAR2(10) ,
    "OPTION9" VARCHAR2(10) ,
    "OPTION10" VARCHAR2(10) ,
    "OPTION11" VARCHAR2(10) ) ;
    INSERT INTO"TEST_TABLE1"
    VALUES (1,'Row 1','Red','Blue','Green','Yellow','Orange','Black','Ivory','Purple','White','Lime','Gray');
    INSERT INTO"TEST_TABLE1"
    VALUES (2,'Row 2','Blue','Green','Yellow','Orange','Black','Ivory','Purple','White','Lime','Gray','Red');
    INSERT INTO"TEST_TABLE1"
    VALUES (3,'Row 3','Green','Yellow','Orange','Black','Ivory','Purple','White','Lime','Gray','Red','Blue');
    INSERT INTO"TEST_TABLE1"
    VALUES (4,'Row 4','Yellow','Orange','Black','Ivory','Purple','White','Lime','Gray','Red','Blue','Green');
    INSERT INTO"TEST_TABLE1"
    VALUES (5,'Row 5','Orange','Black','Ivory','Purple','White','Lime','Gray','Red','Blue','Green','Yellow');
    INSERT INTO"TEST_TABLE1"
    VALUES (6,'Row 6','Black','Ivory','Purple','White','Lime','Gray','Red','Blue','Green','Yellow','Orange');
    INSERT INTO"TEST_TABLE1"
    VALUES (7,'Row 7','Ivory','Purple','White','Lime','Gray','Red','Blue','Green','Yellow','Orange','Black');
    INSERT INTO"TEST_TABLE1"
    VALUES (8,'Row 8','Purple','White','Lime','Gray','Red','Blue','Green','Yellow','Orange','Black','Ivory');
    INSERT INTO"TEST_TABLE1"
    VALUES (9,'Row 9','White','Lime','Gray','Red','Blue','Green','Yellow','Orange','Black','Ivory','Purple');
    INSERT INTO"TEST_TABLE1"
    VALUES (10,'Row 10','Lime','Gray','Red','Blue','Green','Yellow','Orange','Black','Ivory','Purple','White');
    2. Create a blank page.
    3. Create a report region with the following query.
    select
    "DESC",
    htmldb_item.hidden(1,KEY1) Key1,
    htmldb_item.text(2,OPTION1,10,10) OPTION1,
    htmldb_item.text(3,OPTION2,10,10) OPTION2,
    htmldb_item.text(4,OPTION3,10,10) OPTION3,
    htmldb_item.text(5,OPTION4,10,10) OPTION4,
    htmldb_item.text(6,OPTION5,10,10) OPTION5,
    htmldb_item.text(7,OPTION6,10,10) OPTION6,
    htmldb_item.text(8,OPTION7,10,10) OPTION7,
    htmldb_item.text(9,OPTION8,10,10) OPTION8,
    htmldb_item.text(10,OPTION9,10,10) OPTION9,
    htmldb_item.text(11,OPTION10,10,10) OPTION10,
    htmldb_item.text(12,OPTION11,10,10) OPTION11
    from test_table1
    4. create a save button which branches to the same page
    5. Create a page process that executes the following SQL when the button is pressed:
    -- update Record
    for i in 1..htmldb_application.g_f01.count
    loop
    update test_table1
    set option1 = replace(htmldb_application.g_f02(i),'%'||'null%',NULL),
    option2 = replace(htmldb_application.g_f03(i),'%'||'null%',NULL),
    option3 = replace(htmldb_application.g_f04(i),'%'||'null%',NULL),
    option4 = replace(htmldb_application.g_f05(i),'%'||'null%',NULL),
    option5 = replace(htmldb_application.g_f06(i),'%'||'null%',NULL),
    option6 = replace(htmldb_application.g_f07(i),'%'||'null%',NULL),
    option7 = replace(htmldb_application.g_f08(i),'%'||'null%',NULL),
    option8 = replace(htmldb_application.g_f09(i),'%'||'null%',NULL),
    option9 = replace(htmldb_application.g_f10(i),'%'||'null%',NULL),
    option10 = replace(htmldb_application.g_f11(i),'%'||'null%',NULL)
    option11 = replace(htmldb_application.g_f12(i),'%'||'null%',NULL)
    where key1 = htmldb_application.g_f01(i);
    end loop;
    6. Run the page (This page has 110 items)
    If you have a table with more than 100 fields, you can try something like this:
    Select 1, apex_item.text(1,field1,10,10),
    apex_item.text(2,field2,10,10),
    union all
    Select 2, apex_item.text(1,field11,10,10),
    apex_item.text(2,field12,10,10),
    , field2, field3, field4, field5

  • More than 100 items gives "/apex/www_flow.accept was not found" error

    Hi,
    If I have more than 100 items on a page, it is giving me "Requested URL /apex/www_flow.accept was not found on this server" while creating or saving the record.
    The moment I delete the extra items it starts working fine.
    Is there any limitation that we can't have more than 100 items on one page ?
    Any pointers will be appreciated.
    Thanks,
    Ashish
    http://www.dbcon.com.sg

    Well I just answered my own question.
    I got the error (it says that the maximum of 100 has been reached at the bottom of the items list).
    So I removed the two new regions that put me over the top of the 100, and it worked again.
    I also have numerous Buttons on this page but they were not in the equation above.
    So Buttons are not counted in the 100 item max.
    Thanks,

  • Can a form have more than 100 items

    Hi,
    Can we have more that 100 items in a form? I have to create around 200 items in a form. Is that possible? if s please guide me how, as I am not able to create more than 110.
    Regards,
    Pallavi

    Search the forum first!
    Exceeding 100 items
    regards,
    Roddy

  • How to pass more than 3 Items in link of report attribute?

    I have a report with edit link.
    After user click link, then go to next page. I want to pass more than 3 items in this link, item 1 name=xxx and value=#xxx#.
    How can I do this?
    Thanks.

    Why wouldn't you pass item values through links...is it not why they were created?1. Item values may contain characters that are not URL safe in general ('#') or in APEX (':'), causing the link to fail.
    2. Recognisable item values that are visible in the URL are a security issue, and invite URL tampering that in a poorly designed and implemented system may allow unauthorised access to data.
    3. There are limits on the length of URL APEX, user agents and servers are capable of handling.
    4. Lots of long URLs in links drives up page weight and bandwidth usage.
    5. General housekeeping problems and maintainenance issues: think about going backwards and forwards in single-row APEX URL text item showing 60 chars when making changes to a 2000-character URL.
    Best practice when passing parameters through a URL is to use as few as possible: preferably single, unique, "meaningless" sequence- or sys_guid-generated references.

  • How to import more than 2k items from Excel(2010) to SharePoint 2010 List?

    Hi,
    I am getting error while importing more than 2k items from Excel to SharePoint List.
    Need solution!!

    Hi.
    Try to use the Import Spreadsheet list template to import your data.
    http://www.dummies.com/how-to/content/import-a-spreadsheet-as-a-list-in-sharepoint-2010.html
    Regards,
    Bubu
    http://zsvipullo.blogspot.it
    Please mark my answer if it helped you, I would greatly appreciate it.

  • How to export more than 100 points from waveform to excel

    Hi everyone. Novice here. 
    I'm pretty sure other people had my problem, but I don't know how to word it... and can't find a solution for it... Maybe I just don't understand Labview enough to know what's going on.
    Here's what I'm doing: I have a waveform, and I'm trying to save the data to the spreadsheet.
    Problem: The cap is at 100 data plots (only what's shown on the graph). In other words, I only get data for what the graph holds at the present moment.
    Want: I want more than that - EVERYTHING. If it begins from 0s to 50s, I want all the points (10ms increments, which is done already) on the excel file.
    Can you guys help me? How do I get suck that history out of the graph?
    I attached my labview file (a really simple one), so you guys know where I am.
    Thanks guys!
    Solved!
    Go to Solution.
    Attachments:
    Save to spreadsheet.vi ‏17 KB

    If you are not in a hurry, another option is to save the data as a delimited text file. This will allow you to open it in almost any analysis program, since a delimited text file is the universal file type. A delimited text file is one in which data is stored in columns, separated by delimiters, and rows, separated by lines of text. The delimiter is usually a tab character (file extension .txt), but a comma is common in some industries (file extension .csv). Note that using a comma separator can get you into trouble if using European numbering styles, which use the comma instead of the period as the decimal indicator.
    LabVIEW has several VIs that make this easy for you.
    If you have a single set of homogeneous data and are only writing once (NOT in a loop), then use Write to Spreadsheet File.vi. This VI formats your data into rows and columns, opens the file, writes the data, then closes the file. Since it opens and closes the file, it is not suitable for use in a loop.
    If you are writing homogeneous data in a loop, use the Array to Spreadsheet String function at each iteration to format your array of data to rows and columns, then write using either of the file write primitives.
    If you have inhomogeneous data, such as a timestamp and a few doubles, format the data on a line by line basis and write to disk. The attached example, SImpleLowLevelWriteSpreadsheetFile.vi shows how to do this.
    If you need more speed, you can buffer your data so the blocks of data you send to disk are more optimized. This is a bit more complex, but the attached example, BufferedLowLevelWriteSpreadsheetFile.vi shows how to do it. This will usually give you at least 2X and could be 10X or more speed improvement.
    Have fun!
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    SimpleLowLevelWriteSpreadsheetFile.vi ‏22 KB
    BufferedLowLevelWriteSpreadsheetFile.vi ‏34 KB

  • Advanced Search - How to display more than 4 criteria items on startup

    In standard behaviour, only the first 4 criteria will be display on the advanced panel and other criteria should be manually added from the LOV. Is there any way to display more then 4 items on startup?
    Someone suggest to use setDisplayedCriteriaCount, but someone tired without success.
    Regards
    Lawrence

    Hi,
    We had a similar requirement, but could not figure out the solution as per need, as its not suited to advanced region and controller code to achieve it seemed very complex as there was only one method to pin point which could help in adding new item (setDisplayedCriteriaCount), and it was also for oracle's internal use.(However we tried it and IT DID NOT WORKED.!! smiling.).(It does not allow more than 4 search items by default).
    However the option you can put is to select the top 4 fields which they want in the search by default (then you need to modify the seeded page, which we did or reorder in controller).
    Alternatively you may like to exploer options to programmatically generate the "ADD CRITERIA" event and handle it.(However this solution seemed very complex to us).
    Please share your findings if you find any workaround.

  • SSM 7 - How to create more than 100 standard KPIs on admin interface?

    Good day all,
    Has anybody successfully increased the the number of standard kpis that can be created in the Admin inteface to greater than 100 standard kpis?
    I have followed the instructions on page 39 of  the 'Server configuration guide for SAP Strategy Management for sp 2 or higher' pdf to modify the
    kpi limits but I still get a popup on the Admin interface telling me that only 100 standard kpis can be created when I try to add the 101th kpi.
    btw the procedure in the pdf mentioned above refers to changing the scorecard.pro file but in this file the wording for a kpi i.e.
    '&$KP99PARAM0STD' is not the found but the wording "P" is use instead of "PARAM". In the file jscorecard.pro the wording "PARAM" is used.
    I have adding 100 extra parameters to these files. But I still get the restrictions of only creating 100 kpis as mentioned above.
    Please assist in this matter.
    Thanks in advance,
    T

    Hi Taariq,
    In the same server config guide, please check the section about Modifying the Objective Limits. The parameter you have to change here will influence both the Objective and KPI limits. Unfortunately this is not stated in that document yet...
    So in addition to the steps you have already implemented, try changing this property!
    Best regards,
    Ricardo Vieira

  • How to order more than 1 item from iphoto?

    I just created 3 calendars and 3 photobooks and want to order all of them but it seems like I have to order them one by one and also pay for the shipment separately = 6 times.. is there anyway I could make ONE order for all my items at the same time?
    /Jonna

    Welcome to the Apple Discussions.
    Can I combine my orders to save on shipping?
    Apple does not have a way to combine orders. Due to the highly-automated nature of our system it is not possible to make any changes to an order once it has been placed. (You can cancel you order within 90 minutes of placing it; read our Cancellation Policy for more information).
    That's from http://www.apple.com/support/photoservices/ordering_options/
    Regards
    TD

  • Why Can't we Have more than 100 items in a page???

    hi,
    I have a page with 120 text fields , the page does display the 120 text fields but if i try inserting only items till 100th text field is stored in the database the remaining 20 i.e, p101 to p120 text field values are not inserted in to the database,
    is this a constraint because the page while editing shows "item exceeds a maximun of 100", if so wat are the work arounds for it...
    thanks in advance

    See Scott's last response on
    Re: v1.6 "Item count exceeds maximum of 100" is still in law?

  • How to validate more than one item.

    Hi guys,
    I cannot create a composite primary key. I need to validate three items in a form at once ( P1_Project , P1_unit_type, P1_unit_number.)
    if in the DB there is a record containing identical data ( project , unit_number, unit_type), then the validation should prevent me from creating the new record.
    I hope my question is clear.
    Regards,
    Fateh

    Fateh,
    Unless you are supporting old data that prevents you from creating a unique index on these columns, I would do so to make sure you do not get bad data. To control this in the application you want to make a not exists validation which resembles the following:
    select 1
      from <table_name>
    where project     = :PXX_PROJECT
       and unit_number = :PXX_UNIT_NUMBER
       and unit_type   = :PXX_UNIT_TYPEThe validation should be not exists because in order to pass the validation a record cannot contain the same values for these columns.
    Cheers,
    Tyson Jouglet

  • How can I see more than 100 users when adding users to a node?

    When adding new users through the User Management interface, only the
    first 100 entries are listed. How do I increase the number of entries
    so I can see the next hundred (or more) users? Is this done via the server
    configuration parameter maxsearchresult?
    <P>
    The GUI Add User to Node option was meant for infrequent adds in smaller
    environments. In large deployments (more than 100 user adds at a time), you
    should be using the command line script "unidsattach". See the Administrators
    Guide for more details on the command.
    <p>
    The parameter, maxsearchresult, is meant to limit the number of users that can
    be returned on a search request by the calendar client. For example, if you have
    1000's of calendar users and someone tries to search for all of them, this
    parameter will make sure that the user is not left waiting a long time for
    results.

    In Settings > Notification Center, try turning "on" all the six buttons under "Today View".  Also turn "on" the top two buttons under "Access on Lock Screen".  Doing that should show you "Tomorrow" at the bottom of Noticiation Center.

Maybe you are looking for

  • How do you get OS X 10.9

    I currently have 10.8.5 OS X on my new macbook air but I need 10.9 to get pages. When I click on updates there is none. How do I get OS X 10.9 so that I can get pages for my mac? If there is no way is there another way I can get pages?

  • Itunes stops working when copying apps during Sync

    Hi I am using Itunes 12.01.26 on a Windows 7 PC My library is saved on a nas server and the network drive is mapped. I have an ipod 5 and Iphone 5s Up until october this configuration has works a treat however since about October I have had difficult

  • Can't install a new version of iTunes

    I upragded my iPod, but now I can't install a new version of iTunes. Always when I'm trying to install it, it says I should write somekind of iTunes.msi path. So what should I do? And sorry about my bad english

  • Performance / stability issues with BDB 3.3.62 while checkpointing

    Hi, first of all: we use BDB 3.2 for more than a year within our application and we never had any performance or stability issues. Now we are about to release a new version of our software with BDB 3.3 and we found some problems during our release te

  • Mac OS X 10.7.3 mail doesn't send jpg attachments?

    First thing: I can't send a jpeg attachment with Mail. It always arrives in th body of the text and the receiver can do nothing with it. Another thing: Also when I want to forward an email, very often the attachments doesn't follow, or even the text