Can we change WSDL file created from Function Module wizard??

Hi everybody!
I have created a web service from function module using SAP wizard.
Now the consumer side want me to change <wsp:UsingPolicy wsdl:required="true"/>
Is this possible???
If so how?????
Thank u in advance!!

Hi Muhammad!
As soon as you open WSDL for selected binding in the URL are of you explorer change the ws_policy with "standard" . Then simply save the wsdl and send it to the other party.
Hope this helps!

Similar Messages

  • Can i change the file extension from .html to .cfm in Muse?

    Can I change the file extension from .html to .cfm in Muse?  Then I could use my old file names.

    Muse only supports .html as a page extension at this time.
    Thanks,
    Vinayak

  • PR can be changed after PO created from the PR(by adopting) .. need to stop

    Dear experts,
    In our current system PR can be changed after PO created by adopting the PR. How can i block this change.
    Kindly help
    Regards,
    Zusen

    Badruddoza Zusen wrote:
    Hi
    >
    > Thank you for your reply.
    >
    > I have set message 06608 as error but problem still is there. After creating a PO 4500013405 w.r.t a PR 100018999 and can add new line in PR 100018999. How can i stop this..
    >
    > Kindly help.
    >
    > Thanks and regards,
    > Zusen
    Is that really a problem?  the second item has has the same PR number. but if you look at the technical structure of the purchase requisition table, then this table does not have a header table and no item table, it is just one table --> EBAN
    if you create a second item, then you have the same PR number but different item number
    otherwise
    you have a different PR number but same item number.
    It is really just one field which is different.
    And 06608 message prevents the change of the item which is already used in a PO.

  • Error when workflow created from Function Module

    Hi All,
    I am trying to implement leave module workflow for one of my requirement.
    when i create a leave from PTARQ transaction workflow it is being triggered, but when i tried to do the same from a custom function Module using the same FMs used in PTARQ, workflow initiated but stopped at initial stage( at switch branch )
    i went to SWI1 transaction and executed it manually, it end up with error saying ' Error when starting a SWITCH branch'
    what should i do to move it forward.
    Thanks,
    Krish.

    Hi Kishore,
    For leave workflow, SAP has the separate frame work. They called the FM SAP_WAPI_START_WORKFLOW and pass all necessary data's to Process the leave workflow.
    Its not advisable to overwrite the standard behavior. Please check your 'REQ' workflow container in the log. There will be a no data or Some data's might be Missed.
    Before Call the FM, make sure that all data's are passed to the Table parameter, SImple_Container.
    The reason for the Error in your workflow is, there is no data stored in REQ.STATUS container.
    please check the Workflow log.
    Thanks.

  • Web Service created from Function Module with output tables

    Hello,
    I created a web service from a custom function module.  This Function module has some export parameters and one table.
    The table parameter returns a list of data for selection.
    When I execute the function module, everything is returned fine.
    When I call the web service, the export parameters are returned but the table is empty.
    Has anyone encountered that kind of issue?
    Thanks!
    Laurent

    Please check the following few things while testing the WS:
    - Test the WS with WS Navigator (accessible from transaction WSADMIN or http://<server host>:<port>/wsnavigator/enterwsdl.html).
    - While doing the test, give the exact no. of digit if there is some input parameter (with 0 padding if necessary).
    - Make sure the "SKIP" check box against the table parameter is NOT checked.
    Regards
    Nilay

  • I generated web service from function module.Where can I find .wsdl file ?

    Hi,
    I generated web service from function module.
    Where can I find .wsdl file ?
    I want to use .wsdl file in .Net application.
    Thanks.

    Hii Cemil Bozlagan,
      All Remote enabled Function Modules in Web AS 6.20 and Above are available as Webservices and the WSDL documents are available in the web service repository at
    [http://<host>:<port>/sap/bc/bsp/sap/webservicebrowser/search.html]
    Find the respective BAPI.
    Click on the WSDL link in the browser and download the WSDL document and use it as per the requirement
    Regards,
    Varun

  • Can I change the file path that itunes reads my music files from? 65000 files trying to be transferrd from external to internal HD. I dont want itunes to manage my collection, just read it. thanks

    Can I change the file path that itunes reads my music files from?
    I have about 65000 music files that i have transferrd from my external to a new laptop internal HD.
    I have organised the folders myself as I use a PC and do not want itunes to organise the folders because when I'm searching through music on windows it is sorted out by artists/albums with 'the...(eg  The Beatles)' under 'T' instead of 'B'.
    Long story short.... Is there any way that I can keep my itunes library as it is on the external HD and copy it to the new laptops C drive, keep all the info (playlists etc) and still have the same folder structure as on the external HD?
    Or, is there any way of making windows sort things in alphabetical order like it is in itunes (eliminating the 'the' issue)?

    The files that weren't inside the media folder on the original machine need to be copied over to exactly the same paths as they had on the source machine. See this thread for an ongoing discussion of a similar problem. See also this post on migrating the iTunes library.
    tt2

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • HT1766 HOW CAN I CHANGE MY BACKUP FOLDER FROM THE C DRIVE TO ANOTHER?????

    HOW CAN I CHANGE MY BACKUP FOLDER FROM THE C DRIVE TO ANOTHER????? because my c drive in the windows computer gets filled and i need to back up my ipod to a portable hard disk.. bt i dont know how to do it.. plz help

    you can't change the backup folder as far as I know, but you can choose to move backups. The information you need can be found in this article: http://support.apple.com/kb/ht4946
    Where iTunes backups are stored on your computer
    The folder where your backup data are stored varies depending on the computer's operating system.   Make sure the backup folder is included in your periodic data-backup routine.
    iTunes places the backup files in the following places:
    Mac:  ~/Library/Application Support/MobileSync/Backup/
    Windows XP:  \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Note: To quickly access the Application Data folder, click Start, and choose Run. Type %appdata% and click OK.
    Windows Vista and Windows 7:  \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: To quickly access the AppData folder, click Start. In the search bar, type %appdata% and press the Return key.
    Hope this helps
    Regards,
    Stijn

  • How to create a generic datasource from function module?

    Dear experts,
    I have created a generic datasource from function module. For this extrator, I created a function module and a structure.
    I have now some difficulties to continue:
    In this function module, i get data from different transparent tables. Then i put these data into an internal table.
    I just don't know what is the relatioin between the structure i defined and this internal table.
    I should make "iTab structure AA" in the source code?
    Thanks

    Hi..
    check this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    Generic Extraction via Function Module
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    1. Create s structure with the fields that you need from the 4 tables . Activate.
    2. Goto SE 80 Select The Function Group , Copy , Select the Function module
    " RSAX_BIW_GET_DATA_SIMPLE " and Give a New name starting With
    Y or Z .
    3. SE37 ->Your Function module name -> Change , In table tab give your structure
    name by deleting the associated type given in " XXXX " .
    4. Now select source code and Do the coding . Give Data source name in Coding .
    In your case you have to take data from more that 1 table .
    5. Activate the Function Group .
    6. In RSO2 Create the Data source , Give the Function Module Name , And Save.
    7. RSA3 -> Give data source name and Check for the Records .
    Creation of custom datasource. (Using function module)
    .Create a function group .
    . Structure ZTXXXX
    Create function module (i.e. ZTESTXXX) .
    . Create the data source using transaction (RSO2).
    . If structure exists for the table parameter of your function module then ok else create a structure for the table parameter ‘        ’.
    Test the datasource in R/3 using transaction RSA3.
    Transfer the data source to BW –System and replicate it in the BW-System.
    Message was edited by:
            shiv

  • Use FTP Transport Protocol (XI) to send text file created from R3

    I've configured a Port in IDoc Processing (WE21) to create an output file from a Bank Partner Profile (WE20) where my Message Type is PAYEXT and IDoc Type PEXR2002.
    I need to take this Text File and send it to the Bank;s FTP site using the Integration Server (XI).
    How can I take this text file and simply send it to the Bank without going through File Content Conversion in order to convert it to XML as the Sender and then uncovert it during the Receiver to FTP the file to the Bank?
    If that is not possible, would anyone know how to configure the RecordSet Structure and parameters for both the Sender and Receiver?

    Hi,
    Let me re-phrase your scenario:
    ECC is required to send PAYEXT IDOC to XI which needs to be send to the bank in IDOC text file format to the bank. If this is the case we can achieve this by doing the following:
    1.Rather than using TRFC port used by the IDOC as the method of communication, you can leverage using file port. The configurations to the file port are simple. You need to select a place where you can drop the IDOC file created by the ECC system and XI would pick up the file.
    2. Poll for the file using NFS from that particular location where ECC drops the file. (If it is being staged on the ECC system, then XI service user SAPservice<SID> must have access permission on that folder like \usr\sap\put\interfaces.
    3. Configure receiver FTP adapter to send the file to the bank.
    Hope this helps.
    Indranil
    Award points if helpful

  • Strange that I can save a pdf file created in windows 8.1 to my cloud storage

    Strange that I can save a pdf file created in windows 8.1 to my cloud storage, but then I don't see it when I open my account. What is strange is that when I try again to save the file, system ask me to change the file name or over write current file. But file not present in my drive. Any help would be much appreciated

    Hi jeffjn,
    Please log out of your account, clear the cache, and then log back in. If that doesn't work, please log in using a different web browser. (See System requirements | Acrobat.com for a list of supported web browsers.)
    Please let us know how it goes.
    Best,
    Sara

  • DNG files created from Fujifilm FinePix E-900 .RAF raw files

    I'm having a problem in creating DNG files from my Fujifilm FinePix E-900 camera .RAF raw files on my Mac (Mac OS X 10.6.4).  The DNG files are recognized correctly in Adobe software (Photoshop CS4, Bridge, Lightroom 3) but not by any Apple software (including Aperture 3.0).
    I've used Adobe DNG Converter 6.1, Photoshop CS4, and Lightroom 3 to create these non-linear DNG files.  As a point of reference, I've used the same settings to create DNG files from Kodak .KDC raws files that Apple also doesn't support, but these DNG files (created from the .KDC raw files) show up just fine in Aperture 3.0.
    The one thing I find unusual about the .DNG files created from the Fujifilm FineFix E-900 .RAF raw files is that when I do a 'Get Info' on these files, the image dimensions of these .DNG files always shows up as 0 x 0.  (The image dimensions should be listed as 3488 x 2616.)
    So I'm wondering if there is something wrong (a bug maybe) on how these files are being converted to the DNG file format using Adobe DNG Converter 6.1, Photoshop CS4 or Lightroom 3 on a Mac.
    Peter

    Hi Frank, you need camera Raw 7.4 which is only available for PSE11. Consider upgrading or wait for PSE12 to be launched soon. If you regularly shoot raw try Lightroom with PSE10 as your external editor.
    Alternatively, download and install the free Adobe DNG converter to convert your raw files to the Adobe universal Raw format and the files will open in PSE10 (keep your originals as backups and for use in the camera manufactures software)
    Windows download (.exe file) click here DNG Converter 8.1
    Mac download (.dmg file) click here DNG Converter 8.1
    You can convert a whole folder of raw images in one click. See this quick video tutorial:
    You Tube click here for DNG Converter tutorial

  • How to change the file type from IMOVIE PROJECT to other types of file

    how to change the file type from IMOVIE PROJECT to other types of file??
    thank you very much for your help=]

    I am not sure what you mean, but once you make a project. Then go to the share menu and you can export the project to iDVD, itunes, mobileme, quicktime.
    Share export quicktime movie will allow you to export to a variety of codecs. What specific export are you looking to share the movie in? What is the final source that the movie will be displayed?

  • I am unable to open PDF files created from another PGM.

    Is there an ADOBE pgm that will properly read in PDF files created from another pgm and convert them to ADOBE PDF so they do not error when they are opened to be viewed by ADOBE pgm?

    There is no way to know all the different scan/fax/pdf printers that are used to make the original PDFs...
    CAD-KAS PDF Editor 2.6 is used to edit the files
    doPDF 5 is used to modify pdf file.
    Interesting, I can use the free CAD-KAS PDF reader to open & read the PDF file that the ADOBE XI reader
    gives me the above error message.

Maybe you are looking for

  • PC Suite Backup failed to backup contacts

    Went to update my firmware today, and it said that it would delete all contents on my phone. So, I updated PC Suite, and then clicked the backup button. It appeared to be successful. I then had it install the firmware update. After that successfully

  • How do you change the order of songs on ur itunes??

    yeah, some of my album tracks are out of order, id like to change that, any ideas?

  • Suddenly my browsing history has been deleted when I first open Mozilla

    For 2 days now, I go to Bing, click the drop-down browser-history menu at the top, and all my previous browsing history is gone...everything. I had some sites there that I use daily, so this is really frustrating and for no apparent reason. There has

  • How to sencronize my iphone 5

    How do i synchronize music from itunes to my iPhone 5? I have a mac Os X 10.5.8. procceser is 2.2 GHz Intel core 2 Duo. Memory is 1GB 667 MHz DDR2 SDRAM.

  • Verizon screwed up autopay and paperless statements

    I signed up for automatic payments and electronic billing, It was a horrible, getting calls from the collection department instead of auto pay. This happened twice in last four months. I was also charged penalty. Due to Verizon screw up, if I am repo