IDoc2File - Testing Problem

Hi.
I know there are several Tutorials concerning IDoc-Scenarios but i have a simple probelm in testing an empty IDoc.
I use an empty DELVRY03 and enter the configured Receiver and Sender for editing the control record fields, try to use the standard outbound processing and i get a message like:
the IDoc is saved but can't or should not be send.
No Idea what the problem might be! I really read every Blog/Tutorial to this and configured it all well - or is it not possible to test it with an empty IDoc?!
Best regards - Jens

Hi Shabarish,
well SM58 says nothing and i guess it even should say nothing when the IDoc is succesfully sent.
Please correct me in the following things if needed:
for the control data
1. recepient:
a. Port: should be the one i created in the sender-System, Tx WE21
b. RFC Dest: seems to work fine
c. partnerNo: should be the one i configured in BD54
2. sender:
a. Port: where do i get it from (System/Status?) - it should be the logicalSystemName from the Sender?!
b. partner No.: where do i get it?
Best regards, jens

Similar Messages

  • I bought an IPhone 5 in the US last Jan. The bettery was tested problem at my local Apple Store in Shanghai, China. Must I send it to the store where I bought it or Can any Apple Store in the US help me repair it? Thank you.

    Recently, my Iphone shuts down at 50%+ bettery. My local Apple Store told me that the bettery was tested problem and needs to be repaired or changed. Since the phone is still under a year warranty, I was suggested to return it to the US Apple Store for help. Please let me know if I can send it to any store in the US or the store where I bought. Also, I don't find the email receipt. Will it be a problem for repair? Your quick response will be very appreciated. Thank you.

    One more question. Can it be down without the receipt? If yes, I will send the phone to US immediately before warranty expired. Thank you.

  • XSLT MAPPING TEST PROBLEM

    Hi All,
             We had a problem while testing mapping in Altova Map Force.Here question is while testing our mapping in IR's interface mapping we got the message "Error while loading XSLT ".Target result is notgetting displayed.
    Any ideas.....
    Regards,
    Surya.

    After importing XSL in imported archives, double click it and check whether u can open it or not. Make sure that the namespace ur XSL uses is same as the namespac under which it is imported. Make sure file loaded is XSL and not XSLT. Then try running end-to-end scenario and check the result.
    Regards,
    Prateek

  • Apple Hardware Test problems

    Hi All. I have a very weird problem here, as I can't get the Apple Hardware Test to start on my late 2008, 2.66 MBP15 inch model# MC026LL/A (released early 2009 as a quiet upgrade from 2.53). Here's the story:
    I opened up my machine as usual one morning, and the optical drive made a very weird noise I never heard before. So I decided to run the Apple Hardware Test (AHT) to see if anything was amiss. Well, I inserted the second install disk, held down the "d" key, and restarted the machine. It began to boot into the hardware test, but just after the AHT screen appears the computer just shut down. This happens every time I try to run the AHT.
    I went to an Apple Store while I was on holiday in Brisbane (they don't have one here in Adelaide), and the genius said it was likely a bad optical drive. Well, I returned to Adelaide last week and had the local Apple Authorized store replace the optical drive. Tried to run AHT once again, and the same problem persists. So the original problem wasn't with the optical drive.
    I thought maybe I accidentally used the startup disks for my wife's late 2008 15inch, 2.4, MBP (the one actually released in late 2008). I've looked around for the other sets of disks and can't find them. So here's what I'm asking help for: can someone who owns a 15inch MBP 2.66 15-inch (released in early 2009, model# MC026LL/A ) please tell me what the part # is for their set of install disks? It is written on the plastic sleeves of the install disks. And, could this person please tell which version of AHT is written on the disk itself? The set I have (which I think might be my wife's) has AHT version 3A158.
    Might this be the problem, or should my computer still be able to run the hardware test using my wife's disks? I know they are both technically late-2008 15inch unibody MBPs, but I think my 2.66 (again, quietly updated and released in early 2009) might require a different AHT version, which would explain my inability to run the test. If not, what might be causing my computer to not run the AHT? I tried reinstalling OS X to no avail.
    Thanks for all of your help!

    I think I share your skepticism--if your Mac was shipped with the later version of the OS, you should not have been able to do a clean install with discs of an earlier version. It looks like some machines originally shipped with OS X v. 10.5.5 and others with OS X v. 10.5.6. I don't remember just when 10.5.6 came out.
    Your two machines are likely very similar in build, and maybe similar enough for the OS to install. It may be that the AHT is specifically designed for the hardware in each machine, and that would be a bit different.
    As someone else said in another thread, there ought to be a tutorial on how to keep track of the original install discs since they are always getting lost. Maybe a secure note in the keychain or something like that.
    Out of curiosity, does the AHT work on your wife's machine? If not, there could be a problem with the install disc itself, and if so, you might be able to get a free replacement under warranty.
    Good luck!

  • ADF - MyFaces, HttpUnit testing problem with Javascript.

    Dear all
    Does anybody know how to test ADF Faces. Any tool would be of interest to me although Opensource and Free Software is prefered?
    My task is to write a set of unit tests to test an Oracle ADF and Apache MyFaces application. I have attempted to use both Cactus and HttpUnit. However I am struggling with a simple test case which should simulate a login.
    The problem I have is that ADF Faces produces the following dynamic javascript file (I am guessing it is dynamic because I can not find this in either adf-faces-impl-10_1_3_0_4.jar or adf-faces-api-10_1_3_0_4.jar which are the two jars am implementing in my project.):
    Common10_1_3_0_4.js
    Which when parsed by js.jar (Rhino javascript engine) I get the following error:
    com.meterware.httpunit.ScriptException: Event 'submitForm('maincontent:loginForm',1, {source:'maincontent:submit'});return false;' failed: org.mozilla.javascript.EcmaError: TypeError: Cannot call method "split" of undefined at
    com.meterware.httpunit.javascript.JavaScript$JavaScriptEngine.handleScriptException (JavaScript.java:202)
    (This file Common10_1_3_0_4.js is over 5000 lines long and so I do not want to post it as this posting is already quite long).
    Downloading the file directly after it has been built and modifying it and fixing the error by ensuring the split function is called on a strongly typed String variable, then commenting out from the web.xml below I tried the HttpUnit test again.
         <servlet>
              <servlet-name>resources</servlet-name>
              <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
         </servlet>
         <!-- servlet-mapping>
              <servlet-name>resources</servlet-name>
              <url-pattern>/adf/*</url-pattern>
         </servlet-mapping -->
    This time I get no error, but the original login page simply gets served again.
    login.jsp (which is called as login.jsf)
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <!-- Content -->
    <af:objectSeparator />
    <af:panelBox text="#{msg['login.info.loginHeader']}" width="100%" background="transparent">
         <af:form id="loginForm">
                   <af:objectSpacer height="10px" />
                   <af:panelGroup layout="vertical">
                        <af:panelForm labelWidth="5%">
                             <!--User Name-->
                             <af:panelLabelAndMessage for="username">
                                  <af:inputText label="User Name:"
                                       id="username"
                             columns="25"
                             required="yes"
                             secret="false"
                             value="#{userBean.userName}"
                             shortDesc="#{msg['global.user.userName']}" />
                             </af:panelLabelAndMessage>
                             <af:panelLabelAndMessage for="password">
                                  <af:inputText label="Password:"
                                       id="password"
                             columns="25"
                             required="yes"
                             secret="true"
                             value="#{userBean.password}"
                             shortDesc="#{msg['global.user.password']}" />
                             </af:panelLabelAndMessage>
                   <af:objectSpacer height="10px" />
                        <!--Login Button-->
                        <af:commandButton id="submit"
                                  textAndAccessKey="#{msg['global.button.login']}"
                                  action="#{userBean.login}" />
                        </af:panelForm>
                   </af:panelGroup>
         </af:form>
    </af:panelBox>
    TestCase LoginTest.java:
    package com.siemens.pse.wmstesting;
    import java.io.IOException;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    import com.meterware.httpunit.GetMethodWebRequest;
    import com.meterware.httpunit.WebConversation;
    import com.meterware.httpunit.WebForm;
    import com.meterware.httpunit.WebLink;
    import com.meterware.httpunit.WebRequest;
    import com.meterware.httpunit.WebResponse;
    public class LoginTest extends TestCase {
         * The URL of the Login page for all login tests
         public static final String URL = new String( "http://localhost/WMS/pages/login.jsf" );
    public static void main( String args[] ) {
    junit.textui.TestRunner.run( suite() );
    public static TestSuite suite() {
    return new TestSuite( LoginTest.class );
    public LoginTest( String s ) {
    super( s );
    public void testGetLogin() throws Exception {
         response = new WebConversation( ).getResponse( request );
    // Test the result
    assertContains( response, "Login Management" );
    public void testLoginSuccess() throws Exception {
         response = new WebConversation( ).getResponse( request );
    WebForm form = response.getFormWithID( "maincontent:loginForm" );
    assertNotNull( "No form found with ID 'maincontent:loginForm'", form );
    form.setParameter( "maincontent:username", "admin" );
    form.setParameter( "maincontent:password", "pass" );
    WebLink submit = response.getLinkWithID("maincontent:submit");
    response = submit.click();
    System.out.println( response.getText());
    // Test the result
    assertContains( response, "Welcome to the Temperature Measurement System" );
    * Convenience function that asserts that a substring can be found in
    * the returned HTTP response body.
    * @param theResponse the response from the server side.
    * @param s the substring to look for
    public void assertContains( WebResponse response, String s ) {
         String target = new String("");
         try {
                   target = response.getText(); }
         catch (IOException e) {
              e.printStackTrace(); }
         if ( target.indexOf( s ) < 0 ) {
              // Error showing which string was NOT found
              fail( "Response did not contain the substring: [" + s + "]" );
    private WebRequest request = new GetMethodWebRequest( LoginTest.URL );
    private WebResponse response;
    }

    Dear All
    Well I found the solution to my testing requirements. HtmlUnit is able to deal with the dynamic Javascript that is generated by the ADF Faces application. The strange part is that HtmlUnit uses the Rhino Javascript engine just as HttpUnit and Cactus, however these two could not deal with the javascript whereas HtmlUnit could.
    I include a snippet of a test case that I wrote that now works.
    public void testLoginSuccess() throws Exception {
    final WebClient webClient = new WebClient( BrowserVersion.INTERNET_EXPLORER_6_0 );
    final URL url = new URL("http://localhost/WMS/pages/login.jsf");
    final HtmlPage page = (HtmlPage)webClient.getPage(url);
    // Get the form that we are dealing with and within that form,
    // find the submit button and the field that we want to change.
    final HtmlForm form = page.getFormByName("maincontent:loginForm");
    final HtmlTextInput usernameField = (HtmlTextInput) form.getInputByName("maincontent:username");
    final HtmlPasswordInput passwordField = (HtmlPasswordInput) form.getInputByName("maincontent assword");
    final ClickableElement button = (ClickableElement) form.getHtmlElementById("maincontent:submit");
    // Change the value of the text field
    usernameField.setValueAttribute("admin");
    passwordField.setValueAttribute("pass");
    // Get the submitted form
    final HtmlPage welcomePage = (HtmlPage) button.click();
    assertEquals( "Temperature Measurement System", welcomePage.getTitleText() );
    }

  • AS2 testing problem

    Hi Experts,
    We have Seeburger scenrio while testing with My partner received HTTP Error 403 forbidden.
    For configuration we are using AS2 adapter.
    what does this mean is it we are having cofiguration problem or is it partner setup.
    Regards,
    J

    I can think of few checks, may be this can help
    1. A valid sender agreement is missing.
    2. Check  AS2 ID.
    3. There are more then one AS2 sender agreements with the same sender AND receiver party.

  • IE browser testing problem

    Hi evryone,
    Please help me out by giving me some reliable solution.
    I am using dream weavercs3 trail, but I got problem with
    browser test. I have Internet explorer , when I used to try to view
    the preview of my dreamweaver page in IE , I got some error and IE
    page got closed...
    Is anybody have solution with this??
    please suggest me whats next?
    Thanks

    What error are you receiving?
    Also I wasn't aware the trial was working because it was
    taken off and was not supposed to be back up until July 1st.

  • Help on this coding getting testing problem?

    Hi ,
    I am getting problem when created the BP.
    When i tested and check the BP is created or not.its not getting.
    i give the Businesspartner no and click enter i am not getting the BP details.
    WOuld u please give the solution on this.
    Its very urgent to me.
    THe coding which i written for create the business partner is :
    FUNCTION ZCTS_NEW_CONTACT.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(BUSINESSPARTNER) LIKE  BAPIBUS1006_HEAD-BPARTNER
    *"     VALUE(CNEWINFO) TYPE  ZCTS_CONTACTS
    *"     VALUE(CDATA) LIKE  BAPIBUS1006_CENTRAL STRUCTURE
    *"        BAPIBUS1006_CENTRAL
    *"     VALUE(BUSPART1) LIKE  BAPIBUS1006_RELHEAD-BUSINESSPARTNER1
    *"     VALUE(BUSPART2) LIKE  BAPIBUS1006_RELHEAD-BUSINESSPARTNER2
    *"     VALUE(RELCAT) LIKE  BAPIBUS1006_RELHEAD-RELATIONSHIPCATEGORY
    *"  EXPORTING
    *"     VALUE(MESG) TYPE  CHAR100
    DATA: lt_return like bapiret2 occurs 0 with Header line.
    DATA: CTPERS  LIKE BAPIBUS1006_CENTRAL_PERSON OCCURS 0 WITH HEADER LINE.
    DATA : PARTN_GRP TYPE BAPIBUS1006_HEAD-PARTN_GRP.
    DATA : PARTN_CAT TYPE BAPIBUS1006_HEAD-PARTN_CAT.
    DATA: BEGIN OF ADADD.
       INCLUDE STRUCTURE BAPIBUS1006_ADDRESS.
      DATA: END OF ADADD.
    DATA: BEGIN OF ADTEL OCCURS 0.
       INCLUDE STRUCTURE BAPIADTEL.
      DATA: END OF ADTEL.
    DATA: BEGIN OF ADSMP OCCURS 0.
       INCLUDE STRUCTURE BAPIADSMTP.
      DATA: END OF ADSMP.
    CTPERS-FIRSTNAME  = CNEWINFO-FNAME.
    CTPERS-LASTNAME   = CNEWINFO-LNAME.
    PARTN_CAT = 1.
    PARTN_GRP = 002.
    ADADD-CITY = CNEWINFO-CITY .
    telephone info **
      ADTEL-TELEPHONE = CNEWINFO-PHONE.
      ADTEL-CONSNUMBER = '001'.
      APPEND ADTEL.
      ADTEL-TELEPHONE = CNEWINFO-MOBILE.
      ADTEL-CONSNUMBER = '002'.
      APPEND ADTEL.
    email information **
      ADSMP-E_MAIL = CNEWINFO-EMAIL .
      APPEND ADSMP.
    CALL FUNCTION 'BAPI_BUPA_CREATE_FROM_DATA'
      EXPORTING
        PARTNERCATEGORY                    = PARTN_CAT
        CENTRALDATA                        = CDATA
        PARTNERGROUP                       = PARTN_GRP
        CENTRALDATAPERSON                  = CTPERS
        ADDRESSDATA                        = ADADD
    IMPORTING
       BUSINESSPARTNER                    = BUsinessPartner
    TABLES
        TELEFONDATA                        = ADTEL
        E_MAILDATA                         = ADSMP
        RETURN                             = lt_return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
         WAIT = 'X'.
    *PARTN_CAT = 1.
    *PARTN_GRP = 002.
    *ADADD-CITY = CNEWINFO-CITY .
    telephone info **
    ADTEL-TELEPHONE = CNEWINFO-PHONE.
    ADTEL-CONSNUMBER = '001'.
    APPEND ADTEL.
    ADTEL-TELEPHONE = CNEWINFO-MOBILE.
    ADTEL-CONSNUMBER = '002'.
    APPEND ADTEL.
    email information **
    ADSMP-E_MAIL = CNEWINFO-EMAIL .
    APPEND ADSMP.
    CALL FUNCTION 'BAPI_BUPR_PFCT_CREATEFROMDATA'
          EXPORTING
            BUSINESSPARTNER1           = BUSPART1
            BUSINESSPARTNER2           = BUSPART2
            RELATIONSHIPCATEGORY       = RELCAT
         TABLES
           RETURN                     = lt_return.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
         WAIT = 'X'.
    LOOP AT lt_return WHERE TYPE = 'E'.
        MESG = ' NOT CREATED NEW CONTACT'(020).
        EXIT.
      ENDLOOP.
    ENDFUNCTION.
    Thanks,
    BORO

    Hello Chow
    I cannot tell you what the problem is but the answer lies in the returned messages of the BAPI.
    CALL FUNCTION 'BAPI_BUPR_PFCT_CREATEFROMDATA'
    EXPORTING
    BUSINESSPARTNER1 = BUSPART1
    BUSINESSPARTNER2 = BUSPART2
    RELATIONSHIPCATEGORY = RELCAT
    TABLES
    RETURN = lt_return.
    " NOTE: The evalutation of the returned messages should be more sophisticated:
    LOOP AT lt_return TRANSPORTING NO FIELDS
                    WHERE ( type CA 'AEX' ).  " abort, error, dump
        EXIT.
      ENDLOOP.
      IF ( syst-subrc = 0 ).
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      ELSE.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      ENDIF.
    "CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    "EXPORTING
    "WAIT = 'X'.
    "LOOP AT lt_return WHERE TYPE = 'E'.
    "MESG = ' NOT CREATED NEW CONTACT'(020).
    "EXIT.
    "ENDLOOP.
    ENDFUNCTION.
    You must analyze the returned messages in detail. It might be as simple as an authorization problem.
    Regards
      Uwe

  • Portal Service from wsdl testing problem

    Hi all,I use Developer Studio to generate sap portal wsdl client,when I finished generating,I want to do test.But it throws the Exception like that
    java.lang.IllegalStateException: Not able to initialize Web Service configuration for service TPOStatusService#
    com.sapportals.portal.prt.service.soap.mapping.SpecializedRegistry.initSerializersXML(SpecializedRegistry.java:601)
    com.sapportals.portal.prt.service.soap.mapping.SpecializedRegistry.initXMLBased(SpecializedRegistry.java:477)
    com.sapportals.portal.prt.service.soap.SOAPServiceManager.getSpecializedRegistry(SOAPServiceManager.java:321)
    com.sapportals.portal.prt.service.soap.PRTSOAPCall.invokeMethod(PRTSOAPCall.java:181)
    com.ilog.pct.tpo.proxy.TPOService.getProblemInfo(TPOService.java:168     at com.ilog.pct.tpo.pages.KpiPage$KpiPageDynPage.doProcessAfterInput(KpiPage.java:48)
    I don't know what's the problem.Can anyone help me to solve this problem?
    The followings is my wsdl:
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://ws.tpo.ilog.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://ws.tpo.ilog.com" xmlns:intf="http://ws.tpo.ilog.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--WSDL created by Apache Axis version: 1.3
    Built on Oct 05, 2005 (05:23:37 EDT)-->
    <wsdl:types>
      <schema elementFormDefault="qualified" targetNamespace="http://ws.tpo.ilog.com" xmlns="http://www.w3.org/2001/XMLSchema">
       <element name="getProblemInfo">
        <complexType>
         <sequence>
          <element name="name" type="xsd:string"/>
         </sequence>
        </complexType>
       </element>
       <element name="getProblemInfoResponse">
        <complexType>
         <sequence>
          <element name="getProblemInfoReturn" type="impl:ProblemInfo"/>
         </sequence>
        </complexType>
       </element>
       <simpleType name="ProcessStatus">
        <restriction base="xsd:string">
         <enumeration value="1"/>
         <enumeration value="2"/>
         <enumeration value="3"/>
        </restriction>
       </simpleType>
       <complexType name="Vehicle">
        <sequence>
         <element name="cost" type="xsd:double"/>
         <element name="count" type="xsd:int"/>
         <element name="fixcost" type="xsd:double"/>
         <element name="name" nillable="true" type="xsd:string"/>
        </sequence>
       </complexType>
       <complexType name="ArrayOfVehicle">
        <sequence>
         <element maxOccurs="unbounded" minOccurs="0" name="item" type="impl:Vehicle"/>
        </sequence>
       </complexType>
       <complexType name="ProblemInfo">
        <sequence>
         <element name="numbervehicles" type="xsd:int"/>
         <element name="numbervisit" type="xsd:int"/>
         <element name="processStatus" nillable="true" type="impl:ProcessStatus"/>
         <element name="shipvisit" type="xsd:int"/>
         <element name="total" type="xsd:double"/>
         <element name="vehicle" nillable="true" type="impl:ArrayOfVehicle"/>
        </sequence>
       </complexType>
       <complexType name="SvcException">
        <sequence>
         <element name="errorMsg" nillable="true" type="xsd:string"/>
        </sequence>
       </complexType>
       <element name="fault" type="impl:SvcException"/>
      </schema>
    </wsdl:types>
       <wsdl:message name="getProblemInfoResponse">
          <wsdl:part element="impl:getProblemInfoResponse" name="parameters"/>
       </wsdl:message>
       <wsdl:message name="getProblemInfoRequest">
          <wsdl:part element="impl:getProblemInfo" name="parameters"/>
       </wsdl:message>
       <wsdl:message name="SvcException">
          <wsdl:part element="impl:fault" name="fault"/>
       </wsdl:message>
       <wsdl:portType name="TPOProcessSvc">
          <wsdl:operation name="getProblemInfo">
             <wsdl:input message="impl:getProblemInfoRequest" name="getProblemInfoRequest"/>
             <wsdl:output message="impl:getProblemInfoResponse" name="getProblemInfoResponse"/>
             <wsdl:fault message="impl:SvcException" name="SvcException"/>
          </wsdl:operation>
       </wsdl:portType>
       <wsdl:binding name="TPOProcessSvcSoapBinding" type="impl:TPOProcessSvc">
          <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
          <wsdl:operation name="getProblemInfo">
             <wsdlsoap:operation soapAction=""/>
             <wsdl:input name="getProblemInfoRequest">
                <wsdlsoap:body use="literal"/>
             </wsdl:input>
             <wsdl:output name="getProblemInfoResponse">
                <wsdlsoap:body use="literal"/>
             </wsdl:output>
             <wsdl:fault name="SvcException">
                <wsdlsoap:fault name="SvcException" use="literal"/>
             </wsdl:fault>
          </wsdl:operation>
       </wsdl:binding>
       <wsdl:service name="TPOProcessSvcService">
          <wsdl:port binding="impl:TPOProcessSvcSoapBinding" name="TPOProcessSvc">
             <wsdlsoap:address location="http://localhost:8080/tpo-web/services/TPOProcessSvc"/>
          </wsdl:port>
       </wsdl:service>
    </wsdl:definitions>

    Your installation for SAP JCO is not correct. Download the SAP JCO from service.sap.com and install it on your computer as the installation guide says.
       The above error is due to missing file librfc32.dll. If you are using windows operating system. Put the dll files in windows/system32 directory. thank you.
    Read the following thread. this should definitely solve your problem.
    https://forums.sdn.sap.com/profile.jspa?userID=608260
    PS: reward points if this hepls. thank you
    Message was edited by: Prakash  Singh

  • Testing problem with Business Component Browser

    I installed Jdeveloper3 and brought up the Bc4j sample (OrderEntry.jws). I went through the overview and then tried to test (right-click and select test) both the application module and the package. The browser comes up, but there are no views or any other objects. It is empty. I went through the tutorial on building Business Components using the emp and dept tables. Same problem when trying to test. The connection works because I created jsp pages using the views and all worked fine.

    Hi,
    Try resizing the tester window... there is a known issue with the tester wherein sometimes the window does not repaint. Resizing the window solves this problem.
    Please let us know if this is not the issue.
    Thanks,
    Arun

  • QTP Flex Testing Problem

    I am trying to test a Flex Application with QTP. I have a Flex compiled application running at the severside.
    In my scenario I have a Map (dynamically generated) with has some Nodes. Problem - First:  QTP Doesn't recognize it, Second:  It doesn't record any action( as per my knowledge If QTP doesn't recognize any Object it takes it as "WinObject" and record action on it, but Here QTP records nothing.
    Along with that After Clicking that Node(element) a Flex Canvas Opens up, which also has many Controls like Menu bar Dropdown list, Button etc. but nothing is being recorded or recognized by QTP, except the main Canvas (parent Object).
    Any advice is highly appreciated.

    I too have an issue with the QTP Flex Add-in and the FlexDataGrid...
    Apparently the comumnNames property was not implemented for the add-in or isn't working. When I use the GetRoProperty method in conjuction with the comunNames property it always is an empty string.
    What's up with that?
    Also, you cannot use the GetCellData method either.
    Any ideas on a work-around?

  • Testing problems on Mac OS X 10.6.6 with CS5

    Hi,
    I installed Flash CS5 on my Mac but I have problems with testing movieclips. When I press CMD + Enter I get the Error:
    "Fehler beim Öffnen der URL 'file:////Volumes/myuser/.....file.swf'"
    When I publish the movieclip, all it's ok and I can watch the video in my browser.
    But this way is not useful for developing AS.
    Why there are //// ??? Where can I change this?
    Thx
    BMo

    Hi,
    I need help too, got the same problem on my mac.
    I completely reinstalled Flash, but the prob remains.
    I tryed to save the file on disk and on usb stick.
    At the moment the testing from disk works but not from usb.
    Earlier it was vice versa.
    You can try to use the debugger cmd + shift + enter instead of testing.
    best regards

  • Mac Pro Restart and Hardware Test Problems

    This appears to be a continuation of a thread I began titled "MacPro Restart or Reboot Problems" in which the reboot problem still seems to be evident.
    Initially, I was having problems with rebooting but after rebuilding my directory with DiskWarrior, the issue disappeared. Then recently, I entered my password and the Mac restarted itself and the same problem is back where the drive seems to try and "catch" but can't.  And now its back to  happen anytime I want to re-boot (however, this tends to be rare.)
    So I ran DiskWarrior again and it reported no problems. Then I tried to run Apple Hardware Test and about 40 seconds into the test, with the message "Testing memory" stated, the fans begin to spin at a high pitch.  The system locks up and the only recourse is to press the on/off button on the front of the Mac Pro.  If I try to wait it out, the Mac Pro will scream and spin until I restart.
    I've ran the same AHT test on an identical Mac Pro that is only a few months older than this one and even using the Extended test, the AHT takes a little over four minutes.  And the Testing Memory message appears early in the test  and moves on.  Then, much later in the test, the fans spin up to the same high pitch whine like the problem Mac Pro.  But only one at a time (there seem to be three of them) and each one quickly quiets down once they're tested.
    So that's the beef. Something I've considered is this Mac Pro came with two Gigs of Apple memory installed. I'm wondering should I uninstall one of them and re-try the AHT to see if it could be the memory.
    Any suggestions would be appreciated!  Thanks!

    I took my G5 to an Apple Store (2 hrs away) and had a Mac Genius look at it. I told him about the reboot issue and the weird skippy sound it made when it tries to reboot. When I mentioned about the G5 locking up during an AHT, he thought that sounded like a hard ware issue. So he ran a diagnostic test with his Apple CD and the G5 tested fine (?!!) We then ran my original AHT disc that I had brought with me. It too tested fine-- it didn't lock up at all! We rebooted like a half a dozen times-- with both keyboard and via the menu-- and it rebooted like a champ. Everything we tried, the G5 rebooted fine. I asked if maybe the keyboard, mouse or monitor back in my office could be part of the the issue. He replied anything connected to the G5 could be a culprit.
    So I brought it back and hooked it all back up. And it would not reboot! It tries to reboot and makes the same sound, same problem! I disconnected and replaced cables and keyboards and mice. No dice. I took the G5 down to an edit bay where we have an identical G5 (same 2 GB of memory, maybe 3 months older) and connected its power cable, mouse, keyboard and Cinema Display monitor to my G5 and tried it. No reboot, same problem. I reconnected the older G5 back to its original cables/setting and it reboots-- no problems.
    I'm at a loss. I guess I will go about doing a zero drive process and see what that brings... However, one thing I have seemed to confirm: the skippy sound that continously emunates from the G5 as it attempts to reboot seems to be coming from one of the optical drives (the G5 came with two DVD optical drives). I'm wondering if I go in and disconnect the optical drive(s), will that lead to something??
    BTW, I did hook up the G5 to another monitor, thinking that maybe it could be a graphics card or monitor issue with the original display. I used a PC monitor with a DVI connector and the problem was still there.

  • Apple Hardware Test Problem!!!

    I've been having problems with my 4 month old G5 and so I ran the AHT.First I ran the extensive test and the whole thing froze after 3 minutes.I turned the computer off and on again.It started up like nothing hapened.I restarted,ran the short test and the same thing happened at 1 min 55sec of the test. The computer seems to be running fine but when it's frozen up I'm afraid I have two red led's on the front (I take that's the logic board?) it seems to be LED#1 and LED#3.
    I wouldn't bother anyone but the closes reliable Apple Certfied Service Provider is 230 kilometers away...seriously.
    Thanx a bunch!

    Thank you guys so much! I just want to clarify this
    one more time (I am new the whole Mac culure)
    My AHT corresponds to Mac OS 10.4.4 making it
    useless, right? I did read quite a few posts about
    outdated AHT but I didn't get if there was a way to
    get a newer version.
    A new version of OSX will not affect the hardware test because the hardware test doesn't use the operating system. It will run even if the hard drive is empty. It is possible that a firmware update might require a new version hardware test. If the hardware test is failing, remove any non-Apple hardware (RAM, PCI boards, etc.), unplug all FireWire and USB devices (except mouse and keyboard), and try the test again. If it still fails, call Apple. If you need a newer version of the hardware test, they will let you now.

  • Loadrunner testing problem with WAD 7.0

    HI all,
    I've lately encounter a problem with loadrunner testing BI 7+EP 6, when submitting variables before generating a report in portal with 2 or more than 2 vusers.
    The problem codes as follows,
    web_submit_data("com.sap.ip.bi.web.portal.integration.launcher_4",
              "Action=http://ncgcucd:50000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher",
              "Method=POST",
              "RecContentType=text/html",
              "Referer=http://ncgcucd:50000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher?sap-bw-iViewID=pcd%3Aportal_content%2Fcom.ncgc.pct.folder.ncbw%2Fcom.ncgc.pct.folder.ncbw.role%2Fcom.ncgc.pct.bw.role.ydjcykhaqgl%2Fzyfx%2FZANCCSM01_Q_101&sap-ext-sid=pAYYK3imMNNJjTjL*mKg4Aggw7o2cRS_TL1fx2I2jeGg&NavPathUpdate=false&buildTree=false",
              "Snapshot=t21.inf",
              "Mode=HTML",
              ITEMDATA,
              "Name=BI_COMMAND", "Value=", ENDITEM,
              "Name=BI_COMMAND-TARGET_DIALOG_REF", "Value=DLG_VARIABLE", ENDITEM,
              "Name=BI_COMMAND-BI_ADVANCED", "Value=DLG_VARIABLE_vsc_DropdownVariants", ENDITEM,
              "Name=BI_COMMAND-BI_COMMAND_TYPE", "Value=PASSIVE_VALUE_TRANSFER", ENDITEM,
              "Name=BI_COMMAND-PASSIVE_ID", "Value=DLG_VARIABLE_vsc_DropdownVariants_combobox", ENDITEM,
              "Name=BI_COMMAND-PASSIVE_VALUE", "Value=", ENDITEM,
              "Name=BI_COMMAND_1", "Value=", ENDITEM,
              "Name=BI_COMMAND_1-TARGET_DIALOG_REF", "Value=DLG_VARIABLE", ENDITEM,
              "Name=BI_COMMAND_1-BI_ADVANCED", "Value=DLG_VARIABLE_vsc_CommonVariablesList_VAR_1_INPUT", ENDITEM,
              "Name=BI_COMMAND_1-BI_COMMAND_TYPE", "Value=PASSIVE_VALUE_TRANSFER", ENDITEM,
              "Name=BI_COMMAND_1-PASSIVE_ID", "Value=DLG_VARIABLE_vsc_CommonVariablesList_VAR_1_INPUT_inp", ENDITEM,
              "Name=BI_COMMAND_1-PASSIVE_VALUE", "Value=2009.06 - 2009.07", ENDITEM,
              "Name=BI_COMMAND_2", "Value=", ENDITEM,
              "Name=BI_COMMAND_2-TARGET_DIALOG_REF", "Value=DLG_VARIABLE", ENDITEM,
              "Name=BI_COMMAND_2-BI_COMMAND_TYPE", "Value=OK", ENDITEM,
              "Name=PAGE_ID", "Value=1_cEFZWUszaW1NTk5KalRqTCptS2c0QS0tZ2d3N28yY1JTX1RMMWZ4MkkyamVHZy0t", ENDITEM,
              "Name=REQUEST_ID", "Value=1", ENDITEM,
              EXTRARES,
              "Url=/irj/portalapps/com.sap.portal.design.urdesigndata/themes/portal/NCGC_MAINTHEME/common/button/6x1_btn_emph_hover.gif?7.0.15.1.16", "Referer=http://ncgcucd:50000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher?sap-bw-iViewID=pcd%3Aportal_content%2Fcom.ncgc.pct.folder.ncbw%2Fcom.ncgc.pct.folder.ncbw.role%2Fcom.ncgc.pct.bw.role.ydjcykhaqgl%2Fzyfx%2FZANCCSM01_Q_101&sap-ext-sid=pAYYK3imMNNJjTjL*mKg4Aggw7o2cRS_TL1fx2I2jeGg&NavPathUpdate=false&buildTree=false", ENDITEM,
    The error message from NVA is as follows,
    Exception thrown: com.sap.ip.bi.base.exception.BIBaseRuntimeException: BEx Web application "1_dUlPQXdMcDlfajRoakkzWDdlb2pFUS0tQmpaYnk1YXo5WVZGZkdaMUtwTVlGQS0t" does not exist. The application was either ended by a timeout or an error occurred, which was entered into the trace log. See SAP Notes 937697 and 948490
    com.sap.ip.bi.base.exception.BIBaseRuntimeException: BEx Web application "1_dUlPQXdMcDlfajRoakkzWDdlb2pFUS0tQmpaYnk1YXo5WVZGZkdaMUtwTVlGQS0t" does not exist. The application was either ended by a timeout or an error occurred, which was entered into the trace log. See SAP Notes 937697 and 948490
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.ControllerCollector.getControllerByPageId(ControllerCollector.java:178)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:315)....
    Weirdly enough, for all reports generated from WAD 3.x, this problem does not exist, multiple vusers can run concurrently.
    Anyone can help or give some hint? This problem has been torturing me long. Thanks in advance.

    kprasanna,
    SAP BI comes with its own HTTP Cache and web templates are stored in the HTTP cache of the server and especially when you change a template and execute it again - the previous version stored in the HTTP cache is being retreived.
    To overcome this - go to TCODE SMICM
    in the menu bar --> Goto --> HTTP Server Cache -> Invalidate -> Global in system
    Once this is done your changes will start reflecting....
    Arun

Maybe you are looking for

  • File Adapter Question - Part 2

    Hello Everyone, I'm hoping someone can help me.  I have a scenario in which I am trying to send an XML file (which is placed on our UNIX system, in a specific directory) to the Integration Engine and then have it mapped back into the R/3 system using

  • Ipod classic sorts album other than in itunes

    i sorted all my albums in itunes as i like it by album interpret. On Ipod this order is ignored. I wanted all the albums for the Kids at the beginning of Cover Flow. How do i change the order of albums on the ipod?

  • Cisco WLC 5508 with 3702APs - mobile hotspot for 2000 Guest users

    Cisco WLC 5508 with 3702APs - mobile hotspot for 2000 Guest users I've been given a fantastic "opportunity" by my boss to use our existing wireless infrastructure to provide internet access to potentially upto 2000 VIP guests arriving with BYOD devic

  • Video hanging on macbook pro

    JUST got my MBP back from Appy Service yesterday.  They replaced the logic board, and the monitor due to the fact that the screen just went black one day while I was typing along. Now I'm trying to watch videos on YouTube, I keep up with Motocross th

  • How can I disable pdf.js for all users?

    We as a company deal with a lot of PDF files.. Now while we can simply download the PDFs and there not be a problem, we're used to the Adobe Viewer and *not* downloading them. I've been told the new pdf.js viewer will not display most of the PDFs we