How to use different iViews for variables and queries?

Hi all!
I need to use separtate iViews for storing variables and extracting queries.
For example, I have one variable "Currency" for two different queries,  and I need that all of these queries (in separate iViews) would use the value of currency was put by user in the first iView with only one input.
How can I do this task? Is it possible at all?
Thanks for replies.

Hello Alex,
You have to use EP client framework (EPCF) in your development.
I hope this idea will help you.
Kind regards, Pino.

Similar Messages

  • HLOC Chart: How to use different stroke for different items in a HLOCSeries?

    I want to use different color for the stroke in a HLOC chart based on the openfield, closefiled value.
    It's just like the fillFunction in a ColumnSeries.
    Anybody got any ideas to make this?
    And I would also like to know which class is responsible for the drawing of charts? So that I can alter it and develop one that suits my needs.
    Thanks very much!

    Natasha, thanks!
    I need to override the updateDisplayList function in HLOCItemRenderer to make it draw what I want.

  • How to configure Mail to use different ports for POP and SMTP?

    I am trying to configure Mail for my AT&T account. It requires me to configure POP (incoming) mail for port 995, and SMTP (outgoing) mail for port 465. However there doesn't seem to be an option to configure different ports for these. Is that correct, or am I missing something?
    Alternatively can I configure two accounts, one for POP incoming and one for SMTP outgoing? My incoming POP account does work, but in configuring an outgoing account I still have to configure a POP server name and that will not work for the outgoing port.
    Any advice on how to solve this would be appreciated.

    Understand. It is really quite easy to do in Mail, too. Kappy told you how to set up the smtp piece. I gave you pop info. These two things are on different panels within Account Preferences.
    To recap his and my posts
    SMTP:
    In Mail Prefs, click on the accounts icon. Click on your att yahoo account on the list. On the right of the window, in the lower portion, you see an smtp server menu. Open it and select edit. Select Edit Server, then click on its Advanced tab. Set up port 465 with SSL.
    POP:
    This is on a different panel in Mail PRefs Accounts. Now in Mail Prefs, click on the accounts icon. Click on your att yahoo account on the list. On the right of the window, you see three tabs, acc't info, mbox behaviors, and Advanced. This is where things are different than for smtp. You are going to configure stuff on a different "advanced" panel than where you were for the smtp stuff. Click on the advanced tab. There is a field for port with a SSL checkbox next to it and an authentication drop down menu. Check the box and it should quickfill change from 110 to 995. Autentication drop down is probably already default to password.
    Did you visit the URL I gave you previously? It even gives you screen shots.

  • How to use one NIC for everything and the other to allow ssh from

    Hello,
    I have two internet connexion at home:
    - a cable connection (CABLEBOX) that i use for all of my devices as it's the fastest. All my computers are connected to it using ethernet or wifi.
    - an adsl connection (ADSLBOX) that is connect to the second network card of one of my computers (MEDIABOX) only and that i want to use only to ssh that same device from the outside
    I want that specific computer to use its:
    - NIC1 to connect to the LAN and to the internet. Routing is enabled on CABLEBOX.
    - NIC2 to connect to that device from the outside using ssh. ssh-D should also work through NIC2 as i need to be able to use that computer as a proxy on some occasions. Routing is enabled on ADSLBOX and it's set to port forward the port 22 to MEDIABOX.
    Once this will be working i'd like to also route ftp connections to specific ips by NIC2.
    No firewall is set on MEDIABOX yet, i'll do it later on.
    I know basics on how to set routing rules, how to assign a specific LAN to a network card but i have a hard time on deciding which rules i should set...
    Can someone guide me?
    Thanks in advance
    Last edited by parpagnas (2013-12-03 18:31:31)

    A possible solution might be this.
    On ADSLBOX and CABLEBOX configure different subnets for the LAN, e.g.
    ADSLBOX:    192.168.1.0/24
    CABLEBOX: 192.168.2.0/24
    The MEDIABOX gets these static IPs:
    ADSL-LAN: 192.168.1.2
    CABLE-LAN: 192.168.2.2
    On the MEDIABOX, configure the two network interfaces using two routing tables.
    The ADSL-LAN routing table
    ip route add 192.168.1.0/24 dev eth0 src 192.168.1.2 table 1
    ip route add default via 192.168.1.1 table 1
    The CABLE-LAN routing table
    ip route add 192.168.2.0/24 dev eth1 src 192.168.2.2 table 2
    ip route add default via 192.168.2.1 table 2
    The main routing table
    ip route add 192.168.1.0/24 dev eth0 src 192.168.1.2
    ip route add 192.168.2.0/24 dev eth1 src 192.168.2.2
    # use the CABLE-LAN gateway as default, so general internet traffic from MEDIABOX runs over CABLEBOX
    ip route add default via 192.168.2.1
    define the lookup rules
    ip rule add from 192.168.1.2 table 1
    ip rule add from 192.168.2.2 table 2
    To test the setup:
    ip route show
    ip route show table 1
    ip route show table 2
    I don't know how to persist something like this in ArchLinux using netctl. Might require to write a special systemd unit for it. Above is a working example from a RedHat box at my company.
    Last edited by teekay (2013-12-04 07:42:22)

  • How to Use different icons for JTree in the same level

    Hi guys, i come cross a problem with JTree. The module need a JTree which need to represent items in the same level using different icons. For example:
    [Icon for Root]Root
    |
    |_____________[Icon for Table] TABLES
    |
    |_____________[Icon for Index] INDEXS
    |
    |_____________[Icon for Views] VIEWS
    As i know, the default behavior for JTree is using the same icon for all leaves and
    the same icon for all node that has children. How can i achieve that?
    Thansk a lot!

    subclass DefaultTreeCellRenderer. if you overwrite the method below, then you can set the icon to whatever you want....!
        public Component getTreeCellRendererComponent(JTree tree, Object value,
                                    boolean sel,
                                    boolean expanded,
                                    boolean leaf, int row,
                                    boolean hasFocus) {
         String         stringValue = tree.convertValueToText(value, sel,
                               expanded, leaf, row, hasFocus);
            this.tree = tree;
         this.hasFocus = hasFocus;
         setText(stringValue);
         if(sel)
             setForeground(getTextSelectionColor());
         else
             setForeground(getTextNonSelectionColor());
         // There needs to be a way to specify disabled icons.
         if (!tree.isEnabled()) {
             setEnabled(false);
             if (leaf) {
              setDisabledIcon(getLeafIcon());
             } else if (expanded) {
              setDisabledIcon(getOpenIcon());
             } else {
              setDisabledIcon(getClosedIcon());
         else {
             setEnabled(true);
             if (leaf) {
              setIcon(getLeafIcon());
             } else if (expanded) {
              setIcon(getOpenIcon());
             } else {
              setIcon(getClosedIcon());
            setComponentOrientation(tree.getComponentOrientation());
         selected = sel;
         return this;
        }

  • Use different Layouts for Summary and Details in Drill down report

    Hi All,
    I have a 2 level drill down report in ALV.
    The summary report has certain fields and the Detail report has different fields. Now my problem is that when i use a default layout (with all fields of summary report) for the summary report, and drill down to the detail report i'm missing the fields on detail that are not in Summary. And if i save the default layout as default (with all fields of Detail) and go back to sumary, I'm missing the some other fields on summary (which are not on detail report).
    Is there a way to make different default layouts for each of those summary and detail reports:
    Also as the layouts are choosen by the user, i cannot hardcode any particular layout;
    So if the user chooses a layout for detail; it has to stay the same layout for the detail report if he goes to summary and then back to detail; unless the user changes the layout again.
    I'm using two different Layout types for each report. but i still cannot get the desired effect.
    Data:
          gt_layout_s             type slis_layout_alv,
          gt_layout_d             type slis_layout_alv,
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = g_repid
          is_layout                = <b>gt_layout_s</b>
          i_callback_top_of_page   = g_top_of_page
          i_callback_user_command  = g_user_command
          i_callback_pf_status_set = g_status
          i_save                   = g_save
          is_variant               = gs_variant
          it_fieldcat              = gt_fieldcat[]
          it_events                = gt_events[]
        importing
          es_exit_caused_by_user   = gs_exit_caused_by_user
        tables
          t_outtab                 = it_summary.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = g_repid
          is_layout                = <b>gt_layout_d</b>
          i_callback_top_of_page   = g_top_of_page
          i_callback_user_command  = g_user_command
          i_callback_pf_status_set = g_status
          i_save                   = g_save
          is_variant               = gs_variant
          it_fieldcat              = gt_fieldcat[]
          it_events                = gt_events[]
        importing
          es_exit_caused_by_user   = gs_exit_caused_by_user
        tables
          t_outtab                 = it_detail_disp.

    Here is how you differentiate between the layout of two different grids. There is the parameter, IS_VARIANT in the function. You usually leave it empty or pass only the report name and username. <b>What you need to do is to pass unique string for each grids to the HANDLE field of the parameter IS_VARIANT.</b> You can probably hard code it as HEADER and DETAILS in your case. Once that is done, system identified that these two different layout for different grids.
    Regards,
    Ravi
    Note : Please mark all the helpful answers<u></u>

  • How to use same jsp for edit and add form

    Hi,
    I would like to use the same .jsp file for edit and add. I just want to change a few controls based on edit/add mode. How do I configure this in the jsp?

    In the environment I currently have access to do not have similar setup.
    Let say you setup the DFF1 default value to $HEADER.customer_name, the name of the DFF is CUSTOMER_NAME, description can be anything.
    In DFF2, default value should be a SQL, where you can reference the DFF1. For example, SELECT DECODE($FLEX.CUSTOMER_NAME, 'ABC', 1, 'DEF', 2, NULL) FROM dual
    In this case, you can reference the DFF1.

  • How to use different stylesheets for ChangeAttributeRequest workflow in OAM

    Hi,
    We have a requirement to invoke different change attribute request workflows (change password ,change email etc..) from external JSPs..
    I want to apply different stylesheets for each workflow. In the workflow URL if i enter style=stylesheet-name its not using that stylesheet. Always its using the same base stylesheet (wf_changeattr.xsl). How can i use different stylesheets? Any pointers on this is appreciated.
    Thanks inadvance..
    Regards,
    Srikanth

    Hi Colin,
    Thanks for your response. Now i am able to invoke different xsls for different workflows.
    I did a mistake by entering style=stylesheet-name. I verified the same with xsl=stylesheet-name.
    Its working fine now..
    Thanks & Regards,
    Srikanth

  • How to use progress bar for Main and Subsequences in teststand

    HI,
    I have one main sequence in that I am calling different subsequences (Containing many steps and for loop).
    I am trying to use progress bar for this sequence, but my requirement is progressbar is able to show the progress of all the steps containing in Main and subsequences.
    I have developed sequence in that I am able to show the progress for only Main sequence steps not for subsequences steps.
    Is it possible? If yes please let me know the suggestions.
    Thank You

    Hi Santosh
    Here you are
    Greetings
    Juergen
    never Double Click on Submit
    Message Edited by j_dodek on 08-05-2008 08:05 AM
    =s=i=g=n=a=t=u=r=e= Click on the Star and see what happens :-) =s=i=g=n=a=t=u=r=e=
    Attachments:
    Progress_ts351.seq ‏52 KB

  • How to use different configurations for KDE Plasma?

    I typically use my laptop in two ways: single monitor and dual monitor. I like to have in the two cases two different sets of widgets and plasmoids, so I wonder if it's possible to have multiple configurations for Plasma and load the desired one when needed. I searched around for a solutio but didn't find anything.
    Right now, I'm using a rather awkward method: I have two sets of Plasma configuration files for single and dual monitor setup (ie., plasma-desktop-appletsrc-single and plasma-desktop-appletsrc-dual) and two startx scripts which, before starting KDE, copy the single or dual monitor configuration on the standard Plasma config file (cp $HOME/.kde4/share/config/plasma-desktop-appletsrc-dual $HOME/.kde4/share/config/plasma-desktop-appletsrc). I'm sure there are better ways to have a dynamical Plasma configuration, since my zero-order solution has many drawbacks, for example I loose the modifications I make on my desktop (since Plasma saves them on plasma-desktop-appletsrc which is overwritten at next startup).
    Can anyone please help me? Thanks.

    For such a purpose KDE Plasma provides Activities. Here you can find more about that:
    http://userbase.kde.org/Plasma#Activities
    There is also a nice plasmoid for easy Activity managing:
    http://kde-look.org/content/show.php/Ac … ent=136278
    I hope, this helps you...

  • How to use AQ Adapter for Enqueue and Dequeue in BPEL process

    Can anyone help me how to use Enqueue and Dequeue in BPEL process ? Any good sample or material /tutorial??
    Thanks

    You shoul create a while loop, that loops through XML payload for each row. Than you can process each individual row. See also example:
    C:\orabpel\samples\tutorials\112.Arrays\ArraySample.bpel

  • How to use different parameters for two tables(chart and Table) in one report in SSRS?

    Hi,
    Here is my requirement, i have 7 parameters in my report(Site,Account,LOB,year,Month,WeekDay and Date_Filter),
    and in my report i have one table and one Chart,
    my requirement is the table in the report has to show the data for 6 parameters only i.e(Site,Account,LOB,year,Month and WeekDay).so the table has to consider only 6 parameters, and it has ignore the 7th parameter, table should not consider Date_Filter parameter.
    And Chart has to consider all 7 parameters.
    so, when we preview the report table has to show the data for only 6 parameters and chart has to show the data for all 7 parameters.
    if there is a way to get this Please reply me ASAP, it is an urgent requirement.
    Thanks in Advance,
    Naveen

    Hi Naveen,
    Refer below link to create multiple datasets as suggested by Gnanadurai
    http://technet.microsoft.com/en-us/library/ff714047(v=sql.105).aspx
    Thanks
    Swapna

  • How do use different formatting for a distinct "Section"

    I have experienced formatting problems with an older document after upgrading to Pages 2.
    There was a distinct "section" within that document with a different "top" and "bottom" border. I find myself unable to change the top and bottom borders within just the Section I want to revise. When I try dragging the ruler on the page in question, it changes the settings for the entire document.
    Questions:
    (1) How do I ensure that one of my document's pages is, in fact, a distinct Section with its own formatting?
    (2) How can I change the page setup of that Section independently of the rest of the document?
    PowerMac G5 dual 2.0   Mac OS X (10.4.4)  

    Hello David,
    now I'm back for your problem. You are right: the settings "Before" and "After" of the Layout Inspector are only for the areas at the Layout Breaks unlike the "Left" and "Right" number fields. If you have long Sections you have to use a workaround.
    You have to insert a placeholder at the top and at the bottom of the pages to "simulate" the wider margins. But don't be frightened, you don't have to do it for every page. For that, Pages has the Section Master.
    If you have a "Facing Pages" document, place rectangles (the placeholders) with no outline and with no filling at the top and at the bottom of a left and a right page. This rectangles should be adjusted in that way, so they have the same width like the text area and the same height you want to have for the wider Margins. Give the placeholder the "Fixed on page" setting in the Wrap Inspector and no "Extra Space". If you have a none "Facing Pages" document, you have to position the placeholder only on the top and the bottom of one page. Please notice the settings "First page is different" and "Left and right pages are different" of the Layout Inspector.
    After you have placed the rectangles, select them and choose the menu item "Format/Advanced/Move Object to Section Master". Now you have the space at the top and the bottom of every page in that Section. Only the Section with the oversized images may not have the placeholders.
    Excuse me, that I haven't mentioned the workaround the first time, but to write the Layout Border thing. I have forgotten that only the "Left" and "Right" border settings are for all pages.
    Frank.

  • How to use an array for variable name of swing components using NetBeans

    I'm completely new to Java and GUIs, so excuse me if I use the wrong terminology. I'm making a JFrameFrom in NetBeans. I'm getting really tired of typing instructions like jTextField15.setText(variable[15].text); I would like to make the variable names of my text fields an array so I can use a loop to change the values, text, tooltips, etc. When I click "change variable name" it won't let me put an array in. The code that Swing generates is protected and I can't change it. I know there must be a way to do this. Any help is appreciated.

    Try not to use the NetBeans visual GUI builder. Then it should be easy to create an array of text fields:
    JTextField[] tfs = new JTextField[15];
    for (int i = 0; i < tfs.length; i++) {
        tfs[i] = new JTextField(10);
    }For laying out the text fields, see: [http://download.oracle.com/javase/tutorial/uiswing/layout/using.html]

  • Use different portals for authentication and collaboration

    Hello,
    I would like to request your help on a portal issue.
    I have installed a dual stack(ABAP+Java) Enterprise Portal (EP 6 - NW 7).
    The  ABAP stack is required in order to implement user collaboration.
    However, another requirement is that the users be authenticated through
    an LDAP server (Microsoft Active Directory 2008).
    Because of the ABAP stack, it is not possible to connect the portal to the LDAP.
    In order to implement LDAP authentication, another EP instance was installed on the
    same machine which has only Java stack and not ABAP.
    This Java-only EP was successfully connected to the LDAP directory.
    My question is IF and HOW it is possible to have the users login to the ABAP+Java portal
    using the Java-only portal to authenticate.
    Regards,
    Kontogianni Eleni

    Hi Craig,
    this is not really our case. What we want to achieve is to be able to use one portal (Java only) for user authentication using the LDAP directory and the other one for all other portal services.
    We tried to implement a solution similar to the one that you mentioned but there were some problems. We would have to redirect the login page of the ABAP+Java portal to the login page of the Java-only portal. Also the Java only portal logon page would have to redirect to the other portal after successfull login.
    It would require a great deal of programming in order for the users to be able to work in one portal and be redirected to the other portal and back only for authentication.
    The solution of federated portals seams more feasible.
    Regards,
    Eleni

Maybe you are looking for

  • How to move songs in one playlist from one mac to another?

    I am running the current version of  iTunes on my MacPro and my MBAir, both of which are authorized computers in my iTunes account.  I would like to copy the tunes in one playlist on my MacPro to my MBA, so that I can take them on the road.  Some of

  • Oracle 9.2.0.8 on SUN M9000 Blade Server  Memory Limit

    Is there a 32Gb memory limit for Oracle v9.2.0.8 residing on an SUN M9000 Blade Server? We currently have an Oracle v9.2.0.8 installed on M9000 and whenever the database memory is increased, the database locks/ceases to function. The (verbal) history

  • 7.0 executable won't run on xp with new pci-gpib.

    This executable ran on previous version of windows. Automation explorer talks to gpib and instruments ok. GPIB version 2.2 installed. Executable doesn't seem to try to talk to gpib, ie. doesn't hang up.

  • Where is my Trash mailbox?

    I've just bought a brand new Macbook running 10.5.6. It all works fine except that in Mail I can't see a Trash Mailbox icon. I have tried setting the Mail Preferences/Accounts/Mailbox Behaviours to 'move deleted messages to a separate folder'. This d

  • MicroSD partition (FAT32) is unkillable

    The problem My 32 GB microSD card (FAT32) is currently in a state where nothing I do to it takes effect. Reading is not a problem. Specifically, I cannot add any files, delete any files and more importantly I cannot delete the FAT32 partition. In fac