How to modify a standard wsdl file ?

Hi,
we need to modify a standard WSDL SAP's file, but we don't know how to do it and if it is possible.
We use SAP 4.7 with WAS 6.20
ex : - targetnamespace must be modify to include an personal value
- WSDL's targetnamespace must be modify to include the level of our application version
How can we make that ?
regards

This is asked, and answered a lot, a search on this fine forum will give you many better answers than this.
Jars: Double Clickable on Windows & MacOS & some UNIX-alikes.
--- http://java.sun.com/docs/books/tutorial/jar/index.html ---
WebStart: Double Clickable, autoupdates, and other funky stuff, need to know about JARS first
--- http://java.sun.com/products/javawebstart/ ---
Evil Hack: You can supply a .bat/.sh file, or a thin .exe wrapper, but tis evil.
I recomend you read the tutorial on Jars, you can then use the Archive Wizard in JBuilder ( File -> New -> Archive ) to create a JAR file.

Similar Messages

  • How to modify the standard script in scripts?

    how to modify the standard script in scripts?

    Nagaraju,
    Standard scripts cant be modified.
    Only thing is you need to copy it to z-form and have to do modifications as per ur requirements.
    Here is the procedure to copy standard form to z-form.
    goto SE71 t-code, then select the menu path : <b>Utilities -> Copy from Client</b>
    then it will take to another screen, give the form name as Standard form name, if u r copying a stadard invoice means, type RVINVOICE01 and target form, ZRVINVOICE01. Now press execute button, it will copy the form into 25 languages. Now come back to se71, enter Z-form name and do the required changes.
    Hope this hint may help you, Pls close the thread if u met with correct answer.
    Regards,
    Sujatha.

  • How to Modify the standard layout set for Sales Order

    Hi all,
    Do we have any sap defined standard to modify the sales order,if no How to Modify the standard layout set for Sales Order,an also plz send me the step by step procedure for the same.
    Thanks in advance
    Santosh R

    Hi, Dear Ferry Lianto,
    Thank you very much.
    Commonly I know the total pricing procedures.
    But, would you please tell me how to control the CURRENCY for the subitem of a condition type as follows?
    For example, I can see the following kind of
    contents in the Tab:condition of a sales order:
    PR00     Price     130.00000      TEST     100
         Gross Value     20.12      USD     100 <-how to
         Discount Amount     0.00      USD     100
         Rebate Basis     20.12      USD     100
         Net Value for Item     20.12      USD     100
         Net Value 2     20.12      USD     100
         Net Value 3     20.12      USD     100
    VPRS     Cost     27.22      HKD
         Profit Margin     16.61      USD
    The currency of PR00:price can be controlled via tcode VK12; but how to control the currency of its subitem such as gross value, discount amountm, net value for item, net value 2, & net calue 3...
    Thanks and regards.

  • How to modify the standard table

    plzzzzz answer my qestion.
    how to modify the standard table?
    in my knowedge we have the accese key is it correct or worng

    Hi
    <b>The system asks for access key only of two reasons:</b>
    1) You may be having problem of access rights. You would have to contact basis peopl.
    2) You may try to name an object not complying with the rules. You may have to check with the same.
    the process of getting access key is
    <b>the steps to get access key</b>
    you can also try via transaction OSS1
    In your Inbox, click on 'Registration', then on 'Register Objects', then you will have to choose your installation and give details about your object.
    The details you can get by going to your object and clicking on 'Change' - the pop-up screen which asks you for the access key gives you all the details you need to fill in on OSS1 to get your key.
    <b>or</b>
    U can get Access key from www.service.sap.com
    After getting into the site,select quicklinks, then click s to goto SSCR, in
    that select registration,
    after giving the proper details, u can get the access key
    <b>or</b>
    on sap support portal (sapnet)
    --> key & request
    ---> register SSCR key
    ---> registration
    ---> register developper
    and then choose your rigth installation number
    you can get the access key in this way
    <b>reward if usefull</b>

  • How to modify a standard OAF page in version R12

    Dear all,
    I have a requirement to modify a standard OAF page(can't implement by personalization),and my EBS version is R12,but i have not the source java code of the page,I try to decomplie the class file by a sofeware named 'YingSoft' , as the r12's jdk is 1.6,will have some errors.
    So,anybody know how to accomplish or have other decompile software?
    thanks,
    Ming Tao.

    Hi Ming,
    I use Java Decompiler (JD) in it works fine for me. Also, I guess you know it already, but just in case, there is a detailed explanation on how to extend standard OAF pages in the OA Framework Developer's guide and how to deploy the changes.
    Regards.

  • How to modify an existing xml file from java code.

    Hi
    I have worked on creating a new xml file from java code using xmlbeans.But if i try to modify an already existing file using java code I am unable to get errorfree xmlfile.
    For example if xml file(studlist.xml) is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <StudentList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\kchaitanya\xmlprac1\abc\Studlist.xsd">
         <Student>
              <Name>ram</Name>
              <Age>27</Age>
         </Student>
    <Student>
              <Name>sham</Name>
              <Age>26</Age>
         </Student>
    </StudentList>
    Now suppose i have set name to victor using student.setName,
    and set age to 20 using setAge from javacode,
    the new xml file is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <StudentList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\kchaitanya\xmlprac1\abc\Studlist.xsd">
         <Student>
              <Name>ram</Name>
              <Age>27</Age>
         </Student>
    <Student>
              <Name>sham</Name>
              <Age>26</Age>
         </Student>
    </StudentList>
    <Student>
              <Name>victor</Name>
              <Age>20</Age>
         </Student>
    As observed this is not a valid xml file.But how can i modify without any errors?

    I know it's an old post, but I found this while doing a google search for something else, and don't like to leave it un-aswered
    Just in case anyone has a similar problem... In this case the new elements have been appended outside of the root element
    What you need to do is first get the root element and then append the new children to that, there are several ways of getting the root element, which depend on what you want to do with the elements you get back here's a simple (incomplete) way.
    // gets the root element of the specified file (code not shown)
    Element rootElement= new SAXReader().read(file).getRootElement();Then just append the new elements as below (this is non-generic code and would need to be modified for your situation)
    // write a new student element
    Element student = document.createElement("Student");  // creates the new student
    rootElement.appendChild(student); // ***appends it to the root element***
    Element name = document.createElement("Name"); // creates the name element
    name.appendChild(document.createTextNode("Fred")); // adds the name text to the name element
    student.appendChild(name); // appends the name to the student
    Element age= document.createElement("Age"); // creates the age element
    age.appendChild(document.createTextNode("26")); // adds the age text to the age element
    student.appendChild(age); // appends the name to the studentThen flush ya buffers or whatever and write the file
    Edited by: Dream-Scourge on Apr 23, 2008 11:10 AM

  • How to modify a datafile using file read and file write

    I have a datalog file containing port and DMM setup information.  I want to read this file into an aray, update or modify it, and write it to a file.  I can read the file in, but I am at a loss on how to modify it since it is stored in an indicator.  Any suggestions?

    The simplest thing is to replace your indicator by a control, and to use a local variable to write your data into the control.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • How to modify a standard smartform

    steps to modify a standard smartform.How can i find the standard smartforms.

    Hi,
    We need to copy the Standard smart form and its' driver program in 'Z' types repectively.
    But inorder to trigger our Zmsartform for a given applicaiton or Tcode then we need to configure it in the NACE.
    Thanks & Regards,
    Chandralekha.

  • How to modify fbz5 standard program output form

    Hi friends
              I need to modify the output print form of the standard program  FBZ5 how to modify it.
    where is the driver program for this form.

    Selva,
    Below is the path in SPRO to find the Driver Program and the Form for the respective Company Codes based on the Correspondence types.
    SPRO>>Financial Accounting (New)>>Financial Accounting Global Settings ( New ) >> Correspondence
    or
    You can put a break point on the FM FORM_CHECK and run FBZ5 in D or Q.
    K.Kiran.

  • How do you create a wsdl file from a FM?

    Hello friends,
    Could some one please let me know how to create a wsdl file from a function module?
    I have gone up to the stage of creating webservice  and also released it for SOAP runtime using tranasaction code wsconfig.
    But I don't know how to proceed from there and create a wsdl file.
    Your help will be greatly appreciated.
    Tks
    Ram
    Edited by: Ram Prasad on Nov 18, 2008 4:44 PM

    I was able to solve the issue with a friends help. Here are the steps
    STEPS in CREATING WSDL file from a FM:
    1.Goto SE80 Create a package or select a package in which you want to create a web service.
    2.Right click and select Create -> Enterprise Serve/Web Service -> Web Service
    3.Follow the wizard steps answering all the questions until complete. This creates the service definition.
    4.Goto transaction code <WSCONFIG> and enter the service definition name you have created in previous step. Enter the same name in both u2018service definitionu2019 and u2018variantu2019 fields.
    5.Then click on Create button and save. This releases the webservice you created in to soap Runtime.
    6.Goto transaction <WSADMIN>
    7.Open the tree structure to see the webservice that you just released and click on the right most button (Globe shape).
    8.Select u2018Document Styleu2019
    9.You have now created the wsdl file for the FM.

  • Modify content of wsdl file

    I saw from some threads where problem with wsdl file importing is solved by deleting some parts of the wsdl.
    Is that safe to do that? Why the format of 'request' or 'response' file changed from the one defined by web services (original wsdl), it could still work? I have doubt about that.
    Please advise

    Hi Rokie !
    It all depends on what are you exactly modifying or deleting in the WSDL file. Sometimes, there are declarations that are not fully compatible with XI. If you don't make structural changes, it may still work. For example, if the WDSL request has an optional field, and its declaration is giving any kind of error while importing in XI, you could try to remove that declaration in WSDL and try that way to debug.
    Regards,
    Matias.

  • How to modify a standard badi

    Dear Freinds,
                  Could any one let me know how to modify the Badi HRHAP00_DOC_DEF_D1 . As i have tried to copy to a z one it is not allowing me to
    copy  why could any please let me know.
    regards
    syama.

    Why you want to copy badi when you can implement one.
    you can  modify "HRHAP00_DOC_DEF_D1 " 
    i.e you can change attributes  like: filter value, multiple use , filter dependence etc.
    and yes it allows you to make a Zcopy.
    go to se 18 enter HRHAP00_DOC_DEF_D1
    and select copy option it will allow you.
    reward points if helpful

  • How to modify & use Printer Defination files for Character Mode Report

    How can use & modify printer defination files for changing formats & orientation in character mode report. I donot know how to use printer defination files I tried to set the system parameter (Desformat) but it doesn't work.

    I m also faced same problem that u face,
    If u want to make character mode report so plz follow these instructions:
    1. Set the properties of Report Name Node in Character Cell is Yes.
    2. Change the mode of the System Parameter Mode is Character.
    3. Goto the Layout---> Main Section Properties and set the Character Report Width and Height like 132 and 66
    4. Create Formula Column and write this code "RETURN(CHR(14));"
    5. Goto Layout Model and map this formula column into Header of the Body Like If ur Company Name is "ABC COMPANY" attached with field and map Formula Column.
    5. Goto Printer Definition File DFLT.prt open in NotePad and set width and hieght that u set in Main Section of Report.
    6. At Last u Run the Report with Some System Parameter or User Parameter and View as Character Mode Report.
    In My Case I used EPSON LQ2180 Printer
    So, U Ask More Qustion and u have more knowledge About character mode report Plz Mail me at this address.
    Shahid Shafi
    [email protected]

  • Sender SOAP Adaptor - how to use an imported WSDL file

    I have to implement an inbound soap interface between my client and its external customer.This interface is in place with the legacy system,which has a webservice that the external customer invokes to send us data.
    Now the problem im facing is, the external customer is not willing to change anything on their end (like using our new webservice) except the connection URL,user name and password.(which makes sense too)
    I have the WSDL which is currently used imported in XI but has all different namespaces,SOAP address location etc and if I use the messages in the WSDL as it is as my source then its failing in my message mapping.I cannot create the same schema (data type and message type) because the current WSDL root element and some other elements start with a _
    Thanks in advance for advices on how to go about it.
    Mat

    Hi Joseph,
    I've had problems importing and using certain WSDL's too, and needed to create my own datatypes and service interfaces to circumvent the problem, using my own namespaces. In order not to have any problems with the namespaces used by the sender, I used the anonymizer bean in the soap adapter module.
    I didn't understand what you meant by elements starting with 'a_'. Is the sender using different element names in the WSDL than in the XML sent ? Perhaps you can show us the WSDL and an incoming test message ?
    kr,
    Peter Glas

  • How to modify a pint.css file

    Hi Folks,
    I want to print a couple of pages out of my wiki.
    But i did not get what i see.
    How shall i modify the "print.css" to get a better result?
    It also hast to work with the calendar overview.
    Thanks

    The simplest thing is to replace your indicator by a control, and to use a local variable to write your data into the control.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

Maybe you are looking for

  • Worst ever Customer support in my life

    Hello Team, My Name is Anish Mathew and you can reach at my number xxxxxxxxxxx).I would like to report one of the worst customer support I have ever experienced in my life. I am not sure which email address I should be sending this,so marked on all a

  • How to get EBS Concurrent Request number (and more) into BIP Report Layout

    hi, I have been using BIP for 9 months but have several years experience of Reports 6i development (matrix, drill-thru etc). We are beginning to use BI Publisher with EBS and would like to be able to incorporate the Concurrent Request number into the

  • Cisco CallManager 5.1.3 Migration to CUCM 8.6

    Hello I am trying to migrate a Cisco Call Manager v5.1.3 to a new CUCM v 8.6 running on a VM. I made a DSR backup from Call Manager v5.1.3 and try to install it in a VM running the same version (5.1.3) but I am receiving the following error message:

  • How come I can't open Excel files from a Windows computer on my Mac?

    My roommate created several Excel spreadsheets on his Windows XP computer and saved them. I put a USB drive in his computer and copied those files to the USB drive and then placed the USB drive in my MacBook. When I go to open the file, it indicates

  • I keep getting charged for free games

    I am always trying to get charged for free games??