Document Tabs: Set Value and Tab Width

1. Would like to be able to assign a tab name (value) to any document, at least for the current session and preferably as a permanent document property.
2. Would like to be able to set min/max tab widths and L/R margins (white space). Setting could be in pixels or characters, either would be fine. Probably a product-level preference, though could be implemented differently.
Thank you kindly,
Elchanan

Hi Shaji,
You can do this in IRPT in the following way.
<!DOCTYPE HTML>
<HTML>
<HEAD>
    <TITLE>Your Title Here</TITLE>
    <META http-equiv="X-UA-Compatible" content="IE=edge">
    <META http-equiv='cache-control' content='no-cache'>
    <META http-equiv='expires' content='0'>
    <META http-equiv='pragma' content='no-cache'>
    <SCRIPT type="text/javascript" src="/XMII/JavaScript/bootstrap.js" data-libs="i5Chart,i5Grid,i5SPCChart"></SCRIPT>
    <SCRIPT>
        var Chart = new com.sap.xmii.chart.hchart.i5Chart("Regression_15.0/i5Chart_Employees", "Regression_15.0/Employees_Hiked");
        Chart.setChartWidth("640px");
        Chart.setChartHeight("400px");
        Chart.draw("div1");
    function setValueColumns()
   Chart.getChartObject().setValueColumns("ESAL,ENEWSAL");
    Chart.refresh();
    function setLabelColumns()
    Chart.getChartObject().setLabelColumns("EID");
    Chart.refresh();
    </SCRIPT>
</HEAD>
<BODY>
    <DIV id="div1"></DIV>
<INPUT type="button" value="setValueColumns" onClick="setValueColumns()"/>
<INPUT type="button" value="setLabelColumns" onClick="setLabelColumns()"/>
</BODY>
</HTML>
Output :
After clicking on setValueColumns
After clicking on setLabelColumns.
hope this helps.
Regards,
Sriram

