What is use of SCOPE OF LIST in PO replorts.?

Hi guru's
Can anybody explain me , what is ithe use of scope of list in Reporting PO,like, me2n.me2l,me2m..etc
If i want to add new scope of list , what are all configuration part for that, where i want to assign it..?
Good solution will be rewardable..
Thanks
sap-mm

Hi,
Scope of List is defines the type of output which will be displayed. e.g It can be ALV display, it can be hierarchial dispaly.
Each of these dispalys have their own properties and advantages and disadvantages. Hence, SAP has provided various option to the users to choose the kind of dispaly he wants.
I dont think so there is any customisation for maintaining the entries to this scope of list. The values in the drop down are the options provided by SAP.
Regards,
Vishal

Similar Messages

  • Whats the use of assigning price list to site

    hi ,
    Why we assign price list in site (wb01) merchandise category?is that price list the same which i assign in "assign pricing type/reference site to organisational levels" in sales price calculation.explain me whats the use of assigniing the price list in siter(wb01) merchandise category which we will find on the top screen inside the site master
    regards
    krish

    Hi Krish
    Price list are assigned to article through MC at site master, no where else we define price list with article. When you run WPMA to transfer article price to stores, system will look at assigned price list with MC at site master then transfer the price.
    Price list assign at organisational level will help system to find which pricing procedure to be used and which store Net purchase price to be taken for calculation.
    Best Regards
    Swami

  • What Component should be used to display the list on UI

    Hi All,
    I have a table in which when the user selects a row and tries to remove the row. I am supposed to show the pop up which shows all the rows matching to the header of the row.
    In my backing bean i have the context of the row so i could extract the matching rows form db into a List<String> . Now what i need to know is which component on the Ui will show this as a list in Pop Up.
    I mean which component af:??? should be used to display the List ?
    I am kind of new to ADF.
    Regards,
    Sharma

    inputComboboxListOfValues
    selectOneChoice
    inputListOfValues

  • When I click to make Firefox my browser, a window comes up for me to choose what to use to open a long list of programs for which I have no clue.

    I think about 15 programs are on that list, including calculator asking me to name the program to use to open it. I don't know what to use to open any program.

    If you are talking about making Firefox your default browser, see this:
    https://support.mozilla.org/en-US/kb/make-firefox-your-default-browser

  • Background job getting cancelled : Choose at least one scope of list

    Hello to all,
    I am trying to Run on Z report in background which conatins SUBMIT statement to standard progarm for MB5B .This report already programmed to call a report in background.It takes stocks for given period,I am taking the values using "import memory-id" statement.It gives an error log in SM37 as:
    Choose at least one scope of list
    Message no. M7829
    Can we call a submit stmt in a report that is to run in background?? or pls provide any alternative for this problem??
    Thnax & Regards
    Sonal

    Hi Sonal,
    1. This is happening because there are some checkboxes on the selection screen
       which are ticked by default when we run in fore ground
       and are blank when run in  background.
      Hence the system gives the error meaning to select atleast one of them.
    2. We can simulate this error in foreground also.
       There is one button on selection screen in the middle frame.
       "> Category"
       Just push it.
       Some checkboxes will appear now.
       Untick all of them and run the report. You will get the same error
    Choose at least one scope of list
    3. So while doing SUBMIT in the z report, you can pass the values of those checkboxes (which ever you require) as 'X'.
    eg.
    report abc.
    submit RM07MLBD
    with matnr = '3'
    with pa_wdzer = 'X'.
    4. The checkboxes field names are:
    PARAMETERS : pa_wdzer    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    PARAMETERS : pa_wdzew    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    PARAMETERS : pa_wdwiz    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    PARAMETERS : pa_wdwuw    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    PARAMETERS : pa_wdwew    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    PARAMETERS : pa_ndzer    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    PARAMETERS : pa_ndsto    LIKE AM07M-MB5B_XONUL
                              modif id liu.
    regards,
    amit m.

  • How can I use two drop down lists for one time value?

    I want to enter the length of time that someone does an activity in hours and minutes using two drop down lists, then enter them as a single time value (H:i:s) in Mysql.
    I've used the basic drop down lists, and a few different variations of the following with no success (seconds is a hidden field with a value of "00"):
                           GetSQLValueString(strftime('%H:%i:%s', strtotime($_POST["sleeptimemin"]." ".$_POST["sleeptimehr"]." ".$_POST["seconds"])), "date"),
    This returns 00:00:16, no matter what is selected on the drop down list.
    Any help would be appreciated.

    MySQL stores times in human-understandable format, using the 24-hour clock.
    GetSQLValueString($_POST['sleeptimehr'] . ':' . $_POST['sleeptimemin'] . ':00', "date"),

  • Invalid data has been used to update the list item. The field you are trying to update may be read only (Lookup Field).

    Hi.
    I am getting below error while adding value to look-up field.
    Invalid data has been used to update the list item. The field you are trying to update may be read only.
    I have tried many forums ans post but didn't come to know what's the root cause of issue. I am also posting Code for creating and adding lookup field.
    CAML to create lookup field (It works Fine)
    string lkproductNumber = "<Field Type='Lookup' DisplayName='Product Number' StaticName='ProductNumber' ReadOnly='FALSE' List='" + pNewMaster.Id + "' ShowField='Product_x0020_Number' />";
    Code to insert value to lookup field
    ClientContext client = new ClientContext(SiteUrl);
    client.Load(client.Web);
    client.Credentials = new NetworkCredential(this.UserName, this.Password, this.Domain);
    // Lookup Lists
    List pmList = client.Web.Lists.GetByTitle("Product_Master");
    //List Conatining Lookup Columns
    List piList = client.Web.Lists.GetByTitle("Product_Inventory");
    client.Load(piList);
    query.ViewXml = "<View/>";
    ListItemCollection collection = pmList.GetItems(query);
    client.Load(collection);
    client.ExecuteQuery();
    int prodid=0;
    foreach (ListItem item in collection)
    if (Convert.ToString(item["Product_x0020_Number"]) == ProductNumber)
    { prodid = Convert.ToInt32(item["ID"]); }
    ListItem piItem = piList.AddItem(new ListItemCreationInformation());
    piItem["Product_x0020_Number"] = new FieldLookupValue() { LookupId = prodid };
    piItem.Update();
    client.ExecuteQuery();
    Exception Detail
    Microsoft.SharePoint.Client.ServerException was caught
    Message=Invalid data has been used to update the list item. The field you are trying to update may be read only.
    Source=Microsoft.SharePoint.Client.Runtime
    ServerErrorCode=-2147352571
    ServerErrorTypeName=Microsoft.SharePoint.SPException
    ServerStackTrace=""
    StackTrace:
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
    at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
    at WebServiceProviders.ClientServices.NewProductInventory() in Z:\.............ClientServices.cs:line 889
    InnerException:
    Quick response is highly appreciated.
    Thanks
    Mehar

    Try some thing like below,
    your data value that needs to be update should be in this format "ID of the lookup";#"Title of the Lookup" 
    For example,
    listItem["Product_x0020_Number"]
    = "1;#iPhone";
    listItem["Product_x0020_Number"]
    = "2;#Mobile";
    Hope this helped you....

  • How do I determine what is using the most memory.

    The hard disk memory is filling up and I was wondering what is the best way to determine what is using the most memory. Is there a way to show a graph of how the memory is used. Like on my ipod. When I am checking the memory, it will show how much is music, and how much is applications and so on.
    Also, I seemed to have lost the "all movies" in the list to the left when the hard disk is opened. It still shows the all imagess, and all documents but the all movies is gone.
    Thank you for any help
    Marco

    Try Grand Perspective or OmniDiskSweeper - CNet Downloads or MacUpdate.
    Just for future reference space on a hard drive is called, "storage," not "memory."  Memory refers to the installed RAM in your computer.
    Open Finder Preferences from its Finder menu.  Click on the Sidebar icon in the toolbar.  Check the box for your missing item.

  • Warning using DWR to populate list box

    hi all,
    iam trying to use DWR for populating list box wen a check box is checked.iam using Tomcat 4.1 & j2sdk 1.4.2
    but iam getting an alert: illegal access to default constructor Aug 20, 2006 6:30:43 PM uk.ltd.getahead.dwr.util.CommonsLoggingOutput warn
    WARNING: Method execution failed:
    java.lang.InstantiationException: Illegal Access to default constructor
            at uk.ltd.getahead.dwr.create.NewCreator.getInstance(NewCreator.java:62)
            at uk.ltd.getahead.dwr.impl.ExecuteQuery.execute(ExecuteQuery.java:172)
            at uk.ltd.getahead.dwr.impl.DefaultExecProcessor.handle(DefaultExecProce
    ssor.java:48)
            at uk.ltd.getahead.dwr.impl.DefaultProcessor.handle(DefaultProcessor.jav
    a:81)
            at uk.ltd.getahead.dwr.AbstractDWRServlet.doPost(AbstractDWRServlet.java
    :162)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:247)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:193)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:256)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:
    2415)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:180)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatche
    rValve.java:171)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:172)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:174)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:22
    3)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :594)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:392)
            at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
    :565)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
    ool.java:619)
            at java.lang.Thread.run(Thread.java:534)
    Aug 20, 2006 6:30:43 PM uk.ltd.getahead.dwr.util.CommonsLoggingOutput warn
    WARNING: Erroring: id[53_1156078843109] message[uk.ltd.getahead.dwr.OutboundVari
    able@497904]my code goes here,
    package db;
    import java.util.*;
    class ArrayL 
         public ArrayL()
              System.out.println("In constructor");
         public ArrayList getA(String x)
              ArrayList al=new ArrayList();
              al.add("1");
              al.add("6");
              al.add("42");
              al.add("16");
              al.add("3");
              System.out.println("al-------"+al);
              return al;
         public int[] getNumbers(boolean big)
            if (big)
                return new int[]
                    1000, 2000, 3000, 4000
            else
                return new int[]
                    1, 2, 3, 4, 5, 6, 7, 8, 9, 10
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE dwr PUBLIC "-//GetAhead Limited//DTD Direct Web Remoting 1.0//EN"
        "http://www.getahead.ltd.uk/dwr/dwr10.dtd">
    <dwr>
      <allow>
        <create creator="new" javascript="Demo" scope="session">
          <param name="class" value="uk.ltd.getahead.dwr.Demo"/>
        </create>
         <create creator="new" javascript="ArrayL" scope="session">
          <param name="class" value="db.ArrayL"/>
        </create>
      </allow>
    </dwr>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <script type='text/javascript'
        src='/ajax1/dwr/engine.js'></script>
    <script type='text/javascript'
        src='/ajax1/dwr/interface/ArrayL.js'></script>
    <script type='text/javascript'
        src='/ajax1/dwr/util.js'></script>
         <SCRIPT type='text/javascript'>
         <!--
                   function continentSelected()
                        var searchexp = $("continent").value;
                        ArrayL.getNumbers(searchexp, displayItems);
                        return false;
                   function displayItems(items)
                        DWRUtil.removeAllOptions("country");
                      DWRUtil.addOptions("country", data);          
                        if (items.length == 0)
                             alert("No matching products found");
                             $("country").style.visibility = "hidden";
         //-->
         </SCRIPT>
    </HEAD>
    <BODY>
      <FORM NAME="countryform" ID="countryform" ACTION="doCountry" METHOD="POST">
        <SELECT name="continent" id="continent" onChange="continentSelected();">
          <OPTION VALUE="Africa">Africa</OPTION>
          <OPTION VALUE="America">America</OPTION>
          <OPTION VALUE="Asia">Asia</OPTION>
          <OPTION VALUE="Australia">Australia</OPTION>
          <OPTION VALUE="Europe">Europe</OPTION>
        </SELECT>
        <SELECT name="country" id="country">
        </SELECT>
    </BODY>
    </HTML>can any one help with this problem
    Thank u in advance

    I'm not sure if the code you display is 'Exactly' how it is written.
    If it is:
    1) The class needs to be public (i.e. public class ArrayL {.....})
    2) In the code below, the value of searchexp is a string
               var searchexp = $("continent").value;
              ArrayL.getNumbers(searchexp, displayItems); but the function
    public int[] getNumbers(boolean big) takes a boolean.
    3) In the call DWRUtil.addOptions("country", data); 'data' isn't defined did you mean 'items'?
    Finally in the statement that you have if (items.length == 0) I have found that does not work with Collections (at least Maps) returned from a method to DWR (as of 1.1.3).
    Good luck

  • ME57 transaction with ALV scope of list

    hi all!
    i want to run ME57 transaction with ALV scope of list, but i'm facing a problem because if the list of requirements are bigger than 50 recors, the system says that  'Max. 50 requirements can be processed simultaneously' and I can not assign source of supply to all my list. I guess this will be customizable, because if I run it with A scope of list, there's no limit of processing.
    how can I change that value in order to be able to process all the requirements of my list in ALV view?
    thanks in advance.
    Fabian

    Hello Fabian ,
    This limit is maintained in class CL_REQUISITION_AGGREGATE_MM
    attribute N_EDIT_MAXIMUM initial value 50.
    If you want , this value can be changed using transaction code SE24. However , please take note that this change is considered a modificationto the SAP standard system and will no longer be supported.
    I hope this information has been helpful.
    Best Regards,
    Frank

  • How do i find what is using my hard drive space?

    My hard drive space on my Macbook pro has suddenly filled up. How do I find what is using up the space so that I can see what I need to delete?

    Hi s,
    This is an old list, but some should still be current:
    Disk Inventory X: http://www.derlien.com/
    OmniDiskSweeper: http://www.omnigroup.com/products/omnidisksweeper/download/
    GrandPerspective: http://grandperspectiv.sourceforge.net/#download
    SupaView: http://twinside.free.fr/supaview/
    WhatSize ($12.99 and includes a duplicate finder): http://www.whatsizemac.com/
    DaisyDisk: http://daisydiskapp.com/
    http://pondini.org/OSX/LionStorage.html

  • When to use which scope

    Hi,
    I have a CRUD application.. Where in the data is fetched, displayed n edited n stored back to db. Also there is a sequential access between pages & the information entered on the first page is needed on the second page & so forth. What would be the best scope & why ?
    When to use which scope? What is the life-cycle of each scope.
    Also, I couldn't find any good tutorial on scopes. If you are aware of the same, please guide.
    Its urgent.
    Thanks in advance.

    921331 wrote:
    Hi,
    I have a CRUD application.. Where in the data is fetched, displayed n edited n stored back to db. Also there is a sequential access between pages & the information entered on the first page is needed on the second page & so forth. What would be the best scope & why ?
    When to use which scope? What is the life-cycle of each scope.
    Also, I couldn't find any good tutorial on scopes. If you are aware of the same, please guide.
    Its urgent.
    Thanks in advance.You could use ViewScope and parameters to the next view or if using CDI have a look at conversation scope. You should read about them in detail yourself because even if someone chooses one for you it's still you who has to go on to use it correctly.

  • How do I check to see WHAT'S using up the most storage.

    I have a 500gb Drive but only 11 free.  Wanted the best way to see what's using up space.  I can randomly hit command I on folders and check that way, but was wondering if there was a way to see a document or spreadsheet, or pie chart of everything taking up space.  Thanks all.

    Not really, no.  I'm sure there's probably a command-line program that might give you similar information, but that's not for the faint of heart.
    If you are feeling brave you could try something like this:
    open
    Applications > Utilities > Terminal
    and in the Terminal Window type:
    find the Path to the folder -ls | cut -c 48-200 | sort -rn | more
    this will create a directory listing for all the files in the folder and its subfolders and sort them reverse by size and print a listing. The first column contains the file size in Bytes and pipes the listing thru more. You will have to enter  a blank to advance and a q to quit.
    For example, on my MBP the following command gives this result:
    find /Users/dreschle/Music/iTunes/iTunes\ Music/The\ Beatles -ls | cut -c 48-200 | sort -rn | more
    [Eliza:~] dreschle% find /Users/dreschle/Music/iTunes/iTunes\ Music/The\ Beatles -ls | cut -c 48-200 | sort -rn | more
        7169513 29 Jan 15:39 /Users/dreschle/Music/iTunes/iTunes Music/The Beatles/The Beatles 1967-1970/1-13 Hey Jude.m4a
        6881372  6 Feb 07:15 /Users/dreschle/Music/iTunes/iTunes Music/The Beatles/1/21 Hey Jude.m4a
        5192915 29 Jan 15:39 /Users/dreschle/Music/iTunes/iTunes Music/The Beatles/The Beatles 1967-1970/1-06 A Day In The Life.m4a
        4875828 29 Jan 15:39 /Users/dreschle/Music/iTunes/iTunes Music/The Beatles/The Beatles 1967-1970/2-02 While My Guitar Gently Weeps.m4a
        4684951 29 Jan 15:39 /Users/dreschle/Music/iTunes/iTunes Music/The Beatles/The Beatles 1967-1970/1-08 I Am The Walrus.m4a  ......
    and I see that from all Beatles albums I own the biggest is "Hey Jude" with 7 MB
    If you want to use this command often you could create a shell script, an an apple script or an automator Workflow.
    Good Luck
    Leonie Lionheart

  • Can I make a birthday reminder repeat every year? (Using the Birthday Reminder List)

    I see that when I enter contact birthdays they show up on my calendar...great.  But what about the children of my contacts?  I thought I would enter their birthdates using the Birthday Reminder List, but when I enter their birthday, it insists on entering the due date....will this reminder keep repeating each year?  If not, there's no sense in entering the birthdate.  I know I can set up an annually repeating event for the birthday but it just seems like I should be able to use the Birthday Reminder List for this.   Thanks

    Here's what I've done which may work for others.  I've scrapped the idea of using the birthday reminders function.  Instead, I created a new calendar (click the settings icon in the upper right of the icloud website) called "Birthdays-Non Contact".  Then I entered the missing bdays as all day events (repeating every year) on this calendar.  So now all my birthdays show on my main calendar....some come from the birthday field in the contacts database and the rest come from my newly created "Birthdays-Non Contact" calendar events. 
    Interestingly, if I choose to show only my "Birthdays-Non Contact" calendar, all my contact birthdays appear on it as well, so it gives a complete list of all my birthdays and nothing else....cool.
    I should say, everything I'm talking about is what I see on the ICloud site.  My husband has the phone at the moment which I presume will show the same picture.

  • Scope of List in custom program

    Hi Experts,
        I have a requirement to include scope of list parameter in my selection screen just like ME3L Transaction. How can I achieve this functionality as it behaves in that standard transaction.
    Thanks & Regards,
    Arun.

    Sorry I misunderstood you question...
    I strongly feel that this functionality is developed specifically for purchasing module keeping few report into consideration and its not in the form where in other developer can use it.
    put a break-point in method is_supported defined in program LMEREPI06 and execute the program for scope ALV.

