ECATT: FUN gets not filled from TESTDATA Container

hi,
I have a script calling a function on another system.
I have 3 parameters I give the function.
2 of the 3 parameters are sent correct, but one is initial (it's not initial in my testdataCont)
I tried everything, deleted the parameter, deleted the testdata for the parameter and recreated everything but the parameter is still initial (the other 2 parameters work correct)
any ideas?
edit:
test data is also shown in log of script after its run and is filled there correct, but in debugging mode it's not filled (in function module)...

The CSS layout below fits comfortably on most average width displays.  For larger displays the layout is centered.  Note: no tables were used.  (View source in your browser to see the code)
http://alt-web.com/TEMPLATES/Dark-Grid-II.shtml
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Get notes (GOS) from purchase or requisition order

    Hi,
    i need to get notes created for a purchase requision or purchase order, what function module can i use ?
    Thanks for your help.

    Hi ,
    For PR you have to pass arguments as follows,
    ID = 'B02'
    LANGUAGE = 'EN'   or sy-langu
    NAME = 0010000812000010  -
    PR no with item no.....proper padding is required
    OBJECT = 'EBAN'
    Then you will get data in table 'LINES'.
    To know what is ID, just save some data in PO / PR Note and see in table STXH. Give just PO no in case of PO in TDNAME or PR NO with item in case of PR in TDNAME field with proper padding.
    Regards,
    Anil Salekar

  • Get an Image from a Container

    I want to obtain an image or graphic object from a Container or Document object.
    Could you tell me how I can do, the idea is then to save it on disk as an image file (.bmp, .jpg, ..)

    import java.net.*;
    import java.io.*;
    import java.util.Scanner;
    class ImageGrabber {
         public static void main(String[] argv) throws Exception {
              FileOutputStream fos;
              Socket s;
              String pathToImage;
              String file;
              InputStream is;
              Scanner kbd = new Scanner(System.in);
              URLConnection connection;
              URL url;
              int in;
              System.out.print("Enter URL of picture: ");
              pathToImage = kbd.nextLine();
              System.out.print("File to save to: ");
              file = kbd.nextLine();
              connection = new URL(pathToImage).openConnection();
              connection.connect();
              is = connection.getInputStream();
              fos = new FileOutputStream(file);
              while( (in = is.read()) != -1 ) {
                   fos.write(in);
              System.out.println("Done.");
              fos.close();
              is.close();
    }

  • Not able to get the data from variables contained in more than 1 mxml file

    I have got 5 Bindable Public integer variables in total in 5 mxml files (Pages). Each variable is assigned it's value in a Public function in each of the mxml files.
    What I need to do is add up the values of the 5 variables. The way I approached this was to create a public function add5Variable in my main mxml file (Page1) as shown below.
    [Bindable]
    public var varTotal:int = 0;
    public  
    varTotal = (variableP1 +
    Page2.variableP2 + Page3.variableP3 + Page4.variableP4 + Page5.variableP5);
    return(varTotal);
    I have got a TextInput field on Page5 where I display the varTotal. The function add5Variable is called when moving from Page to Page.
    The results I am getting is that the varTotal will always be the value of variableP1. When I tried some debugging in Flex Builder it showed me that the other 4 variables had a value of 0.
    Why is this the case and do you have any suggestions on how I can get the correct total for varTotal?
    Thanks
    function add5Variable():int {

    The code below looks correct. Is that the expected behavior of your app?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
    <![CDATA[
    public var ValueP2:Number = 0;
    private var grossValue:Number = 0;
    private var totalValue:Number = 0;
    private var finalTotalP2:int = 0;
    public function test():void {
    if (Number(TextInput2.text) == 1 || Number(TextInput2.text) == 2)
    ValueP2 = 1;
    totalValue = grossValue + ValueP2;
    else if (Number(TextInput2.text) == 3 || Number(TextInput2.text) == 4) {
    ValueP2 = 5;
    totalValue = grossValue + ValueP2;
    else if (Number(TextInput2.text) == 5 || Number(TextInput2.text) == 6) {
    ValueP2 = 9;
    totalValue = grossValue + ValueP2;
    trace("totalValue "+totalValue);
    finalValueP2(totalValue);
    public function finalValueP2(tVP2:int):int {
    var tallyP2:int = 0;
    if (tVP2 < 3)tallyP2 = 1;
    if (tVP2 >= 3 && tVP2 <5)tallyP2 = 2;
    if (tVP2 >= 5 && tVP2 <10)tallyP2 = 3;
    finalTotalP2 = tallyP2 * 7;
    trace("finalTotalP2 " +finalTotalP2);
    return(finalTotalP2);
    ]]>
    </mx:Script>
    <mx:TextInput id="TextInput2" enter="test()"/>
    </mx:Application>

  • Getting database properties from current container

    Hi guys
    I'm a trainee java developer and I'm struggling... I've done countless google's & I'm not getting anywhere...
    I won't mind if the response to this post is RTFM, but at least could you point me in the right direction :)
    My manager told me to replace all our ejb finders to rather use Hibernate (www.hibernate.org).
    I got that working very cool, but the way I setup Hibernate's SessionFactory is through an xml file:
    Example:
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE hibernate-configuration (View Source for full doctype...)>
    - <hibernate-configuration>
    - <!-- a SessionFactory instance listed as /jndi/name
    -->
    - <session-factory name="java:comp/env/hibernate/SessionFactory">
    - <!-- properties
    -->
    <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
    <property name="connection.url">jdbc:hsqldb:hsql://localhost:1703</property>
    <property name="connection.username">sa</property>
    <property name="connection.password" />
    <property name="dialect">net.sf.hibernate.dialect.HSQLDialect</property>
    - <!-- mapping files
    -->
    <mapping resource="za/co/strate/safe/reports/CountPartyUnmatchedOrdersVO.hbm.xml" />
    </session-factory>
    </hibernate-configuration>
    Now my manager want's me to rather get these database connection properties from the current ejb container (not hard-coded in any file)...
    We have client's running JBoss & IBM WebSphere...
    Any pointers would be greatly appreciated!
    Thanks!
    Anthony

    Now my manager want's me to rather get these database connection properties from the current ejb container (not hard-coded in any file)...
    Tell you'r manager that he is a stupid asshole who has no clue about what he is talking.
    Because what he wants is not possible

  • Runtime process not working from servlet container

              Hello,
              I'm executing a standalone executable from the Runtime class, using exec.
              Process process = Runtime.getRuntime().exec(buildCommand.toString());
              There are threads monitoring the input and error streams. This same use of the Runtime
              class is used at least 5 other times in the servlet with no problems. The same method
              is also called from a JUnit test and also executes properly.
              The method called from the servlet however does not work. the executable it's calling
              is a C++ executable that uses an ODBC alias set up on the machine to connect to the
              Oracle database. For some reason the ODBC layer throws an exception while trying
              to connect when the executable is called from the servlet, rather than called from
              the command line or JUnit test.
              Does the servlet have a different environment than a client call from the JUnit test?
              Would it not have access to ODBC drivers it needs? Could there be some sort of security
              setting that the servlet container is set too low?
              Any information would be terrific.
              Thanks,
              Sara
              

    Thanks!
    I borrowed a DVD drive and everything installed correctly.

  • How to get current connection from ejb container

    We have to execute sql statement directly to the database and will use for this issue to connection establish between the ejb container and the database.
    How to get the corresponding object ?

    thanks

  • How to get a connection from ejb container

    How is it possible to get the connection used by the ejb container to execute some specific sql statement without establishing a new jdbc connection.

    repost ... please help

  • HT204053 not getting notes transferred from Ipad to Iphone via Cloud.  Other data is being transferred.  I've turned on notes app in settings.  Any ideas?

    No help there.  I have information in the "Notes" app on my I-Pad that are not syncing with my I-Phone.  The other information from selected apps, contacts, mail, calendars, etc. are syncing.  Any idea why notes are not.  I've swithced the notes app to "on" with the I-Pad device.

    Welcome to the Apple Community.
    First check that all your settings are correct, that notes syncing (mail and notes on a computer) is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the notes you are adding are added to your 'iCloud' account and not an 'On My Mac', 'On My Phone'  or other non iCloud account (you can do this by checking in accounts on an iOS device, or the left side panel in mail on a computer), non iCloud notes will not sync.
    If you are sure that everything is set up correctly and your notes are in the iCloud group, you might try unchecking notes syncing (mail and notes on a computer) in the iCloud settings, restarting your device and then re-enabling notes syncing.

  • Facetime not activating, getting SMS messages from +447786205094

    I bought my iPhone 4 unlocked in UK, but am working in Canada, so have a Canadian sim in it, every time I turn face time on it says waiting for activation... And I get SMS messages from + 447786205094, containing what looks like the information needed by the phone to activate face time, but it doesn't activate! Anyone have any idea what I can do to activate face time?
    Thanks
    Ben

    Hi there, there appears to be a problem with activating unlocked UK phones in other countries.
    Post 1
    Post 2
    Post 3
    I'm afraid I don't know how to fix it though, but you may want to keep an eye on the other posts running on this forum just in case something else pops up.
    As far as I'm aware it's not possible to manually activate facetime - The activation is by text message that are sent without the users knowing.
    Good luck.

  • How can I go back to Firefox 5, the 6 update is terrible, constantly get 'not responding' when navigating.

    I want to know if I can go back to Firefox vs 5 until vs 7 comes out? I am constantly getting 'not responding' from the browser when navigating through tabs and sites. (ie. if on say facebook, after maybe writing a comment or viewing a picture, I'll click on a second picture or other comment and I have to wait for the browser to 'respond'. This happens on multiple sites and multiple tabs.
    I thought it was my internet connection at first but after trying Chrome and explorer browsers I do not have this issue.
    It is really irritating and annoying. I did not have this issue with vs 5.

    Have you tried the steps at [http://www.roboform.com/support/faq/roboform-v7#faq_firefox http://www.roboform.com/support/faq/roboform-v7#faq_firefox] ?
    Firefox 5 is not recommended for security reasons, but if you don't want 6.0 you can try 3.6.x: [http://www.mozilla.org/en-US/firefox/all-older.html]

  • Need how to get the data from the external file in eCatt

    Hi ,
      Could any body suggest how to get the values from the external file(Excel,CSV file,Text file) and pass it as varaiable in ecatt Test script.
    Problem: Need to execute FK01-Vendor creation Transaction with multiple set of data .As per my understanding we could achive through Variants in Testdata set in eCatt .
    But is there any way to store the data in excell file and get the data and pass it to FK01 Test scripts
    Appreciate response on this

    Hi
    See the links they may be useful
    check these link,
    eCATT- An Introduction
    /people/sumeet.kaul/blog/2005/07/26/ecatt-an-introduction
    Creating Test Scripts
    /people/sumeet.kaul/blog/2005/08/10/ecatt-creating-test-scripts
    eCATT Logs
    /people/sapna.modi/blog/2006/04/18/ecatt-logs-part-vi
    eCATT Scripts Creation – TCD Mode
    /people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation-150-tcd-mode-part-ii
    Creation of Test Data Container
    /people/sumeet.kaul/blog/2005/08/24/ecatt-creation-of-test-data-container
    eCATT Scripts Creation - SAPGUI Mode
    /people/sapna.modi/blog/2006/04/10/ecatt-scripts-creation--sapgui-mode-part-iii
    Integrating ECATT & MERCURY QTP Part -1
    /people/community.user/blog/2007/01/02/integrating-ecatt-mercury-qtp-part-1
    Using eCatt to Test Web Dynpro ABAP
    /people/thomas.jung/blog/2006/03/21/using-ecatt-to-test-web-dynpro-abap
    and
    -command reference
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/3c333b40389c46e10000000a114084/content.htm
    /people/sapna.modi/blog/2006/04/10/ecatt--an-introduction-part-i
    http://prasadbabu.blogspot.com
    https://www.sdn.sap.com/sdn/developerareas/was.sdn?page=test_tool_integration_for_sap_e-catt.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1b/e81c3b84e65e7be10000000a11402f/frameset.htm
    http://www.erpgenie.com/ecatt/index.htm
    hope this helps.
    Reward points for useful Answers
    Regards
    Anji

  • Container Variables Not Filled

    Hi,
    I have configured Alert Category and Alert Rules to trigger exceptions at Mapping, Adapter and Proxy level.  All these alerts are getting triggered properly.  But the container variable, &SXMS_FROM_SERVICE& is not getting populated and displays the tag as such.
    I infact checked the Note 947738 (Container Element not filled).  But this is for SP 09.  We are in Release 7.0 SP 11.  So the note is already implemented.
    But still I am facing this problem.  The container variables are not filled.  Can someone suggest how to fix this.
    Regards.
    Bala

    Hi,
    Are all the other Container Variables being populated?
    If yes, one option is to check note : 913858 . This note describes one question when the From Interface Container variable does not fill up. Check what it mentions.
    Regards
    Bhavesh

  • The problem here is i am not able to get the data from the list

    hi all,
    i have the following code
    EnrichedProductCatalogue enrichedProductCatalogue1 = new EnrichedProductCatalogue();
    enrichedProductCatalogue1.setAssetCount(2);
    enrichedProductCatalogue1.setBlockingProduct("Weekend Freebee");
    enrichedProductCatalogue1.setBlockingReason("Compatability");
    ArrayList<String> availableActionsList = new ArrayList<String>();
    availableActionsList.add(EnrichedProductConstants.ADD.toString());
    availableActionsList.add(EnrichedProductConstants.REMOVE.toString());
    enrichedProductCatalogue1.setAvailaibleActions((ArrayList<String>)availableActionsList);
    BundleProduct bundleProduct = null;
    Product product = new Product();
    product = new Product();
    product.setProductName("International");
    product.setProductClassName("International");
    ArrayList<UiCategory> uiCategory = new ArrayList<UiCategory>();
    UiCategory uiCategory1 = new UiCategory();
    uiCategory1.setCategoryName("Simply");
    UiCategory uiCategory2 = new UiCategory();
    uiCategory2.setCategoryName("Freebees");
    uiCategory.add(uiCategory1);
    uiCategory.add(uiCategory2);
    product.setUiCategory(uiCategory);
    bundleProduct = new BundleProduct();
    bundleProduct.setCommercialProduct(product);
    enrichedProductCatalogue1.setBundleProduct(bundleProduct);
    listOfEnrichProducts.add(enrichedProductCatalogue1);
    listOfEnrichProducts.add(enrichedProductCatalogue1);
    here i have an list called listOfEnrichProducts.
    here i am adding two objects of enrichedProductCatalogue.
    which contains a object called BundleProduct.
    which has a reference for Product class.
    here this product class has a list which contains objects of another class called UiCategory.
    the problem here is i am not able to get the data from the list which contains UiCategory objects .
    the following is the UI
    <af:table var="row" rowBandingInterval="0" id="t1"
    value="#{pageFlowScope.sample1}"
    binding="#{pageFlowScope.sampleManagedBean.dataTable}"
    partialTriggers="apimethods ::apimethods">
    <af:column sortable="false" headerText="ProductName" id="c2">
    <af:outputText value="#{row.bundleProduct.commercialProduct.productName}" id="ot15"/>
    </af:column>
    <af:column sortable="false" headerText="ProductClass" id="c12">
    <af:outputText value="#{row.bundleProduct.commercialProduct.productClassName}" id="ot19"/>
    </af:column>
    <!--
    <af:column sortable="false" headerText="UICategoryName" id="c32">
    <af:forEach var="item" items="#{row.bundleProduct.commercialProduct.uiCategory}" >
    <af:outputText value="#{item.categoryName}" id="ot119"/>
    </af:forEach>
    </af:column>
    -->
    <af:column sortable="false" headerText="AssetCount" id="c22">
    <af:outputText value="#{row.assetCount}" id="ot1"/>
    </af:column>
    <af:column sortable="false" headerText="blockingReason" id="c3">
    <af:outputText value="#{row.blockingReason}" id="ot2"/>
    </af:column>
    <af:column sortable="false" headerText="blockingProduct" id="c4">
    <af:outputText value="#{row.blockingProduct}" id="ot3"/>
    </af:column>
    <!--<af:column sortable="false" headerText="availaibleActions" id="c1">
    <af:commandButton text="#{row.availaibleActions}" id="cb1"
    actionListener="#{pageFlowScope.sampleManagedBean.callAction}"
    partialSubmit="true">
    <af:setPropertyListener from="#{row.availaibleActions}"
    to="#{pageFlowScope.avalibleaction}" type="action"/>
    </af:commandButton>
    </af:column>-->
    </af:table>
    Can anyone pls give some solution ...

    Hi Frank,
    value="#{pageFlowScope.sample1}"
    here sample is
    Map<String, Object> flowScope1 =
    ADFContext.getCurrent().getPageFlowScope();
    flowScope.put("sample1", listOfEnrichProducts);
    this is not the problem . i am able to get all the values except the following .
    ArrayList<UiCategory> uiCategory = new ArrayList<UiCategory>();
    UiCategory uiCategory1 = new UiCategory();
    uiCategory1.setCategoryName("Simply");
    UiCategory uiCategory2 = new UiCategory();
    uiCategory2.setCategoryName("Freebees");
    uiCategory.add(uiCategory1);
    uiCategory.add(uiCategory2);
    product.setUiCategory(uiCategory);

  • TS1702 how can I get anyone to give us answer on the iphone apps casino game we purchased few days ago which once the token was finished we were not able to reset and play just for fun and not for gambling. we need help and not to be charged additional

    few days ago I have purchased Iphone casino games from itunes apps store. One of the game was made by the company called "ARISTOCRAT" dragan game. Usually we will get basic tokens to play the game, and if we ran out of the tokens all we need to do is going into "manu" and "setting" selete "dream" and reset that we should be able to continue play the game with same amount of the basic tokens. The one game would not let us to go back to the game. There were msg came out said" game center requires an active connection to the internet"? I didn't feel comfortable because we purchased the game for $1.99 to play for fun and not to gamble. We do have credit card on your file. We don't want to be charged alot of money for something not in our well. I need help to answer the question on the following:
    1.  Are we able to ever play this game again without going to internet? We don't even know which site to go to, because when we press the ok button nothing else came out to direct us to any area.
    2. We only purchased the few days ago order ID: MGT74GN6V7 on 10/03/12. all the other games we purchased we were able to continue to play by doing the same setting.
    Thank you for your help and looking forward to hear from you!

    You need to contact itunes support
    We are all itunes users just like you.
    http://www.apple.com/support/contact/

Maybe you are looking for

  • The length of the password entry field in the BEx Analyser

    Hi, The password is 8 characters in the BW system. When users changing their newly assigned passwords. When logging into the BEx Analyser, and prompted to change the password, a password entry box is displayed, with an entry field longer then 8 chara

  • Issue with DataSets in ODI

    Hi, I have two datasets (each contain three tables joined together, different filter criteria in each dataset) in my ODI interface on which I perform the MINUS SET commad. The results from this are to be written to a file. When I run the pure SQL in

  • How do i delete my card account?

    hello, is there any possible way that i can change or delete my visa card account? because i lost my laptop and i saved the card number in there.. so i just want to prevent wasting money from the stealer.... PLEASE HELP ME!

  • Vendor Number gets disappear

    Hi Gurus Have an issue- When I am creating purchase order on a specific vendor, vendor number gets disappear from the ME21N screen I verified vendor master is neither blocked nor marked for deletion Any guess , what could be the reason? Thanks in adv

  • Excel 2013 not responding when doing refresh all for enbedded quires.

    System: Windows 8.1 Intel I7 620 CPU 12 GB ram Office 2013 Issue 1: I have a excel file with 29 data from WEB quires. These are quires for stock data and the only difference in them is the ticker symbol. When I request a refresh all Excel goes into a