Similar Messages

  • Hide Query filter values and column width default

    Hello Everyone,
    In our query definition we have default filter(restriction) values.  When query is output it shows these filtered(restricted) values.
    Is there anyway to hide these?  We dont' want users seeing this.
    Also, the column width defaults to the largest output in the column (Excel standard).  Is there anyway to override this?  I tried in a workbook to set the column width to a certain width, but the query did not read this?
    Thanks so much,
    Colleen

    Hi Colleen,
    To set column widths, use the BW Properties dialog.  In Excel, select any cell that is part of query definition, right-click ... you should now see a context-specific dialog.  The last option in the dialog is always Properties.  Go to the Column width tab and pick from there.
    For the filter values ... you should be able to delete these cells and they should not re-appear (unless someone goes to the BW toolbar and selects Layout >> Display text elements).
    Hope this helps.
    - Pete

  • Af:inputListOfValues sets value of first item in result set when using enter key or tab and component set to autosubmit=true

    I'm using JDev 11.1.1.6 and when I type a value into an af:inputListOfValues component and hit either the enter key or the tab key it will replace the value I entered with the first item in the LOV result set. If enter a value and just click out of the af:inputListOfValues component it works correctly. If I use the popup and search for a value it works correctly as well. I have a programmatic view object which contains a single transient attribute (this is the view object which is used to create the list of value component from) and then I have another entity based view object which defines one of its attributes as a list of value attribute. I tried using an entity based view object to create the LOV from and everything works as expected so I'm not sure if this is a bug when using programmatic view objects or if I need more code in the VOImpl. Also, it seems that after the first time of the value being replaced by the first value in the result set that it will work correctly as well. Below are some of the important code snippets.
    Also, it looks like it only doesn't work if the text entered in the af:inputListOfValues component would only have a single match returned in the result set. For instance given the result set in the code: Brad, Adam, Aaron, Fred, Charles, Charlie, Jimmy
    If we enter Cha, the component works as expected
    If we enter A, the component works as expected
    If we enter Jimmy, the component does not work as expected and returns the first value of the result set ie. Brad
    If we enter Fred, the component does not work as expected and returns the first value of the result set ie. Brad
    I also verified that I get the same behavior in JDev 11.1.1.7
    UsersVOImpl (Programmatic View Object with 1 transient attribute)
    import java.sql.ResultSet;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import oracle.adf.share.logging.ADFLogger;
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Sep 18 15:59:44 CDT 2013
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class UsersVOImpl extends ViewObjectImpl {
        private static ADFLogger LOGGER = ADFLogger.createADFLogger(UsersVOImpl.class);
        private long hitCount = 0;
         * This is the default constructor (do not remove).
        public UsersVOImpl () {
         * executeQueryForCollection - overridden for custom java data source support.
        protected void executeQueryForCollection (Object qc, Object[] params, int noUserParams) {
             List<String> usersList = new ArrayList<String>();
             usersList.add("Brad");
             usersList.add("Adam");
             usersList.add("Aaron");
             usersList.add("Fred");
             usersList.add("Charles");
             usersList.add("Charlie");
             usersList.add("Jimmy");
             Iterator usersIterator = usersList.iterator();
             setUserDataForCollection(qc, usersIterator);
             hitCount = usersList.size();
             super.executeQueryForCollection(qc, params, noUserParams);
        } // end executeQueryForCollection
         * hasNextForCollection - overridden for custom java data source support.
        protected boolean hasNextForCollection (Object qc) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             if (usersListIterator.hasNext()) {
                 return true;
             } else {
                 setFetchCompleteForCollection(qc, true);
                 return false;
             } // end if
        } // end hasNextForCollection
         * createRowFromResultSet - overridden for custom java data source support.
        protected ViewRowImpl createRowFromResultSet (Object qc, ResultSet resultSet) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             String user = (String)usersListIterator.next();
             ViewRowImpl viewRowImpl = createNewRowForCollection(qc);
             try {
                 populateAttributeForRow(viewRowImpl, 0, user.toString());
             } catch (Exception e) {
                 LOGGER.severe("Error Initializing Data", e);
                 throw new JboException(e);
             } // end try/catch
             return viewRowImpl;
        } // end createRowFromResultSet
         * getQueryHitCount - overridden for custom java data source support.
        public long getQueryHitCount (ViewRowSetImpl viewRowSet) {
             return hitCount;
        } // end getQueryHitCount
        @Override
        protected void create () {
             getViewDef().setQuery(null);
             getViewDef().setSelectClause(null);
             setQuery(null);
        } // end create
        @Override
        protected void releaseUserDataForCollection (Object qc, Object rs) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             usersListIterator = null;
             super.releaseUserDataForCollection(qc, rs);
        } // end releaseUserDataForCollection
    } // end class
    <af:inputListOfValues id="userName" popupTitle="Search and Select: #{bindings.UserName.hints.label}" value="#{bindings.UserName.inputValue}"
                                                  label="#{bindings.UserName.hints.label}" model="#{bindings.UserName.listOfValuesModel}" required="#{bindings.UserName.hints.mandatory}"
                                                  columns="#{bindings.UserName.hints.displayWidth}" shortDesc="#{bindings.UserName.hints.tooltip}" autoSubmit="true"
                                                  searchDesc="#{bindings.UserName.hints.tooltip}"                                          
                                                  simple="true">
                              <f:validator binding="#{bindings.UserName.validator}"/>                      
    </af:inputListOfValues>

    I have found a solution to this issue. It seems that when using a programmatic view object which has a transient attribute as its primary key you need to override more methods in the ViewObjectImpl so that it knows how to locate the row related to the primary key when the view object records aren't in the cache. This is why it would work correctly sometimes but not all the time. Below are the additional methods you need to override. The logic you use in retrieveByKey would be on a view object by view object basis and would be different if you had a primary key which consisted of more than one attribute.
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i) {
        return retrieveByKey(viewRowSetImpl, null, key, i, false);
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, String string, Key key, int i, boolean b) {
        RowSetIterator usersRowSetIterator = this.createRowSet(null);
        Row[] userRows = usersRowSetIterator.getFilteredRows("UserId", key.getAttribute(this.getAttributeIndexOf("UserId")));
        usersRowSetIterator.closeRowSetIterator();
        return userRows;
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i, boolean b) {
        return retrieveByKey(viewRowSetImpl, null, key, i, b);

  • How to set default value and bg color of cross tab cell?

    Hi all
    Which way can I set default value and background color for a crosstab cell where there are no any data?
    I try to pass it in following way
    if isnull(CurrentFieldValue) then
    But is has no effect.

    Hi,
    If your field is numeric
    if currentfieldvalue =0 then cryellow else crnocolor
    if the field is numeric but you don't see the 0 check check if : Suppress if zero is ticked in the Number format tab.
    Regards

  • Is there a way to set min and max tab widths in firefox 17 or 18?

    The browser tab width maximum and minimum options are no longer in about:config and the "tab width clip" has no effect on tab width in firefox 17 or 18.

    hello, the browser.tabs.tabClipWidth setting does only specify beyond which width a close button is shown on the tab. in order to set a custom tab size you can use this extension: https://addons.mozilla.org/firefox/addon/custom-tab-width/

  • Setting tab width in JTabbedPane....

    hi all,
    I want to set the tab width to a constant value for all tabs in tabbed pane. How can i do this?
    Actually i have a tabbed pane where it has different length of strring to display in each tab. To make it uniform i want to set a constant width to the tab.
    please help...
    -Soni

    hi all
    i got it by overridding BasicTabbedPaneUI .
    class TabbedPaneUI extends BasicTabbedPaneUI {
    protected int calculateTabWidth(int tabPlacement, int tabIndex,
                                  FontMetrics metrics) {
              return TAB_TEXT_WIDTH;
    Now my problem is,
    all text in tab are center aligned.
    how to make it left aligned?
    please help....
    -Soni

  • JTabbedPane: Tab Text, Tab Width and Tab Height

    Whenever i put text on JTabbedPane tab it displays it in one line, so when i have a text e.g. "XXXXXXXXX XXXXXXXXX"
    it displays it as it is not like XXXXXXXXX
    XXXXXXXXX
    How can I display it in two line or more?
    Does Tab width and height automatically adjust itself relative to the text inside it? If not how can I set the tab width and height?
    Thanks in advance.

    leemax quote:
    Simply add the escaped new line character "\n" to display the text of the tab on the next line.
    --Yeah i tried that already but anyway i solved the problem by making used of htnl tags "<br>"                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Entering a Value and Tabbing out of af:inputListOfValues displays the wrong value

    Good morning. I am having an issue with the autosubmit and tabbing out of af:inputListOfValues in my code.
    Problem: When I type in a valid value and tab out of the field, it ignores the value I entered and displays whatever the first list in the query result instead regardless of the value I typed.
    My code snippet. What it does is simply an LoV search of Employee No attached to an entity attribute and depending on selection, it will display the Employee Name within the page. (it also retrieves a table view depending what employee number was entered)
    <af:inputListOfValues id="empNoId"
                 popupTitle="Search and Select: #{bindings.EmpNo.hints.label}"
                  value="#{bindings.EmpNo.inputValue}"
                  label="#{bindings.EmpNo.hints.label}"
                  model="#{bindings.EmpNo.listOfValuesModel}"
                  required="#{bindings.EmpNo.hints.mandatory}"
                  columns="#{bindings.EmpNo.hints.displayWidth}"
                 shortDesc="#{bindings.EmpNo.hints.tooltip}"
                   binding="#{workLocationBean.txtEmpNo}"
                  partialTriggers="id1"
                 valueChangeListener="{bean.onEmpNoChange}"    
                 autoSubmit="true">
            <f:validator binding="#{bindings.EmpNo.validator}"/>
      </af:inputListOfValues>
    Other things to note:
    When I enter a valid employee number and click anywhere in the page (not TAB), it behaves correctly.
    I have been trying to figure this out for days. Even my valueChangeListener gets the wrong value (when I do System.out) when I tab out so I am not sure where to catch it and replace it with the correct value.
    Thank you.

    This usually happens when primary key is not set in view object used by LOV.
    Dario

  • Net amount and taxes are not reflected in net value and taxes tab in sale

    hi
    While i am generating sale order that time system calculated all condition like price E.D cess E-cess Lst  but it is not reflected in net value and tax tab.The value comes in net is quantity value.
    Pl Give me Solution on that...
    Thanks & Regards
    sachin

    in header item level when i am putting my condition that time system calculate each and every condition but not reflected in tab net value tab. Insist of net value only quantity is coming in that tab......
    Thanks
    sachin

  • Setting tab width for Text editor

    Simple ? I was unable to see this in the tool help. How do we set the tab width in the Text Editor for solaris.

    Hi,
    Please see the man page of xview.
    The parameter: text.tabWidth in the .Xdefaults file controls the tab width size.

  • Again and Again. Set Value to node of XML document

    I've read many topics about how to set value in XML, but nothing works. Please, help
    My xml file:
    <TempEditData>
         <parameter userId="testUserId">
              <connectUrl>http://cognoslink</connectUrl>
              <connectUser>cognosTestUser</connectUser>
              <connectPwd>cognosPassword</connectPwd>
              <connectNamespace>cognosNamespace</connectNamespace>
              <reportStorePath>reportStorePath</reportStorePath>
              <reportUrlPath>reportUrlPath</reportUrlPath>
              <reportLifeLength>reportLifeLength</reportLifeLength>
         </parameter>
    </TempEditData>My code:
    private static void storeChartDataBeanParameters( String inputUserId) throws Exception{
              boolean isUserIdInFile = false;
              //create object
              DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
            Document doc = docBuilder.parse (new File("src/tempCognosEditData.xml"));
            //normalize
            doc.getDocumentElement().normalize ();
            //get all Nodes
            NodeList listOfParameters = doc.getElementsByTagName("parameter");
            for(int i=0; i< listOfParameters.getLength(); i++){
                 Node firstParameterNode = listOfParameters.item(i);
                 //if first element is NODE
                if(firstParameterNode.getNodeType() == Node.ELEMENT_NODE){
                    Element firstParameterElement = (Element)firstParameterNode;
                    String userId = firstParameterElement.getAttribute("userId");
                    //if !inputUserId
                    if(!inputUserId.equals(userId)){
                         continue;
                    //if userId was found in file
                    else{
                         isUserIdInFile = true;
                         System.out.println("((Element)firstParameterElement).getElementsByTagName('connectUrl').item(0).getNodeName = " + ((Element)firstParameterElement).getElementsByTagName("connectUrl").item(0).getNodeName());
                         System.out.println("((Element)firstParameterElement).getElementsByTagName('connectUrl').item(0).getNodeValue = " + ((Element)firstParameterElement).getElementsByTagName("connectUrl").item(0).getNodeValue());
                         ((Element)firstParameterElement).getElementsByTagName("connectUrl").item(0).appendChild(doc.createTextNode("dzfgsdfgsdgf"));
                         /*NodeList insideList = firstParameterElement.getElementsByTagName("connectUrl");
                         Element element = (Element)insideList.item(0);
                         System.out.println ( "element.getNodeName() = " + element.getNodeName() );
                         element.setNodeValue("new TT");
                         System.out.println ("element.getNodeValue() = " + element.getNodeValue() );
                         //element.appendChild(doc.createTextNode("rrr"));
                         NodeList nl = element.getChildNodes();
                         System.out.println ("nl.item(0).getFirstChild().getNodeValue() = " + nl.item(0).getFirstChild().getNodeValue());
                         nl.item(0).getFirstChild().appendChild(doc.createTextNode("rrr"));*/
                                    break;
                }//if ELEMENT_NODE
            }//for go through all nodes
         }Edited by: Holod on 03.03.2008 8:58

    So, the solution is pretty easy:
    storeChartDataBeanParameters( String inputUserId) searches for nodes named "+parameter+" in xml file with attribute "+userDd+".
    If method parameter equals to xml data, I perform some operations and save new data.
    The only thing, that saveFile(Document doc) must be syncronized.
    Two users can't write to fie at the same time.
    [This link|http://www.aviransplace.com/2005/03/20/working-with-xml-files-in-java-using-dom/5/] helped me alot.
    Also Dr. Clap posts in different topics brought evidence to my mind.
    private static void storeChartDataBeanParameters( String inputUserId) throws Exception{
              //create object
              boolean isUserIdWasFound = false;
              DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
            Document doc = docBuilder.parse (new File("src/tempCognosEditData.xml"));
            //normalize
            doc.getDocumentElement().normalize ();
            //get all Nodes
            NodeList listOfParameters = doc.getElementsByTagName("parameter");
            for(int i=0; i< listOfParameters.getLength(); i++){
                 Node firstParameterNode = listOfParameters.item(i);
                 //if first element is NODE
                if(firstParameterNode.getNodeType() == Node.ELEMENT_NODE){
                    Element firstParameterElement = (Element)firstParameterNode;
                    String userId = firstParameterElement.getAttribute("userId");
                    //if !inputUserId
                    if(!inputUserId.equals(userId)){
                         continue;
                    //if userId was found in file
                    else{
                         isUserIdWasFound = true;
                         NodeList parameterNode = firstParameterElement.getElementsByTagName("connectUrl");
                         Element connectUrlElement = (Element)parameterNode.item(0);
                         System.out.println("connectUrlElement name = " + connectUrlElement.getNodeName());
                         System.out.println("connectUrlElement value = " + connectUrlElement.getNodeValue());
                         System.out.println("((Node)connectUrlElement) value = "+((Node)connectUrlElement).getNodeValue());
                         ((Node)connectUrlElement.getFirstChild()).setNodeValue("normalized");
                         saveFile(doc);
                         break;
                }//if ELEMENT_NODE
            }//for go through all nodes
         public static void main(String[] args) throws Exception{
              storeChartDataBeanParameters("testUserId");
         public static void saveFile(Document doc) throws Exception{
              Transformer transformer;
              transformer = TransformerFactory.newInstance().newTransformer();
              transformer.transform(new DOMSource(doc), new StreamResult(new File("src/tempCognosEditData.xml")));
         }Edited by: Holod on 03.03.2008 15:52

  • Adobe 9 - missing rotate document tab on toolbar (and maybe others?)

    After 2nd attempt at upgrade to Adobe reader version 9 (was having freezing problems with prior version), seemed to be working okay but noticed I don't have the rotate document tab on the toolbar.... can't turn documents around when they are upside-down.... any suggestions?? I use MS XP on a Dell computer.

    Go to Document and click on Rotate pages.  You can choose to just rotate one single page by knowing what number it is.
    Not possible with Adobe Reader.

  • How to display TEXT description from Documents tab of Product master in ISA

    Hi,
    We have product related PDF document attached with Product.
    I can access in CRM by Going
    Products--> Maintain Products.
    When I chose specific Product I can see Product related details.
    There are many tabs like "General", "Material", "Sales and Distributions", "Documents",  etc...
    "Documents" tab have 2 folders "Pictures" and "TEXTS".
    under "TEXT" folder we have PDF documents.
    it has short product name like "ASP009" and Description "ASP 009 Manual".
    When I click on any one I can see attached PDF document in Preview window in CRM.
    How I can access text description "ASP 009 Manual" on "ProductDetailsB2C.JSP" file.
    I want to display this "ASP 009 Manual" description on "ProductDetailsB2C.JSP".
    Is there any Standard Java class method available in ISA.
    I really appreciate any help on this and assign points to them for solution.
    Thanks in Advance.
    Ashish

    Here's the steps we use in our ProductDetailB2C.jsp (B2B uses same code in another file name I forget right now) to provide a link to our technical data sheets...this includes how to create a new document type in CRM as well as the code needed to display it on the ISA
    Step 1: Transaction OAC2, create Document Type example CRM_TECHDA
    Step 2: Transaction SPRO-> CRM -> Basic functions -> Content Management -> Define template for folders
    Step 3: Double click template PRODUCT_MATERIAL
    Step 4: Right-click Documents, Choose Create Folder
    (Make sure to input DOCUMENT TYPE(Properties TAB) = Step 1 value example CRM_TECHDA)
    Step 5: Add a new set of lines of code for each of the types of 'text' you have created to display as a link in the .jsp file(s), changing the CAPPED name to the appropriate name of your specific field below:
    <% if (currentItem.getAttribute("DOC_P_CRM_TECHDA") != null && !currentItem.getAttribute("DOC_P_CRM_TECHDA").equals("")) { %>
                   <tr>
                     <td colspan="2"><a href="<isa:imageAttribute guids="DOC_P_CRM_TECHDA,DOC_P_CRM_TECHDA" name="webCatItem" defaultImg="mimes/shared/no_pic.gif"/>" target="_new"><img src="<%=WebUtil.getMimeURL(pageContext, "b2c/mimes/images/pfeil_rechts_mit_rand_blau.gif") %>" alt="" border="0"> Technical Data Sheet</a></td>
                   </tr>
                   <% } %>
    Edited by: Mike Anecito on Jul 17, 2008 8:27 AM
    I forgot to add, that you could add the attribute information Sateesh talks about where we just use "Technical Data Sheet"
    on the third line of the code...we don't bother with the name of the file as you're needing since we had too many people
    naming them and the overall consistency was horrible.

  • How to add custom field in Documents Tab of PO Header ?

    Dear SRM Friends,
      This is a challenging task as an ABAPer to confront to..
      We are in the midst of a requirement where we have to add a custom field in the PO Header. But the requirement is to add the field in Documents Tab in PO Header Data as found in the following path of SRM Webpage  :
    Operational Purchaser > Purchase Orders > Process Purchase Order > Select a PO > Header Data > Documents.
      As guided by "Note 672960 - User-defined fields 2" , on executing all the steps of the note the field is getting added, but in the Basic Data Tab of the PO. But this doesnt meet the client requirement.
      Anybody having some solution to this, shall be greatly awarded.
    Thanks in advance,
    Vikas.

    Hi Vikas,
    You can define a Text ID in Header data with F4 help. But the list of values will be fixed, but configurable. This will exactly solve your problem. This will be quite simple and straight forward solution with no custom developments.
    Please Navigate to
    SAP Implementation Guide -> Supplier Relationship Management -> SRM Server
    -> Cross-Application Basic Settings -> Text Schema
    1. Define Text Types
    Select BBP_PD and double click text id. Add a new text id here.
    2. Define Text Schema
    Select PO and add the newly created text id and set required parameters.
    3. Define Fixed Values for Texts
    Select your PO transaction type and maintain the required values for F4 help / drop down.
    Hope this would solve your problem.
    Regards
    Kathirvel

  • ThreadOpt values - is it possible to set them and what are the ranges?

    Hi there,
    I have a problem on my TestStand 4.2 platform, with test step result, formed and received from called external sequences results. In my Main sequence, in Post-Expression I defined condition, according to which the "Step.Result.Status" is passed or failed, and it works. But the problem is that in Status Expression field there is following statement: "(Step.Result.Status == "Done" && (Step.TS.SData.ThreadOpt == 0 || Step.TS.SData.ThreadOpt == 3)) ? "Passed" : Step.Result.Status". After deep search in the user manual, I found that (Note from "Expression Tab - Step Properties Dialog Box"): "Certain types of steps, such as Numeric Limit Tests, Multiple Numeric Limit Tests, String Value Tests, Pass/Fail Tests, and Statement steps, reserve one or more of these expressions to perform operations specific to the type of step or a substep performs the operation. In these cases, you cannot use the expressions the step type reserves, which appear dimmed on the tab." 
    Now, my problem is that at this specific step I call to an external sequence, which returns results and it is correct, but if these results, compared to expected are not the same, my step in the main sequence fails. Which is OK. But when the final report is generated I see there "Number of Tests Failed: 0", which is not OK. Since I can't change the "Step.Result.Status == Done", which comes from the external sequence, I thought that may be there is a place to change the "Step.TS.SData.ThreadOpt" and this way to cause to main sequence to correctly report "Failed Tests <> 0"??? 
    Does anyone has an idea whether it is possible to set this the ThreadOpt value and what is the accepted range?
    Your feedbacks and inputs are highly appreciated.
    Stephan

    GSinMN wrote:
    Hello Doug,
      I didn't think I was modifying any hidden properties.  It's just configuring a sequence call step when you add it to the sequence.  The "Execution Options" are clearly shown in a dropdown menu on the Module tab.  I was just pointing out that this seems to be what sets the ThreadOpt variable.  
    GSinMN
    Maybe I misunderstood. When you said "My normal process is to set it to 1, but based on this info, it needs to be either set to None or Use Remote Computer if you want anything other than "Done" to be returned." I thought you meant that you were setting the property directly rather than setting your sequence call steps to "New Thread" with the combobox.
    -Doug

Maybe you are looking for

  • Songs need locating... but I can't locate them

    Alright. I had about 4 gigs of mp3s, which came directly from itunes, on an external harddrive. Put them on my new laptop, which I'd just set up with itunes. Copied them over, which took an suspiciously short amount of time, and they all showed up in

  • Connect Apple TV to Sony bravia

    How do I connect.apple tv, generation 2, to sony braveria.

  • App that handles pdf and .doc and .eml like Coverflow on steroids?

    Is there an app that would let me basically scroll through a folder with the pdfs, Pages, and/or saved email visible at actual size (8 1/2 x 11) or some other realistically sized almost full screen method? As I new user I absolutely /love/ Coverflow

  • How do I load a .swf onto a flash pro file?

    My class i'm taking right now is using Adobe: Flash Professional CC Classroom in a book, and there's a point in the lesson where you upload/load a swf file(s). Technically it's supposed to be multiple because its the outline coding for a website, but

  • Why is the output of the program "String S is null"

    public class StaticOverLoad      public static void get(String S)           System.out.println("String S is null");      public static void get(Object O)           System.out.println("Object O is null");      public static void main(String args[])