Layout of VC Applications

Hello All,
When we see the output of any VC Application in the Portal the layout of that application will be either in Blue Background or White Background depending on the selection of the Frame Style.
My Qn is : Can we customize this layout with different themes and colors ?
Regards,
Deepu.K

Hi,
You can refer to this article:[https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4090c675-89f9-2910-5480-993360856c2b|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4090c675-89f9-2910-5480-993360856c2b]
Regards,
Natty

Similar Messages

  • Share graphic layout across web applications (WAR)

    Does somebody know how to share graphic layout across web applications?
    e.g. how to dynamically include a layout html across multiple webapps, so, if I make a change to that layout,, the change is automatically reflected in all webapplications already deployed.
    any idea will be appreciated

    Hi,
    To have a common layout across multiple web applications you can use cascading style sheets (css). By making use of the same style sheet you can have the same appearance in all the web applications. Changing the styles in the css will be reflected in all the pages that make use of this css. The changes wont be effected though in all the already deployed web applications. They will have to be re deployed for the changes to take effect.
    Hope this helps you
    Cheers
    Giri :-)
    Creator Team

  • Keyboard layout switch per application

    I use two Layouts (us,bg(phonetic)) and I really like to have a separate layout for every application:
    For example I'm typing in cyrillic in Skype and when I alt+tab or start urxvt I have the US layout there without needing to change it manually. There is such feature in gnome/kde but now I tried openbox and I really liked it and that's the only thing that I need to fix in order to use it.
    Any suggestions?

    ありがとうございます
    (Translation: Thank you very much!)

  • Problem with layout in Web Application Designer

    Hi all,
       I am working with the BEx Web Application Designer. Well, I execute a web template in the browser, click on right button and  choose enhanced menu, query properties and mark the check box Display Rows as Hierarchy and Expand to and from the list of values (combo-box) choose the last field that can be expanded.
    Once all the lines have been expanded and the layout of the template is longer than a page, we look for a line that is not in the first page and contract it. The problem is that when we contract the line, the layout shows  the first page, instead of the page where the line had been contracted. I have tried to solve this changing the properties that appear when the template is designed, but I haven´t found the solution. Is there any way so that i can solve it?
    Thanks in advance,
    Mª del Mar Bonilla.

    Bonilla,
    Welcome to SDN...
    Try this out...
    In the Query designer view , right click on the rows structure and select display as hierarchy. In case this option works fine , the behavior pointed out by you could be a possible bug.
    Just update the result of what I have mentioned above...
    Hope it helps..
    Arun
    P.S Assigning points is a way fo saying thank you in SDN

  • Cf8 ajax/layout issue - intranet application

    i have a cflayoutarea that contains a cfdiv which is
    populated dynamically with ajax. depending on what the user chooses
    in a cfinput-autosuggest at the top of the form, a cfdiv will get
    plain html -OR- a cfform containing a
    cfinput type=button.
    the cfform containing the cfinput type=button executes
    onclick=coldfusion.window.create(), and the source file specified
    is a coldfusion template containing a cfform with a cfgrid. the
    query that populates the cfgrid sometimes returns sufficient data
    so as to make the grid larger (vertically) than the size of the
    window. when this happens, a scroll bar is generated. when i use
    the scrollbar, the grid won't move. the upper border of the grid
    (atop the header) is the only part that does. the data at the
    bottom of the grid is rendered inaccessible.
    however, everything works perfectly in FireFox 2.0.0.11.
    if i take the cfform containing the cfinput type=button out
    of the cflayoutarea, it works fine in IE7 and FireFox.
    my organization officially supports IE7, not FireFox. the
    application needs to use ajax so that it can either return plain
    html in the cflayoutarea OR the cfform w/cfintput type=button that
    drives the popup window. either that or i
    have to completely rethink how i'm delivering this data.
    i've built a working example of this that uses two files:
    test_main.cfm and test_grid.cfm....thanks!

    could you post a sample of your code please

  • Could not apply background image to the panel group layout in spaces application

    I tried to apply background image to the panel group layout with css class and also with inline style such as below
    background-image:url('/content/conn/intra-dot-content/path/mywebcenter/lever/backgroundmain.jpg');background-position:center; background-repeat:repeat-y;
    The background image does not show up. but it work with panel border layout. Is there any work around for the issue

    You can try styleclass, which is always better choice than inlinestyle
    page:
    <af:panelGroupLayout id="pgl30"
                                       styleClass="testPGbackground">
                    <af:outputText value="outputText5" id="ot8"/>
                  </af:panelGroupLayout>
    css:
    .testPGbackground {
        background-image:url('/images/unselectedTabStart.png');
    It works for me.
    I tried with inline style also and it worked.
    bac
    <af:panelGroupLayout id="pgl30"
                                       inlineStyle="background-image: url(/incview/images/unselectedTabStart.png);">
                    <af:outputText value="outputText5" id="ot8"/>
                  </af:panelGroupLayout>
    NOTE: You need to mention image url with context-name here, which could be a way of hard coding context name and in future it could be very difficult to change contextname. As recommended styleclass is better solution.
    Thanks
    Sanjeev

  • Drawing and some layout help for a simple control: thin lines and application start

    I am trying to create a new, simple control. The control should act as a grouping marker much like that found in the Mathematica notebook interface. It is designed to sit to the right of a node and draw a simple bracket. The look of the bracket changes depending on whether the node is logically marked open or closed.
    After looking at some blogs and searching, I tried setting the snapToPixels to true in the container holding the marker control as well as the strokewidth but I am still finding that the bracket line is too thick. I am trying to draw a thin line. Also, I am unable to get the layout to work when the test application is first opened. One of the outer brackets is cut-off. I hardcoded some numbers into the skin just to get something to work.
    Is there a better way to implement this control?
    How can I get the fine line drawn as well as the layout correct at application start?
    package org.notebook;
    import javafx.beans.property.BooleanProperty;
    import javafx.beans.property.IntegerProperty;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.scene.control.Control;
    * Provide a simple and thin bracket that changes
    * it appearance based on whether its closed or open.
    public class GroupingMarker extends Control {
      private final static String DEFAULT_STYLE_CLASS = "grouping-marker";
      private BooleanProperty open;
      private IntegerProperty depth;
      public BooleanProperty openProperty() { return open; }
      public IntegerProperty depthProperty() { return depth; }
      public GroupingMarker(boolean open) {
      this();
      setOpen(open);
      public GroupingMarker() {
      open = new SimpleBooleanProperty(true);
      depth = new SimpleIntegerProperty(0);
      getStyleClass().add(DEFAULT_STYLE_CLASS);
      // TODO: Change to use CSS directly
      setSkin(new GroupingMarkerSkin(this));
      public boolean isOpen() {
      return open.get();
      public void setOpen(boolean flag) {
      open.set(flag);
      public int getDepth() {
      return depth.get();
      public void setDepth(int depth) {
      this.depth.set(depth);
    package org.notebook;
    import javafx.scene.Group;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.FillRule;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    import com.sun.javafx.scene.control.skin.SkinBase;
    * The skin draws some simple lines on the right hand side of
    * the control. The lines reflect whether the control is considered
    * open or closed. Since there is no content, there is no
    * content handling code needed.
    public class GroupingMarkerSkin extends SkinBase<GroupingMarker, GroupingMarkerBehavior> {
      GroupingMarker control;
      Color lineColor;
      double shelfLength;
      double thickness;
      private Group lines;
      public GroupingMarkerSkin(GroupingMarker control) {
      super(control, new GroupingMarkerBehavior(control));
      this.control = control;
      lineColor = Color.BLUE;
      shelfLength = 5.0;
      thickness = 1.0;
      init();
      * Attached listeners to the properties in the control.
      protected void init() {
      registerChangeListener(control.openProperty(), "OPEN");
      registerChangeListener(control.depthProperty(), "DEPTH");
      lines = new Group();
      repaint();
      @Override
      protected void handleControlPropertyChanged(String arg0) {
      super.handleControlPropertyChanged(arg0);
        @Override public final GroupingMarker getSkinnable() {
            return control;
        @Override public final void dispose() {
        super.dispose();
            control = null;
        @Override
        protected double computePrefHeight(double arg0) {
        System.out.println("ph: " + arg0);
        return super.computePrefHeight(arg0);
        @Override
        protected double computePrefWidth(double arg0) {
        System.out.println("pw: " + arg0);
        return super.computePrefWidth(40.0);
         * Call this if a property changes that affects the visible
         * control.
        public void repaint() {
        requestLayout();
        @Override
        protected void layoutChildren() {
        if(control.getScene() != null) {
        drawLines();
        getChildren().setAll(lines);
        super.layoutChildren();
        protected void drawLines() {
        lines.getChildren().clear();
        System.out.println("bounds local: " + control.getBoundsInLocal());
        System.out.println("bounds parent: " + control.getBoundsInParent());
        System.out.println("bounds layout: " + control.getLayoutBounds());
        System.out.println("pref wxh: " + control.getPrefWidth() + "x" + control.getPrefHeight());
        double width = Math.max(0, 20.0 - 2 * 2.0);
        double height = control.getPrefHeight() - 4.0;
        height = Math.max(0, control.getBoundsInLocal().getHeight()-4.0);
        System.out.println("w: " + width + ", h: " + height);
        double margin = 4.0;
        final Path VERTICAL = new Path();
        VERTICAL.setFillRule(FillRule.EVEN_ODD);
        VERTICAL.getElements().add(new MoveTo(margin, margin)); // start
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, margin)); // top horz line
        VERTICAL.getElements().add(new LineTo(margin + shelfLength, height - margin)); // vert line
        if(control.isOpen()) {
        VERTICAL.getElements().add(new LineTo(margin, height - margin)); // bottom horz line
        } else {
        VERTICAL.getElements().add(new LineTo(margin, height-margin-4.0));
        //VERTICAL.getElements().add(new ClosePath());
        VERTICAL.setStrokeWidth(thickness);
        VERTICAL.setStroke(lineColor);
        lines.getChildren().addAll(VERTICAL);
        lines.setCache(true);
    package org.notebook;
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    public class GroupingMarkerBehavior extends BehaviorBase<GroupingMarker> {
      public GroupingMarkerBehavior(final GroupingMarker control) {
      super(control);
    package org.notebook;
    import javafx.application.Application;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextArea;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TestGroupingMarker extends Application {
      public static void main(String args[]) {
      launch(TestGroupingMarker.class, args);
      @Override
      public void start(Stage stage) throws Exception {
      VBox vbox = new VBox();
      BorderPane p = new BorderPane();
      VBox first = new VBox();
      first.getChildren().add(makeEntry("In[1]=", "my label", 200.0, true));
      first.getChildren().add(makeEntry("Out[1]=", "the output!", 200.0, true));
      p.setCenter(first);
      p.setRight(new GroupingMarker(true));
      vbox.getChildren().add(p);
      vbox.getChildren().add(makeEntry("In[2]=", "my label 2", 100.0, false));
      Scene scene = new Scene(vbox,500,700);
      scene.getStylesheets().add(TestGroupingMarker.class.getResource("main.css").toExternalForm());
      stage.setScene(scene);
      stage.setTitle("GroupingMarker test");
      stage.show();
      protected Node makeEntry(String io, String text, double height, boolean open) {
      BorderPane pane2 = new BorderPane();
      pane2.setSnapToPixel(true);
      Label label2 = new Label(io);
      label2.getStyleClass().add("io-label");
      pane2.setLeft(label2);
      TextArea area2 = new TextArea(text);
      area2.getStyleClass().add("io-content");
      area2.setPrefHeight(height);
      pane2.setCenter(area2);
      GroupingMarker marker2 = new GroupingMarker();
      marker2.setOpen(open);
      pane2.setRight(marker2);
      return pane2;

    The test interfaces are already defined for you - the 3rd party session bean remote/local interfaces.
    It is pretty trivial to create implementations of those interfaces to return the test data from your XML files.
    There are a number of ways to handle the switching, if you have used the service locator pattern, then I would personally slot the logic in to the service locator, to either look up the 3rd party bean or return a POJO test implementation of the interface according to configuration.
    Without the service locator, you are forced to do a little more work, you will have to implement your own test session beans to the same interfaces as the 3rd party session beans.
    You can then either deploy them instead of the 3rd party beans or you can deploy both the test and the 3rd party beans under different JNDI names,and use ejb-ref tags and allow you to switch between test and real versions by changing the ejb-link value.
    Hope this helps.
    Bob B.

  • How to choose Application layout in flex?

    Hi Everyone ....!
    I have confused to select the layout in flex 3.0.There are three type of layout having absolute,horizontal and vertical. Which one is best? and How to choose layout? and please Explain about layout???/...
    Thanks in advance.........
    Regards,
    Selvendran.A

    You mean if you want to have a user-resizeable application?
    If so, all 3 layouts work.
    If you can tell us what you want to build very briefly, we can help you pick a layout, however, as I said, this isn't super-important and you can change this as your application begins to take shape.
    I generally use a vertical layout for my applications for example, but not because it's best, none of the 3 can be considered that, simply because I have more vertical elements than horizontal ones or that need to be placed in specific places given (x,y).

  • Best way to implement a standard layout across application

    What is the best way to implement a standard layout across the application?  For example, I am converting an HTML/ColdFusion site to Flex and I need to keep the look of the existing site in the new Flex app.  I need a standard layout on every screen in the new app with a standard header, footer and left nav bar.  Do I need to add that code to every screen in the app or can I just create on layout file and call that into every screen?  Thanks!

    There a few that will help you, look for Form and validator.
    Sincerely,
    Michael
    El 16/05/2009, a las 14:01, lee704 <[email protected]> escribió:
    >
    Thanks.  Are there sample data entry apps in the Tour de Flex samples?
    >

  • How to maintain Master Data through Web Application Designer layout.

    Hi.
    I’m Internship and I have to do something that it doesn’t work.
    I explain to you.
    I have to make a layout via Web Application Designer to permit users to add a line in the master data XST_RFC.
    For that, I did two things:
    First I followed this url : http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/607193d5-cdd5-2b10-c699-8ff04c3124f6?QuickLink=index&overridelayout=true&38392712686871
    The result; I have a problem with the appendix of method execute “DATA : ZL_WORKTEXT Type ZFREETEXT”. Here, SAP doen’t permit me to put XST_RFC (my characteristic to add by the user) but just /BIC/PXST_RFC… So, I tried with that and at the moment of the test in the Wad, the application say me “no Master Data in XST_RFC”. I know that there are no MD in my char, I just want to add once…
    So it doesn’t Work.
    Secondly, after testing, the Function Module test works. When a put an ID in the test page of SAP Logon in parameters, the FM put this ID and create a new line with this new ID. So I had an idea, use directly this function module in a Fox Formula but, when a call my function, I have a problem with variable/parameters type.
    My variable is TYPE XST_RFC , but my parameters is TYPE  /BIC/PXST_RFC….
    My Fox Formula
    DATA NEW_RFC TYPE XST_RFC.
    NEW_RFC = VARV(XVOU_RFC).
    CALL FUNCTION ZBWDSST_XX_MASTERDATAMAINTAIN
    EXPORTING
    VAR_RFC = NEW_RFC.
    My error message Types of parameter VAR_RFC () and variable NEW_RFC(C) are inconsistent
    If you can help me, I work on this issue for 4 days and I waste my time.
    Thanks.
    BR

    Dear All,
    The text flow for 0WS_QUEST & 0WS_QSTNNR is sufficient to make available Criteria from source system questionnaire in BW.
    After the text load (even it does not generate SID) we can already use Tcode SRM_VE_GROUPING & SRM_VE_WEIGHTING for customization of groupping and weighting in BW.
    Regards,
    Viresh

  • Assign Keyboard Layout to Application

    Hi all,
    Is there a way to assign a specific keyboard layout to just one application so that only this one uses it and all others still use the default layout?
    Thank you very much for any idea!

    In KDE I could set the keyboard layout to be application-specific. Is it possible to do the same with Leopard?
    No, but see if this helps:
    http://limechat.net/inputswitcher/

  • [Solved]Ctrl+V not working in libreoffice on gnome(non-latin layout)

    When using gnome-shell&libreoffice or calligra, universal keyboard shortcuts such as ctrl+v or ctrl+z don't do anything while on a non-latin layout(hebrew in my case).
    If I want to paste something with ctrl+v I have to change layout to English and only then will it work.
    Under MATE the shortcuts work fine regardless of the layout in both applications(and all others i have tried).
    Under GNOME Shell all other applications I tried accept the shortcuts regardless of the layout(Firefox, gedit, Empathy, Nautilus)
    Anyone has an idea as to what might cause this behavior when using GNOME?
    Thanks.
    EDIT: Solved for libreoffice by removing the package "libreoffice-gnome". UI is not as pretty now but at least the keyboard shortcuts work.
    Last edited by shimi (2013-08-09 09:00:50)

    After months of switching layouts and banging my head against this bug, I thought I should check LibreOffice settings (I'm using 4.1.5.3 now). What figures? I did find something. And in just a few clicks.
    This is not a bug! It's simply a matter of configuration.
    For the regular keyboard shortcuts (like Ctrl+C, Ctrl+V, etc.) to remain operational in LibreOffice applications while using a non-latin keyboard layout (like Greek or Russian), go to Tools -> Options -> Language Settings -> Languages, check the Ignore system input language option, save, and Bob's your uncle.
    Hope this helps.
    Cheers!
    PS
    Technically, though, shortcuts still remain language-dependent. This means if you enable this option, you will have to set your document languages manually.

  • Urgent :ALV layout change not  working

    hi experts,
    i copied the tcode FBL5N into ztcode.
    added some more fields to the ALV output.
    using GUI STATUS 'ALV_ITEMS_AR'
    when i select the change layout from using application button, added some more columns. Data is picking correctly, but i dont see the data  in that sleceted column.
    ideas will be appriciated.
    thanks,
    shaik bhasha

    hi Atish,
    thanks to initiate me to check the logic, its actually big program with lot of includes and LDBs. i found that the problem, internal table is not reflecting properly. fixed.
    Thanks,
    shaik bhasha

  • How to display applications in tabs on a single page in webcenter spaces

    Hi,
    I am working on a project in Webcenter spaces where we have a welcome page with few hyperlinks on a bar in the top section .Each hyperlink is associated with an application url. The requirement is when a user clicks on any link, it should populate a tab in the page displaying the application.
    For ex, if we have the links on the top as "google", "yahoo", "bing", etc, clicking on each one of them, should open tabs below displaying the respective home page. It should not open the application in a new browser but a tab in the same page. Also, the tabs are just page fragments (.jsff). As user clicks more links, more tabs are opened ( if that application is already not open).
    In short, we are replacing opening of a new browser to opening a tab in the same browser ( when clicking an application link).
    The issue is - how do I get the content of a website (or an application) into a tab in webcenter spaces dynamically. We tried using Pagelet producer but they need to be predefined. Also, each application url need to contain the session cookie, so user need not login to the application again.
    Any alternate strategy to acheive the same result is also welcome.

    Not 100%. Although, I did find out that I can use an Inline Frame layout component which can take a url as one of its property. Thus, I can dynamically pass this property and make the layout render the application. Beyond this, the control will be transferred to application and I hope it will work. We are still in the process of playing with the components.

  • Team Calender in Leave Request Application

    Hi Experts,
    ERP2004 SP17, EP6.0 SP20, ESS/MSS SP17
    I am trying to configure the leave request application. I see a link in the "Show team calender" in the application. I configured according the documentation in spro>personal Management>Employee Self Serivce>service specific settings>working time>leave request.
    the documentation is like this In "layout of web application">select employees for team calender:
    5. Select the employees whose absences you want to display in the team calendar. You first have to enter one of two grouping characteristics in the View/Grp field:
    If you use the Manager Self-Service (MSS) or Employee Self- Service (ESS) components at your enterprise, you will probably use the view groups. They are based on employees organizational assignments.
    If you use the Time Managers Workplace (TMW), you probably use grouping IDs.
    You now have to select the employees whom you want to display in the team calendar. <b>To do so, enter the required view group or grouping ID in the relevant field.</b>
    However I do not know where to create a "GROUPING ID". I have added the view group. but the field "GROUPING ID" is blank in the customization. May be this is required to display employees in team calender.
    Could you help me how to get employees in Team Calender.
    your help will be greatly appreciated.
    Thanks so much!
    Message was edited by:
            minisap g

    Hi Sonia,
    Below is what i see in view TWPC_VG.
    <b>VIEWGROUP</b>           <b>   VIEWID</b>
    APPRAISAL     AP_ALL
    APPRAISAL     AP_DIR
    AP_OVERVIEW     APOV_A
    AP_OVERVIEW     APOV_D
    ATTEND     A_ALL
    ATTEND     A_DIR
    COMMUNICATION     CALL
    COMMUNICATION     CDIR
    DIRECTREPLEVX     TVLEV1
    DIRECTREPLEVX     TVLEV2
    DIRECTREPLEVX     TVLEV3
    DIRECTREPLEVX     TVLEV4
    DIRECTREPLEVX     TVLEV5
    HAP_STATUS     HAPALL
    HAP_STATUS     HAPDIR
    ISR                     ISR1
    ORG                     ORGALL
    ORG                     ORGDIR
    ORG_PROF     O_PROF
    ORG_S                     O_SALL
    ORG_S                     O_SDIR
    PCR                     PCRALL
    PCR                     PCRDIR
    PCR_ERP                     PCRER1
    PCR_ERP                     PCRER2
    PTESS                     ESSDIR
    QP_ORGS_VG     QP_DIR
    REC_OVERVIEW1     RECALL
    REC_OVERVIEW1     RECEXT
    REC_OVERVIEW1     RECSIM
    REC_OVERVIEW2     REC_PA
    REC_OVERVIEW2     REC_PE
    REC_OVERVIEW2     REC_PS
    REPORTING     RPT_KA
    REPORTING     RPT_OA
    REPORTING     RPT_OD
    REPORTING     RPT_PA
    REPORTING     RPT_PD
    VACOV                     RCVAC
    XYLVG1                     XYL1
    ALso let me know the viewgroup you see for the view group "ESS_LEA_EE". May i will try creating these.

Maybe you are looking for

  • SLD name not recognized while sending mesg from R/3 to SUS

    Hi All, We are trying to send an IDOC from R/3 to SUS. Its IDOC to proxy scenario. messsage status in SXMB_MONI of XI server showing it to be successful, but SXMB_MONI of SUS is showing the folllowing error "An error occured within an XI interface: S

  • Can't delete some files due to a persistent lock.

    I've been having problems deleting a few files. I get this error oracle.ifs.common.IfsException: IFS-30650: PublicObject has a persistent lock; unable to change      void oracle.ifs.common.IfsException.<init>(int)           IfsException.java:341     

  • Incorrect Search Results in Acrobat Reader 9.2.0

    Anybody ever see this? I'm searching for a word in my pdf, in this case the word "sport". When I click for the results the reader can't find the word, but instead it takes me to other words that are not even close to "sport" like "descision", or a nu

  • INTER COMPANY PURCHASING.......??

    Hi MM Gurus, how to do purchasing inter company and without inter company with the same vendor. normalley when we create PO with inter company we r getting automatically Goods issuee also. but some time we need to create normal purchase order without

  • Payment media workbench & payment media Program

    Hi I was actually referring to the Payment Processing configuration:    Creation of payment media using Payment Media Workbench (Alternative 1)    Creation of payment media using Classical Payment Medium program( Alternative 2) Which approach will we