Default selection parameter in ME2M

Is it possible to default selection parameter in ME2M to " ALL" by setting in SU3 - Parameter with parameter ID " SEL"
If yes,what is the parameter value to be enter?
Thank you

you can define a general default value for all users in customizing  OLME > purchasing > reporting > selection parameters > default..
a user can individual set a default in parameter  SEL in SU3 . The value is then just the value that you want in the screen, which you can see if you press F4 in the selection paramater field in ME2M e.g. WE101
In general ME2M remembers how the user executed the selection the last time and uses this values as default for the next time.

Similar Messages

  • How to create own Selection Parameter for ME2M list

    Dear Sir,
    We use ME2m tcode for getting list related to Purchase Order . We have been told that we can create our own "SELECTION PARAMETER" for ths report . Kindly guide us as what steps need to be done for this pl .
    With Thanks and Regards
    Sonia Mittal

    you can also set a variant for the existing / default ME2M screen
    fill all the required entries then click on GOTO >>Variants >Save as Variant
    next time when you run T code ME2M, you can select the variant and run the t code
    hope this will help you

  • AVIS selection parameter - wrong result  in VL31N list

    Hello!
    I crete inbound delivery from VL31N using order list.
    Default selection parameter is "AVIS".
    Result list for delivery creation contains partialy delivered orders with "delivery completed" indicator is set.
    When I try to create delivery for these lines I recive an error.
    How could I exclude partialy processed orders with "delivery completed" indicator from list?
    Thank you for help.
    Andrey Garshin.

    Hi Prasad,
    You have not following standard coding guidelines.
    Please change following:
    1. Select query should not be with SELECT ENDSELECT.. remove ENdselect.. retrieve all the data into internal table without endselect
    select * from ekko into table itab where bedat in date and FRGKE ne 'R' .
    ctr = 1.
    loop at itab.
    itab-sr_no1 = ctr .
    ctr = ctr + 1 .
    modify itab.
    endloop.
    2. Select query should not be inside a Loop. Instead use FOR ALL ENTRIES
    if not itab[] is initial.
    select * from mara
    into table imara
    for all entries in itab
    where matnr = itab-matnr.
    endif.

  • How to set the default selection to "Select All" in a Multi valued parameter in SSRS 2008?

    Hello Everyone,
    How to set the default selection  to "Select All" in a Multi valued parameter in SSRS 2008?
    Regards
    Gautam S
    Regards

    You need to specify "Default Values" in the report parameter property. Choose similar option used in the "Available Values" option, this will allow the parameter to check "Select All".
    Regards, RSingh

  • For selection parameter the default date should be of the previous month.

    Hi all,
    In my selection-screen what i want is  for the selection parameter "Selection period month" the default value to be the previous month.
    For example today is 24.09.2008 so the default value of this field has to be 200808 instead of 200809 today.
    please tell me how should i do this.
    thanks in advance.

    Hi,
    Check the following code:
    data: f_date type sy-datum,
          f_dd(2) type c,
          f_mm(2) type c,
          f_yyyy(4) type c,
          f_pdt type sy-datum.
    parameters: p_date like sy-datum.
    initialization.
    f_date = sy-datum.
    f_dd = sy-datum+6(2).
    f_mm = sy-datum+4(2) - 1.
    f_yyyy = sy-datum+0(4).
    if f_mm eq 0.
    concatenate f_yyyy '12' f_dd  into f_pdt.
    elseif f_mm eq 1 or
       f_mm eq 2 or
       f_mm eq 3 or
       f_mm eq 4 or
       f_mm eq 5 or
       f_mm eq 6 or
       f_mm eq 7 or
       f_mm eq 8 or
       f_mm eq 9.
    concatenate f_yyyy '0' f_mm f_dd  into f_pdt.
    else.
    concatenate f_yyyy f_mm f_dd  into f_pdt.
    endif.
    p_date = f_pdt.
    start-of-selection.
    write : / f_date,
             / f_pdt.
    Regards,
    Bhaskar
    Edited by: Bhaskar Chikine on Sep 24, 2008 12:49 PM

  • How to make new scop of list and selection parameter in ME2L or ME2M

    Hi,
      As there are many reports avaliable ,  in ME2L and ME2M  there is scope of list and selection parameter on the selection screen,  i want to know how we can create new scope of list and new selection parameter.
    regards,
    zafar

    IMG ---> Material Management ---> Purchasing ---> Reporting ---> Maintain Purchasing Lists ---> Scope of List ---> Define Scope of List

  • SSRS 2012: How to get a "Select All" that returns NULL instead of an actual list of all values from a multi-select parameter?

    I have a multi-select parameter that can have a list of thousands of entries. In general, the user will pick a few entries from the list or "Select All". If they check "Select All", I would much prefer that I get a NULL or an empty string
    instead of a list of all values. Is there any way to do that?
    In experimenting with a work-around, I tried putting an "All" label with a null value in the list, but it is ignored (does not display in the drop-down). If I use an empty string for the value, my "All" entry does get displayed, but so
    does "Select All", which is confusing. Is there a way to suppress "Select All"?
    - Mark

    I adapted the following from a workaround posted by JNeo on 4/16/2010 at 11:14 AM at
    http://connect.microsoft.com/SQLServer/feedback/details/249227/multi-value-select-all-parameter-in-reporting-services
    To get a null value instead of the full list of all values when "Select All" is chosen:
    1) Add a multi-value parameter "MyParam" that lists the values to choose.
    2) Add a DataSet "ParamCount" identical to the one used by "MyParam", except that it returns a single column named [Count] that is a COUNT(*) of the same data
    3) Add a parameter "MyParamCount", set it to hidden and internal, then set the default value to 'Get values from a query', choosing "ParamCount" for the Dataset and the one [Count] column for the Value field.
    4) Change the parameter for the main report DataSet so that instead of using [@MyParam], it uses this expression:
    =IIF(Parameters!MyParam.Count =
    Parameters!ParamCount.Value, Nothing, Join(Parameters!MyParam.Value, ","))

  • Multiple select parameter with each selected value covering multiple sub values

    Hello, everyone,
    In my SSRS report, I need to set a multiple select parameter called Group, with values: group1 group2, etc....
    When group1 is selected, it needs to apply to data of certain sub groups: sub-group1, sub-group2;
    When group2 is selected, it needs to apply to data of different sub groups: sub-group3, sub-group4 and sub-group5;
    when both group1 and group2 are selected, then, it needs to apply to data of sub-group1 to sub-group5.
    I know how to do it when only one group is selected: simply use a case statement in the query to select the right sub groups based on the group selected.
    But I don't know a good way to do it when multiple groups are selected.
    Any help, pointers are much appreciated. Thanks in advance!
    Regards

    Hi QQFA,
    If I understand correctly, there are two parameters (Group and Sub_group) in the report. When we select group1 in Group parameter, it will auto select sub-group1, sub-group2 in the Sub_group parameter; when we select group2 in Group parameter, it will auto
    select sub-group3, sub-group4 and sub_group5 in the Sub_group parameter; when we select both all, it will auto select all sub_group values. If I have misunderstood, please don't hesitate to let me know.
    In this scenario, we can create a temporary table with Group and Sub_group columns, then select Sub_group column values based on the Group field. For more details, please see:
    Create a dataset with the query below:
    CREATE TABLE #temp([group] nvarchar(50),sub_group nvarchar(50))
    INSERT INTO #temp VALUES     ('group1','sub-group1'),('group1','sub-group2'),('group2','sub-group3'),('group2','sub-group4'),('group2','sub-group5')
    SELECT * FROM  #temp
    where [group]  in (@Group)
    Set available values and default values of Sub_group parameter with get values from the sub_group field in the new dataset.
    Note that the two parameters are all multiple parameters.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • What is use of defining SELECTION PARAMETER in MOVEMENT TYPE

    Hi All ,
    Can u pls tell me the reason of defining SELECTION PARATEMETER in MOVEMENT TYPE.
    REGARDS
    Sandeep

    May be I couldn't explain my question well , sorry for that.
    When I define a new Movement code using T code OMJJ ( in IMG) , there is a field for SELECTION PARAMETER.
    I wanted to know the impact of this field value.
    Pavan , you are right that value is like a searching criteria but I am just wondering how can I check whether system is working as per the SELECTION PARAMETER defined for a movement type.
    For example , in movement type 101 defined selection parameter is WE101 (Open Goods Receipts) , so where I should check (in which list ) whether system is taking it as default value or not.
    I know for you people might find it a stupid question but I have no other option than u people )
    Pls let me know if my question is still not clear
    REGARDS
    SANDEEP

  • Infoset with ldb IOC - error in selection parameter

    Hi Expers,
    could any of You pls help me with an issue - creating infoset with ldb, and get error in selection parameter definiton.
    I am about to create an infoset than a query, using IOC logical database, and get a couple of error message related to selecion parameters - such as: error in sel. parameter P_PICK is - Statement concluding with "...TYPE" ended unexpectedly.
    I do not really need this parameter for my selection, so I was to delete - but I could not find it amongst the selection fields in actual infoset. When I tried to create it, I got a message: it has already been created (of course), but where can I find / change it if not amongst listed selection parameters (Extras / Selection)
    I suppose I can not make any changes in DBIOCSEL - because COOIS is also using this ldb - and it might have some unexpected effect there as well.
    Later I started to create a Z*report via SE80, using same ldb, and it works fine.
    So it is not a burning issue any more, but still interesting, why infoset has problem with the sel. parameter which is actually not in use.
    All usefull answer is appreciated
    Br

    Hi,
    the selection screen is coded without a number. Here's the code:
    SELECTION-SCREEN BEGIN OF BLOCK selection WITH FRAME TITLE text-t11.
    SELECTION-SCREEN BEGIN OF BLOCK persdata WITH FRAME TITLE text-t01.
    SELECT-OPTIONS so_pernr FOR ls_pa0017-pernr.
    SELECTION-SCREEN END OF BLOCK persdata.
    SELECTION-SCREEN END OF BLOCK selection.
    SELECTION-SCREEN BEGIN OF BLOCK input WITH FRAME TITLE text-t12.
    SELECTION-SCREEN BEGIN OF BLOCK zeitraum WITH FRAME TITLE text-t02.
    PARAMETERS pa_begda TYPE p0017-begda DEFAULT sy-datum OBLIGATORY.
    PARAMETERS pa_endda TYPE p0017-endda DEFAULT '99991231' OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK zeitraum.
    SELECTION-SCREEN BEGIN OF BLOCK gruppierungen WITH FRAME TITLE text-t03.
    PARAMETERS pa_spebe TYPE p0017-spebe OBLIGATORY DEFAULT '1'.
    SELECTION-SCREEN END OF BLOCK gruppierungen.
    SELECTION-SCREEN BEGIN OF BLOCK zuordnungen WITH FRAME TITLE text-t05.
    PARAMETERS pa_bukrs TYPE p0017-bukrs MATCHCODE OBJECT c_t001 DEFAULT '2000'.
    PARAMETERS pa_gsber TYPE p0017-gsber MATCHCODE OBJECT h_tgsb DEFAULT '0001'.
    SELECTION-SCREEN END OF BLOCK zuordnungen.
    SELECTION-SCREEN END OF BLOCK input.
    SELECTION-SCREEN BEGIN OF BLOCK attributes WITH FRAME TITLE text-t13.
    PARAMETERS pa_test AS CHECKBOX DEFAULT 'x'.
    SELECTION-SCREEN END OF BLOCK attributes.
    Regards
    Mark-André

  • How to get the selection parameter values to Posting logic method

    How can i  read the selection parameter values at " posting logic" method, which are given in  " Select Option function module"?

    max bianchi wrote:
    Hi
    >
    > The selection-screen data are stored in ABAP memory, so it need to clear it .
    >
    > Now how set ID parameter can depend on SAP release, anyway in ECC 6 this should work:
    >
    >
    INITIALIZATION.
    >   DATA: BEGIN OF MEMKEY,
    >           REPORT  TYPE SY-REPID VALUE SY-REPID,
    >           VARIANT TYPE RSVAR-VARIANT,
    >           INT_MODE(2) TYPE N,
    >           KIND(1)     TYPE C,
    >         END OF MEMKEY.
    >
    >   SYSTEM-CALL INTERNAL MODE INTO MEMKEY-INT_MODE.
    >   FREE MEMORY ID MEMKEY.
    >
    > But in this way it'll clea whole selection-screen...do you wnat do it?
    >
    > Max
    @Max : The above hack seem to work fine unless you assign a  'DEFAULT' value to the selection fields.
    @OP   : Here is an other work around,  however, this approach needs an additional effort to create
        new PF-STATUS('MYLIST') and assign a function code of your choice to the function keys in the standard toolbar and handle them in the 'AT USER-COMMAND'   event as shown below. Let us know if you have/find any issues with this.
    PARAMETERS:
      p_test TYPE char5 DEFAULT '123'.
    AT USER-COMMAND.
      CASE syst-ucomm.
        WHEN 'MBACK'.
          SUBMIT zytest WITH p_test = '' VIA SELECTION-SCREEN.
      ENDCASE.
    START-OF-SELECTION.
      SET PF-STATUS 'MYLIST'.
    -Rajesh.

  • Default selection on programmatically created UIPickerView

    I'm learning Obj-C for iOS 4 apps. This's what I've done so far...
    Created a TextField. At 'textFieldShouldBeginEditing' event, I'm creating a dynamic PickerView with my entries, and returning NO to skip the default keyboard.
    I've also made my UIViewController as <UIPickerViewDelegate, UIPickerViewDataSource>.
    Till here, I'm good. The pickerview is showing up and on selecting a record, I'm removing it after setting the textfield with the selected key.
    The problem now is as follows:
    During initial load, my textfield has some text, and I'd like to set the pickerview created to the default selection of that same text. I know I can do a selectRow call, but what I'm not able to figure out is when?
    While the pickerview is being created, it doesn't have any values. The values are filled in later in the DataSource (titleForRow) method, one by one. Now when (at what event/point) should I be able to set the selected row of the dynamic pickerview?

    > See last sentence of: http://help.sap.com/saphelp_nwpi71/helpdata/en/e3/960a1aeb0711d194d100a0c94260a5/content.htm
    If it cannot find the relevant text symbols in that pool, it displays the default text specified in the program source code
    Hi.,
    This means, If is is not able to find text  symbol it will  display the default specified in program source code.,
    So., as for DE the text symbol is not there so it displays the parameter name in program source code.,
    maintain it in DE through translation as described above in my earlier reply.,
    hope you got now..
    Thanks & Regards,
    Kiran

  • How to disable selection parameter for a particular radio button

    hi experts,
    How to disable selection parameter(bukrs) for a particular radio button 'radio1'.

    hi,
    Check This Code (copy paste and run it ).
    U have to use MODIF ID along with the parameter.
    *----------------Option
    *---Background
    *---Summary Report
    PARAMETERS       : p_backgd RADIOBUTTON GROUP rad1
                       USER-COMMAND radio DEFAULT 'X'.
    PARAMETERS       : p_sumrep RADIOBUTTON GROUP rad1 .
    *----------------File
    PARAMETERS       : p_sumfl TYPE char255 modif id ABC  .
    PARAMETERS       : p_detfl TYPE char255 modif id ABC.
    *---------------Activate & Deactivate Screen Fields--------------------*
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_sumrep = 'X'.
          IF screen-group1  = 'ABC'.
            screen-input  = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    <b>Please Reward Points & Mark Helpful Answers</b>
    To mark Helpful Answers ;click radio Button next to the post.
    RadioButtons
    <b>o</b> Helpful Answer
    <b>o</b> Very helpful Answer
    <b>o</b> Problem Solved.
    Click any of the above button next to the post; as per the anwers
    <b>To close the thread; Click Probelm solved Radio Button next to the post ,
    which u feel is best possible answers</b>

  • How can I pre-define the default selection in a SelectOneChoice?

    How can I pre-define the default selection in a SelectOneChoice?
    (1) Here's my JSF-code:
    <af:selectOneChoice label="#{res['usercreate.input.sex']}"
    value="#{bindings.Sex.inputValue}"
    binding="#{SelectListBean.sexlist}"
    readOnly="false" autoSubmit="false">
    <af:selectItem label="#{res['data.sex.women']}" value="1"/>
    <af:selectItem label="#{res['data.sex.man']}" value="2"/>
    </af:selectOneChoice>
    (2): manged bean: to set the default value to be the first in the list, my managed bean as follows:
    import oracle.adf.view.faces.component.core.input.CoreSelectOneChoice;
    public class MBSListBean {
    private CoreSelectOneChoice sexlist;
    public MBSListBean() {
    public void setSexlist(CoreSelectOneChoice sexlist) {
    this.sexlist = sexlist;
    this.sexlist.setValue(1);
    public CoreSelectOneChoice getSexlist() {
    return sexlist;
    (3) when i launch the page, it often gives me such warnings:
    WARNUNG: Could not find selected item matching value "1" in CoreSelectOneChoice[UIXEditableFacesBeanImpl, id=_id7]
    how to solve the problem ?
    Thanks,
    wzzdx

    You could also set the default on your entity or viewobject, in the properties of your attribute.

  • SSRS using multiple select parameter in expression

    Hi,
    I am using parameters to create my query at runtime using data set expression.
    I have a multi select string parameter that gets populated using a query. I want to add this multi select parameter values to where clause in expression of mail data set. I am able to join the string and make it comma(,) separated but not sure how can I
    add single quotes(') to it.
    = join(Parameters!Column.Value,",")===>>a,b,c,d
    requirement===>'a','b' ,'c'
    Pls. guide

    make it like this
    = "'" & join(Parameters!Column.Value,"','") & "'"
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • Using the correct charger for hp dv6? 90 or 120w?? which one? help!

    Hi guys, currently im using a charger from my hp dv6-6153sa, but i need to cut this story short so you understand. First of i changed the motherboard in this laptop, the motherboard is from the hp pavilion dv6-6198sp however the battery is from a hp

  • Batch Processing doesn't update files in Premiere Pro CS5.5

    Hi, I'm not sure if this question should be under 'Audition' or 'Premiere Pro', but I'm selecting a large range of audio clips (from a wedding ceremony) and sending to Audition from Premiere (selecting 'Edit in Adobe Audition') When the clips appear

  • Standby Database

    Hi all, Its ciirctical We have prodution database in 10.2.0.1 on sun solaris and its standby with same configuration on remote site. Both the database are operating in maximum avaialbilty mode: select protection_mode,protection_level name ,db_unique_

  • Best way to import videos only for nested folders?

    I have a bunch of nested folders like this TOP LEVEL -> Day 1 ->->Videos ->->Photos -> Day 2 ->->Videos ->->Photos Day 69... Now I can't just choose import on the top level, because I don't want to import any of the photos. I don't want to click on e

  • Problem with downloading from itunes

    I can log on to the Apple website to manage my account and all the information is correct, but I get "Your Apple ID has been disabled" when I try to get something from App Store. what is the problem ?