How to activate Business Add-In (BAdI) for Enterprise Service

Hi,
I have connected enterprise service
Find Production Order by Work Centre
external/technical Name: ProductionOrderSimpleByWorkCentreQueryResponse_In
Namespace: http://sap.com/xi/APPL/SE/Global
SAP Software Component Version: ESA ECC-SE 605
Internal Name: ECC_PRODUCTIONORDERSWQR
SAP Library - Enterprise Services for SAP ERP
http://es-workplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?packageid=DE0426DD9B0249F19515001A64D3F462&id=…
from our ECC system to our PI 7.1 and did first tests.
I'm getting response to my requests from the ECC system.
But in the response, there are only the production order IDs for the requested work centre.
I suppose that the BAdI PORD_SE_PRODUCTIONORDERSWQR, mentioned in service description, has to be activated for the service in the ECC system, to get all the other optional production order elements, defined in the service response message type.
Am I right?
Which steps in the ECC backend are neccessary to activate a BAdI for an enterprise service?
Regards
Roland

Salegram,
BADi is not provide us functionality for data upload for Annual PF / Pension Report.
BADi is using for some add in our business transaction.
just explore tx se18 ans se19.
Amit.

Similar Messages

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • How to change or add new ext for video?, How to change or add new ext for video?

    How to change or add new extensions for video player???

    Hi,
    Please try to  use Explicit Commit work to save the changes.
    check if there in any BAPI FM related to this.
    Please check the structure you have passed for these fields.
    check the Item category for BOM items - POSTP in table T418. if the entry exists then try to add the values again.
    Thanks & Regards,
    Chandralekha.

  • How do I create a new emkey for Enterprise Manager Database Control?

    Hi,
    I just installed 11gR2.
    I am evaluating it.
    How do I create a new emkey for Enterprise Manager Database Control?
    I tried various combinations of this command:
    emctl config emkey
    I did find a probable bug:
    $ emctl config emkey -emkey -emkeyfile emkey.ora -force -sysman_pwd he11ow0rld
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Undefined subroutine &EmKeyCmds::promptUserPasswd called at /u2/app/oracle/product/11.2.0/dbhome_1/bin/EmKeyCmds.pm line 160, <FILE> line 3.
    $
    Again,
    How do I create a new emkey for Enterprise Manager Database Control?
    I do have a copy of my old key but it is no longer good because I reinstalled the repository with these commands:
    emca -repos drop ...
    emca -repos create ...
    Oh, and where is emctl "documented".
    I poked around in some book-index links and with the search engine.
    I could not find anything.
    Thanks,
    -Janis

    user11892726 wrote:
    Oh, and where is emctl "documented".
    http://download.oracle.com/docs/cd/B16240_01/welcome.html

  • How do i configure REGISTRY for enterprise services

    Hi,
    Please let me know how to Configure Registry for enterprise services in  SAP Discover system V2.
    Regards,
    Naveen

    I'm afraid it's a bit more complicated than adding a server into the list in Step 3 :)
    When a DirectAccess client is connecting into a corporate network that is IPv4 (I assume yours is, most are), it can reach into your IPv4 servers because the DA server is doing NAT64/DNS64 translations, turning all of your DirectAccess IPv6 packets into
    IPv4 packets before they head inside the network. But even though this happens in the background without you really knowing about it, the key thing there is that all DirectAccess traffic is IPv6. This means the clients can only be contacted via IPv6. If you
    have IPv6 inside your network, then you can route outbound fairly easily to your DA client computers. If you are all IPv4 inside as most companies are, then you have to either roll IPv6 out inside your network, at least partially, or you have to utilize ISATAP
    inside your network in order to create a sort of "virtual IPv6 cloud" that runs on top of your IPv4 internal network. This enables your internal management systems (like the BMC servers and helpdesk computers for RDP access outbound) to have a connection
    into the IPv6 world, which then enables them some routing capability to get out to the IPv6-connected DA clients. In addition to this IPv6 or ISATAP setup, you also need to configure WFAS rules on the DA clients so that they will allow this traffic.
    There is some info on setting up ISATAP here: http://blogs.technet.com/b/jasonjones/archive/2013/04/19/limiting-isatap-services-to-directaccess-manage-out-clients.aspx
    Otherwise one of the chapters in this book is also dedicated to the setup of a selective ISATAP environment, to be used for the purposes of DirectAccess outward management: https://www.packtpub.com/virtualization-and-cloud/microsoft-directaccess-best-practices-and-troubleshooting

  • ESS: Badi for Travel Services

    Hi all,
    I need to apply few check while travel services like Train, Outbound Flight, Inbound Flight, Car are filled up by employee, Please Suggest some BADI for travel services...

    Hi,
    Its not a transaction, its ESS service.

  • Understand the technical base for Enterprise Services?

    Hi all,
    I am trying to understand what is the technical base for enterprise services and the restrictions when activating them. The best documents I have found are:
    Note 1566412 u2013 Enhancement package 6 for SAP ERP 6.0.
    Note 1359215 u2013 Technical prerequisites for using enterprise services
    sdn blog u201CDetermin the SOA readiness of your System with the ES Workplace (Part 1 and 2)
    EHP Master Guide - https://websmp107.sap-ag.de/~sapidb/011000358700001183052011E
    The documents are quite informative, however there are still questions. Maybe someone can shed some light of these:
    1.) Is my understanding correct that Enterprise services can have three different base u201Cmodulesu201D?:
    a. An EHP (with relation to a business function).
    b. The swc u201CESA ECC-SE 60xu201D (without relation to a business function). E.G. ES Bundle "Bank Communication Management".
    c. The SWC u201CSAP APPLu201D (without relation to a business function). E.G. u201CBusinessPartnerERPUpdateRequestConfirmation_Inu201D
    2.) Is it possible to activate enterprise services (bundles) that rely on business functions after a EHP installation or ONLY during the EHP installation?
    3.) Is it possible to activate enterprise services with base u201CESA ECC-SE 60xu201D after a EHP installation or ONLY during the EHP installation?
    4.) Is SWC u201CESA ECC-SE 60xu201D a u201Ctechnicalu201D business function, whose activation cannot be reverted either? If yes what effect has the activation von u201CESA ECC-SE 60xu201D on the current ERP customizing?
    5.) How do the Enterprise Services relate with Service Interface definitions from SAP Process Integration (XI Content)?
    Do I need the XI Content with the service interfaces in ES Repository (and SPROXY) only if the communication is B2B (with PI) or also if the communication is Point-2-Point (without PI)?
    Thanks for your feedback!
    Chris

    Hi Chris,
    I'll try and provide answers where I can...
    1.) Is my understanding correct that Enterprise services can have three different base u201Cmodulesu201D?:
    I personally don't agree with this understanding. Enterprise Services would always relate to some or other business function, unless we have a different understanding of what "Business Function" means . What changes is how the Enterprise Services (or versions of them) are delivered.
    SAP APPL for example would be relevant to most of the enterprise services shipped with a standard ECC EHP*. So it will relate to the business functionality for the applications that are shipped with an ECC installation.
    2.) Is it possible to activate enterprise services (bundles) that rely on business functions after a EHP installation or ONLY during the EHP installation?
    I don't understand this question but I'll try and offer a generic answer. You can activate/use Enterprise Services whenever you want to as long as they are already available in your current installation. If they are only available in an EHP that you don't have yet then you will need to upgrade (but I also seem to recall some workarounds - SAP notes - as an alternative to upgrading).
    3.) Is it possible to activate enterprise services with base u201CESA ECC-SE 60xu201D after a EHP installation or ONLY during the EHP installation?
    You decide when you would like to activate it, it's generally after. SAP will ship them anyway.
    4.) Is SWC u201CESA ECC-SE 60xu201D a u201Ctechnicalu201D business function, whose activation cannot be reverted either? If yes what effect has the activation von u201CESA ECC-SE 60xu201D on the current ERP customizing?
    There is a tool call Impact Analyzer, read up a little on it. It allows you to do an impact analysis before activating. It might also help posting a separate thread on of the ECC functional forums here on SCN for more impact analysis. I'm not sure if the activation can be reverted.
    5.) How do the Enterprise Services relate with Service Interface definitions from SAP Process Integration (XI Content)?
    The XI Content is the design equivalent of the Enterprise Services as you see them in SPROXY. It's only relevant in certain cases, examples:
    - If you want to enhance standard SAP Enterprise Services
    - If you want to do additional transformation/s & routing.
    If you are planning P2P type communication, then the XI content is not relevant. One thing to be aware of though is if you have your backend ECC system connected to your PI ESR, the view that you get in SPROXY will reflect the SWC view of the ESR. So you might want to download the XI Content & import it into your PI ESR anyway.
    Regards, Trevor

  • Developement XI-Content for Enterprise Services

    Hi,
    What is XI-Content? And what must be defined in XI-Content for Enterprise Service Enabling?
    We have defined some services as provider, these services are goint to be in XI-Content. But we are also requesting some infromation to business partner, these inforamtion could be services or messages in case our partner does not have services.
    So my feeling is: in XI-Content we need to define:
    Interfaces for the services which we provide;
    Interfaces which we as consumer request?
    Interfaces which from partner as provider?
    Interfaces for the messages which are sending from partner?
    Mapping between the service interfaces (provider <->consumer)
    Mapping between the messages and the services?
    I am sorry, but this is really confusing when we plan the development of XI-content.
    Could you give me a clear picture or guideline according to your experience?
    Thank you very much.
    Jing

    This XI content is nothing but most commonly used integration scenarios for address specific business process requirements for a particular landscape.For Ex:Interface for Creating PO ,Sales Order etc.
    I have read many articles which say that XI Integration Repository will be re-named as Enterprise Service Repository which will enable the customers to kick-start with Enterprise Services.SAP sets the ball rolling by providing 500 Enterprise Services.
    As far as I understand these services are nothing but commonly used re-usable integration scenarios which are powered by Webservices.Enterprise Service Granularity depends on how you define your "Service".
    You have an awesome article on ESA which explains in an excellent way.
    Search the sdn for Enterprise Service Design Guide which can be an answer all your questions.

  • How to know the class method behind an enterprise service

    Hi,
    SAP has provided enterprise services for Room booking in Real Estate module. They are even shipping the complete application for a nominal price. But the standard version is not suitable for our client requirement so they want to develop this application inhouse.
    Now my question is:  I know the enterprise services used in this application. How to know the implementing methods behind these enterprise services ?
    If possible suggest which approach will be a better option for the inhouse development.
    1. Webdynpro ABAP and use directly methods behind the enterprise services.
    2. Webdynpro ABAP and create client proxy class for the enterprise services.
    3. Webdynpro JAVA and use the enterprise services.
    4. Using visual composer modelling the application.
    Please suggest the best alternative.
    Best Regards,
    Aleem Mohiuddin.

    Hi
    They are even shipping the complete application for a nominal price. But the standard version is not suitable for our client requirement so they want to develop this application inhouse.
    I assume you are talking about xApps.
    How to know the implementing methods behind these enterprise services ?
    In sproxy transaction you can search service and then you can see class and method implemented behind that particular service.
    1. Webdynpro ABAP and use directly methods behind the enterprise services.
    In my opinion not recommended to bypass ES and use method behind it.
    2. Webdynpro ABAP and create client proxy class for the enterprise services.
    Not sure why you want to create proxy of ES.
    3. Webdynpro JAVA and use the enterprise services.
    4. Using visual composer modelling the application.
    You can use either Webdynpro (ABAP or Java) or VC to model your application which consume ES in backend. Both options are good, you can chose Java or ABAP flavor of dynpro based on skill available in team. VC is very effective in rapid modelling and can be used in protyping or in development of complete application.
    Regards,
    Gourav

  • Logical Destination/Service Group for Enterprise Services

    Hi,
    we have a Discovery System V3 and published the Services into the Services Registry of a seperate CE 7.1 installation. Now when I create a NetWeaver BPM process that calls an Enterprise Service from the discovery system I have to specify either a logical destination or a service group.
    I know that they are used to configure Web Services (authentication, etc.), but do I have to use them for Enterprise Services delivered by SAP? I thought they are ready-to-run???
    Thanks,
    Manfred

    Yes, we have to use either logical destination or service group. This complies with the new configuration approach of SAP ESOA which is described here: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40dabb46-dd66-2b10-1a9a-81aa620098b3.

  • Examples for Enterprise Service

    Hi All
    Anyone can you give some examples of Enterprise serivices.
    and
    Difference Between ES and Functional Module.
    Regards,
    Raj

    Hi,
    you can create "normal" web service out of function modules.
    Enterprise Services are first modelled in the ESR and then implemented in the NWDS or the ERP.
    You can browse for Enterprise Services.. https://www.sdn.sap.com/irj/sdn/explore-es
    SAP provides an environment where you can test the enterprise services...
    regards

  • How to Save Screen data using BADI for Screen Exit

    Hi All,,
    I have requirement got MIGO Transaction. Customer wants one tab besides VENDOR on header level. For that i used BADI 'MB_MIGO_BADI'. Also i created Append Structure in MKPF Table for two fields and designed sreen using SE51.
    Now i want to save this data ( with added new fields ) into Data base table MKPF. I don't know where to place code .
    Also pl confirm me that, when i copy Sample Code from
    Go to -> Sample Code -> Copy . All the code is copied from BADI. So is it necessary to keep the code for each method as it or i have to comment all the code i each methos. i am littel bit confused abt it. Please tell me in detial.
    Also tell where to put logic for saving newly added fields .
    waiting
    Thanks and Regards.
    Ulhas

    is this the one you are looking for?
    Learning Series SAP NetWeaver Process Orchestration, Business to Business Add-on 2d OFTP Adapter

  • Business Add-ins (BAdl) for external ATP system

    Hello.
    We want to check if it is possible to use following  BADI, if we assume that the R/3 is an external System?
    You connect an external ATP system by implementing the following Business Add-ins (BAdls):
    CRM ATP_EXTERN_BADI for carrying out availability check or availability information using an external system
    CRM ATP_EX_POST_BADI for posting the results in an external system
    We want to use this BADI in the Internet Sales Scenario, to build our own rule, in order to check if in the whole Company exists enough quantity, independently to the plant. The idea is the customer can receive the information about there is enough quantity to buy or not.
    Kind Regards
    Rebeca Nieto
    P.D.: We are implementing CRM 5.0
    Message was edited by: Rebeca Nieto

    Hi Martna
    please see the below link Parab's check list on ROS.Thanks parab it was a good expalnation on ROS with ros grammer syntax.
    you may use client also a different parameter in call structure.
    Re: Error installing CE Evaluation April 2007
    Web Service ID : ROS
    Description: External Web Service in EBP
    Bus Type of a Web service : List of Vendors
    Display Partner Data again in Vendor List : X
    Vendor Root Node : 50000620 (this is Vensor Root node in EBP client)
    Use Error Log : X
    Use HTTP GET to call Web Service : <blank>
    Codepage of Service: <blank>
    Techinical type of Service : <Blank>
    Logical system : SRDCLNT310 (this is ROs client from there supplier will be transfered)
    Path for symbol for service : <blank>
    Standard Call Structure Parameter setting as follows
    1. <blank> http://....ros_prescreen/main.do URL
    2. sap-client 310 fixed_value
    3. sap-username dineshp fixed_value
    4. sap-password GAJANAN fixed_value
    5. HOOK_URL <blank> Return_URL
    6. ~OkCode ADDI fixed_value
    7. ~target top fixedvalue
    8. ~caller CTLG fixed_value
    Also defined ROS external web service as default CAT attribute in the organization setting.
    BBP_MARKETP_INFO table entry in EBP client.
    Hope it helps to configure ROS in define webservices.
    regards
    Muthu

  • How to update Business place & Section Code for posted Documents

    Hi,
    I want to update business place and section code in existing documents, How to update business place and section code in the posted Documents. Is there any validation to check business place and section code while posting Document.
    Thanks in advance
    Best Regards
    Raj

    Hi Raynaju,
    Business place is an organizational unit and  it below company code level that is primarily used for reporting taxes on sales/purchases.
    For that no need to go for validation.Go to the field status and give the Business place & Section Code as required fields.
    There is a option in SAP as Document change rules.There give the company code,field name and account type
    Now you can change the fileds in posted document itself.
    May be this information is useful to you
    If you have any doubt feel free to ask
    Regards
    Aneesh
    Edited by: Aneesh kumarA on Jul 22, 2009 12:45 PM

  • How to activate the option posting period for T.code F.2E

    HI All,
    When we execute T.code F.2E the selection parameters available are
    1. company code
    2. partner company code
    3. open at key date
    4. display currency.
    As the program documentation says we can reconcilie by selecting option for posting period in F.2E
    Below is the SAP documentation on the program.
    You use the Posting period selection option to specify the time period in which the posting dates of the documents need to fall in order to be included by the program. Open items, cleared items, and payment documents are all selected. See the section Parameter Open for key date and Selection Option Posting period for further information. If you want to start the program with this date selection, the option must be selected accordingly.
    But the field for posting period is not available in selection parmeter, we are on 4.7 EE version.
    Please let me know how to activate the option for posting period in selection parameters for T.code F.2E
    Thanks in advace.
    Regards,
    Raj.

    Hi,
    I have tried to execute the program FBICRC003_DATA_REC. But program doesn't exist.
    We are on 4.7 version. I have executed program RFICRC00, but stil can't find the option posting period.
    Please confrim.
    Thanks
    Regards,
    Raj.
    Edited by: Raj Racha on Dec 27, 2010 10:58 AM

