Client Proxies

Hi all,
Here i am working on client proxies but when iam executing report in r3 system error saying that system is not configured to integration Engine.
Any suggestions,
krishna

Make sure your connection from XI to R3 is stable and working -
Ref: To est. connection - /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
Further ref:
Client Proxy (Sender Proxy)- /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

Similar Messages

  • Client proxies no longer work after R/3 upgrade to ECC5.0

    Hi,
    After the above upgrade where WAS of the R/3 systems went from 620 to 640 client side proxies no longer work.
    To be able to use client proxies in 620 we had to use a plugin. But in 640 this should be native functionality, so no more plugin for this.
    The error seems to lie in the connection from R/3 to XI. If I test the RFC connection that is defined in SXMB_ADM on R/3 I get the following error:
    HTTPIO_PLG_ICM_CONNECT_FAILED-Fehlermeldung beim S
    Message no. SR000
    The IFR address is correctly defined.
    The SPROX_CHECK_HTTP_COMMUNICATION test in sproxy-connection tests gives the following detailed info:
    When calling the method
    CL_HTTP_SERVER=>GET_EXTENSION_INFO
    the exception
    NO_HTTP_PING_SERVICE_FOUND
    was triggered.
    Does anyobe know how his can be solved?
    Thanks
    Tom

    HI,
    I think some problem with http destinations
    Is your R3 system is configured as a Application system ?
    Go to SXMB_ADM->Integration Engine Configuration->Check role of business system etc. and corresponding Integrtaion server
    Check this guide page no-27
    https://websmp102.sap-ag.de/~sapidb/011000358700001697502004E.PDF
    Regards,
    Moorthy

  • ABAP Client proxies: structure/internal table error

    Hi All,
    We are getting following error when we check for errors in ABAP program for ABAP client proxies:
    "RECORDS" is not an internal table - the "OCCURS n" specification is missing.
    Let me explain the scenario and proxy objects its generated and proxy objects we are refering in program:
    Its syncrounous client proxy scenario.
    In XI:
    We have DT_Req, MT_Req, DT_Res, MT_Res and MI_Sync_OB (O/p Message:  MT_Req, I/P message:MT_Res)
    Proxy Objects generated:
    ZCO_MI_SYNC_OB
    ZMT_REQ
    ZDT_REQ
    ZDT_REQ_RECORDS
    ZMT_RES
    ZDT_RES
    ZDT_RES_RECORDS
    ZDT_RES_RECORDS_TAB
    ABAP Code:
    REPORT  ZTEST_DELETE.
    DATA:
    lo_history         TYPE REF TO ZCO_MI_SYNC_OB,
    lo_sys_exception   TYPE REF TO cx_ai_system_fault,
    Structures to set and get message content
    lv_history_req_mt TYPE ZMT_REQ OCCURS 0 WITH HEADER LINE,
    lv_history_res_mt TYPE ZMT_RES,
    lv_history_req_rec TYPE ZDT_REQ_RECORDS,
    lv_history_res_rec TYPE ZDT_RES_RECORDS.
    lv_history_req_rec-VLAUE = SY-DATUM.
    APPEND lv_history_req_rec TO lv_history_req_mt-MT_REQ-RECORDS.
    CREATE OBJECT lo_history.
    TRY.
    Call outbound Proxy
        CALL METHOD lo_history->execute_synchronous     
          EXPORTING
            output = lv_history_req_mt
          IMPORTING
            input  = lv_history_res_mt.
      Error handling
      CATCH cx_ai_system_fault INTO lo_sys_exception.
        SKIP 2.
        WRITE:/ lo_sys_exception->errortext.
        RETURN.
    ENDTRY.
    When we execute this program we get following error:
    "REC" is not an internal table - the "OCCURS n" specification is missing.     
    Can anybody please fogure out the why we getting this error??
    We had the similar kind of scenario working. Only one difference in the proxy objects generated:
    In working scenario we had the _TAB object genearated for the Req
    In our current scenario _TAB proxy is generated for the Res.
    Thanx
    Navin

    Hi Moorthy,
    Everything you said is done. Still get the same error.
    Hi Mario,
    I tried to define with your example a, still I have problem.
    I think I kind of figure out the reason.
    As I mentioned in the first post (question), proxy object  "ZDT_RES_RECORDS_TAB" has created for the object  data type DT_RES.  The fields in the data type "DT_RES" are already existing in the SAP.
    The fields in the data type DT_REQ are not in the SAP, and in the proxy objects its not generated any kind of TABLE. I think this is the reason we are getting error ""RECORDS" is not an internal table - the "OCCURS n" specification is missing."  either we define
    lv_history_req_mt TYPE ZMT_REQ OCCURS 0 WITH HEADER LINE, OR
    lv_history_req_mt TYPE ZMT_REQ,
    Does it make sense what I was explaining above???
    Any lead on this would be great.
    Thanx
    Navin

  • ABAP Client proxies: extract data from the response and update Z table

    Hi All,
    I have following ABAP code for client proxies:
    We have DT_Req, MT_Req, DT_Res, MT_Res and MI_Sync_OB (O/p Message: MT_Req, I/P message:MT_Res)
    Proxy Objects generated:
    ZCO_MI_SYNC_OB
    ZMT_REQ
    ZDT_REQ
    ZDT_REQ_RECORDS
    ZDT_REQ_RECORDS_TAB
    ZMT_RES
    ZDT_RES
    ZDT_RES_RECORDS
    ZDT_RES_RECORDS_TAB
    ABAP Code:
    REPORT ZTEST_DELETE.
    DATA:
    lo_history TYPE REF TO ZCO_MI_SYNC_OB,
    lo_sys_exception TYPE REF TO cx_ai_system_fault,
    Structures to set and get message content
    lv_history_req_mt TYPE ZMT_REQ OCCURS 0 WITH HEADER LINE,
    lv_history_res_mt TYPE ZMT_RES,
    lv_history_req_rec TYPE ZDT_REQ_RECORDS,
    lv_history_res_rec TYPE ZDT_RES_RECORDS.
    lv_history_req_rec-VLAUE = SY-DATUM.
    APPEND lv_history_req_rec TO lv_history_req_mt-MT_REQ-RECORDS.
    CREATE OBJECT lo_history.
    TRY.
    Call outbound Proxy
    CALL METHOD lo_history->execute_synchronous
    EXPORTING
    output = lv_history_req_mt
    IMPORTING
    <b>input = lv_history_res_mt.</b>
    Error handling
    CATCH cx_ai_system_fault INTO lo_sys_exception.
    SKIP 2.
    WRITE:/ lo_sys_exception->errortext.
    RETURN.
    ENDTRY.
    <b>Now I have my response data in the internable "lv_history_res_mt-MT_REQ-RECORDS" which is deep structure.
    How do I extract data records (multiple) from the above internal table and update to Z table??</b>
    Thanx
    Navin

    Hi Navin,
    go to SPROXY, flag structure and search for your table definition. You will find a table definition a field "line" or something, where you find the right structure. Create a new structure with DATA: myStructure type tableStructure. Define a second structure type with your Ztable. Next Loop at internal table into the structure. Inside that loop fill the Zstructure. Insert the Zstrucure (Press F1 on insert to have the syntax you need)
    loop at internalTable into intStructure.
    zstructure-myField = intStructure-myField.
    INSERT ztable FROM zstructure.
    endloop.
    Regards,
    Udo

  • Building client proxies for web services with SOAP attachemtns

    Hi all.
    I'm currently building a series of web services that take SOAP attachments as
    input, but I am unable to generate the java proxies for testing the services via
    WebLogic Workshop 8.1. When I attempt to build the proxy, I get the following
    error:
    Warning: Failed to generate client proxy from WSDL definition for this service.
    Suggestion: Please verify the <types> section of the WSDL.
    Is there something I need to alter to get this to work, or does workshop not support
    client proxies for web services with DataHandler parameters?
    Thanks.
    -Brian

    Thanks for the help. This is my first web service with SOAP attachments, so it
    may have been a long time till I realized that.
    -Brian
    "Michael Wooten" <[email protected]> wrote:
    >
    Thanks Brian,
    The problem is that you are trying to use the "document" soap-style :-)
    If you change this to "rpc", you'll should be able to successfully generate
    the
    client proxy jar. The soap-style property, is at the bottom of the "protocol"
    property sheet section, for the JWS.
    Regards,
    Mike Wooten
    "Brian McLoughlin" <[email protected]> wrote:
    Sure, sorry about that. Attached is the wsdl for a sample web service
    I created
    just to test the proxy generation.
    "Michael Wooten" <[email protected]> wrote:
    Hi Brian,
    Would it be possible for you to post the WSDL, so we can see what might
    be causing
    the problem?
    Regards,
    Mike Wooten
    "Brian McLoughlin" <[email protected]> wrote:
    Hi all.
    I'm currently building a series of web services that take SOAP attachments
    as
    input, but I am unable to generate the java proxies for testing theservices
    via
    WebLogic Workshop 8.1. When I attempt to build the proxy, I get the
    following
    error:
    Warning: Failed to generate client proxy from WSDL definition for
    this
    service.
    Suggestion: Please verify the <types> section of the WSDL.
    Is there something I need to alter to get this to work, or does workshop
    not support
    client proxies for web services with DataHandler parameters?
    Thanks.
    -Brian

  • ABAP server and client proxies

    Dear All,
                what is the diff between  ABAP server and client proxies?
    Regards,
    Ashish goyal

    Hi Ashish,
    Client proxy means proxy in Sender System, and Server Proxy means proxy in Receiver System.
    Have a look to the following links:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/02/265c3cf311070ae10000000a114084/frameset.htm">ABAP Proxy Runtime</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c9/74246d8ad2447799063d39013e9a11/frameset.htm">Programming with Client and Server Proxies</a>
    ABAP Proxies in XI(Client Proxy)
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    ABAP Server Proxies
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies
    Hope this help
    Francesco

  • Java client proxies

    Hi all,
         Can any body tell what are various steps we need to fallow for java client proxies?  I have created T.S. web as java, B.S. web as java (for java proxies)
    I am taking help from https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5ae4b2096f9
    /people/rashmi.ramalingam2/blog/2005/06/25/an-illustration-of-java-server-proxy
    But I am confusing the steps in the Netweaver Development studio. Please explain Step by Step and purpose of the step.
    Your help is not forgettable.

    for your reference, some steps in NDS
    1.     J2EE Perspective -> Package Explorer
    2.     Project -> J2EE -> EJB module Project
    3.     In Package Explorer, Right Click and goto Properties -> Java Build Path -> Add external Libraries and add the JAR files
    4.     Right click EJB module, import the proxy generated
    5.     Rename Impl file -> Java
    6.     Write the code
    7.     J2EE Explorer -> Expand EJB candidates -> PortTypeBean right click -> add to EJB JAR. Xml
    8.     If Error try going to package explorer and close and opening again
    9.     Go back to J2EE Explorer , right click and build EJB archive
    10.     New EA Project
    11.     Edit application J2EE engine source code
    12.     Build application archive
    13.     Package explorer -> copy EAR file and use

  • About Server & Client Proxies

    <b>Can somebody Please tell me the difference between client & server proxies? Where do we create client & Server proxies in Java & ABAP?
    All the XI People please give me reply.</b>

    Server proxys are generated from inbound interfaces. They get triggerd by a incoming message und the ABAP code, put by yourself inside, will be executed.
    Client proxys are generated from outbound interfaces. They can be triggered by an ABAP programm of R/3 system. No ABAP code can be put inside. A message will be send to XI.
    ABAP Proxy
    http://help.sap.com/saphelp_nw04s/helpdata/en/ba/f21a403233dd5fe10000000a155106/frameset.htm
    /people/sravya.talanki2/blog/2006/07/28/smarter-approach-for-coding-abap-proxies
    /people/michal.krawczyk2/blog/2006/04/19/xi-rfc-or-abap-proxy-abap-proxies-with-attachments
    Java Proxy
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5ae4b2096f9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f272165e-0401-0010-b4a1-e7eb8903501d
    [Reward if helpful]
    Regards,
    Prateek

  • Doubt in Client Proxies Report Pragram

    Hi all,
    Now i came upto Generation & Activation of the ABAP Proxies
    Now its the time to write the Report to initiate the proxy.
    1) In my ABAP data Dictionary(SE11) i have the Standard table and from there i have to access the data & Push it to XI using Proxies
    2) Now My doubt is In the Report where i have to provide the details of the Standard table & it's Field names to pull the data into the Report.
    Regards
    Suman

    HI there,
    i am providing asample code..
    hope it willl help u
    tables: Mara.
    data: begin of itab_mara occurs 0,
    matnr like mara-matnr
    end of Itab_mara.
    Slect matnr from MARA into corrosponding fields of itab_mara.
    CALL METHOD ZCO_MI_POS_MOBILE_SERIAL_NUMBE =>execute_asynchronous
    exporting
    output = itab_mara.
    Just a simple code do the modifications according to u r structure..
    Reagrds
    Rao

  • Soap 1.2 in ABAP client proxies

    Hi!
    Anyone knows when we will have SOAP 1.2 support in the standalone ABAP proxies. Currently in NW7.0 only SOAP 1.1 seems to be supported (right?).
    Information on MTOM, SOAP w. attachments support for standalone ABAP prixies would also be useful...
    Regards,
    Christian

    Hi Andreas,
    SOAP 1.2 is not supported, neither in WebAS 6.20 nor in 6.40 as far as I know support is not planed even for next magor release...
    The only what I can propose you is to create an OSS and check what shall SAP answer you,
    or to downport your applicaiton.
    Regards, Angel

  • Problems with 'COMMIT MISSING' - when using ABAP client proxies

    Hi
       We have a requirement - wherein while SAP std inbound IDOCs are being processed in the R/3 system- we need to monitor the processing of idocs - by sending relevant information out of the R3 system to a monitoring dashboard - outside of the R/3 environment.
    Inorder to accomplish the above, we generated a async. client proxy class in the R3 system by pointing to a XI o/b message interface and that interface mapped on to DB calls - from which the dashboard was bringing up status of idocs being processed in R3
    We made a call to the async class method from within the idoc user exit that lies  within IDOC_INPUT_ORDERS FM . The user exit chosen to make the call was - after the salesorder processing for the inbound idoc was done in the above FM. We have not given any COMMIT WORK statement after the async client proxy method call within the user exit - since the call was being made from within user exit and we did not want to upset SAP std processing flow.
    Now, when the inbound idoc processing is being done by using SAP std program rbdapp01 using parallel processing option of packets, the outbound message generated is in 'COMMIT MISSING' status - whereas - when rbdapp01 is executed in normal mode - the proxy message is sent out ok out of the R3 integration engine.
    The program rbdapp01 has a COMMIT WORK statement after each IDOC packet is processed - but still with the parallel processing option - the proxy message stays in th R3 box - with the status 'COMMIT MISSING'
    Any thoughts/ pointers on this is appreciated....

    Hi Karthik,
    I don't think you can get this to work using an asynchronous proxy - except perhaps by spawning an update task to send the data.
    Perhaps you can re-cast this as a synchronous interface?
    Regards,
    Thorsten

  • Transports in XI and Client Proxies

    Hi All,
    I had to transport XI Contents from Dev to Qua.
    I had 2 different SLD's.
    so what do i need to transport in SLD? CR,LD,NR or All
    I had created Proxies in $TMP package in sender system.
    How do i transport them?
    Thanks in Advance,
    Sriram

    Hi,
    I had created Proxies in $TMP package in sender system.
    How do i transport them?
    U have to create a transport request number and u have to save ur changes into the request number then it can be transported.
    Check some links on transporting using File and CMS,
    Transporting XI from DEV to QA
    Transporting XI from DEV to QA
    using CMS system. in XI
    1. /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    2. /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    3. /people/sap.india5/blog/2005/11/28/xi-software-logistics-solution-iii-cms
    4. /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi --> Overview of Transition from Dev to QA in XI
    5. /people/sravya.talanki2/blog/2005/12/20/inconsistencies-while-transporting-rfc-objects-from-dev-to-qa-150-sp12
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e76e511-0d01-0010-5c9d-9f768d644808
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/content.htm --> Transporting XI Objects
    http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content .htm --> Configuring Groups and Transport Targets
    Look into this blog for how to export / improt IR and ID objects,
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Please go through these links which actualy show you how to configure CMS and also gives you all information regarding it.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/43f5d790-0201-0010-2984-ff72d822b109
    http://help.sap.com/saphelp_nw04/helpdata/en/de/a4214174abef23e10000000a155106/content.htm
    /people/daniel.wirbser/blog/2005/10/27/tcsfilecreateexception--error-while-assembly-of-software-components-in-nwdi
    http://help.sap.com/saphelp_nw04/helpdata/en/f6/719a2172f74b67b150612a7cd3b7df/content.htm
    http://www.sap-hefte.de/download/dateien/964/074_lesesprobe.pdf
    Here are some blogs.
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    /people/sap.india5/blog/2005/11/03/xi-software-logistics-1-sld-preparation
    Re: Moving project from Dev to QA
    Error while exporting/transporting the Business system from Dev to Quality
    Transporting the scenario frm Dev Server to PRD Server
    transporting data from Dev to quality  using CMS
    Transporting IR,ID Objects using File System
    http://help.sap.com/saphelp_nw2004s/helpdata/en/93/a3a74046033913e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a8/5e56006c17e748a68bb3843ed5aab8/frameset.htm
    How to handle SLD for Tranporting Dev to Quality ser
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0fa2c490-0201-0010-61b4-df12869c4753
    Regards,
    Phani
    Reward points if Helpful

  • Error or Trace of SOA ABAP Client Prox

    Hi all,
    i have successfully created ABAP Client Proxy for a WebService and configured the port using LPCONFIG. There i can configure the trace level as well - but now my questeion: where do i find these traces, errors ?
    Thanks for any help.
    Regards,
    André

    Hi everybody,
    Now have found out on my own that these traces goe's to the files like dev_rfc on the SAP filesystem which can be viewed with  AL11. Is there any other tool to have a more user friendly view on these traces as you can not be sure in which of the 10 ore more dev_rfc trace files your errors are in.
    Thanks for any help.
    André

  • What is Inbound Proxy and Outbound Proxies  - Client and Serv please help ?

    Hi Friends ,
                <b>  1.  What is exact meaning for Inbound Proxies and OutBound Proiex ?
                    2.  Is outbound proxies means sending message to IS ?
                     3.  Is Inbound proxies means receiving message  from IS ?
                   4.  Where exactly we need proxy ?
                   5. What is Sever and client Proxies ?
                     Is server  ( here servre means XI Server ? )means Inbound .
                 Then normal meaning of Inbound is to  from server right ?  Then  hwo it will bwecome as inbound ?</b>
               I have gone through many blogs but still i am not clear .Please anyboy can expalin me ?
    Regards .,
    Shyam

    Hi Shyam
    1. What is exact meaning for Inbound Proxies and OutBound Proiex ?
    2. Is outbound proxies means sending message to IS ?
    3. Is Inbound proxies means receiving message from IS ?
    Ans ::
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21dfa9929c9
    How to integrate or Establish connection between SAP XI and BIW?
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5f12a03d-0401-0010-d9a7-a55552cbe9da
    4. Where exactly we need proxy ?
    5. What is Sever and client Proxies ?
    Ans ::
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies - Activate Proxy
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies - ABAP Server Proxy
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy - ABAP Client Proxy
    Proxies: are interfaces which will get executed in the application system.They can be created only in the system from message interfaces using the proxy generation functions.
    The biggest advantage of the proxy is that it always by passes the Adapter Engine and will directly interact with the application system and Integration engine - so it will and should give us a better performance.
    The literal definition of a proxy is an object / process authorized to act for another; an agent or a substitute. In simpler terms, proxies in the XI context are objects used to encapsulate the creation (from a sender system) or parsing of XML (at a receiver system) as well as the communication with the relevant runtime components required to send or receive those messages. The Proxy Runtime controls these objects / processes, and can itself be controlled by the applications it communicates with.
    The Proxy currently has the following components available:
    1. ABAP Proxy – Communication using XI or Web Services
    2. Java Proxy– Communication using XI (J2EE)
    JAVA Proxies:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5ae4b2096f9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f272165e-0401-0010-b4a1-e7eb8903501d
    ABAP Proxies:
    /people/sap.user72/blog/2005/12/13/integration-builders-through-proxy-server-part--2
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    /people/arulraja.ma/blog/2006/08/18/xi-reliable-messaging-150-eoio-in-abap-proxies
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    /people/michal.krawczyk2/blog/2006/04/19/xi-rfc-or-abap-proxy-abap-proxies-with-attachments
    /people/sukumar.natarajan/blog/2007/01/07/how-to-raise-alerts-from-abap-proxy
    /people/sravya.talanki2/blog/2006/07/28/smarter-approach-for-coding-abap-proxies
    Just refer these links u will get the answer of ur all 5 Question
    <b>Pls reward if useful</b>

  • Client / server proxies

    Hello Friends,
    I have a confusion, thought to disucss with you guys
    So the problem is as follows that, there is a WSDL I create the client proxies , though I dont know why to create the proxies, and what is the difference between client and server proxies. Any way now I want to call the web services via these proxies, ( can any one pls let me know how to do that ), and then I saw in docu that, one requires the PROSY ENVIRONMENT to run the proxies, and I have to set the virtual ports and etc... so my question is if there is web services somewhere on net, then every  customer has to set this proxy environment / generate the proxies ? etc...
    Hope I am clear enought, else pls ask / correct me...
    Many thanks in advance..
    Shah H.

    check this weblog for clarification
    /people/thomas.jung3/blog/2004/11/17/bsp-a-developers-journal-part-xiv--consuming-webservices-with-abap
    Regards
    Raja

Maybe you are looking for

  • Will using an external hard drive cause me to have duplicate files on my itunes library?

    I put all my ITUNES MEDIA folder on my external hard drive from my older computer.. I recently bought a new computer and installed Itunes. I synced some of my Itunes purchased songs back on by using my Ipod.. however the songs I ripped from my cds ar

  • How to convert the TEXT file into an XML using plsql code

    Hi all , I need to convert an TEXT file into an XML file how can i do it Below is my sample TEXT file . TDETL00000000020000000000000120131021115854ST2225SKU77598059          0023-000000010000 I want the above to be converted into the below format <?x

  • Errors loading .m4v into iBook author?

    Anyone getting errors loading .m4v into iBook author? I have been supplied .m4v files to insert into my document and an error pops up ...

  • Unable to start my Adobe Premiere Element 10

    I have been using my Adobe Premiere Element 10 often without any problem. I have Windows 7. I recently tried to open a project I played with the day before and when I click on this project it loads and then close without any message. When I try to op

  • PowerPoint Launch Failure - Shared Library

    ------------------------- Application launch Failure The application "PowerPoint" could not be launched because of a shared library error: "4<Microsoft PowerPoint><OpenGLLibrary><CFMPriv_AGL>" - That is the message I get as soon as I double click on