Making input selection fields mandatory in Z-reports

Hello Experts,
  We have a query on Z-reports:
1)Suppose if we have some 8 to 10 selection parametrs in input screen of a Z-report & we have certain defined output fields,then we make certain fields as mandatory in input selection screen.
2)If client's requirement is not to make any of the fields mandatory, then the logic to be built will be too cumbersome. This is because, user can give any inputs in any permutation & combination. This makes the logic for coding more complicated.
In such cases, what should be the approach, like whether, we should insist client, that any of the fields should be made mandatory entry OR if not, how should we proceed with such  a requirement.
NOTE: Logic becomes more complex, with the increasing number of input selection parameters(If none of the fields are mandatory).
Kindly comment / suggest a way out for this.
Regards
Mahesh

Hi Mahesh, In my view, explain the situation to client clearly, also talk to end user .. they'll be in better position to let you know about the information they need in most of the cases (and they don't harm even-if included in other reports as well), make these fields as mandatory.  Let the client know that the easier the report, better would be the benefits (may be 1 report can suffice for 5 reports) .. mostly this is what happens in the practical scenarios.

Similar Messages

  • Making PAN Number Field MANDATORY while creating a Vendor

    Dear Experts,
    I want to create a Vendor Master with PAN Number Field Mandatory.
    Is there any input for making PAN Number Field Mandatory at the time of creating a vendor.
    Regards - Manjunath

    Hi Trivedi,
    I tried the user exit. But it is pulling the values.
    Please find the coding here
    IF j_1imocust-j_1ipanno = ' '.
      MESSAGE e007(zmsg).
    ENDIF.
    We are not abe get the PAN vanue in  j_1ipanno  field.
    Looking for your help .
    Pleas guide.

  • Making PAN Number Field MANDATORY in Vendor Master while CREATING VENDOR

    Dear Experts,
    I want to create a Vendor Master with PAN Number Field Mandatory.
    Is there any input for making PAN Number Field Mandatory at the time of creating a vendor.
    Regards - Manjunath

    Please post in the right forum >

  • Making task list field mandatory in creation of maintenance plan?

    Dear All,
    I need your help in configuration of Making task list field mandatory in creation of maintenance plan. I checked with sceen variant config but that also not giving me any option to make the field mandatory.
    Is there any note or user exit for it?
    Regards,
    Kaushal Rai

    Dear,
    Pls check the exit IPRM0004:Maintenance plan / item: Customer check for time "SAVE".
    Regards
    Sunil

  • Hiding the Selected field in the Crystal reports 2011

    Hi Experts,
              I am new to the Crystal reports. How to hide the Selected Field in the Crystal report 2011.
    Thanks,
    Kavya.C

    Hi Kavya,
    You can right click on the field, go to Format Field -> Common Tab. Select/Check the option "Suppress". Or if you want to hide/ Suppress the entire section in a Crystal Report, for e.g. Detail section, right click on Details Section and select Section expert. You can select Hide/Supress accordinly.
    That should hide the filed/Section when you run the report.
    - Kuldeep

  • Badi for making gross weight field mandatory in MM01.

    Hi,
    Pls tell me the Badi for making gross weight field mandatory in MM01/MM02.
    Thanks in Advance.

    Hi!
    if it is not working with customizing I would do it in this userexit (CMOD)
    MGA00001
    it is the user exit before saving the material master data.
    have fun
    Flo

  • Making input select option or input field mandatory....

    Hello Gurus,
    I have been through some material to create select options in web dynpro ABAP. Now I want to make one of the fields mandatory so that if user executes it without filling data in that filed, it gives error message or enforces user to input in the manadtory field.
    I know how to do this in ABAP but how do I achieve the same in ABAP webdynpro ?
    Please help.
    Regards,
    Jainam.

    Hi ,
    Set i_obligatory parameter as X. This will set the select options as mandatory and standard error message will popup in case it is not filled.
    wd_this->m_handler->add_selection_field(
      i_id = 'S_CARR_ID'
      it_result = lt_range_table
    *  i_obligatory = 'X'   ,  " To make it mandatory

  • Making selection field mandatory in invoice overview

    Hi All,
    I am trying to make selection field  (Ship from Location ) mandatory in invoice overview through customizing mode.
    however system is showing mandatorysymbol against field but not throwing any error message when user execute the invoice overview screen without ship from location.
    kindly suggest / help
    Best Regards
    Gaurav

    Hi,
    You can do it simple:
    AT SELECTION-SCREEN ON s_matnr.
    IF s_matnr IS INITIAL.
        MESSAGE e055(00).
    Make an entry in all required fields
    ENDIF.
    (s_matnr: is a field on the selection screen)
    Good luck.
    Gilad Hubara.

  • Making a Screen field mandatory

    Hi Experts,
    How ot make a screen field mandatory in Module pool Program. I have created a screen containing five fields and in that need to make 3 fields as mandatory.
    Please let me know and thanks in advance.
    Sunil Kumar

    In the Screen painter , Double click your field to display the properties.
    In the Attributes,  Go to 'Program' tab and in the 'Input' dropdown select the value as 'Required'

  • Making a DFF field mandatory based on another field

    Hello All,
    We have a requirement where in we need to make a DFF field mandatory based on another field.
    example:
    DFF has two fields :
    Filed1 : values 'Email', 'Fax'
    Filed2
    If 'Email' is selected in 'Field1' then Field2 should become mandatory.
    Any inputs on this will be really helpful.
    Thanks & Regards,
    Satya.

    hi kumar3a,
    recently, i spent considerable amount of time wracking my brain on a similar problem. the nearest i came to a solution was when i used a forms personalisation. mind you, forms personalisation will not work directly on the DFF window, so it has to be approached in a roundabout sort of way.
    i got this information from an Oracle Support personnel - MOS Note 1078348.1.
    i would start with the flexfield segment as "not required", and then using Forms Personalization, i would make it "required". i would try to figure out how to establish a condition where the previous 'required' flexfield segment's value is checked to see if this 'not required' segment needs to be made 'required'. in theory, this should solve the issue. i gave up on it because the forms personalisation would need to cover WHEN-VALIDATE trigger event, and we had close to 100 validations going on through other preexisting forms personalisations, which rendered it near impossible to employ this method.
    best regards.

  • Making a custom field mandatory in co11n txn ?

    Hi Experts,
    I have added a field in co11n transaction ( say a) i want to
    make these field mandatory ( i.e i should not let the user to
    save the order without the value in my field ?
    can any tel me how to do this, which exit should i use ( i have
    list of all exit for co11n txn ) ?
    thanks,
    siva.

    If dont want to code in Exit again . Try Chain Endchain.
    This can be written in the screen you had developed in PAI module.
      CHAIN
      FIELD:AFRU-ZZCHARG MODULE FORM_VALID.
      CHAIN.
    and write your conditional code in FORM_VALID on save button click.
    MODULE FORM_VALID INPUT.
      CASE sy-ucomm.
       WHEN 'BU'.
           IF AFRU-ZZCHARG IS INITIAL.
                 SET CURSOR FIELD AFRU-ZZCHARG.
             MESSAGE e389(00) with 'Please enter the batch '.
           ENDIF.
       WHEN OTHERS.
    ENDCASE.
    Thanks Swapnil

  • Making Storage Location field mandatory in Work Order

    Hi
    As per our proces, if PR is created from work order and if there is no storage location in work order then PO will have warehouse address as a shipping address. So it is expected that PR must have storage location details when it is created from work order to avoid incorrect shipping address in PO.
    So, I want to make storage location field mandatory in components tab of work order.
    Also I want to avoid the users to deliberately removing the storage location and making it blank.
    Regards
    Prakash

    Hi,
      You will have to use one of the below mentioned user exits  to accomplsih this requirement.
    CNEX0026 Maintenance order: General check for material
    CNEX0027 Maintenance order: Determination of plant or storage location for component
    Thanks
    Narasimhan

  • Making an ESS Field Mandatory

    Does anyone know how to make an ESS Field mandatory?
    I've looked at this thread, and tried it, but it doesn't appear to work...
    [Customizing V_T588MFPROPC to be in agree to T588M |Customizing V_T588MFPROPC to be in agree to T588M;
    By selecting "Mandatory" in the Administrative Personalization simply puts a red asterisk next to the field but does not contain business logic.
    I'm hoping for a solution that 1. Doesn't require ABAP programming 2. Doesn't require Java WD Programming.
    Please let me know if such a solution exists.
    Thanks,
    -Tim

    have you tried this cause it works correctly without doubt I have done it, please check for bank information for example
    Of course it works without a doubt, Please check the customisation of the table V_T588MFPROPC
    0006 10 P0006 AREAC X
    0006 10 P0006 TELNR X
    These are the fields for telephone number, earlier these were not mandoratory with these settings, they become required,
    Please check

  • Making a UI field mandatory and error out on save if no entry made

    Hi Experts,
       I have a requirement to make a UI field mandatory and not allowing the opportunity to save if the field has no entry selected out of a DDLB. I marked the field mandatory in the config page and it displays an error message if it is left unentered but still allows to save , ie even with the error message u can save the opportunity.
      How can I get this to work and not allow save if the field is entered?
    I tried putting a check in the DO_FINISH_INPUT and DO_VALIDATE_INPUT but didnt work........ please help

    Arpita,
    This is a standard program bug with opportunity screen. Fix it by applying SAP Note 1353553 - Opportunity: Behavior of mandatory fields in Web UI

  • Making only onr field mandatory in material master

    Hi,
    We want to make a field 'Account Assignment Group (MVKE-KTGRM)' (field is in  Sales: Sales org - 2 view) mandatory for finished products only.
    The field 'Item category Grp' in the same view is already mandatory.
    We do not want to make any other additional field mandatory.
    How this can be done?
    Regards,

    hi,
    You can make the field mandatory based on the only below points:
    1. Transaction
    2. Material type
    3. Industry sector
    4. Plant
    5. Procurement type
    6. Sap delivery
    Now as per above field reference, you can't do only based on the finished production...
    So, think abt it and then choose the field reference key as per your req. and then only it is possible to make it mandatory...
    As per my view you can make it possible via material type, plant ..
    Think abt it...
    Regards
    Priyanka.P

Maybe you are looking for