Change selection view

Hi,
   I've created a selection view for my report category. How can I change this selection view? Where can I change it?
   Anyone know where exactly this selection view is stored with their view name and their fields defined?

hi,
u mean selection table?
the table name is "SCREEN".
u can manipulate it in the event at selection screen output by looping at screen.
ex:
selection-screen begin of line.
parameters: p1  radiobutton group rg1 user-command ucomm default 'X'.
parameters: input(7) modif id MI1.
selection-screen: comment 15(7) For field input.
comment 10(7) For field p1.
selection-screen end of line.
selection-screen begin of line.
parameters:
p2  radiobutton group rg1,
input1(7).
selection-screen end of line.
at selection-screen output.
  loop at screen.
IF P1 = 'X'.
      IF SCREEN-NAME = 'INPUT'.
        screen-INPUT = 1.
       SCREEN-INTENSIFIED = 1.
        screen-color = 6.
      ELSE.
        IF SCREEN-NAME = 'INPUT1'.
         SCREEN-INTENSIFIED = 0.
          screen-INPUT = 0.
         screen-color = 4.
        ENDIF.
      ENDIF.
    ELSEIF P2 = 'X'.
      IF SCREEN-NAME = 'INPUT1'.
       SCREEN-INTENSIFIED = 1.
        screen-INPUT  = 1.
        screen-color = 6.
      ELSE.
        IF SCREEN-NAME = 'INPUT'.
          screen-INPUT = 0.
         SCREEN-INTENSIFIED = 0.
         screen-color = 4.
        ENDIF.
      ENDIF.

