Selection Screen options for Tcode CRM_DNO_MONITOR - Transaction Monitor

Hi all,
I need information regarding the selection screen when i am executing the Tcode CRM_DNO_MONITOR.
When i am executing CRM_DNO_MONITOR in the selection screec there are follwing options:
Mine
My Department
My colleagues
My Team(s)
In the selection screen if choose "Mine" option am able to see the o/p and if i select any other options am not getting the o/p. So It would be great if any one explain what are these options for and how they are use full ?
If i want to delete the unwanted selection criteria is that possible.
Thank you in advance,
Regards
Vijay

solved myself...!

Similar Messages

  • Hiding a selection screen field for Standard Report Transaction

    Hello All,
    We are trying to hide a check box on the selection screen for a standard sap report transaction (s_alr....). We can hide it by creating a variant but then if the users don't select it, the checkbox will be visible. We can't use transaction variant to hide this since its not a dialog transaction.
    We don't want any users to select that option by clicking on the checkbox and then running the report. Any suggestions or help is much appreciated.
    Thanks,
    Sal

    Did you think about modifying the standard report by adding NO-DISPLAY to the parameter option?
    If you are not allowed to modify another option - although much more effort - would be to replicate the standard selection screen in an own Z-report and at the end do a SUBMIT standard report WITH parameter
    In your won report you can easily hide that parameter and always pass a space to the standard report.
    To submit data to the standard report just use
    DATA: lt_par  TYPE TABLE OF rsparams.
    build the selection table based on the selection criteria the user entered and do:
    SUBMIT rep USING SELECTION-SCREEN 1000
           WITH SELECTION-TABLE lt_par.
    Then just remove access to the standard transaction and create an own transaction for your custom report which is added to the users authorized transactions.
    Not the easiest way to do it, but it does work.
    Regards,
    Michael

  • Selection screen option for Screen type like inDEMO_SEL_SCREEN_AS_SUBSCREEN

    hello,
    in this program there are 2 selection screens,called from MAIN screen.
    DEMO_SEL_SCREEN_AS_SUBSCREEN
    i want to create similar..
    In main screen i will have 3  screens (which should have of screen type 'Selection screen ' ) and 1 BOX (in which I will have Table control)..
    I created the main screen 0100 and 3 sub screens..(1001,1002,1003)
    But when i want to create these I cannot choose Screen Type as 4 Selection screen (the other options are 1.normal 2.Subscreen 3 Modal dialog box)..
    I have gone through other threads..they simply say its not possible..
    then how was it done in DEMO_SEL_SCREEN_AS_SUBSCREEN..
    Also i have seen Zprograms with 3 sub screens as Selection screen ...
    Also interestingly the  short description of this screen is
    SEL_SCREEN 1100 INFO:140000140000000000000000000005490892784

    Hi,
    This code form teh same program creates them as selection screen.
    SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.
    PARAMETERS: p1(10) TYPE c,
                p2(10) TYPE c,
                p3(10) TYPE c.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN END OF SCREEN 1100.
    SELECTION-SCREEN BEGIN OF SCREEN 1200 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-020.
    PARAMETERS: q1(10) TYPE c OBLIGATORY,
                q2(10) TYPE c OBLIGATORY,
                q3(10) TYPE c OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OF SCREEN 1200.
    check this out:
    [http://wiki.sdn.sap.com/wiki/display/ABAP/Select-OptionsinModulePoolProgramming]
    Edited by: sap_wiz on Jun 23, 2011 1:33 PM

  • Hide selection screen option on the base of Transaction code

    Hi ,
    i have created one report with two diffrenet transaction code .
    now we have two different selection  options on the base of Transaction code.
    how can i do coding for this .
    anyone has any sample code ..
    thanks,
    Jack

    Thanks Subramanian,
    INITIALIZATION.
    if sy-tcode = tcd1.
    perform first_selection_screen.
    elseif sy-tcode = tcd2.
    perform second_selection_screen.
    endif.
    FORM first_selection_screen..
    SELECTION-SCREEN BEGIN OF BLOCK s1 WITH FRAME TITLE text-s02.
    SELECT-OPTIONS: s_date  FOR  vbrk-fkdat.
    SELECT-OPTIONS: s_kunag  FOR  vbrk-kunag.
    SELECTION-SCREEN END OF BLOCK s1.
    ENDFORM.
    But in this perform if i write code for selection-screen then it gives me syntax error.
    error message: within form or function module, selection-screen option is not allowed.
    Thanks,
    Jack

  • I have mapped the fields on the selection-screen  to the BDC on transaction

    I have mapped the fields on the selection-screen  to the BDC on transaction F110.
    When I am selecting a particular any value in select-option on the selection screen, it is giving some default value and the value given by me,for example:
    Payment methods:C
    but in BDC recording for F110 Payment methods:IEQC when the programs is running in foreground mode.
    how can I rectify it?

    This is because payment methods may be a table and what you see IEQC is actually, I for include, EQ for equal and C as your payment method. This is standard structure for ranges or select-options. You can use variable-low which will give you only C.

  • CRM_DNO_MONITOR - Transaction Monitor -reg

    Hi,
    We are using solution manager for SAP support, whenever we receive a issue from the clinet we logg a call in the transaction 'CRM_DNO_MONITOR - Transaction Monitor' this is like notification in QM and CS modules.  After giving the solution we changes the statuses like inprocess, soltion proposed, confirmed. Once we logg a call system generates a numaric unique number, now my client wants this number wise status. Which transaction is having what status like inprocess, soltion proposed, confirmed ?
    I am not able to find tables where the system is storing data for this transactions. Please help me in this regard.
    thanks in advance.
    rajendra

    Hi Rajendra,
    What do you mean by " system wise status "
    If you use the selection criteria for crm_dno_monitor then you can get the tickets as ur required..
    for e.g if u select status as In Process then you will get all the tickets in in process status ...moreover its ALV output so you can use the filter feature to provide more filteration based upon the requirement like sorting etc.
    As far as building the zreport its bit difficult but hint is to before pressing execute button in Crm_dno_monitor switch on trace in
    "ST05"
    Hope it helps.
    regards
    Prakhar

  • How to can we do selection-screen modification for LDB?

    Hi All,
    I have custom field in my selection-screen of LDB PNP.
    Can you people please let me know how can I put the selection-screen modificaiton For ex:
    i have created
    parameters a as checbox.
    select-options: p_btrtl for p0001-btrtl no-intervals.
    now If the check box is selected then p_btrtl we can enter values or esle If check box is not selected then p_btrtl will be grayed out, ( I.e. SCREEN-INPUT = 0)
    This is simple from ABAP without LDB. But with LDB can we achieve?????????????
    Satish
    Edited by: Satish Vasireddy on Jun 23, 2010 4:05 PM

    you can use the following logic for the additional selection validation. I have done by using PNP LDB. Ex : I have done for one of the field in IT0377.
    SELECT-OPTIONS: s_bplan FOR p0377-bplan.
    *&      Form  check_selection_0377
      This subroutine is used to check the selection screen
    FORM check_selection_0377.
      LOOP AT p0377 WHERE pltyp  IN s_bplan
                     AND levl1 IN s_lti
                     AND   begda LE pn-endda
                     AND   endda GE pn-begda.
        CALL FUNCTION 'HR_CHECK_AUTHORITY_INFTY'
          EXPORTING
            tclas            = 'A'
            pernr            = pernr-pernr
            infty            = p0377-infty
            subty            = p0377-subty
            begda            = pn-begda
            endda            = pn-endda
            level            = 'R'
          EXCEPTIONS
            no_authorization = 1
            internal_error   = 2
            OTHERS           = 3.
        IF NOT sy-subrc IS INITIAL.
          DELETE p0377.
        ENDIF.
      ENDLOOP.
    selection not found and no value selected
      IF sy-subrc NE 0.
        READ TABLE s_bplan.
        IF sy-subrc EQ 0.
          REJECT.
        ENDIF.
        READ TABLE s_lti.
        IF sy-subrc EQ 0.
          REJECT.
        ENDIF.
      ENDIF.
    ENDFORM.                    " check_selection_0377
    Regards,
    Preetham

  • Selection Screen Validation for Character

    Hi All
    My query is regarding the selection screen validation for character.
    I am using a Select-option: S_ORDER FOR VBAK-VBELN OBLIGATORY.
    and S_order should be only having the numeric field.
    Please help how to validate it for character field.

    Hi,
    Do as below :
    at selection-screen.
    if not s_order[] is initial.
       if s_order-low CA 'ABCDEF.............Z'.
         message 'Enter only numerics only' type 'E'.
      endif.
    "similarly for s_order-high also.
    endif.
    Thanks,
    Sriram Ponna.

  • How to display the selection screen fields for selected checkboxes

    Hi all,
             I have 7 checkboxes, for each check box we have some seletion screen fields.if i select first check box,i want to display first slection screen fields only.
    and if we select more than one check box how to display the selection screen fields for selected check boxes,please help me this
    Thanks
    sriman.

    hi,
    Try this code
    report z_13317_sdn2.
    tables : mara, marc, dd03l.
    parameters : p_chk1 as checkbox user-command ABC,
                 p_chk2 as checkbox user-command PQR,
                 p_chk3 as checkbox user-command XYZ.
    select-options : s_matnr for mara-matnr modif id A,
                     s_ersda for mara-ersda modif id A,
                     s_werks for marc-werks modif id B,
                     s_lvorm for marc-lvorm modif id B,
                     s_tab for dd03l-tabname modif id C.
    data: v_chk1,
          v_chk2,
          v_chk3.
    at selection-screen output.
      loop at screen.
        if screen-group1 = 'A' or
           screen-group1 = 'B' or
           screen-group1 = 'C'.
            screen-input = 0.
           modify screen.
        endif.
      endloop.
      loop at screen.
        if v_chk1 = 'X'.
          if screen-group1 = 'A'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
        if v_chk2 = 'X'.
          if screen-group1 = 'B'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
        if v_chk3 = 'X'.
          if screen-group1 = 'C'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
      endloop.
    at selection-screen.
      if sy-ucomm = 'ABC'.
        if v_chk1 = ' '.
          v_chk1 = 'X'.
        else.
          v_chk1 = ' '.
        endif.
      endif.
      if sy-ucomm = 'PQR'.
        if v_chk2 = ' '.
          v_chk2 = 'X'.
        else.
          v_chk2 = ' '.
        endif.
      endif.
      if sy-ucomm = 'XYZ'.
        if v_chk3 = ' '.
          v_chk3 = 'X'.
        else.
          v_chk3 = ' '.
        endif.
      endif.
    Regards,
    Sailaja.

  • Screen exits for tcode co88

    Hi All,
            To allow multiple selection of production orders to be processed in tcode co88.  Can you provide the screen exits for tcode co88.

    hi,
    Try this COOM0003.
    Thanks,
    Sanket.

  • Regarding Screen Variant for tcode va11

    hi all,
    i am trying to create a screen variant for tcode va11. the fileds in the item level has to changed.. we have a requirement to show only those fields that are usefull as per our clients requirement.. there are fields which will never be used .. so we have top remove it .. i have created a screen variant and made all the fiedls not needed invisible .
    then i link this csreen variant to a transaction varaiant .. howver when i execute
    this i don't find any difference in screen .. guess my screen variant not working..
    Is there anything we have to take care for table control.
    the Program name is SAPMV45A
    Screen number is 4900
    please if any body has done this before ,,kindly suggest.
    thanks and regards
    Sriniavs

    this variant is in Active state ?
    what is system status ?
    check which PF/GUI it is using .
    system-->status>Program here u have to get ur Zvariant name.
    Regards
    Prabhu

  • Select maintenance option for EHP4 FOR SAP ERP 6.0 / NW7.01.

    Dear Experts,
    We have solution manger 7.0 ehp1 ,
    ERP 6. 0 EHP4 Development server(seperate server) this is upgraded from erp 6.0 to erp 6.0 ehp4
    I configured the maintenece optimzer also. and created the RFC destinations also it is working fine. For downloading the support packages  In Miantenance optimizer I am getting the error.
    Select maintenance option for EHP4 FOR SAP ERP 6.0 / NW7.01
    I deleted the systems in SMSY and and recreated using the SLD refresh. Agin also I am getting the sama error for downloading the support packages. I chagned the systems details in the Service.sap.com also. in the logs it is showing the below error also
    No Addon Product Version allowed for transaction: EHP4 FOR SAP ERP 6.0 / NW7.01 (01200615320900003195)
    thanks

    Hello,
    we have the same error in our environment.
    Product version is EHP4 for ERP6.0 and we have both product version (EHP4 and ERP 6.0) active in the SMSY as described in SAP note 1464712 and nethertheless we get this error message.
    " No Addon Product Version allowed for transaction: EHP4 FOR SAP ERP 6.0 / NW7.01 (01200615320900003195)"
    Anyone with a solution here?
    Greets
    Jens

  • How to do a screen sequence for a standard transaction?

    Hi experts -
    I have a requirement that the business wants a field on transaction VL02N to be grayed out based on specific delivery types.  I have been told that that would require a custom screen sequence to be developed.
    (1) What is the best solution to accomplish this?
    (2) If the solution is a custom screen sequence for the standard transaction code VL02N, then how is that done?
    Many thanks!
    Mark

    When one says "custom screen sequence"  an Industry Solution that utilizes BDT, like Insurance or Gas/Oil comes to mind.  Are you working with one of the BDT-based Industry Solutions in SAP?   If so, customization by field-group or screen or view could be considered, but I think you'd find a much simpler way to do.
    If not, one usually does this with an exit that allows control of screen elements, as does SD Order processing, a Badi implementation or enhancement in a PBO module for the screen to set the screen-input value to '0' for that field name. 
    You should, though, search the forums, since these kinds of questions are often asked....and answered....such as:
    [VL0xN exits|VL01N / VL02N Exit;

  • No split screen option for Nokia C7 Malaysian Prod...

    No split screen option for Nokia C7 Malaysian Product even after complete and successful updates of all Symbian Anna files. 
    Mods, any updates or advice?

    Great,...it will make chatting flow much smoother.  Will I see the split window chats with the "My Conversations" app that came on my N8?  Also,...I use Swype for my keyboard,..not for the swiping feature but for the larger keys that fit my big thumbs better.  I noticed something about Swype in this thread.  Does Swype cause any conflicts for the new split window chats. Thanks again for the assist !

  • Selection screen validation for batch

    This is my scenario:
    If program is executed in background, plant (in selection screen) is not mandatory.
    If program is executed directly, plant (in selection screen) needs to be filled (mandatory).
    I tried using sy-batch and coding at the AT SELECTION-SCREEN portion for validation but it seems that sy-batch is only populated after START-OF-SELECTION.
    How do i code it so that if user does not execute program in background, it will prompt an error message and prompt user to fill the plant field in the selection screen?

    HI,
    use sy-batch in start-of-selection. not in at selection-screen.
    start-of-selection.
    if sy-batch = ' X' . (If it runs in background)
    Then raise message.
    endif.
    This will work.
    Reward If helpful.

Maybe you are looking for

  • TOC (table of contents) Formatting/Leader Tab Problems

    BACKGROUND I have found it impossible to format TOCs with leader tabs as I've seen the procedure outlined in numerous forum posts, books, and elswehere. I am an intermediate FrameMaker user running FM 9 on Windows XP Pro. I run the same setup on a ho

  • Explain Plan query

    I just changed the hint to pick different indexes inside the same SQL and they have significant different performance. SQL1 is much faster than SQL2 and the explain plain is very different. I found that there is some values like :Q1003, :Q1004 and :Q

  • HT1766 How do I rename my iphone when backing it up. It currently says "owners Iphone

    How do I rename my Iphone device under ITunes. Currently says owners Iphone

  • WWSRG derivation in COPA

    Hi, In the copa documents, the Sales reporting group is fetched from Derviation. Its done through a user exit. It is derived based on the Object number That is ARTNR . This is derived from INOB table, based on material number. After that I am confuse

  • Cannot deactivate delta load of materials from R/3

    Hi, we have a problem deactivating the delta load of materials from R/3. I deactivated the adapter objects MATERIAL and PRODUCT_MAT in R3AC1. I even deleted the class MATERIAL in R3AC4. The Bdoc's are not created any more, but the queues are still ge