How to increse max limit 100 for an assignment block

Hi,
In the accounts overview, we have an assignment block for service contracts. A particular BP has more than 100 contracts. but this assignment block displays only 100 contracts. Need to increase this limit.
Kindly suggest a solution. Let me know if you need more details.
System is CRM 5.2
Regards,
Vinay Sah

Hi,
@Gangadhar - Great coincidence. i just did what you told and was about to share the result with you guys when i saw your post. Actually the method which you have mentioned is called when you search for a contract from the search screen. anyways i appreciate your efforts for me. thanks a lot.
@Carl - Thanks for the hint you gave me which helped to find the root cause.
Problem lies in class CL_BUPA_IL_ONE_ORDER_COMP, method Read. At line number 52, a call is made to method get_result_ of class CL_CRM_Q1O_SEARCH. In this call, 100 has been harcoded for importing parameter iv_max_hits. Since this is a generic method for all BT, can't change this.
I guess SAP could have thought of some better solution than limiting this to 100, like asking the user via a popup or informing the user via a msg that more than 100 docs exist and you can see them by expanding the assignment block. I know this can be complex but after all they are SAP guys, who have built this such a complex system, nothing is impossible for them.
I don't know how to resolve this. Maybe i'll open an OSS message to SAP and ask them.
Thank you guys for all your help.
Regards,
Vinay Sah