Maybe you are looking for

  • I can't upgrade my current iPhoto 9.3.2 to 9.5 with my OS X Mavericks

    I have upgraded my MacBoon Pro with Mevericks but I can't seem to access to my iPhoto 9.3.2 I was informed that I need to upgrade to 9.5 which I tried but failed. And I've been consistently, using my Apple ID to log in all places (iTunes, Apple Suppr

  • Error when running MakeDim package

    Hi there, I have a really annoying problem with the Admin_MakeDim package in the Examples folder of BPC. We have a Data Services process which is populating a staging table which is an exact duplicate of the mbrAccount table. When I run the makedim p

  • Navigation showing completed form field values in URI

    Hi, Using ADF, I have a form for entering values that I want the user to complete and then click a Search button that navigates to another page passing the values the user entered as traditional GET type parameters in the URI. I do not seem to be hav

  • Ipad 3 camera shuttle is not working, ipad 3 camera shuttle is not working

    My ipad 3 camera is not working; the shuttle doesn't open - any ideas on how to resolve this problem?

  • Ms Reporting Services

    Hello , I am trying to run SQL Reporting Services from a CF application. I have seen other posts on this but I have not found an answer. The MS Reporting services wsdl file is at http://xxx.XX.XX.XX/reportserver/reportservice.asmx I can get the wsdl