Similar Messages

  • Storing changes done to a selection view of a LDB in a TR

    Hi Friends,
    I do have a problem while storing the changes done to a LDB selection view in a TR. Please guide me on the same, below is the summary of changes done.
    The requirement is as below:
    Modified the STD LDB DDF's selection view.
    Existing: Payment terms (ZTERM) taken from KNB1.
    Required: Payment terms (ZTERM) to be taken from BSID.
    So the changes we did are as follows:
    Go to SE36>DDF>Extras>Selection views>Copy origin of view SAP to CUS and click on change.
    Here we removed the input criteria for KNB1-ZTERM and added BSID-ZTERM as an input field. There was no TR prompted.
    Please let us know how to get these changes stored in a TR.
    We have also tried adding the below object in a TR# manually, but of no use.
    R3TR DSEL SAPDDFSTANDARD
    Regards,
    Narendra.
    P.S. : This results in changing the dynamic selections of FBL5N.

    Hi Srinivas,
    Can you elaborate on your answers...as I have already created CUS (origin of view - a copy of SAP) it is not allowing me to create one more origin of view... can you tell me how to create another origin of view apart from CUS, so that I can start these changes afresh...
    Also in SE03 even If i give DSEL and SAPDDFSTANDARD it is not displaying any objects and prompting to give a valid name...
    Regards,
    Narendra.

  • Views for list web parts. Is there a way to allow users to change the view for a list web part without being redirected?

    Hi,
    I added a list view web part into a SharePoint 2013 page and it  is working as expected, except for one thing.
    I have enabled the option for the user to change the view for the web part. However when the user changes it, the user is redirected away from the page containing the web part, to the URL of the list itself.
    Is there a way to circumvent this issue so when the user selects a different view it updates the listing in the web part itself, rather than the user being redirected?
    Thanks in advance for the help.
    Regards,
    P.

    Hi,
    Please understand that one page can only display one view. You could find it out by observing the Address in browser when switching among different views for a list.
    If you would like to change the view of a list web part, you could go to web part propertites > Select view and configure it.
    In addition, here is a thread with similar requirement that might help:
    http://social.technet.microsoft.com/Forums/en-US/18dba190-5ee2-4b50-b005-1360d862f4ba/how-can-end-user-change-the-view-in-a-list-view-web-part?forum=sharepointgeneralprevious
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to change the view criteria at run time for af:query

    Hi,
    I've a usecase where I need to change the view criteria of the af:query at run time.
    Use case:
    =======
    1) Consider a check box (Show Emps Under Dept 10) in the query panel when user selects and clicks 'Search' button should show the employees under dept 10. If user searches without selecting the check box, the results should show all the employees in all the departments.
    2) I need to have a check box always in the query panel. Its mandatory.
    The way I implemented:
    ==============
    1) Created a transient variable 'Show Emps Under Dept 10' in the EmployeeVO and also created a bind variable bind_DeptNo.
    2) Create a view criteria 'AllEmployees' which has only the transient attribute as the view criteria item and whose value set to 'false' by default.
    3) Created another view criteria 'EmpUnderDept' which has 'DepartmentId' as the view criteria item and whose value set to the bind variable 'bind_DeptNo'.
    4) Dropped the view criteria 'EmpUnderDept' as the 'af:query' panel in the jspx page.
    5) Overridden the queryListener as '#{EmpBean.empSearch}'
    6) Has the below code in the empSearch method as below. When user selects the check box, applying the other criteria 'EmpUnderDept' and setting the bind variable to '10'.
    public void empSearch(QueryEvent queryEvent) {
    // Add event code here...
    QueryDescriptor queryDesc = (QueryDescriptor) queryEvent.getDescriptor();
    ConjunctionCriterion conCrit = queryDesc.getConjunctionCriterion();
    List<Criterion> criterionList = conCrit.getCriterionList();
    List criterionValues = new ArrayList();
    Object criteriaValue = null;
    int criteriaNo = 0;
    DCBindingContainer bc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    FacesContext facesContext = FacesContext.getCurrentInstance();
    for (Criterion criterion : criterionList) {
    AttributeDescriptor attrDescriptor = ((AttributeCriterion)criterion).getAttribute();
    System.out.println("============== attrDescriptor.getName() =================== " + attrDescriptor.getName());
    criteriaValue = ((AttributeCriterion)criterion).getValues().get(0);
    if(criteriaNo==0) {
    Boolean val = (Boolean) ((AttributeCriterion)criterion).getValues().get(0);
    if (val.equals(true)) {
    OperationBinding method = (OperationBinding) ADFUtil.findOperation("ExecuteWithParams");
    if(method!=null) {
    Map params = method.getParamsMap();
    //params.put(key, value)
    method.getParamsMap().put("bind_DeptId", 10L);
    method.execute();
    ADFUtil.invokeMethodExpression( "#{bindings.EmpUnderDeptCriteiaQuery.processQuery}", queryEvent);
    } else {
    //ADFUtil.invokeEL("#{bindings.ExecuteWithParams.execute}");
    ADFUtil.invokeMethodExpression( "#{bindings.AllEmployeesCriteriaQuery.processQuery}", queryEvent);
    But this approach is not working and its always showing all the employees in all the departments.
    Please let me know if there is a way to change the view criteria at run time depending on the values set at run time for one of the view criteria items.
    JDev version am using is '11.1.1.5'
    Thanks,
    Lakshman

    Hi Shay,
    It worked for me without overriding the executeQuery() method in the ViewImpl.java.
    Instead of creating 2 view criteria, I created only one which has both transient variable and the DepartmentId = <bind_DeptId>. With the above code, it worked properly. Now I am using only one view criteria.
    Thank you.

  • How can I batch change the view options of multiple playlists?

    I would like to select multiple playlists and batch change their view options; seems like an obvious feature that should be there, but it does not seem to be there. I know of Assimilate View Options v2.2 in Doug's AppleScripts, but this is not what I want, since AWO requires you to do the change playlist by playlist, i.e., not in batch mode (and I have hundreds of playlists ...). Any idea? Please answer privately at [email protected] since I do not read this forum regularly. Thanks in advance for your help!

    did you also check out the following script ?
    [_*Change Hidden iTunes Preferences v2.4*_|http://dougscripts.com/itunes/scripts/ss.php?sp=changehiddenprefs]
    This application will allow you to invoke hidden iTunes preferences:
    Show "Library" playlist
    *Changing view setting is global*
    Allow half-stars in ratings
    Hide "Ping" buttons
    Show/hide arrow links -- to either search the iTunes Store or search your library
    Load complete iTunes Store preview before playing
    Create playlists for purchased song collections
    Play songs while importing or converting
    Create file names with track number
    Maintain grid view for Search results
    Option-click zoom button for Mini Player
    Show buttons horizontally

  • SP2010 Bug? Cannot change List View in Ribbon. List view drop down not responding?

    In all of my Libraries I have 3-5 views (standard and custom), I cannot select them from the Ribbon thought, the drop down button does not respond when clicked (nothing happens):
    When going with the mouse over the drop down button it shows "javascript:;" in the IE status bar.
    The only way to change the view, for the moment, is to do it via Library Settings and set the selected view as default.
    Is this a know issue? Is there any settings that I`m missing?
    Many thanks!
    Cheers,
    marek 

    Following is missing in master page, add this and it should work.
    Where to add?? see the appropriate place from V4 master.
    <Sharepoint:UIVersionedContent runat="server" UIVersion="4">
        <ContentTemplate>
         <Sharepoint:SPNavigationManager
         id="TreeViewNavigationManagerV4"
         runat="server"
         ContainedControl="TreeView"
         CssClass="s4-treeView"
         >
           <SharePoint:SPLinkButton runat="server" NavigateUrl="~site/_layouts/viewlsts.aspx" id="idNavLinkSiteHierarchyV4" Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"
    CssClass="s4-qlheader" />
            <div class="ms-treeviewouter">
           <SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">
             <Template_Controls>
            <SharePoint:SPHierarchyDataSourceControl
             runat="server"
             id="TreeViewDataSourceV4"
             RootContextObject="Web"
             IncludeDiscussionFolders="true"
            />
            <SharePoint:SPRememberScroll runat="server" id="TreeViewRememberScrollV4" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;height: 400px;width: 155px; ">
              <Sharepoint:SPTreeView
             id="WebTreeViewV4"
             runat="server"
             ShowLines="false"
             DataSourceId="TreeViewDataSourceV4"
             ExpandDepth="0"
             SelectedNodeStyle-CssClass="ms-tvselected"
             NodeStyle-CssClass="ms-navitem"
             SkipLinkText=""
             NodeIndent="12"
             ExpandImageUrl="/_layouts/images/tvclosed.png"
             ExpandImageUrlRtl="/_layouts/images/tvclosedrtl.png"
             CollapseImageUrl="/_layouts/images/tvopen.png"
             CollapseImageUrlRtl="/_layouts/images/tvopenrtl.png"
             NoExpandImageUrl="/_layouts/images/tvblank.gif"
              >
              </Sharepoint:SPTreeView>
            </Sharepoint:SPRememberScroll>
             </Template_Controls>
           </SharePoint:DelegateControl>
            </div>
         </Sharepoint:SPNavigationManager>
        </ContentTemplate>
       </SharePoint:UIVersionedContent>

  • I can't change the view/order of music on my iPhone in iTunes.

    So, my iPhone is plugged into my MacBook Pro. iTunes is open, the iPhone is in my left column. I select the "Music" sub-cat under my iPhone, which shows me the songs on my iPhone. I cannot change the view or order in which the songs are listed. So I can't sort by name, or artist or album. It appears to be locked on genre, and only the standard list view is available.
    I've restarted the phone. I've changed all sorts of setting in iTunes preferences. I am able to add songs, but I can only delete if I go into the "manually added songs" list.
    I think this was an issue before I upgraded to Lion. Any ideas?

    To Reset your Photo Stream, follow these instructions:
    From a computer browser, go to icloud.com and sign in.
    Click on your name on the iCloud home page (this is the page that shows all the app icons). If you do not see your name, click the cloud icon in the top left of the page.
    Click Advanced.
    Here you will see the Reset Photo Stream button. Clicking this button will remove all your Photo Stream photos from iCloud. Once removed, they cannot be recovered, but you can re-upload any photos you'd like to restore to your Photo Stream from a Mac or PC.
    After resetting your Photo Stream, you can also remove any photos that have been downloaded to your device or computers. To do this, follow the directions below:
    On your iOS device, you can remove photos from the Photo Stream view by turning off Photo Stream and then optionally turning it back on. You can do this at Settings > iCloud > Photo Stream.If you added any Photo Stream photos to other albums or the Camera Roll on your iOS device, you can locate and delete these photos manually, if desired.

  • Changes to View in logical database(SE36) is not saved in transport.!!

    Hi ,
    Logical Database: ADA
    Selection view: CUS
    We did few changes to the view for table fields ANLAV in SE36 .
    When I press save, it is not asking for transport number.
    How i can save these entries in transport?  Do I need to manually place in the transport?
    Kindly Suggest.
    Thanks

    Hi,
    Please check below sdn link..
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e0039a-0d79-2c10-0aaf-9f6c062c0ffb?quicklink=index&overridelayout=true
    BR,
    Vijay

  • Selecting  views in object browser crashes IE browser

    in HTMLDB v2 navigate as follows:
    SQL Workshop > Object Browser
    in the select list (which defaults to Tables) select Views. This crashes the browser!!
    Have installed the MS script debugger and this pops up the message:
    A Runtime error has occured. Do you wish to debug?
    Line: 50
    Error: Object Required
    The problem occurs for all options in the select list which do not have any objects of that type created in the schema. (ie if no views are created then it will crash. If you then create a view this option works fine)

    Hi
    I have the exact same symptoms as described in this thread.
    I thought I had found the solution, but I use the HTTP Server that is included with Oracle RDBMS version 9.2. This config doesn't have any marvel.conf file. But I think this is the same as httpd.conf in my configuration (?). I had the AddType rows in there but they did not have any dots before "xbl" and "htc". So I changed the rows to:
    AddType text/xml .xbl
    AddType text/x-component .htc
    ... and restarted the HTTP Server but I still get the runtime error as you describe it.
    Any ideas of what to do?
    regards // Frederic

  • LDB/Report Category/Selection view

    Hello,
    I have a requirement to add a field onto the standard selection of the program PC00_M99_CWTR.
    The field I need to add is PA0031-RFP01 (Reference personnel number). Can this be added??
    I have been told that I can add this field to the dynamic selection screen by changing the fields
    behind the logical database PNP. However, when I go into SE36 and enter the SELECTION VIEWS
    option choose PNP and SAP STANDARD to display the system replies with 'The selection view does
    not exist' ?????
    How can I add fields when I can't see the SAP standard one to copy from.
    Or should I be changing the reporting category.
    Any help much appreciated.
    Thanks
    Andy

    Thanks Rob.
    Just wanted to know if it was possible or not. Sometimes with SAP it says you can do
    something to the SAP standard and then you have to go and create a custom copy
    having spent many hours in the first place!!
    Andy

  • Which table the dynamic selection view will be stored

    Dear Freinds,
                      I  have created a dynamic selections view form Se80 > Editobject>Selection view > Created by adding the required tables pa0002,pa006,pa0009 . But the transport request we have saved it locally
    now i want to create a transport request for the dynamic view . Could any please let me know how to create transport reqest for the Dynamic selection
    View which has been created.
    regards
    divya

    HiDivya,
    yo have saved the changes into local object and now you want to generate the TRN and for the save you have to change the attribute > GOTO > Other object Entry and  changed the package and TRN will generate .
    Regards
    Sheetal

  • Change Preferred Viewing Locale by a paramter field in the report template

    Hello,
    Is there a method that allows to change the Preferred Viewing Locale at the report template level?
    Actually I have some templates for final clients in different countries, and these reports should be generated in Infoview.
    In order to generate reports in different languages, I inserted a parameter {?Language}
    Then for caption/text I used a formula like this
    Select {?Language}
    Case "en_US": .....
    Case "de_CH": .....
    Case "it_IT": .....
    Case "nl_BE": .....
    However this won't work for date axis in charts and number formats.
    So I switched to Preferred Viewing Locale settings, which seemed to be exactly what I wanted cause everything can be changed according to the local settings, except that I need to change the setting every time by selecting View - Preferred Viewing Locale - German - (Germany)... for 20 different reports
    And what's more important is that I cannot change this setting when I launch the template in Infoview. Change in Preferences will impact all the templates while I just need change on one template only.
    I had a look on all the functions available and it seems that ContentLocale function can only display the current setting.
    Is there any solutions?
    Thanks in advance,
    Wenzhao

    Post your question to BOE Admin forums

  • In iTunes under my device, under the apps tab, Why are all the options shaded out?  I cannot make any changes, select any apps or do anything with the apps.  I was able to load a few apps and sync but cannot sync anymore to my phone.

    In iTunes under my device, under the apps tab, Why are all the options shaded out?  I cannot make any changes, select any apps or do anything with the apps.  I was able to load a few apps and sync but cannot sync anymore to my phone.

    Hi,
    ( I search for iChat questions when I have finished in the iChat Forum)
    So the menu bar reads iChat, File,  Edit,  View, Buddies, Video, Window and Help
    There is no Buddy List open.
    There is no other window for iChat open.
    In the iChat Menu you only have access to Status.
    Is an item ticked in the list ?
    Is this a green (Available item) or  Red ( an Away one) ?
    Can you access the Accounts option ?  (Sitll in the iChat Menu)
    Is anything in here ticked ?
    In the Window menu any Logged in account should appear in the list  (Between the Next Chat and File Transfer items)
    It would be useful to know which version of iChat this is.
    If no account is ticked (iChat Menu > Accounts) or not showing in the Window Menu, plus you cannot determine the Status and you cannot access the Preferences then you need to access your Home Folder/Library/Preferences
    As the Library in the Home Holder is Invisible in Lion you will need the Finder's Go Menu > Go to Folder option  (you can use it in earlier OS versions if you want)
    Type in:-
    ~/Library/Preferences
    Find the file called com.apple.ichat.plist
    Drag it to the Trash and Restart iChat.
    This will lose all the settings in iChat that you have changed from Defaults but there is no way around this.
    9:23 PM      Saturday; August 27, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I am new to iWorks and would like to change the view on my spreadsheet in Numbers to landscape.  I can't find where to do that.  I am even able to do that? Please help!

    I am new to iWorks and would like to change the view on my spreadsheet in Numbers to landscape.  I can't find where to do that.  I am even able to do that? Please help!

    you can change the page orientation by selecting the menu item "File > Print..." then adjust the orientation in "Page Orientation" section, then click "Done" (or "Print", if you want to print).

  • Changing menu view settings

    Hi, I want to buy the apple tv, but I need to know first can I change the view mode like I can in itunes.
    This is an important issue for me and definatly will effect my buying decision because I have photo sensitive epilipsy
    and icons moving across the screen really effect me. I would like to be able to choose a list mode like in itunes.
    Thanks.
    Also, Im a english speaker living in Germany, will I still be able to select english audio track in purchased movies
    like I can in itunes?

    Welcome to the Apple Community.
    Unfortunately there are no custom menu settings whatsoever on the Apple TV.
    I believe some German movies may have English soundtracks but I don't believe it's many.

Maybe you are looking for

  • Is there a way to have text alongside an inline Table?

    Hi. Firstly, I have had the problem (after saving and re-opening my pages document) of having floating images not formatted in the same place. Anyone else encounter this? The only the way this doesn't happen is if I make them all inline before saving

  • Stop imported images from being scaled down

    This is a quote from the Adobe Premiere Elements 7 web page Guidelines For Adding Files Guidelines for adding still image files By default, Adobe Premiere Elements scales still images to fit the project frame size. You can override this behavior and

  • Lost Video IN\Out put

    I have lost my video in/out via firewire. I have check and the firewire reads my DSR-11. I have control (play, ff, rw) but i am not recieving any video or audio. Audio/Video settings-----DV NTSC 48khm Device Control-----------Firewire NTSC View Video

  • Problem compiling with Swing

    I am new to java. I have recently installed jdk-1.3.1_01 and am able to compile and run basic java programs. However, when trying to compile HelloWorldSwing.java, I get the following error: HelloWorldSwing.java:6: error:Cannot find class "JFrame" [JL

  • Parameter Passing - Same Page. General

    Does anybody have a source for general examples on the following topics: - Passing parameters from a portlet in one section of a page to a portlet in another section of the same page. - Submitting input from a form to a stored procedure. I am new to