Maybe you are looking for

  • Saving forms data in a text file

    hi guys, is it possible to save current forms data in a file just before commiting it into database and flushing out?????? 2ndly is it possible to take out the print of current form without printing its background(canvas or background pics etc) coz i

  • Latest iPad Video App Problems

    Is anyone else having problems with the latest iOS7 video app? I have spent a lot of time numbering all of my TV Shows carefully (Series Number, Episode Number and Episdoe ID etc) This used to work perfectly, but now it doesn't. When I import a whole

  • Seagate Hard Disk is not detecting

    Hi Friends, I have an AMD Athlon 64 Processor with MSI motherboard of VIA K8M800-CE + VT8237R Chipset. My Previous hard disk was a 120 GB Seagate SATA which is lost now. I purchased a new 250GB seagate SATA disk and try to install Window XP 2 in it,

  • How to Create an XML document from XSQL servlet which follows a particular DTD struct

    how to Create an XML document from XSQL servlet which follows a particular DTD structure.Could anyone send me a sample code for this.

  • Silent Mode Oracle 11g r2  Installation on XP error

    Hi Installing Oracle 11g R2 on Windows XP , Getting the error while entering the following Command at Command prompt . C:Aravind\Oracle\SW\Oracle 11g\database>setup.exe -silent -responseFile C:\oracle\Software\database\db_install.rsp' Error : The Com