Problem in using AWS model for PI interface

Hi
We want to consume XI inbound interface for a 3rd party web service in web dynpro via AWS model; we can create the model class from the wsdl file imported from PI interface; but facing some issue in configuring the logical destination as we don't have any wsdl url from PI which we can use in the dynamic proxy configuration.
Thanks in advance.
Sudip

Hi Sudip
  Can you please tell me how did you resolve this issue? We are running into the exact same problem.
Thanks
Preet

Similar Messages

  • How can I use a variable for an interface log and error fle

    I want to use a variable for the interface's log and error file so that when I migrate from Dev to QA to Prod I don't have to do a lot of editing.
    Specifically on the "flow" tab for the "target", I want a variable to be the first part of the path for the log (\\sundev1\fnd1-hypd1) and join this with the rest (\update\log\logfile.log) within the LOG_FILE_NAME field.
    Thank you!

    Hi,
    It is quite simple....
    just use the <%=odiRef.getSchemaName("D")%> before the file name and configure both path in the topology linked to each context.

  • Problem on using HD media for SD broadcasting in premiere CC

    Hi
    I've got a problem in using HD media for SD broadcasting. I use to get HD media from all sort & with differnt size. But we are broadcasting in SD, but I don't know how to keep a maximum quality. I've got a blackmagic card. We are brodcasting on SD 720-576 (Widescreen 16-9)
    Could you please tell me on what sort of sequence should I work & what should I do when exporting my files to keep the maximum quality possible?
    Is that better to work on an HD sequence & then to export in SD or is that preferable to make your own sequence (with the broadcast settings) and then resize the clips &...
    Jim

    Perhaps too much Christmas Cheer?
    Not enough more like it.   Making up for it now.
    PAR  = pixwel spect ratio
    - seemed ok to me when I typed it. I knew what I meant despite what I typed.
    An SD Sequence from HD footage for Broadcast  ( such as a TVC) would be difficult in how one would work graphics (design placement and aspect) and also be very dissapointing for the client thru preview and approval process.
    I have just been working on 9 TVCs for a Pacific Island country  who only broadcast widescreen from SD media.
    I can assure you that out puting sd for this purpose is heartbreaking.

  • Problem in using View Object for validation

    Hi,
    I have defined a simple swing form to practice. It has one Entity Object and two View objects. One of these view objects is an updatable VO based on the EO and the other one has a simple "select count(*)" from a table. I defined a method validation on one of the EO attributes to see how can i use the VO for validation. On the other hand i defined the Application Module to use both of my views. As far as i undrestood, when i define a VO for AM, the AM will instantiate it the first time it starts running. Here is the code inside the method validation for FirstName attribute:
    /**Validation method for FirstName
    public boolean validateFirstName(String data) {
    ViewObject vo = getDBTransaction().getRootApplicationModule().findViewObject("CountEmployeeInstance");
    if (vo == null) {
    System.out.println("vo is null");
    else {
    vo.executeQuery();
    if (vo.hasNext()){
    System.out.println("count = " + ((CountEmployeeRowImpl) vo.next()).getCount());
    else {
    System.out.println("vo has no next");
    return true;
    The problem is that vo.executeQuery() does not return any record. In fact the vo.hasNext() returns false and i get the message "vo has no next" on the console. Please pay attention that the VO's sql statement is SELECT COUNT(*) and it always returns a record. I found that if i use vo.closeRowSet() before vo.executeQuery() everything works fine.
    Please tell me that what is my problem and why is it working like this?
    Best Regards,
    Alireza Vali

    Chris,
    1- Every thing is fine with the ADF model layer in this practice. I have tested it by using Test option on AM and it works. It works exactly the same as how it works throug swing UI that i use for it.
    2- The VO is beeing found and as you see in the code, i have tested it by "if (vo == null)" just after the statement which finds it and vo is not null which means it has been instantiated by AM as it was supposed to.
    3- The VO's SQL statement is "SELECT COUNT(*) FROM EMPLOYEE" with no where clause. I have 14 records in this table.
    Every thing is OK with swing form. It runs and shows the records and all the binded operations like "next record", "previous record" and so on work perfectly on the records.
    4- The code i used is a combination of two examples. Example 9-7 and 9-8 in pages 9-12 and 9-13 of mentioned document.
    Now my findings:
    I changed the code to the following:
        /**Validation method for FirstName
        public boolean validateFirstName(String  data) {
            ViewObject vo = getDBTransaction().getRootApplicationModule().findViewObject("MaxEmployeeIdInstance");
            if (vo == null) {
                System.out.println("vo is null");
            else {
                //vo.closeRowSet();
                vo.executeQuery();
                System.out.println("Row Count = " + vo.getRowCount());
                System.out.println("Default Slot = " + vo.getCurrentRowSlot());
                vo.next();
                System.out.println("Slot after next() = " + vo.getCurrentRowSlot());
                vo.reset();
                System.out.println("Slot after reset() = " + vo.getCurrentRowSlot());
                vo.first();
                System.out.println("Slot after first() = " + vo.getCurrentRowSlot());
                vo.last();
                System.out.println("Slot after last() = " + vo.getCurrentRowSlot());
                System.out.println("----------------------");
                vo.executeQuery();
                System.out.println("Deafault index = " + vo.getCurrentRowIndex());
                vo.next();
                System.out.println("Index after next() = " + vo.getCurrentRowIndex());
                vo.reset();
                System.out.println("Index after reset() = " + vo.getCurrentRowIndex());
                vo.first();
                System.out.println("Index after first() = " + vo.getCurrentRowIndex());
                vo.last();
                System.out.println("Index after last() = " + vo.getCurrentRowIndex());
                System.out.println("Slot Before First = " + vo.SLOT_BEFORE_FIRST);
                System.out.println("Slot Beyound Last = " + vo.SLOT_BEYOND_LAST);
            return true;
        }Here are the results :
    Row Count = 1
    Default Slot = 0
    Slot after next() = 3
    Slot after reset() = 0
    Slot after first() = 0
    Slot after last() = 0
    Deafault index = 0
    Index after next() = -1
    Index after reset() = 0
    Index after first() = 0
    Index after last() = 0
    Slot Before First = 2
    Slot Beyound Last = 3
    As you see, after the execution of the statement "vo.executeQuery()" the The RowIterrator pointer is not pointing to the slot before the first record but it is pointing to the first record itself. And that is why the statement "if (vo.hasNext()" returns false because we just have one record and RowIterrator Index is standing on that record and there is no next record present. The very important thing is that even reset() method does not set the index to the slot before the first record and it sends it to the first record.
    After that, i took the statemet "vo.closeRowSet()" out of the comment and here are the results:
    Row Count = 1
    Default Slot = 2
    Slot after next() = 0
    Slot after reset() = 2
    Slot after first() = 0
    Slot after last() = 0
    Deafault index = -1
    Index after next() = 0
    Index after reset() = -1
    Index after first() = 0
    Index after last() = 0
    Slot Before First = 2
    Slot Beyond Last = 3
    These are the exact things that we expected from the first. After query execution, the pointer is set to the slot before first record and the reset() method does its defined job which is sending the pointer to the slot before the the first record.
    My Assumptions:
    The Rowset which is created by AM is somehow different from the RowSet which you create in your program. I am absolutely sure that this functionality is not a bug but a design decission. I look at my simple program and see that when it runs, the data is queried and shown on the screen which is all done by AM by instantiating my VO and executing the query on it. AM reasonably must put the RowSet pointer on the first record and not the slot before first record. And i am sure that if i use reset() method on the shown RowSet, the pointer goes to the first record and the data on the screen does not get cleared. Whe we use vo.closeRowSet() and execute the query again, the AM made RowSet is closed and a new one is created and the new RowSet is your's not AM's so it functions as you expect.
    Best Regards,
    Alireza Vali

  • Problem in using output type for purchase order

    Hi experts,
         I am using output type for first time so may be i have done wrong configuration for po output type.The steps i have done are :-
    1) Going to  tcode NACE->Selected  the row u201CEF Purchase Orderu201D and clicked on u201CProcedures".
    2) In procedures there are 2 procedures for the application EF (Purchase Order). To proceed further, we would need to find out the procedure that is currently active.Gone to transaction SPRO. In this, navigate as Materials management -> Purchasing ->Messages -> Output control -> Message Determination Schemas ->Define Message Schema for Purchase Order
    3) Clicking on u201CAssign Schema to Purchase Orderu201D. So, the procedure RMBEF1 is active for EF (Purchase Order) . 
    4) Go back to transaction NACE. Select u2018EFu2019 and click on u201COutput typesu201D.
    5)  Let us use the output type u201CNEU name purchase orderu201D for this purpose. Double-click on NEU.
    6) Ensured  that the checkboxes u201CAccess to conditionsu201D and u201Cmultiple issuingu201D are checked and the access sequence is 0001(DocType/PurchOrg/Vendor).Only 0001 and 0002 is available in f4 help for this.
    7) Now clicked on u201CProcessing Routinesu201D on the left hand side. Ensured that there is an entry for Medium u2018Au2019 (Distribution ALE).
    8) After that going back to the main screen of NACE. Select EF (Purchase Order) and clicked on u201CCondition Recordsu201D.
    Select NEU and clicked on u201CCondition recordsu201D. The pop-up box appears that gives three radio button option :-
      1) Purchasing output determination :purchasing org / vendor for EDI
      2) Purchasing output determination :doc. type / purchasing org /vendor
      3) Purchasing output determination :document type
          but it is not having option only for purchasing organisation through which we can send idoc for changes or creation of PO in that particular pur.org now if i choose 2) i have to give doc type and purchasing org both bcoz they are mandatory fields and value for vendor.
    9)  Also i  have done the necessary ALE configuration (not covered in this document). In the partner profiles, use the message type u201CORDERSu201D and the IDOC type u201CORDERS05u201D.In the tab u201CMessage Controlu201D, used the process codes u201CME10u201D and u201CME11u201D for u201CPO Createu201D and u201CPO Changeu201D respectively.
    but the idoc is not generated many times when po is changed and when once it is generated it is giving error
    Please suggest solution.
    Thanks in advance
    nehavt

    In me22n in messages tab after looking into  processing log it is giving->No recipient found for message type ORDCHG in the
    ALE model ,next time giving error as no idoc items belonging to purchasing document found,when i changed message type to ORDCHG the  status is green in messages tab it is giving-> error occured while idoc xyz is sent and in WE02 status is red 02
    error passing data to port(could not find code page for receiving system)

  • Performance problems when using Premiere Elements for photo slideshows

    Hello,
    I had been using Premiere Elements 9 (PE9) to make a simple slideshow for my parents from their vacation trip and I ran into some serious performance problems.  I had used it to create similar projects before, but not nearly as big.  This one is like 260 photos, so basically it is 260 seperate clips.  I have a POWERHOUSE workstation (see below) so it isn't my PC.  Even when PE9 crashes, looking at my performance monitor my CPU and RAM aren't even halfway being utilized.  I finally switched to Windows Movie Maker of all things and it worked seemlessly, amazing really.  I'm wondering if I was just using PE9 for something other than what it was designed for since there weren't really any video clips, just a ton of photos that I made into video clips, if that makes sense.  Based upon my experience with this so far, I can't imagine using PE9 anymore for anything really.  I might have the need for a more professional video editing program in the near future, although it does seem like PE has a lot of features.  How can I make sure it utilizes my workstation to its full potential?  Here are my specs:
    PC
    Intel Core i7-2600K 4.6 GHz Overclocked
    ASUS P8P67 Deluxe Motherboard
    AMD Firepro V8800 Video Card
    Crucial 128 GB SATA 6Gb/s Solid State Drive (Operating System)
    Corsair Vengeance 16GB (4x4GB) Memory
    Corsair H60 Liquid CPU Cooler
    Corsair Professional Series Gold AX850 Power Supply
    Graphite Series 600T Mid-Tower Case
    Western Digital Caviar Black 1 TB SATA III Hard Drive
    Western Digital Caviar Black 2 TB SATA III Hard Drive
    Western Digital Green 3 TB SATA III Hard Drive
    Logitech Wireless Gaming Mouse G700
    I don’t play any games but it’s a great productivity mouse with 13 customizable buttons
    Wacom Intuos5 Pen Tablet
    Yes, this system is blazingly fast.  I have yet to feel it slow down, even with Photoshop, Lightroom, InDesign, Illustrator and numerous other apps running at the same time.  HOWEVER, Premiere Elements 9 has crashed NUMERUOS times, every time my system wasn't even close to being fully taxed. 
    Monitors – All run on the ATI V8800
    Dell Ultra Sharp 30 inch
    Samsung 27 Inch
    HAANS-G 28 Inch
    Herman Miller Embody Ergonomic Chair (one of my favorite items)

    Andy,
    There ARE some differences between PrE and PrPro w/ an approved CUDA-capable and MPE hardware acceleration-enabled nVidia video card, but those differences show up ONLY in the quality of the Scaling. The processing overhead is almost exactly the same, when it comes to handling the extra pixels.
    As of PrPro CS 5, two things changed:
    The max. size of Still Images went up from 4096 x 4096 pixels, to quite a bit larger (cannot recall the numbers now).
    The Scaling algorithms have been improved, though ONLY with the correct nVidia cards, with MPE hardware support enabled.
    Now, there CAN be another consideration, between the two programs, in that PrPro CS 5 - CS 6, are 64-bit ONLY, so one benefits from the computer and OS to run it. PrE can be either 32-bit, or 64-bit, so one might, or might not, be taking advantage of the 64-bit program and OS. Still, the processing overhead will be almost identical, it's just that the 64-bit OS can spread it around a bit.
    I still recommend Scaling the large Still Images in PS, prior to Import, to keep that processing overhead as low as is possible. Scaled Still Images work just fine, and I have one Project with 3000+ Scaled Still Images, that edits just fine in PrPro, even on my older 32-bit workstation. Testing that same machine, and PrPro some years ago, I could ONLY work with up to 5 - 4096 x 4096 Stills, before things ground to a crawl.
    Now, Adobe AfterEffects handles large Still Images differently, so I just moved that test Project to AE, and added another 20 large Images, which edited just fine. IIRC, AE can handle Still Images up to 10K x 10K pixels, and that might have gone up, as of CS 5.
    Good luck, and hope that helps,
    Hunt

  • Problem in using different format for Image files

    We are generating a report wherein the logo (Image File) is changed with respect to the company's location.
    Here, we are making use of a Text field using a formula column as its source for getting the file path.
    When the Size is kept as "Expand" or "Variable", then, when the image size changes considerably, it gives problem, wherein the logo is not displayed.
    Then we increased the size of the logo field and kept thte size type as Fixed. But the probnlem which we face is because of the .bmp format which the report accepts.
    This is because, when the format type is bmp, upon increasing the resolution or size of the bmp increases the size by several folds( say from 70kb to almost 1000 or 1500kb) which leads to the error "Memory cannot be read" and leads to abrupt application termination.
    Is their any way by which i can make use of GIF format for the image file and at the same time change the file name at runtime.
    Eagarly waiting for an early solution.
    Thanking you in Advance,
    Ramnath Balasubramanian

    Hi,
    You can only use one Apple ID with iTunes match. Purchasing another match subscription using wife's Apple ID is not a solution. I can only suggest that you use your ID for match and all iTunes music purchases.
    Jim

  • Problems of using of Aggregates for Transactional Cube

    Hi,
    <b>Are there problems or disadvantages of using of Aggregates for Transactional Cube?</b>
    Tx.
    AndyML

    Hi,
    have a look at SAP's docu: http://help.sap.com/saphelp_nw04/helpdata/en/c0/99663b3e916a78e10000000a11402f/frameset.htm
    /manfred

  • Problem while using BCP utility for witing data in file

    hi all,
    I have a batch file in which I am using bcp command for reading data from MS SQL and writing it in delimiter file. Now there are some exceptions in MS SQL that while writing into file whenever it encounters new line character it switches to next line while writing and starts writing the rest of the data on next.
    Could you help me in getting rid of this problem. I wanted to replace the new line character with space.
    Thanks and regards
    Nitin

    Hi Dilip,
    Before going for any other table,
    As Kalnr is only one of the primary keys of table KEKO, You can try creating secondary index on KEKO, which might help in improving your report performance.
    Also, you can add more conditions in where clause if possible, which will also help in improving performance.
    Thansk,
    Archana

  • Problem in using 2 IDs for iTunes music purchase downloads and using iTunes Match for 1 ID

    Dear support managers,
    We are using 1 macbook pro and 2 apple ID for purchasing iTunes music together (Me and my wife).
    Actually, I have bought 1 year service of iTunes match on my apple ID and have been using well the service after download the purchased musics under the apple ID I am using.
    But once my wife associated the macbook pro with her apple ID to download the musics she purchased,
    I have not been able to use the iTunes Match service I have subscribed already.
    The message said
       "This computer is already associated with an Apple ID. You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 90 days"
    I can neither purchase another computer for solving this situation nor want to purchase another iTunes Match service on my wife's apple ID.
    Please help me out to solve this issue.
    Thanks and best regards,

    Hi,
    You can only use one Apple ID with iTunes match. Purchasing another match subscription using wife's Apple ID is not a solution. I can only suggest that you use your ID for match and all iTunes music purchases.
    Jim

  • Im having midi problems, im using a TASCAM US-2000 interface and for some reason logic wont pic it up even though its saying its the default??? help!!! i am running the latest an newest iMac...

    need help working this out..

    "It won't pick it up even though it says it's the default..."
    You checked this how? Where does it "say" it is the default?

  • Error: When importing a Webserive using AWS Model

    Hi Experts,
    The webservice is created in .NET and i am able to test the same.
    When i try to import the same into Webdynpro, i am getting the following error.
    Even i tried to import the webservice after saving it locally also, i am getting the following error.
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. Could not load web service model. See nested exception for details.
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:149)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:49)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:71)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:411)
         ... 53 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Problem with WSDL file parsing. See nested message.
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:182)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:146)
         ... 56 more
    Caused by: com.sap.engine.lib.xml.util.NestedException: IO Exception occurred while parsing file:Cannot connect to http://xxx/ws/service.asmx?Config1.WSDL, passing via http proxy: :80: Connection refused: connect -> java.io.IOException: Cannot connect to http://xxxx/ws/service.asmx?Config1.WSDL, passing via http proxy: :80: Connection refused: connect
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1028)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadWSDLDocument(WSDLDOMLoader.java:1115)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:178)
         ... 57 more
    Caused by: java.io.IOException: Cannot connect to http://xxxx/ws/service.asmx?Config1.WSDL, passing via http proxy: :80: Connection refused: connect
         at com.sap.engine.services.webservices.tools.WSDLDownloadResolver.resolveEntity(WSDLDownloadResolver.java:161)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1008)
         ... 59 more
    Thanks & Regards,
    Palani
    Edited by: Palaniappan A on Jan 5, 2010 6:05 AM

    Hi Experts,
    I am not able to Paste, WSDL code here.
    Please help me to sort out this problem.
      <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="Wartsila.PTIP.WebServices.CatalogueServices" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="Wartsila.PTIP.WebServices.CatalogueServices" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    - <wsdl:types>
    - <s:schema elementFormDefault="qualified" targetNamespace="Wartsila.PTIP.WebServices.CatalogueServices">
    - <s:element name="GetMaterialInfo">
    - <s:complexType>
    - <s:sequence>
      <s:element minOccurs="0" maxOccurs="1" name="materialNumber" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="materialDescription" type="s:string" />
      </s:sequence>
      </s:complexType>
      </s:element>
    - <s:element name="GetMaterialInfoResponse">
    - <s:complexType>
    - <s:sequence>
      <s:element minOccurs="0" maxOccurs="1" name="GetMaterialInfoResult" type="tns:ArrayOfMaterialInfo" />
      </s:sequence>
      </s:complexType>
      </s:element>
    - <s:complexType name="ArrayOfMaterialInfo">
    - <s:sequence>
      <s:element minOccurs="0" maxOccurs="unbounded" name="MaterialInfo" nillable="true" type="tns:MaterialInfo" />
      </s:sequence>
      </s:complexType>
    - <s:complexType name="MaterialInfo">
    - <s:sequence>
      <s:element minOccurs="0" maxOccurs="1" name="VendorNumber" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="CurrencyCode" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="MaterialNumber" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="ShortText" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="OrderUnit" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="NetPrice" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="PriceUnit" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="MaterialGroup" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="DeliveryTime" type="s:string" />
      <s:element minOccurs="0" maxOccurs="1" name="GlAccount" type="s:string" />
      </s:sequence>
      </s:complexType>
      <s:element name="ArrayOfMaterialInfo" nillable="true" type="tns:ArrayOfMaterialInfo" />
      </s:schema>
      </wsdl:types>
    - <wsdl:message name="GetMaterialInfoSoapIn">
      <wsdl:part name="parameters" element="tns:GetMaterialInfo" />
      </wsdl:message>
    - <wsdl:message name="GetMaterialInfoSoapOut">
      <wsdl:part name="parameters" element="tns:GetMaterialInfoResponse" />
      </wsdl:message>
    - <wsdl:message name="GetMaterialInfoHttpGetIn">
      <wsdl:part name="materialNumber" type="s:string" />
      <wsdl:part name="materialDescription" type="s:string" />
      </wsdl:message>
    - <wsdl:message name="GetMaterialInfoHttpGetOut">
      <wsdl:part name="Body" element="tns:ArrayOfMaterialInfo" />
      </wsdl:message>
    - <wsdl:message name="GetMaterialInfoHttpPostIn">
      <wsdl:part name="materialNumber" type="s:string" />
      <wsdl:part name="materialDescription" type="s:string" />
      </wsdl:message>
    - <wsdl:message name="GetMaterialInfoHttpPostOut">
      <wsdl:part name="Body" element="tns:ArrayOfMaterialInfo" />
      </wsdl:message>
    - <wsdl:portType name="ServiceSoap">
    - <wsdl:operation name="GetMaterialInfo">
      <wsdl:input message="tns:GetMaterialInfoSoapIn" />
      <wsdl:output message="tns:GetMaterialInfoSoapOut" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:portType name="ServiceHttpGet">
    - <wsdl:operation name="GetMaterialInfo">
      <wsdl:input message="tns:GetMaterialInfoHttpGetIn" />
      <wsdl:output message="tns:GetMaterialInfoHttpGetOut" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:portType name="ServiceHttpPost">
    - <wsdl:operation name="GetMaterialInfo">
      <wsdl:input message="tns:GetMaterialInfoHttpPostIn" />
      <wsdl:output message="tns:GetMaterialInfoHttpPostOut" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="GetMaterialInfo">
      <soap:operation soapAction="Wartsila.PTIP.WebServices.CatalogueServices/GetMaterialInfo" style="document" />
    - <wsdl:input>
      <soap:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:binding name="ServiceSoap12" type="tns:ServiceSoap">
      <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="GetMaterialInfo">
      <soap12:operation soapAction="Wartsila.PTIP.WebServices.CatalogueServices/GetMaterialInfo" style="document" />
    - <wsdl:input>
      <soap12:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap12:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:binding name="ServiceHttpGet" type="tns:ServiceHttpGet">
      <http:binding verb="GET" />
    - <wsdl:operation name="GetMaterialInfo">
      <http:operation location="/GetMaterialInfo" />
    - <wsdl:input>
      <http:urlEncoded />
      </wsdl:input>
    - <wsdl:output>
      <mime:mimeXml part="Body" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:binding name="ServiceHttpPost" type="tns:ServiceHttpPost">
      <http:binding verb="POST" />
    - <wsdl:operation name="GetMaterialInfo">
      <http:operation location="/GetMaterialInfo" />
    - <wsdl:input>
      <mime:content type="application/x-www-form-urlencoded" />
      </wsdl:input>
    - <wsdl:output>
      <mime:mimeXml part="Body" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="Service">
    - <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
      <soap:address location="http://ptipqa.wartsila.com/ws/service.asmx" />
      </wsdl:port>
    - <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
      <soap12:address location="http://ptipqa.wartsila.com/ws/service.asmx" />
      </wsdl:port>
    - <wsdl:port name="ServiceHttpGet" binding="tns:ServiceHttpGet">
      <http:address location="http://ptipqa.wartsila.com/ws/service.asmx" />
      </wsdl:port>
    - <wsdl:port name="ServiceHttpPost" binding="tns:ServiceHttpPost">
      <http:address location="http://ptipqa.wartsila.com/ws/service.asmx" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>
    Regards,
    Palani
    Edited by: Palaniappan A on Jan 11, 2010 6:49 AM

  • BUG: 11g problem when using orabpel.jar for tasklist page

    Hi,
    Using 11g i created a BC view object to show a BPEL/Workflow tasklist. Using the SOAP_CLIENT method i got this working. When i test my view object with the business component tester it works. When i create a taskflow with a page fragment that has a table based on the view object it is not working. I need to deploy (among others) the orabpel.jar library with the application because my view object implementation depends on it. As soon as i run the application however with the orabpel.jar deployed the browser keeps showing the Loading image but refuses to continue to load. I also do not get any error in the console or the domain and server log files. It looks like there is a problem with some classes in the orabpel.jar that get in the way of weblogic adf libraries.
    Does anybody have experience with 10.1.3 orabpel.jar library in combination with the new 11g weblogic stack? Can i somehow configure class loading in a way that weblogic classes have preference over orabpel.jar classes if they exist? Is there a way to increase logging so i can trace at what point the problem occurs? Any help would be greatly appreciated.
    Kind Regards,
    Andre
    Edited by: AJochems (Redora) on Nov 18, 2008 2:08 PM

    Hi,
    Traced the problem to be related to the use of ADF XML menus. When i remove them the problem disappears. So i have traced the problem although i still do not exactly know what is causing it. Since there are a lot of redundant (probably altered versions) of classes in the orabpel.jar library one of them gets in the way with a weblogic class that is used while rendering the ADF Menu. The problem should be reproducible if you create a menu based on the model of an adf menu and add the orabpel.jar to your deployment.
    Kind Regards,
    Andre

  • Workflow 2013 use app model for higher security levels

    In a workflow 2013, I am currently calling a workflow 2010 so that I can use the impersonate step to run steps at a higher security level than the user that submitted the workflow. In the impersonate step, everything that needs to be run at a higher security
    level are placed in the impersonate step.
     I have found that the app model in workflow 2013 looks like it replaces the impersonate step in workflow 2010, correct?
    Due to that fact if I want to use the app model in workflow 2013 instead of using the impersonate step in workflow 2010, will I need to place all actions and conditionals within in the app model step for everything that needs to be executed at a higher security
    level? If so, can you show me how to accomplish this goal?
    If this is not true, what actions and steps do I need to place within the app model so that those actions and conditionals occur at a higher security level?

    Hi wendy,
    What is app model in SharePoint 2013 workflow? Based on your description, it seems like “App Step”. Is it right?
    “App Step” provides all the workflow actions added to it, with Read from and Write to Permissions to all the Items in the Site.
    App Step is not available by default you need to activate Workflows can use app permissions feature in your Site to get this displayed for that site in SharePoint Designer.
    You need to place all actions and conditionals within the App Step for everything that needs to be executed at a higher security level.
    More information about App Step in SharePoint 2013 Designer, please refer to the links below:
    Create a workflow with elevated permissions by using the SharePoint 2013 Workflow platform
    A word about App Step in SharePoint 2013 Workflow Platform
    SharePoint Designer 2013 – The new “App Step”
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Problem in Vendor payment notification for ACH Interface

    Hi All,
    I am creating DME File succesfully for ACH Vendor payment. Now i want vendor payment notification via mail id attatched to the vendor. But no mail is triggered. I am doing the below steps:
    Step 1: Go to transaction FIBF.
    Step 2: Go to Settings à Products à u2026Of a Customer
    o                Enter u201CProductu201D name as u201CACHu201D and u201CTextu201D as u201CVendor Paymentu201D.                                    
                           Check u201CActiveu201D Check Box.
              Click on Save.
    Step 3: Go to Environment à Info system (Process) à Execute (F8) for subsequent screen that you get. Check for Process 00002040. Click on the process and then click on u201CSample function moduleu201D button and create custom function module ZSAMPLE_PROCESS_00002040     (Copy SAMPLE_PROCESS_00002040).
    Step 4: Go to Setting à Process Function Modules àu2026of a customer
                 It will create a new entry in table TBE34.
    o                    Enter Event                    =          00002040 (entry maintained in TBE01)
                          Country (CTR)               =          
                          Application (APPL.)       =                                             
                          Function Module            =          ZSAMPLE_PROCESS_00002040
                          Product                          =          ACHPAY
               Click on Save.
    I need to tell you I have copied the standard program RFFOUS_T into a Z program for my required changed instead of User exits and also I have copied the standard layout F110_US_AVIS into a custom layout Z F110_US_AVIS and assign these two in FBZP Transaction for concerned payment method ( A for ACH in our case). I have also assigned mail id for all the vendors I am using.
    But I am not getting my mail to be triggered.
    Am I missing anything?do I need to write any code/own logic in the function module ZSAMPLE_PROCESS_00002040? If so, what logic should I write because standard logic inside this function module is handling the good logic to send mail. I am just copying it into Z function module.
    Edited by: amrita banerjee on Oct 14, 2008 6:45 AM

    Hi:
    Please complete setup using FIBF, copy SAMPLE_PROCESS_00002040 and SAMPLE_PROCESS_00002050 and update the code. You may require Basis help to get up the email.
    Thanks

Maybe you are looking for

  • Transaction management in EJB

    Suppose, a method in session bean is called that deals with some entity beans. I want to maintain transaction over some block of codes separately (e.g. History table has to be updated synchronously with the master table) not over the whole things in

  • I Can't Get it to compile anything.

    Hi, I can't get it to compile. I'm using Windowsxp Pro and the New beta version of Java jsdk1.4.0-beta3. I set path and my classpath but when I go to compile it gives me this message "error: cannot read: BigDebt.java 1error" Can anyone help me I have

  • It's Not Easy Being Green

    In fact, it's pretty frustrating. I can't seem to make a DVD slideshow without everything being green in the end. I have found a few posts regarding this but nothing that has solved my problem. When encoding the DVD, I see iDVD doing it's thing in th

  • SMS Notification

    Hi, Anyone who could point the right path about using ADF BC in the development of SMS Notification? The SMS Notification will send error notification to the mobile phone.

  • Can't load fglrx module

    Hi! I haven't upgraded my system for a while and now - after a complete system update including xorg-server, kernel, etc. - I've got a system without X  :-( I've been using the OS Ati driver for a while and was quite happy with it. It looks like the