Balancing Segement Value set we can use it as Intercompany value set?

Hi Gurus,
We have requirement as follow.
We have company values "001, 002, 003" which is balancing segment values
we need to use the same Values for Intercompany transactions, can i use company value set as Intercompany or not.
1) If yes do we need to create Values for intercompany one more time or values will be default from company
2) If not please tell me exact reason and how to setup Dependent segement.
Hi waiting for your reply
Edited by: prasanthbabu on Mar 15, 2010 2:39 AM

Hello,
The same value set can be used for Intercompany but it is recommended to use a separate value set for the Intercompany if ever (in the future) u need to add additional information regarding the Intercompany value.
Having a value set only for Intercompany, you can add DFF on it.
Hope this helps..
Vik

Similar Messages

  • Would using a Apple Time Capsules be easier to use as you can use the Airport Utility to set everything up? Would using encryption affect the speed / durability / life span of the drive in a computer or Time Capsule?

    Would using a Apple Time Capsules be easier to use as you can use the Airport Utility to set everything up?
    OR would there be better programs out there that would do more than Airport Utility on a non Apple drive?
    Would using encryption affect the speed / durability / life span of the drive / Fusion drive in a computer or Time Capsule?

    1. Time Capsules are the easiest device to setup for Time Machine.
    2. Sorry this is unclear. There are a huge number of routers available that have far superior controls than apple routers.. some support Time Machine.. most don't. They negate your question 1. in being difficult to setup. And alot of 3rd party devices that claim Time Machine compatibility are unreliable.
    3. Encryption is irrelevant.

  • StartDate and EndDate values are multiplied, Can't get the right values

    Building: Im trying to build a report where I can calculate the difference between two dates (Example between 1-1-2001 and 31-12-2001) but also showing (per name per identifier) the current balance of a customer per date(As shown in the Report attachment).
    Problem: The problem is that the totals are not correct, they get multiplied on random numbers (Checking it with Count and CountDistinct I learned that I probably made a mistake in my SQL, so I copied SQL in this question as well).
    I have tried plenty myself and tried to find solutions on the interwebs, but none of them seem to work.  So I am desperate enough to ask for help :).
    SELECT
    CASE WHEN t1.identifier IS NULL THEN t2.identifier ELSE t1.identifier
    END as identifier
    , CASE WHEN t1.firstName IS NULL THEN t2.firstName ELSE t1.firstName
    END as firstName
    , CASE WHEN t1.lastName IS NULL THEN t2.lastName ELSE t1.lastName
    END as lastName
    , CASE WHEN t1.initials IS NULL THEN t2.initials ELSE t1.initials
    END as initials
    , CASE WHEN t1.name IS NULL THEN t2.name ELSE t1.name
    END as name
    , CASE WHEN t1.employmentNumber IS NULL THEN t2.employmentNumber ELSE t1.employmentNumber
    END as employmentNumber
    , CASE WHEN t1.externalIdentifier IS NULL THEN t2.externalIdentifier ELSE t1.externalIdentifier
    END as externalIdentifier
    , t1.balance AS S_balance
    , t1.unvested AS S_unvested
    , t2.balance AS V_unvested
    , t2.unvested AS V_balance
    , SUM(t1.TotalBalance + t1.TotalUnvested) Total1
    FROM
    SELECT
    par.identifier
    ,par.firstName
    ,par.lastName
    ,par.initials
    ,pos.name
    ,pos.balance
    ,pos.unvested
    ,par.employmentNumber
    ,SUM(pos.balance) TotalBalance
    ,sum(pos.unvested) TotalUnvested
    ,Right(par.externalIdentifier,(Len(par.externalIdentifier)-4)) as externalIdentifier
    FROM
    participant par
    INNER JOIN position pos
    ON par.identifier = pos.participantIdentifier
    WHERE
    (pos.balance != 0 OR pos.unvested != 0)
    AND pos.name NOT LIKE (@Euro)
    AND par.Metadata_start_validity <=@Datum
    AND (par.Metadata_end_validity >=@Datum
    OR par.Metadata_end_validity IS NULL)
    AND pos.Metadata_start_validity <=@Datum
    AND (pos.Metadata_end_validity >=@Datum
    OR pos.Metadata_end_validity IS NULL)
    GROUP BY
    par.identifier
    ,par.firstName
    ,par.lastName
    ,par.initials
    ,pos.name
    ,pos.balance
    ,pos.unvested
    ,par.employmentNumber
    ,par.externalIdentifier
    ) as t1
    INNER JOIN
    SELECT
    par.identifier
    ,par.firstName
    ,par.lastName
    ,par.initials
    ,pos.name
    ,pos.balance
    ,pos.unvested
    ,par.employmentNumber
    ,Right(par.externalIdentifier,(Len(par.externalIdentifier)-4)) as externalIdentifier
    FROM
    participant par
    INNER JOIN position pos
    ON par.identifier = pos.participantIdentifier
    WHERE (pos.balance != 0 OR pos.unvested != 0)
    AND pos.name NOT LIKE (@Euro)
    AND par.Metadata_start_validity <=@V_Datum
    AND (par.Metadata_end_validity >=@V_Datum
    OR par.Metadata_end_validity IS NULL)
    AND pos.Metadata_start_validity <=@V_Datum
    AND (pos.Metadata_end_validity >=@V_Datum
    OR pos.Metadata_end_validity IS NULL)
    ) as t2
    ON
    t1.identifier = t2.identifier
    GROUP BY
    CASE WHEN t1.identifier IS NULL THEN t2.identifier ELSE t1.identifier
    END
    , CASE WHEN t1.firstName IS NULL THEN t2.firstName ELSE t1.firstName
    END
    , CASE WHEN t1.lastName IS NULL THEN t2.lastName ELSE t1.lastName
    END
    , CASE WHEN t1.initials IS NULL THEN t2.initials ELSE t1.initials
    END
    , CASE WHEN t1.name IS NULL THEN t2.name ELSE t1.name
    END
    , CASE WHEN t1.employmentNumber IS NULL THEN t2.employmentNumber ELSE t1.employmentNumber
    END
    , CASE WHEN t1.externalIdentifier IS NULL THEN t2.externalIdentifier ELSE t1.externalIdentifier
    END
    , t1.balance
    , t1.unvested
    , t2.balance
    , t2.unvested
    , t1.TotalBalance
    , t1.TotalUnvested

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules (you have no idea,
    do you?). Temporal data should use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. Did you know that camelCase does not work? Google the research. There are no generic “<nothing in particular>_name”, <magic universal>_identifier”, etc in a valid data model. 
    This codes tells us you have attribute splitting in the schema:
     T1.balance AS S_balance, T1.unvested AS S_unvested, 
     T2.balance AS V_unvested, T2.unvested AS V_balance, 
    I am sorry you have only one “Participant” and one “Position”, which is what your singular table name tell the world. 
    Your “vested” and “unvested” are a status value, but you put them into separate tables. This is as silly as having “Male_Personnel” and “Female_Personnel” tables instead of the correct “Personnel” table. This why you are re-creating the name-address columns
    every time! 
    What kind of entity is an “external”? You have an “external_identifier”, so there has to be such an entity. Even worse you have:
    RIGHT(PAR.external_identifier, (LEN(PAR.external_identifier)-4))
    This tells us that this vague column is a concatenation of two or more data elements. This is not a valid schema design. And when you write:
    AR.identifier = POS.participant_identifier
    Your magical generic “identifier” changes to a participant. In RDBMS, a data element has one and only one name, and doer not change from table to table.  Can it also become a squid? An automobile? 
    I see you are an old punch card programmer. Back in the old days, we put one expression per card (line) so we could re-arrange the deck. This also meant that the comma went at the front line. And we even parentheses and keywords on single cards! WOW! 
    You do not know about COALESCE() and use CASE the way that you would use IF-THEN in COBOL. Look at this code. Why did you think that “@datum” was a clear, precise data element name? It is the most generic name for a single data element value (not even the element
    itself). 
     AND PAR.metadata_start_validity <= @vague_generic_something
     AND (PAR.metadata_end_validity >= @vague_generic_something
     OR PAR.metadata_end_validity IS NULL)
    COBOL, C and the other procedural languages that you are trying to write in SQL do no have the SQL shorthand, so you use Boolean operators. We would write:
    @vague_generic_something
     BETWEEN PAR.metadata_start_validity 
       AND COALESCE(PAR.metadata_end_validity, @vague_generic_something)
    But we never put metadata into a schema. NEVER. “Validity” makes no sense. Is it a date? A physical location? What? It has to be on a scale on which theta operators apply. Your validity hs no ordering! 
    You do not know that SQL uses <> and not != from the C family. 
    We do not use bit flags; that was assembly language, not SQL. The term “Euro” is a monetary unit of measurement, not value. 
    You are getting garbage data because you have a garbage schema. Post the DDL and someone might be able to help you replace it. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • How can I get the edited value from the editor in JTable

    I have a JTextField added as an editor to a cell in JTable.
    I value gets changed when I press enter.
    but in actionPerformed of the JTextField when I say
    String txtEditorValue = txtEditor.getText();
    I am getting the old value. How can I get the edited value? Thanks.

    Hi,
    I guess, your understanding of how JTable works together with its models is not good enough - for example the method getTableCellEditorComponent(...) of the TableCellEditor interface is used to get the component, that should be used as editing component - its second parameter is a value that should be used to setup the editing component - it is normally not the editing component itself.
    JTable uses an underlying TableModel to store the cell values - if you have edited a cell, JTable gets the value of the editing component by itself and stores it in the TableModel using its setValueAt(...) method. To retrieve this data you only need to query the TableModel using row and column of this cell as parameters
    say jt is your JTable, and row and column are the row and column of the cell - so to get the value, simply use
    Object obj = jt.getModel().getValueAt(row,column);
    if you know, that there is a String in this cell use
    String str = (String) jt.getModel().getValueAt(row,column);
    The editor component is used for the view of the JTable - you only want the data, which is stored in the model - you don't have to deal with the GUI components in this case.
    greetings Marsian

  • How can we select the highest value from 3 disfferent #defined values???

    Hello,
    Sometimes I come across the requirement of having the program automatically select the highest value
    among several defined preprocessor command statements. For example:
    #include "stdio.h"
    #include <math.h>
    #define _K_BUF_OTHERS 20
    #define _k_BUF_ENV_TAGS 30
    #define _k_BUF_REGS 40
    #define _k_MAX(x, y, z) (max((max(x, y)), z))
    int main(){
    unsigned int u;
    u = _k_MAX(_k_BUF_OTHERS,_k_BUF_ENV_TAGS, _k_BUF_REGS);
    return 0;
    In the sample above we have three (3) different define statements called :
    _k_BUF_OTHERS
    _k_BUF_ENV_TAGS
    _k_BUF_REGS
    but at any given time in certain C modules (In this case above, the main.c module) I require for the program to know
    which of the three is the highest and get that highest value so I can use it downstream of my code. In this case the highest would be 40. So therefore putting the following macro anywhere in my code should make a text substitution of the macro's value
    and return 40 to u:
    u = _k_MAX(_k_BUF_OTHERS, _k_BUF_ENV_TAGS, _k_BUF_REGS);
    But I can't even compile the program!
    Here's the error I get in VC++:
    1>------ Build started: Project: MinMax, Configuration: Debug Win32 ------
    1>  Source1.cpp
    1>c:\c++_tests\minmax\minmax\source1.cpp(15): error C3861: 'max': identifier not found
    1>c:\c++_tests\minmax\minmax\source1.cpp(15): error C3861: 'max': identifier not found
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    Can someone please have a look and see what I am doing wrong.
    All help appreciated...
    Thanks
    r

    On 4/12/2015 4:30 PM, roberto wrote:
     1>c:\c++_tests\minmax\minmax\source1.cpp(15): error C3861: 'max': identifier not found
    So implement or #define one. C standard library doesn't provide a function named "max".
    Igor Tandetnik

  • How to Get and Update properties values from XML tag Using Xquery or PL Sql

    Hi
    I have this tag
    <Solicitud Pais = "1">
    How i can get Pais value?
    How i can update Pais Value?
    Y can use Xquery funtions or PL SQL for this?
    Thak's
    Angel

    How i can get Pais value? ExtractValue
    How i can update Pais Value?UpdateXML
    Y can use Xquery funtions or PL SQL for this?Yes
    Without knowing more about your requirements, where information resides, or even a version of Oracle, that is the best I'll do.

  • Regarding Can we store User Selected values in prompts

    Please help us in achieving the below requirement.
    Requirement is to store User Selected values in prompts when the report is opened by a User for the first time and make use of those values to refresh the report next time onwards.
    1.Can this be achieved in WebI ?
    2.If it is thru SDK(we use Java), any experience/help in doing this ?
    Environment : BO XI 3.1 with SAP BW Integration

    Hi ,
    If you dont want data to be displayed in this report for this two values , then exclude this two values when you restrcit your characteristic to the variable.
    If you want not to display this values when user opens help for entering the values where he can see all the possible values for selection for the variable, then it wont be possible.
    Hope this will help.
    - Jaimin

  • What setting should I use to save file for upload to youtube

    Hi,
    the link below is the video on youtube that I just saved using the first setting that I always use using Flash.  Now because of the change over, as we have discussed I have to save the file then upload it for sites I upload to after the change.  I know I can save it on the For Windows one but it is not HD.  As you will see when you play this video it is all shakey (and not because I am shaking the camera   ).
    The other link is the non shakey saved for windows version.
    http://www.youtube.com/watch?v=lfjoqXIm2q0 Flash
    http://www.youtube.com/watch?v=i2OwQ3GTSPE (saved For Windows)
    Should I just resign my self to using the work around and use the save for Windows and not the FLASH.  or is there a setting I can use that gets rid of the shake.   However, since most of what I post is for people trying to sell their horses I would like the best quality I can get up on YouTube.
    Thanks for your help.  I really do appreciate it very much.  Saves me hours of time.
    Sarah

    Because YouTube is so unpredictable -- and always changing it encoding systems -- your best bet is to use the workaround and output as a WMV file.

  • I have started getting spammed on multiple Apple products (iPhone and iPad) with FaceTime calls since the recent IOS update.  Is there any feature or sedtting I can use locally to restrict incoming calls to FaceTime without going to the carrier?

    I have started getting spammed on multiple Apple products (iPhone and iPad) with FaceTime calls since the recent IOS update.  Is there any feature or setting I can use locally to restrict incoming calls to a FaceTime account without going to the carrier?

    After calling AT&T tech support one more time, and explaining to them that the glitch was on their network, they admitted that the problem was at their tower...
    I continued to use the phone on EDGE mode for two more days until the problem was fixed.
    I even got a call back from a tech support guy asking me if my phone was working properly....
    I wish they would have admitted to the problem before I sat at the apple store for 2 hours.

  • I tried to upload the Pxisys.ini file and MAX is showing the slot ID ...but i need a function to return those slot numbers..such that i can use in my DLL

    hi hamilton,
    thanks for your reply .
    I already tried the option or pxisys.ini file
    The MAX is showing the slot number ..but My requiremet is to use the slot ID in a DLL
    so I need a function type of statemen to return or get the slot number of the NI devices on the PXI.
    I think I clearly explained.
    I would like to get the slot numbers through a software fucntion such that i can use the slot numbers values for some other purpose ,,like configuration ,,

    jayamurugan,
    This functionality currently is not built into National Instruments software. You can get the device number, but not the slot numbers programmatically.
    Trey Hamilton
    Applications Engineer
    National Instruments
    http://www.ni.com/support

  • Can I have 2 completely different set ups for FF (different users--one visually impaired)

    I have been using FF for several years and really like the way I can enlarge the text and size of the fonts on the toolbars, among other things. My wife, however, has very limited vision, and has been using IE and she cannot do any of that and she has been having other IE problems as well. I just installed Chrome to check it out, and there does not seem to be a way to do any of that either (too bad Chrome). There are 'high contrast' themes, but they do not do enough, or are the wrong colors, or cause lots of problems with some pages. Is there a way I can use 2 completely separate versions of FF, with different tool bars, screen fonts, colors for the toolbars, sizes of the fonts, a way to have 2 completely separate bookmark and preference lists, etc.? As the computer is shared, we would need to be able to toggle between users and the set-ups. The ability to configure FF the way you want is really so far ahead of the other browsers.

    You can create another Firefox profile folder for your wife if you both use the same Windows account.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *https://developer.mozilla.org/Mozilla/Multiple_Firefox_Profiles
    See also:
    *http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    *http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    *http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    You can add -no-remote to the command line to open another Firefox instance with its own profile and run multiple Firefox instances simultaneously.
    *http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile
    Note that you can't open external links (i.e. click a link to open the default browser) in a Firefox instance that is started with the -no-remote command line switch.
    You can look at this extension to adjust the font size for the user interface.
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
    You can use the NoSquint extension to set font size (text/page zoom) and text color on web pages.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • In Imovie '11, how can I drag more than one set of video clips to my project?

    In  Imovie '11, how can I drag more than one set of video clips into my project.  I know how to highlight in yellow and drag the set, but can I drag a group of sets?  Thanks

    To select multiple clips, hold down the command key as you click multiple clips. Then you can drag them all at once.
    To drag all clips at once, select one, then Edit/Select All. Then drag them all.

  • How can I get the element value with namespace?

    I tried to get a element value in xml has namespace but i can't.
    I removed the namespace, i can get a element value.
    How can i get a element value with namespace?
    --1. Error ----------- xml ------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    *<TaxInvoice xmlns="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0 http://www.kec.or.kr/standard/Tax/TaxInvoiceSchemaModule_1.0.xsd">*
    <ExchangedDocument>
    <IssueDateTime>20110810133213</IssueDateTime>
    <ReferencedDocument>
    <ID>318701-0002</ID>
    </ReferencedDocument>
    </ExchangedDocument>
    <TaxInvoiceDocument>
    <IssueID>201106294100</IssueID>
    <TypeCode>0101</TypeCode>
    <IssueDateTime>20110810</IssueDateTime>
    <PurposeCode>02</PurposeCode>
    </TaxInvoiceDocument>
    <TaxInvoiceTradeLineItem>
    <SequenceNumeric>1</SequenceNumeric>
    <InvoiceAmount>200000000</InvoiceAmount>
    <TotalTax>
    <CalculatedAmount>20000000</CalculatedAmount>
    </TotalTax>
    </TaxInvoiceTradeLineItem>
    </TaxInvoice>
    --2. sucess ----------- xml ---------remove namespace---------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <TaxInvoice>
    <ExchangedDocument>
    <IssueDateTime>20110810133213</IssueDateTime>
    <ReferencedDocument>
    <ID>318701-0002</ID>
    </ReferencedDocument>
    </ExchangedDocument>
    <TaxInvoiceDocument>
    <IssueID>201106294100</IssueID>
    <TypeCode>0101</TypeCode>
    <IssueDateTime>20110810</IssueDateTime>
    <PurposeCode>02</PurposeCode>
    </TaxInvoiceDocument>
    <TaxInvoiceTradeLineItem>
    <SequenceNumeric>1</SequenceNumeric>
    <InvoiceAmount>200000000</InvoiceAmount>
    <TotalTax>
    <CalculatedAmount>20000000</CalculatedAmount>
    </TotalTax>
    </TaxInvoiceTradeLineItem>
    </TaxInvoice>
    ---------- program ------------
    procedure insert_table
    l_clob clob,
    wellformed out boolean,
    error out varchar2
    is
    l_parser dbms_xmlparser.Parser;
    xmldoc xmldom.domdocument;
    l_doc dbms_xmldom.DOMDocument;
    l_nl dbms_xmldom.DOMNodeList;
    l_n dbms_xmldom.DOMNode;
    l_root DBMS_XMLDOM.domelement;
    l_node DBMS_XMLDOM.domnode;
    l_node2 DBMS_XMLDOM.domnode;
    l_text DBMS_XMLDOM.DOMTEXT;
    buf VARCHAR2(30000);
    xmlparseerror exception;
    TYPE tab_type is Table of xml_upload%ROWTYPE;
    t_tab tab_type := tab_type();
    pragma exception_init(xmlparseerror, -20100);
    l_node_name varchar2(300);
    begin
    l_parser := dbms_xmlparser.newParser;
    l_doc := DBMS_XMLDOM.newdomdocument;
    dbms_xmlparser.parseClob(l_parser, l_clob);
    l_doc := dbms_xmlparser.getDocument(l_parser);
    l_n := dbms_xmldom.makeNode(l_doc);
    l_nl := dbms_xslprocessor.selectNodes(l_n, '/TaxInvoice/TaxInvoiceDocument');
    FOR cur_tax In 0..dbms_xmldom.getLength(l_nl) - 1 LOOP
    l_n := dbms_xmldom.item(l_nl, cur_tax);
    t_tab.extend;
    t_tab(t_tab.last).ed_id := '5000000';
    dbms_xslprocessor.valueOf(l_n, 'IssueID/text()', t_tab(t_tab.last).tid_issue_id);
    dbms_xslprocessor.valueOf(l_n, 'TypeCode/text()', t_tab(t_tab.last).tid_type_code);
    END LOOP;
    FORALL i IN t_tab.first .. t_tab.last
    INSERT INTO xml_upload VALUES t_tab(i);
    COMMIT;
    dbms_xmldom.freeDocument(l_doc);
    wellformed := true;
    exception
    when xmlparseerror then
    --xmlparser.freeparser(l_parser);
    wellformed := false;
    error := sqlerrm;
    end insert_table;

    l_nl := dbms_xslprocessor.selectNodes(l_n, '/TaxInvoice/TaxInvoiceDocument');try to change as follow
    l_nl := dbms_xslprocessor.selectnodes(l_n,'/TaxInvoice/TaxInvoiceDocument','xmlns="urn:kr:or:kec:standard:Tax:ReusableAggregateBusinessInformation:1:0"');Edited by: AlexAnd on Aug 17, 2011 12:36 AM

  • Can af:selectOneRadio initial selection be set to values from view object?

    Using JDeveloper 11.1.1.4
    Hi all. I have a selectOneRadio on a data entry page which works well. Now I want to (if possible) use the selectOneRadio on an edit page--setting the choice initially to the values that were stored in a database table's record (from the data entry page). I am able to retrieve the data selected in the data entry page, but I can't find anything referencing what I want to do on the edit page. Note that my selectOneRadio objects are actually on jsff's in a region on a page. I've supplied how I designed selectOneRadio on the data entry page in hopes that someone can gleen from it and tell me how to set one up on the edit page and set its initial value to the value combination stored.
    There are two columns in the data displayed (example):
    Short Format / Text
    Short Format / Comma Delimited
    Long Format / Text
            <af:selectOneRadio value="#{bindings.Pay_File_Data_FmtVO1.inputValue}"
                               shortDesc="#{bindings.Pay_File_Data_FmtVO1.hints.tooltip}" id="sor1"
                               inlineStyle="text-align:left; font-size:2.0em;"
                               autoSubmit="true" showRequired="false" label="File Format">
              <f:selectItems value="#{bindings.Pay_File_Data_FmtVO1.items}" id="si111"/>
            </af:selectOneRadio>
    public class FileTypesBean {
        String fileFormat = null;
        String dataFormat = null;
        public BindingContainer getBindings() {
            return BindingContext.getCurrent().getCurrentBindingsEntry();
        public void getFileTypesSelection(ActionEvent actionEvent) {
            fileFormat =
                    (String)resolveExpression("#{bindings.Pay_File_Data_FmtVO1.attributeValue}");
            dataFormat =
                    (String)resolveExpression("#{bindings.Pay_File_Data_FmtVO1.attributeValues[1]}");
            //System.out.println("dataFormat = " + dataFormat);
            // now put in ParamsBean for use
            AdfFacesContext afci = AdfFacesContext.getCurrentInstance();
            ParamsBean params =(ParamsBean)afci.getPageFlowScope().get("paramsBean") ;
            params.setFileTypeParam(fileFormat);
            params.setFileDataTypeParam(dataFormat);
        public Object resolveExpression(String el) {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ELContext elContext = facesContext.getELContext();
            ExpressionFactory expressionFactory =
                facesContext.getApplication().getExpressionFactory();
            ValueExpression valueExp =
                expressionFactory.createValueExpression(elContext, el,
                                                        Object.class);
            return valueExp.getValue(elContext);
    }Thanks in advance,
    Troy
    Edited by: Hoopestr on Apr 18, 2012 10:54 AM

    in the amimpl have an edit method, get the value you want to set and set that value for your af:selectOneRadio, row.setAttribute(PayFileDataFmtVO1, value);

  • Do I need to set something when using Dynamic VIs to pass control values to an executable VI

    I am using VI server to pass control information from one VI to another.
    In the development system this works fine.
    How ever once I build the VI's into an executable the values from one of the VIs does not get passed.
    I use the same method in three different applications, 2 of the applications work fine, but one does not.
    The only thing I can think of is that there is something that needs to be set that I did (without realizing) in the first two but not in the third.
    All the Applications run fine.
    The problem that occurs is in the values passed. The same value gets passed everytime this turns out to be what ever the default was prior to running application builder.
    I a
    m currently using 6.02.

    Kandrew wrote:
    > I am using VI server to pass control information from one VI to
    > another.
    > In the development system this works fine.
    > How ever once I build the VI's into an executable the values from one
    > of the VIs does not get passed.
    >
    > I use the same method in three different applications, 2 of the
    > applications work fine, but one does not.
    Are you using Call by Reference or Set Control Value method? The second
    absolutely requires the Front Panel to be present to work properly. The
    LabVIEW application builder wants to remove the Front Panel by default
    if the VI hasn't been configured to show its front panel when called or
    doesn't have at least one Control Property Node in its diagram.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

Maybe you are looking for