Changing IView visibility on runtime

Is it possible to change iview visibility inside page on runtime? (before navigation to this page for inst)

Not sure what you mean exactly...
Perhaps you're looking for the Display State property of iViews:
Defines display state of iView/page in run time: Mandatory=locked in page; Visible=displayed in page; Available=hidden from page, but can be added by end user
Here is a detailed list of iView properties:
http://help.sap.com/saphelp_nw04/helpdata/en/e6/60cfb1823640669d80623dc6e184f3/frameset.htm

Similar Messages

  • How to change report displayname at runtime when run from the report server?

    hi all,
    with the reportviewer widget in a winforms app, i'm able to change report displayname at runtime by handling thesubmittingparametervalues event like so:
            private void reportViewer1_SubmittingParameterValues(object sender, ReportParametersEventArgs e)
                string po = e.Parameters["Order"].Values[0];
                this.reportViewer1.ServerReport.DisplayName = "Load Out - " + po + " - " + DateTime.Now.ToShortDateString();
    question: how do i achieve the same thing when the report is run via the ssrs reportserver website?
    thanks for any tips,
    sff

    Hi sherifffruitfly2,
    According to your description, you want to change the display name of report in Report Manager. Right?
    In Reporting Services, we can't make the report file name dynamically. But we have Build-in Fields to show report name and execution time in a report. We can add a textbox and put in the expression below:
    ="Load on- "+Globals!ReportName+" "+Globals!ExecutionTime
    It will show the report name with execution time when we run the report:
    Reference:
    Built-in Collections in Expressions (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Change iviews installed from a business package

    Hi experts,
    I'm working on EP 2004s and I would like to know if there is a way to change iviews installed in the portal from a business package using Visual Composer. Can I copy them into my own created package in VC?
    Thanks
    Panos

    Hi,
    Usually Business Package iviews - especially the older ones - aren't based on Visual composer models but rather older IView technology. Therefore, it should be impossible to change them in VC.
    I've heard that SAP may be considering releasing business packages (XSS?) as VC models but never heard any confirmation regrading this. Probbaly based on the support-related questions. I once blogged on this <a href="/people/community.user/blog/2007/01/30/enterprise-soa-explorations-fragments.
    Dick

  • Issue with changing database location at runtime

    I am having a similar issue to:
    Re: Issue with changing database location at runtime
    where I am using Crystal Reports 2008 SP 3 fix pack 3.3 and a OLE DB connection to a SQL 2008 R2 server. Running on a computer on the network where the report can see the original development server is fast, other computers where that server is not available are hanging 20 seconds before coming up.
    I am using the same code from the Crystal Sample app to change the connection on each table. I found that the slowness comes the first time the ReportDocument object is accessed to get the collection of database tables, before the connection info is set.
    Fix pack 3.4 was mentioned in that post.  Does fix pack 3.4 fix that issue? I don't see fix pack 3.4 on the downloads page (https://websmp130.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/bobj_download/main.htm)

    I just found on the reports that were having the issue there was a SQL Expression.  Per this thread:
    Re: Report load is slow after changing database servers
    There was an issue with that and the fix is not out til the end of Feb so I found a way not to use the SQL Expression and the speed is much better.
    However, your information provided led me to this post:
    Cannot Change Table Location, but Only for One Report
    And I am also experiencing an issue where the table location is not changing on one subreport and I will look into that as a possible solution.
    Thanks so much for your help.

  • Error when I change the visibility of a context node

    Hi,
    I had to change the visibility of a context node (ZActivityH) to public (it was private) in the context to access it in the method DO_HANDLE_EVENT. I used transaction BSP_WD_WORKBENCH. I verify and activate it.
    As a result of changing the visibility, I have this error:
    Class      CX_SY_REF_IS_INITIAL
    Text:      Dereferencing of the NULL reference
    Program:      ZL_CRM_IC_IRECREASON_IMPL=====CP
    Include:      ZL_CRM_IC_IRECREASON_IMPL=====CM00C
    Source Text Row:      8
    The new source code in method DO_HANDLE_EVENT is:
    DATA category TYPE STRING.
    category = ztyped_context->ZActivityH->GET_CATEGORY( ATTRIBUTE_PATH = '' ).
    Any idea about the problem? Can I modify the visibility of a context node?
    Thank you very much for your help.
    María José

    Thanks a lot, Patrick,
    My context node is null, but I don´t know why.
    I have:
    In Class: ZL_CRM_IC_IRECREASON_IMPL
    Attribute ZTYPED_CONTEXT     type ref ZL_CRM_IC_IRECREASON_CTXT
    In class: ZL_CRM_IC_IRECREASON_CTXT
    Attribute ZACTIVITYH      type ref ZL_CRM_IC_IRECREASON_CN10
    In class: ZL_CRM_IC_IRECREASON_CN10
    Method GET_CATEGORY
    In method CREATE_CONTEXT_NODES:
    model = owner->create_model(
          class_name     = 'ZL_CRM_IC_IRECREASON_CN10'
          model_id       = 'ActivityH' ).                       "#EC NOTEXT
      activityh ?= model.
    In view I’m filling the context node:
    Regards,
    María.

  • Value attribute not visible in runtime collection

    Hi,
    I have created some 2-3 value attributes (display only) in a standard model node for BTDOCFLOW (which also contains some display only fields). Put in the logic in their Getter methods and fields are getting displayed in UI with the values.
    Now, my requirement is to display this table view (Assignment block) in default sorting based upon one value attribute and one model node attribute. But the problem here is, I am unable to find value node attribute at runtime in BTDOCFLOW collection at DO_PREPARE_OUTPUT. (Even display only standard context node attributes, which are not part of model node structure are not visible)
    I have re-defined method GET_TABLE_LINE_SAMPLE with the value attributes, resulting in enhanced rv_sample line, but still the value attribute is not visible at runtime in the collection.
    Can someone pl. tell me, how can I display my value attributes in collection along with model node attributes, so that I can do default sorting based upon one custom and one model node attribute.
    Thanks,

    Hi,
    Whne you define value attributes within the model attribute then the node becomes mixed instead of either value node or model node.
    So you need to access the mixed node and then should access model attributes and value attributes separately.
    Get your collection into a normal entity then assign the entity to mixed node
    DATA: lr_mixed TYPE REF TO cl_bsp_wd_mixed_node ,
                current TYPE REF TO if_bol_bo_property_access,
                 lr_current TYPE REF TO cl_crm_bol_entity.
         current ?= me->typed_context->entity name->collection_wrapper->get_current( ).
          lr_mixed ?= current..
          lr_current ?= lr_mixed->if_bsp_wd_ext_property_access~get_model_node( ).
    Best Regards,
    Dharmakasi.

  • Change plot visibility from legend

    Is there a way to change the plot visibility on an xy graph from the legend control similar to how you can click on the icon of the plot and change the color, line style, line width, etc.
    There isn't a option in the drop down list for this but maybe it can be programatically added to the drop down menu?
    Thanks
    Attachments:
    plotVisibility.jpg ‏30 KB

    Hmmmm....Dennis is right (and  by the way, it's Matt ).  However, there maybe a more involved solution to this - if you can define the location of the legend, maybe you could use a hotkey that, when pressed while hovering over the legend entry changes the visibility of the plot.  But, like I said this is pretty involved.
    30 plots, though?  That makes my brain hurt.  Is there some way to break the number of plots out or collapse the number of plots?  From a human interaction standpoint, a graph containing 30 plots just doesn't seem very useful  - it's just too many to visualize and make sense of.  (And the reason I am guessing you are seeking this functionality).
    Matt
    Matt Richardson
    Certified LabVIEW Developer
    MSR Consulting, LLC

  • Business Graphics: Speedometer chart: Change Maximum value on runtime

    Hi Skilled,
    We faced a little problem in our project. We use Business Graphics component and Speedometer chart on the View and we should change maximum value of the graphics on runtime.
    I could easily change the maximum on design time in Chart Designer -> Axis -> Maximum Value, but I haven't found a way to change it on runtime.
    Are there any known ways to change the value on runtime?
    Best Regards, Dmitry

    Hi,
    by calling setDirectCustomizing you can provide customizing XML at runtime.
    Create your own customizing XML where you define the maximum value and call this method.
    You can also use the SAP Chart Designer from SDNs download area for creating the XML (just to get an idea how the XML has look like in your application).
    Regards, Kai

  • Is it possible to change Application Module at runtime?

    Hi all!
    I'm trying to change Application Module for my page at runtime. I've used such code:
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAWebBeanContainer webBeanContainer = (OAWebBeanContainer) webBean;
        webBeanContainer.setApplicationModuleDefinitionName("mypackage.MyAM");       
        webBeanContainer.setApplicationModuleUsageName("MyAM");
      }but I see that Application Module haven't been changed.
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
       System.out.println(pageContext.getApplicationModule(webBean).getFullName());
       System.out.println(pageContext.getApplicationModule(webBean).getDefFullName());   Is it possible to change Application Module at runtime?
    How can I do it properly?
    Pavel

    The AppModule for a page is configured in an attribute of the root element of that page. Maybe that attribute is available at the OAWebBean parameter in processRequest.

  • Enhancement section does not visible at runtime

    I created enhancement section in SAP standard program, activated it but it does not visible at runtime. How do I make it available? Thanks!

    Hi Anthony,
    Have you implemented Implicit Enhancement?
    Once code is activated without error there is no other step required.
    Refer [Enhancement|https://wiki.sdn.sap.com/wiki/display/ABAP/ThenewEnhancementFrameworkandthenewkernel-basedBAdI] for more information.
    Regards
    Shital

  • [svn:fx-trunk] 10269: Changing default for -enable-runtime-design-layers to true.

    Revision: 10269
    Author:   [email protected]
    Date:     2009-09-15 10:46:10 -0700 (Tue, 15 Sep 2009)
    Log Message:
    Changing default for -enable-runtime-design-layers to true.  The flag may still be used to disable processing of design layer instances if so desired.
    QE notes: None
    Doc notes: None
    Bugs: SDK-23238
    Reviewer: Paul
    Tests run: Checkin
    Is noteworthy for integration: Yes, runtime design layers are now enabled by default.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23238
    Modified Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/CompilerConfiguration.java

    APDivs are a thing of the past and is bad practice. You need a working knowledge of CSS to get a modern looking layout and to do justice to your design which looks great btw.
    One out-of-the-box solution is to use Bootstrap - http://twitter.github.com/bootstrap/index.html and use the pre-defined classes/ grids to layout your content.

  • Change log level at runtime

    Is there any way to change a logger's level at runtime?
    I would like to change between INFO and DEBUG on some features I'm working on without restarting Kura.
    Thanks

    I know this feature has been added again, but its accessible only through OSGi console. I developed a simple web interface to change log levels at runtime.
    I uploaded the project on my github page. It compiles with Maven 3.0.5 as deployment package, you can install it on any running kura instance.
    I find it very useful when developing/debugging, hope it may help someone else.

  • [Solved] Changing tab visibility

    Hi all,
    I have some problems with Forms6i and I'm hopping someone could help me...
    I have a form with 3 tabs. In the 1st tab I have several fields and depending on the value of one of those fields I want my 3rd tab to be visible or invisible.
    My only problem with this is that after the situation: invisible -> visible, it doesn't change back to invisible.
    I search it on the net and found something similarly to this but with text boxes and I tried the same resolutions on the tab but the properties aren't the same.
    If anyone could help me, I appreciated.
    Thanks,
    Ana

    I did what you suggested, but still isn't working:
    1 - created a simple procedure:
    PROCEDURE SET_TAB_VISIBILITY (
    P_TAB_NAME      IN VARCHAR2,
    P_VISIBLE      IN BOOLEAN
    ) IS
    BEGIN
    if P_VISIBLE then
    SET_TAB_PAGE_PROPERTY(P_TAB_NAME,visible, property_true);     
    else
    SET_TAB_PAGE_PROPERTY(P_TAB_NAME,visible, property_false);     
    end if;     
    END;
    2 - deleted the post-change event that I previously created;
    3 - on data block level, in the post-query event called the procedure:
    SET_TAB_VISIBILITY('FILTROS.PED_SERV', :JE_UBS_IP_MULTI_MESSAGES.event = 'PS');
    4 - and on item level, in the when-validate-item also called the procedure with the same code.
    I put some messages on the post-query and when-validate-item events to check things out and noticed that when I have something like 2 records and in the 1st one the tab should be invisible and in the 2nd, visible, when I go from record 1 to 2, it changes the visibility correctly and shows my test message. But when I navigate from record 2 to 1, it doesn’t do anything. Not even my message. It seems that it is ignoring the event.
    Is this normal behavior?
    Thank you

  • Error "InfoProvider was changed or activated at runtime" when refreshing WB

    Hello SAP gurus!
    Here's tricky case: we've got several workbooks with multiple queries in it based on one MP. After reactivating this MP in production, those workbooks began to fail with error "InfoProvider was changed or activated at runtime".
    Wierd thing is, that I can refresh each query separately, and I can refresh workbooks with only one query on that MP,
    I can execute queties in Web on this MP, - but I cannot refresh whole WBs with multile queries. This issue does not allow us using broadcasting, so it's a serious problem fo us.
    We're on SAP GUI 7.10 and 7.20 ( same error in both versons ). MP is checked to be active. RSRV for those queries doesn't show any errors.
    Please, if you have any hint what's happening, that would be really appreciated!
    Thanks guys,
    Daniil

    Hello Michael!
    thanks for your input! I've had similar idea, but I consider it as a final option. Our landscape and authorization policy does not allow to make changes in production systems directly, so we'll have to transport MP from development system, which is not easy due to lots of approvals I need to get, and no garantee that it'll work as we still don't know the root cause.
    I would really appreciate any input regarding ideas what can be the cause or how to fix it without reactivating MP in prod.
    Many thanks in advance!

  • Master Page updated , but changes are visible only for that Page(site) alone ?

    I updated v4.master in SharePoint designer to add a bread crum navigation control
     <div class="BreadCrumbWrap s4-notdlg"> 
           <asp:SiteMapPath runat="server" SiteMapProvider="SPContentMapProvider" id="ContentMap"   CssClass="BreadCrumbStyle" PathSeparator="&gt;"> 
           <CurrentNodeStyle CssClass="BreadCurrentNode" /> 
           <PathSeparatorStyle CssClass="BreadPathSeparator" />   
            </asp:SiteMapPath> 
          </div>
    But the changes are visible only in that site. all other sites dont have bread crum control,
    I added the bread crum in header section, and also in page layout section, but there is no change (bread crum navigation only visible in that site alone)
    Why ?
    I always thought master page edits will be visible in all sites of a site collection,
    Am i going wrong some where (My site collection has about 30-35 sites, and new sites are created every now and then )
    Please help
    rn

    If the publishing features are turned on then the master pages for all the sites in the site collection are pulled from the master page gallery of the root site.  But if Publishing hasn't been enabled then each site uses the v4.master in its own master
    page gallery.  It sounds like you haven't enabled the Publishing Infrastructure site collection feature and Publishing Site Feature in the root site of your site collection.  
    Paul Stork SharePoint Server
    MVP Senior Solutions Architect: BlueChip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

Maybe you are looking for