CIC0 Screen enhancement.

Hi SDNites,
I have a requirement wherein I have to add a field RETSERVICEORDER to the CIC0 screen. The requirement says Fetch Business Partners based on Retailer Service Order.
If the retailer service order is entered select the service order (AUFNR), object number (OBJNR) associated with the retialer Id from table AUFK. With the OBJNR go to table IHPA and get all the partners (PARNR) having partner function (PARVW) ' Sold to Party' SP. Disply these multiple partners in the Hit List Area.
Could someone please suggest how this can be implemented. How can I display the results in the Hit List Area which is on the left hand bottom corner of the CIC0 screen.
I tried debugging but I cant find where the control navigates. Could someone please help.
Regards,
Nehal.

Hi Abdul,
I have not given an option on the CIC0 screen. Actually the business requirement was that there be an additional field for Retailer Service Order be entered on the screen wherein the User will enter the Retailer Service Order for a particular POD and BUsiness partner. There could be multiple results for this condition and hence I suggested to the business that they give a pop up so that the User can select any  one of the records and ultimately the data related to that record will be filled on the screen.
Abdul you can refer to the code below. I have used the FM ' REUSE_ALV_POPUP_TO_SELECT ' to get the POp UP.
I have given the code below that I have used in my case. You can modify it according to your needs.
  CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
    EXPORTING
      i_title            = 'Service Orders'
      i_selection        = 'X'
      i_zebra            = 'X'
      i_tabname          = * This will be the name of the internal table which holds all your records satisfying the criteria. In my case       it was ' lt_final'
      it_fieldcat        = lt_catalog
      i_callback_program = sy-cprog
    IMPORTING
      es_selfield        = lw_selfield
      e_exit             = lv_exit
    TABLES
      t_outtab           = lt_final( this is the internal table with all the records)
    EXCEPTIONS
      program_error      = 1
      OTHERS             = 2.
Let me know in case you require some more info.
Regards,
Nehal