Similar Messages

  • Max limit reached for tablespace in SAP BW

    Hi Friends,
    We are having one SAP BW system on DB6, AIX...in that the max limit for tablespabe is 512GB, which is going to be exceeded soon...
    So it is planned to move some tables from tablespaces of aggregates i.e. FACTI, FACTD into new tablespaces...
    How can this be achieved?
    Thanks & Regards,
    Kunal Patel.

    He Kunal,
    As mentioned by Jens, you can use the DB2 9's Large RIDS (Larger Record Identifiers) support which significantly increases the size limit for table space.  SAP has a tools to do the conversion for you - OSS Note 11058956 (ABAP tool for activating large RIDs).
    Regards,
    -Beck

  • How do you remove blank lines from an assignment block?.

    I have used the UI enhancement tool to add fields to an assignment block, but I've ended up with a blank line between the fields. How can I remove this?. There's an option to add new lines and fields but not remove them.
    Anyone.
    Jason

    Many thanks, that worked fine. I did not think of doing that, but I can see why there would not be a remove line option.
    Regards
    Jas

  • How to increase max file size for uploading

    hi i have a form that uploads a file and save it in a database..my problem is when it exceeds 2MB it doesnt save in my database. the page doesnt show any error also.
    i use multipartrequest..here is multipartrequest...
    MultipartRequest multi= new MultipartRequest(request,"/var/www/myuploads/",1000*1024, new com.oreilly.servlet.multipart.DefaultFileRenamePolicy());my application server in tomcat, and my database in mysql..
    do i need to set something in tomcat to increase the file size that i can upload?
    i need help asap..thanks in advance.

    tyr to split ur file into separated files
    and then upload them,
    it is preferable not to upload a big sized file

  • How to get NEXT free NUMBER for EXTERNALLY assigned RANGEs - SNUM, MD91 ?

    Hi Experts,
    I know that, with the FM - NUMBER_GET_NEXT_V1, I can get the next # for most document #s.
    But, this FM is ONLY applicable to INTERNAL NUMBER RANGE.
    1 - But., am working with EXTERNAL NUMBER RANGE, so looking forward for a FM/BAPI, which gives me next free # for use.
    2 - If nothing is there, How to get it done? Is directly grabbing the latest # from the table/data base?
    3 - Any other ideas?
    thanq

    For an example
    Look at Attributes for SAP function ' L_TO_CONFIRM_SU' . Observe the radio button 'REmote-enabled function module - 2nd one.
    Then you can see under source code it calls other SAP FMs. This is where you call the SAP FM you found.
    A remote enabled fm requires a Logical destination when called from a program- you might already know that.

  • How do I change the setting for showing popup blocker

    I accidentally hit the button that said to not show the popup blocker information any more, and now I have no idea how to get it back. I need to be able to see the options available.

    # Type about:config in the address bar and press Enter.
    # Agree to the warning.
    # In the Filter: field, paste: '''browser.popups.showPopupBlocker'''
    # In the search results, right-click '''browser.popups.showPopupBlocker '''and choose "Reset"

  • 2LIS_06_INV Field - RBCO- COBL_NR (Four-character running number for account assignment block)

    Hi,
    What is the significance of COBL_NR from RBCO (table) in the extractor.
    How the data processed in RBCO- COBL_NR .
    As i have issue with RBCO- COBL_NR field in 2LIS_06_INV extractor.
    Invoice Verification - SAP Documentation
    Thanks in advance

    If you check with FI consultant you may get what you need.
    other wise at RSA3 you can run your data source with debug option.
    Actually what problem your facing with your data source?
    data soure was not pulling data for fields COBL_NR?

  • How to delete multiple empty lines in item assignment block in WebUI

    Hi Experts,
       When i am reading 'BTAdminI' context node data, I am getting empty lines along with data. I can able to delete only one empty lines when its executing second empty line its failing in loop. Can you suggest me how can i delete multiple empty lines. I am using below code.
    DATA: lr_entity1           TYPE REF TO cl_crm_bol_entity,
            lr_current          TYPE REF TO if_bol_bo_property_access,
            lr_iterator         TYPE REF TO if_bol_bo_col_iterator,
            lv_strukname        TYPE strukname,
            dref                TYPE REF TO data,
            lv_thtmlb_tableview TYPE REF TO cl_thtmlb_table_view,
            lr_cn               TYPE REF TO cl_bsp_wd_context_node_tv,
            cr_mixed_node_tv    TYPE REF TO cl_bsp_wd_mixed_node.
        FIELD-SYMBOLS: <fs_line_structure> TYPE data.
        lr_iterator = me->typed_context->btadmini->collection_wrapper->get_iterator( ).
        TRY.
            lr_current = lr_iterator->get_first( ).
          CATCH cx_root.
        ENDTRY.
        WHILE lr_current IS BOUND.
          lr_entity1 ?= lr_current.
          CHECK lr_entity1 IS BOUND.
          lr_entity1->get_attr_struct_name( RECEIVING rv_result = lv_strukname ).
          IF lv_strukname IS NOT INITIAL.
            CREATE DATA dref TYPE (lv_strukname).
            ASSIGN dref->* TO <fs_line_structure>.
            IF <fs_line_structure> IS ASSIGNED.
              lr_current->get_properties( IMPORTING es_attributes = <fs_line_structure> ).
              IF <fs_line_structure> IS INITIAL.
                me->typed_context->btadmini->collection_wrapper->remove( lr_current ).
                EXIT.
              ENDIF.
            ENDIF.
          ENDIF.
          TRY.
              lr_current = lr_iterator->get_next( ).
            CATCH cx_root.
          ENDTRY.
        ENDWHILE.

    Hi Nitish,
    Try below code instead of your code,
    Data:
    lt_empty_lines  TYPE TABLE OF REF TO cl_crm_bol_entity,
    lr_entity TYPE REF TO cl_crm_bol_entity.
    After getting collection from BTadmini use the below code.
    lr_iterator ?= lr_coll->get_iterator( ).
        lr_entity ?= lr_iterator->get_first( ).
        WHILE lr_entity IS BOUND.
          IF lr_entity->is_send_active( ) EQ abap_false.
            APPEND lr_entity TO lt_empty_lines.
          ENDIF.
          lr_entity ?= lr_iterator->get_next( ).
        ENDWHILE.
        LOOP AT lt_empty_lines INTO lr_entity.
          typed_context->btadmini->collection_wrapper->remove( lr_entity ).
          lr_entity->delete( ).
        ENDLOOP.
    Best Regards,
    Dharmakasi.

  • Error in creating a view for an assignment block

    Hello All,
    I am trying to create an assignment block in web UI using links below.
    http://weblogs.sdn.sap.com/cs/mobile/view/wlg/21034?x-topic=89  -- to create a table and corresponding BOL entity.
    http://wiki.sdn.sap.com/wiki/display/CRM/CRMWebUITechnical-CreatingTableViewInWebUI u2013 to create an assignment block
    When I try to create an assignment block in CPG_MAIN, I am unable to find my zorder_so BOL entity. Any pointers would be of great help.
    Edited by: chandrakantklk on Jul 21, 2011 10:20 AM

    Unfortunately I did not see anything in this note that would help it appeared to be talking about IM and QM. 
    I do agree there is some inconsistencies and I am just not sure where....None of this makes any sense as I said one day it will work and then the next time you try it, it gives the error message....I am so at a lost at this point...

  • How to make an assignment block with valuenode editable?

    Hello All,
    I have read the blog [How to display a z-table in an assignment block|http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock]. This all went fine. Now I have a question if it is possible to make this table editable and if so, how?
    The problem is, it is valuenode for a custom z-table, without a GUID as key. (just partner number) So making a Simple Object of my z-table doesn't work, because the default class works with GUID as key. But I also can't seem to find if it is possible to make a valuenode editable.
    I also read these blogs, but they didn't do the trick for me either:
    [CRM Web UI Technical - Creating Table View In Web UI|http://wiki.sdn.sap.com/wiki/display/sandbox/CRMWebUITechnical-CreatingTableViewInWebUI]
    [Create a Z BOL Object Part 1|http://wiki.sdn.sap.com/wiki/display/sandbox/CRMWebUITechnical-CreatingTableViewInWebUI]
    I am silently hoping that there is an easy way of making my current assignment block editable by implementing a simple Save method or something similar. I do not prefer to have to recreate my view and stuff.
    Anyone an idea?
    Regards,
    Martijn.

    Hi Martijn,
    Try this code..
    If the main entity(assuming one order entity) is editable, set the view to editable.
    DATA:      lr_entity       TYPE REF TO cl_crm_bol_entity.
      lr_entity ?= me->typed_context->btadminh->collection_wrapper->get_current( ).
      CHECK lr_entity IS BOUND.
      if lr_entity->lock( ) = abap_true.
        *me->view_group_context->set_view_editable( me ).*
      endif.
    Check this therad for setting the view context.
    Edit the order
    Hope this helps..
    Cheers,
    Sumit Mittal

  • How to read Assignment blocks mode options Lazy, Direct etc

    Hi,
    I need to read the Assignment block mode settings made in configuration i.e, Direct, Lazy etc in a program. Can some one help me out how to get these values for Account assignment block. Based on these modes, i need to programatically control and decide some rules.
    Any pointers on this will be very helpful.
    Thanks,
    Udaya

    Hi Udaya,
    This is done in class CL_BSP_WD_OVW_VIEWSET, method DO_INIT_CONFIG
    * get configuration in xml language
      me->configuration_descr->get_config_data(
        RECEIVING  rv_result = lv_config_xml
        EXCEPTIONS foreign_lock = 1
                   config_not_found = 2 ).
    * transform configuration xml into table definition
      CALL METHOD cl_bsp_dlc_config_ovw=>conv_xml_to_data(
                  EXPORTING iv_xml = lv_config_xml
                  IMPORTING rt_data = ls_assgnm_xml ).
      lt_assignm = ls_assgnm_xml-views.
    * conversion of the load options (direct,expanded=abap_true and lazy,collapsed=abap_false)
      LOOP AT lt_assignm ASSIGNING <f>.
          <f>-traymode = XXX
    Possible values (XXX in the code) are:
    CL_BSP_WD_OVW_VIEWSET=>C_DIRECTMODE_ID
    CL_BSP_WD_OVW_VIEWSET=>C_LAZYMODE_ID
    CL_BSP_WD_OVW_VIEWSET=>C_HIDEMODE_ID
    Regards,
    Fabian

  • How to view Knowledge Article Assignment Block in Service Confirmation

    Hi dudes,
    CRM 7.0 introduces Knowledge Articles, which can be used in Service Orders, Repairs, etc, they have an assignment block for this purpose. Unfortunately, it is not available for Service Confirmations.
    I'm not sure if it is possible to reuse the asignment block in this case. I found an interesting WIKI entry which tells how to display a z table in an assignment block. There is also information about how to assing a view to a component on building blocks config guide C04.
    So I decided to follow those indications, and try to reuse it.  It looked (apparently) easy (at least with my poor knowledge, since I'm new on this).
    From the service order (BT116H_SRVO), I wrote down the technical data of the KA assignment block:
          COMPONENT: GSDOCFLOW
          VIEW: HdrDocFlowEF
    I want to add it to the service confirmation (BT117H_SRVC). So I went to the Runtime Repository Editor:
    - Added View in ViewSet BT117H_SRVC/OVViewSet with component: GSDOCFLOW and View: HdrDocFlowEF.
    - Saved.
    I went back to the Component Structure Browser, View BT117H_SRVC/OVViewSet, Configuration tab, but the new assignment block is not available!!!
    The C04 guide creates a component usage before adding the view, which I don´t know if it is needed in this case. Checking BT116H_SRVO, there is a component usage for KA!!! but I tried to replicate it and I got to the same point.
    Maybe it is not as simple as I thought. I would really appreciate any advice on this issue
    At least, please let me know if it is feasible.
    thanks a lot!
    Pablo
    Edited by: Pablo Rodríguez Mateos on Sep 8, 2009 9:12 AM
    Edited by: Pablo Rodríguez Mateos on Sep 8, 2009 11:24 AM

    Thank you Enrique. I'll keep investigating. As soon as I reach a conclusion I'll let you know. I give you 2 points for the effort.
    Regards.
    Pablo

  • How to make an assignment block in an overview page read only

    Hi Experts,
    We have the following requirement:
    In Campaign overview page we need to make the Partner and Product assignment block read only.
    Can this be achieved through coding or through configuration?
    Please give detail steps for the appropriate approach.
    Thanks in advance.
    Regards,
    Sayan

    Hi Leon,
    Is there any authorization group which can be customized to take care of this situation?
    For Product Assignment block in DO_PREPARE_OUTPUT method of class CL_CPGOE_AB_OVELPRODUCTS_IMPL (Component : CPGOE_ABLOCKS :: View : OVELProducts) it is checking some authority. Any pointers where those authorities are maintained will be helpful.
    Creating a new configuration is not helping as the views are 'Table View'.
    We are looking for an approach which will avoid coding or involve minimum coding.
    Regards,
    Sayan

  • How to change the Max limit in the Ring

     Hi all,  
     I am try to use a Ring to set up 4 different of Freq form 18Hhz to 20Ghz but the ring Max limit only 65535. How could I change the max limit? Or any way we could set up 4 diffirence Freq number for user select any one they want to use. 
    Thank you
    Solved!
    Go to Solution.

    you could use a case structure and wire your ring control to it and then send the frequency you from the case structure
    Harold Timmis
    [email protected]
    Orlando,Fl
    *Kudos always welcome

  • How to increase the the max limit column in pivot view in BIEE 11G?

    Hi Experts,
    How to increase the the max limit column in pivot view in BIEE 11G?
    When the number of column exceed 256 in pivot view, it will generate the following error message as below:
    Exceeded configured maximum number of allowed output prompts, sections, rows, or columns.
    Error Details
    Error Codes: IRVLJWTA:OI2DL65P
    Location: saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool.socketrpcserver, saw.threads
    SQL Issued: 13678~vid1ptgt0v5ubh39gesnauuhl6
    For example:
    ----------------Day
    Country-----20120101---20120102---..........20121231
    China--------10000---------20000----......

    Try increasing the Max Rows in Instanceconfig.xml
    Path:-Middleware\instances\instance1\bifoundation\OracleBIPresentationServices\instanceconfig.xml
    <ServerInstance>
    <Views>
    <Pivot>
    <MaxVisibleColumns>300</MaxVisibleColumns>
    <MaxVisiblePages>1000</MaxVisiblePages>
    <MaxVisibleRows>500</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>30</DefaultRowsDisplayed>
    </Pivot>
    </Views>
    </ServerInstance>
    Try adding this in the config file and restart the services.
    Mark as correct if it is helpful.
    Thanks.

Maybe you are looking for