Similar Messages

  • How to do screen enhancement in the selection screen of CS15 transaction

    Hi friends,
    I have a unique requirement where I have to do screen enhancement in the selection screen of CS15 transaction to get the top level material,
    Can you please tell how this could be achieved ?
    Looking forward  your valuable inputs.
    Thank You.
    Regards,
    S Sadhya

    Hi,
    This can be achieved by using user-exit. Specifically screen-exit. Check these two exits related to transaction CS15. They may be helpful to you.
    <b>
    PCSD0002      BOMs: Customer fields in item  
    PCSD0003      BOMs: Customer fields in header
    </b>
    Let me know if you need any other information.
    Regards,
    RS

  • Screen enhancement in badi's

    Hi all,
      I want to do screen enhancement in BADI.I found some badis which are providing the screen enhancements but dont know how to go further.
    Also i dont know in which transaction this screen will appear.
    And how to search for the BADI in standard transaction ,so that i can add the my own subscreen in satandard sap transaction using BADI screen enhancements.
    Please tell me the way in which i can do the sceen enhancement using BADI.
    Thanks and Regards,
    Sugeet.

    hi,
    check this..
    http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm
    regards
    vijay

  • Screen Enhancement on T-Code AS01 (Asset Master)

    Hi Experts,
    I want to add a filed of Customer Number( KUNNR) on the Asset Master Screen ( t-code AS01)
    I have done a lot of work....
    I have used the Enhancement AIST0002 ..... also make the Subscreen....
    In Short, now my field is Displaying on the Asset master Standard Screen. also displaying the F4 help against it...
    *Problem:*
    when i save the Data ... it does not save the data...
    I also check the table ANLU. there is no record exist... (boz i did not write any Code)
    Can i have to Write the Update Query for save the Record?
    Note: i am first time making the Screen Enhancement.
    Regards,
    Rizwan

    Dear George Serfiotis,
    i have find the solution completely ... now, not only my Screen is displaying but also working properly..
    http://binarycse.com/joomla/index.php/sap-abap/screen-exits
    <<CUT AND PASTE OF ABOVE LINK DELETED>>
    <<REQUEST FOR POINTS DELETED.  It was your question anyway...>>
    Rizwan
    Edited by: Matt on Nov 18, 2008 3:08 PM

  • Screen enhancement in display measuring point (ik07) and ik02

    Hi experts,
    Can anybody please help in determining userexits for screen enhancement of ik02 transaction. I need to add block to measuring point details.
    and also i need selection screen input parameters to display at the bottom of ik07 tcode.i had inserted the selection screen parameters at the top of screen in ik07 but i need it at last. how can it be inserted there.
    PLZ HELP!!
    screen shot of ie02 for referenece....

    Hello Jared,
    Have a look to this :
    http://help.sap.com/saphelp_crm50/helpdata/en/20/a4ffee7e0fcc4ebb7e5466d3903d38/frameset.htm.
    Regards,
    Frédéric

  • Screen enhancement through enhancement framework

    Hi to all  experts,
    I have question can screen enhancements can be done using enhancement framework technology in ECC 6.0
    Any link will help
    ALready searched in SCN couldnt find anything

    Hi,
    Go through the link.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9cd334f3-0a01-0010-d884-f56120039915
    Hope this resolves your query.
    Regards,
    Manish

  • How to implement screen enhancements with table control in sales document

    I want to add a table control in sales document head and items, is there a good solution for this, thanks

    Hi Zhang Jie,
    There are some reserved screen for you in sales order.
    screen enhancement: for header is SAPMV45A 8309 and 8310.
                                    for item is SAPMV45A 8459 and 8460.
    you can add your table control in those screen.
    regards,
    Archer

  • Service Entry Sheet Screen Enhancement (SRVEUSCR) - Changing tabstrip title

    Hello All,
    I m working on Service Entry Sheet Screen Enhancement (SRVEUSCR). I want to know how can I change the tabstrip page title without modification that is designated for user sub-screen. Its currently showing as "Addnl Data" and it is hard coded in the main screen by SAP.
    Regards
    Nadeem

    Hi,
    In PAI declare ur fields.....
    PROCESS AFTER INPUT.
    *   This chain has to include all input-fields:
      CHAIN.
        FIELD P4001-PRV_CTC.
        field P4001-PRV_DSG.
    ENDCHAIN.
    In program...
    loop at SCREEN.
    IF SCREEN-NAME = 'P4001-PRV_CTC'.
    SCREEN-INPUT = '1'.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-NAME = 'P4001-PRV_DSG'.
    SCREEN-INPUT = '1'.
    MODIFY SCREEN.
    ENDIF.
    endloop.
    Reward points if useful....
    Regards
    AK

  • Screen enhancment for PR,PO and MIGO

    Hi experts,
    I have added long material text(more than 40 characters) into material master using screen enhancement ,
    now i want to add this into Purchase Requisition , Purchase order  and MIGO . I have added LONG TEXT into PR & PO using screen enhancement, but new tab is added i.e. Customer Data(Subscreen) .
    But my requirement is that to add new field in existing tab only i.e. Material Data.
    Please reply .
    Regards,
    Dnyaneshwar

    hi
    Could u just please specify wer exactly u need to have extra tab (in which t code ).
    Regards
    Swapnil

  • Screen enhancements

    Hi all,
    I am new to  screen enhancements. I am adding custom screen to ME23n where I am adding custom field. During the change of transaction me22n or me21n if i enter wrong value into the custom field I am issuing error message. At this point all other fields belonging to main screen are getting disabled for input.
    Please help me how to keep them enabled along with my field. Please help me
    Regards,
    vijy.

    HI Vijy,
    You can do this byusing of Chain and Endchain..
    If you send a warning or error message from a module <mod> that you called using a FIELD statement as follows:
    CHAIN.
      FIELD: <f1>, <f 2>,...
      MODULE <mod1>.
      FIELD: <g1>, <g 2>,...
      MODULE <mod2>.
    ENDCHAIN.
    all of the fields on the screen that belong to the processing chain (all of the fields listed in the field statements) are made ready for input again. Other fields are not ready for input. Whenever the MODULE statement appears within a processing chain, even if there is only one FIELD attached to it, all of the fields in the chain (not only the affected field) are made ready for input again, allowing the user to enter new values. If the fields in the processing chain are only checked once, the PAI processing continues directly after the FIELD statement, and the preceding modules are not called again.
    Please refer this below link for more info
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaa4735c111d1829f0000e829fbfe/content.htm
    Please close if this answers your question
    Thanks
    Sudheer

  • Distribution screen enhancment in Contract item -SRM 7.0

    Hi Experts,
    I want to add custom fields in contract item level distribution screen In SRM 7.0,
    Sap has provided standard structure for item enhancement INCL_EEW_PD_ITEM_CSF_CTR and INCL_, INCL_EEW_PD_ITEM_CSF
    Using above structures we can enhance Item over view screen, My requirement is to enhance Item distribution screen,
    If any one worked on distribution screen enhancement or any body knowledge of this, please share me the correct structure to enhance the screen.
    Thanks in advance

    Hi,
    I am also trying the same thing, were you able to solve that issue ?
    If yes please share the solution
    Thanks

  • Notifcation Screen Enhancement

    Hi friends,
    we had implemented PM Notification screen enhancement and added 4 Tab screens to a particular notification type including SAP standard **Location ** Tab.
    TAB A, B, C & D are custom Tabs.
    The problem is
    1. If we are on Tab A  and move to Location Tab
    2. While we are on Location Tab and want to move to TAB B , it opens up TAB A.
    it happens all the time, it opens the TAB that was opened before moving to Location Tab instead of the TAB we want to move while on Location Tab.
    navigation between customs tabs is OK because we had inserted code to shift to the TAB clicked. Since Location TAB is SAP supplied am thinking if there is any config that will do this or it's becuase of SAP bug.
    any help is appreciated.
    Thanks

    Hello,
    I have faced the same issue during the additions of tabs for service notifiations, i solved the problem by setting the ok code's offcourse by doing a core mod.
    Hope this helps.
    Rajeev

  • Badi Screen Enhancement

    Hi Experts,
             I got stuck in BADI please help me out.
            In QA11
               there is a sub screen which can be called by a BADI
           the following is the piece of code which calls the BADI
    Now my problem is the statement   CALL SUBSCREEN BADI_SUBSCR_1101.
    Is net getting executed
    I understood that this is a screen enhancement which can be done thru BADI
    for this I had created an Implementation by using the relevant BADI definition
    and also had activated the Implementation and had kept some break-points in the available methods
    but the prog flow is not getting into the point where I had kept break-point. seems the badi I had implemented is not getting executed at all
    Actually before reaching this point the prog is checking of the available implementations for this QA11 and in that list the implementation I had activated is available(from debugging I had ensured this) but still the statement  CALL SUBSCREEN BADI_SUBSCR_1101. Is not getting executed,,
    Is anything I am missing to make a BADI into existence??please help me experts,,if you feel I have to give more elaborately,,i will do the same
         PROCESS AFTER INPUT.
           FIELD QALS-CHARG MODULE CHARGE_D1101 ON REQUEST.
    BAdI Subscreen
              CALL SUBSCREEN BADI_SUBSCR_1101.
         thanks in advance

    hi Ashok,
    thanks for your imm response
    I guess you are refering to the subscreens assignment in the implementation
    As of now i had done these assignments
    Subscreens(tab)
    calling prg           scr no           subscreenarea                               description
    SAPMQEVA     1101     BADI_SUBSCR_1101                   BAdI-Subscreen
    does the calling prg refers to the prg from which i require the BADI screen to be called or does it refers to something else?/
    can u clarify?
    And please if it is not an Issue to you can you plz share ur mobi number
    thankz in advance

  • Screen Enhancement for ME2O

    Hi Experts,
    I am very new to Screen Enhancements.
    please tell me how to do the below req.
    ME2O pop up screen add delivery test field (together with batch, qty, sloc).
    thanks
    Girdhar

    Hi,
    You are in ECC 6.0 Version Then ..
    Go to se18 enter Enhancement-spot as ES_RM06ELLB
    You are below version ECC 6.0 then
    1)Go to se80
    2)copy the program RM06ELLB to ZRM06ELLB.
    3)in screen 100 make changes as per your reqirement.(i.e add a text field like comments )
    Regards
    Kiran Sure

  • Screen data handling in Screen Enhancement with BAdI's ?

    Hi all,
    I'm trying to build a Screen Enhancement with (new) BAdI concept.
    But now I'm having a Problem. The new BAdI's don't allow variable Attributes  (instance/static attribute) in the BAdI Interface.
    If I try to define an instance or static Attribute for the BAdI-Interface I get the following error message:
    "BAdI interface <my_badi_if> contains non-constant attributes "
    In my Screen Enhancement I have build a Subscreen with new fields in it. These field data couldn't be saved in the BAdI class (e.g. via BAdI-methods my_badi->get_data_from_screen... and my_badi->put_data_on_screen...) because having no attributes.
    How these screen-data could be handled without BAdI-Interface-Attributes?
    Thanks in advance,
    Anja

    Having the same service to get one product price as well as all product prices would not be recommended. Two separate services would be more reasonable
    Mass data handling in SOA is not entirely different than let's say in BAPI/RFC environment. parallelism, multi-threading, locking, commit and many others are typical elements of considerations.
    From a scalability standpoint, you can always be interested in how optimal its performance is whether you call it once or a million times. If the service is a rather slim one (lightweight in terms of number and types of parameters as well as processing code), you'll surely have better chance than with a service that's heavyweight.

Maybe you are looking for

  • Apple Mini DVI to DVI Adapter - Gender Question

    The Apple Mini DVI to DVI Adapter photograph in the Apple Store looks like the DVI end is female. Is this correct? The Overview photo is good because it made me aware that I needed more than just the adapter itself to use it, but I think it would hel

  • List of open orders quantity size wise

    HI Experts, Is there any report or table to see the list of open orders quantity size wise .....please help me.. Regards Vishnu

  • Splitting TO based on quantities

    HI All, I need some help from you. This is my scenario. -  I have 3 Storage Types: 915 for piking of short quantities. 110 for palets and a new ST for Boxes 101. - Supose that a palet have 4000 units and a box 100 units for my 'example' material. - S

  • C++: Is it possible using callback function with ncacn_http and rpcproxy server ?

    I have a remote procedure and I can call it using http over rpc. I pass trough an rpc proxy server for arriving to my rpc server. But I cannot call a callback function to my client inside the server function. Is it possible using callback function wi

  • S/PDIF-In on XtremeGamer, with Vista. Confusion abo

    Let me make this short. Vista x32. X-Fi XtremeGamer with the newest drivers. Xbox 360. S/PDIF-In. No Workie. I have some logitech 5. speakers with the three colored plugs, those are plugged into the card, 5. works fine. I would like to have digital s