SOAP ADAPTER TIME OUT ISSUE

We are getting the data from sql server into PI through Soap adapter.
Till day before yesterday everything is running fine .But now it has started giving us the below error.
there were no changes done in the interface.
I am not able to see any error in the runtime workbench ,communication channel monitoring, message monitoring.
This below error is giving in sql server.
Can any PI expert explain or provide me a solution to solve this issue.
Msg 6522, Level 16, State 1, Procedure sp_PI_WS_Backflush_Production_V2, Line 0
A .NET Framework error occurred during execution of user-defined routine or aggregate "sp_PI_WS_Backflush_Production_V2":
System.Net.WebException: The operation has timed out
System.Net.WebException:
   at System.Net.HttpWebRequest.GetRequestStream()
   at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
   at PI_WS_Backflush_Production_V2.Backflush_OB_Sync_SIService.Backflush_OB_Sync_SI(BackflushRequest_DT BackflushRequest_MT)
   at PI_WS_Backflush_Production_V2.StoredProcedures.Backflush_Production_V2(String PalletNumber, String StockKeepingUnit, String ProductionPlant, String BatchNumber, DateTime ProductionDate, String Quantity, String UnitOfMeasure, String Destination, String& uState, String SAPUser, String SAPPassword)

Time out issue could be due to the long running process in your SQL server. please check the SQL server for its performance and also check the number of http worker threads on the SQL server side where the SOAP adapter makes the call and get the request back.

Similar Messages

  • SOAP ADPTER TIME OUT

    hi
    i am getting  error.
    SOAP: call failed java.net. connect exception: connection time out.
    Kindly suggest how 2 increase time out.
    Sachin

    Hi Sachin,
    It could be a connection time out issue or it could be that the web service is unavailable or in even some remote cases this error has come up due to the firewall itself.
    Source:SOAP Receiver adapter error. SOAP CALL Failed
    Regarding timeout parameter increase it through visual admin ask your basis guy to do it for you.
    Regards
    joel
    Edited by: joel trinidade on Mar 18, 2009 2:50 PM

  • How to avoid Time out issues in Datapump?

    Hi All,
    Iam loading one of our schema from stage to test server using datapump expdp and impdp.Its size is around 332GB.
    My Oracle server instance is on unix server rwlq52l1 and iam connecting to oracle from my client instance(rwxq04l1).
    iam running the expdp and impdp command from Oracle client using the below commands.
    expdp pa_venky/********@qdssih30 schemas=EVPO directory=PA_IMPORT_DUMP dumpfile=EVPO_Test.dmp CONTENT=all include=table
    impdp pa_venky/********@qdsrih30 schemas=EVPO directory=PA_IMPORT_DUMP dumpfile=EVPO_Test.dmp CONTENT=all include=table table_exists_action=replace
    Here export is completed and import is struck at below index building.After some time iam seeing below time out in log files
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX.
    Error:-
    VERSION INFORMATION:
    TNS for Linux: Version 11.1.0.7.0 - Production
    Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 13-JAN-2012 12:34:31
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS:operation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=170.217.82.86)(PORT=65069))
    The above ip address is my unix client system(rwxq04l1) ip.
    How to see oracle client system port number?
    Please suggest me how to avoid this time out issues.Seems this time out is between oracle server and client.
    Thanks,
    Venkat Vadlamudi.

    Don't run from the client ... run from the server
    or
    if running from a client use the built-in DBMS_DATAPUMP package's API.
    http://www.morganslibrary.org/reference/pkgs/dbms_datapump.html

  • Time out issues

    I have a program which will retrieve the accounting information, the result as like as T-code F.19, but when i execute the program it will caused time out issue, I have not idea how to solve it. Could you help. Here is the source code which cause time out. Thank!
       select * from bsis
          into corresponding FIELDS OF table it_bsis
          where bukrs in so_bukrs and
                budat in so_budat and
                augdt = '00000000' and
                dmbtr ne 0.
        loop at it_bsis.
          select single * from bseg
             where bukrs = it_bsis-bukrs and
                   belnr = it_bsis-belnr and
                   gjahr = it_bsis-gjahr and
                   buzei = it_bsis-buzei and
                   ebeln in so_ebeln and
                   matnr in so_matnr and
                   hkont in so_hkont.
          if sy-subrc = 0.
              MOVE-CORRESPONDING BSEG TO BSIS_TAB.
              BSIS_TAB-WAERS = it_bsis-WAERS.
              BSIS_TAB-BUDAT = it_bsis-BUDAT.
              BSIS_TAB-BLART = it_bsis-BLART.
              IF it_BSIS-SHKZG = 'H'.
                BSIS_TAB-DMBTR = 0 - BSEG-DMBTR.
                BSIS_TAB-DMBE2 = 0 - BSEG-DMBE2.
                BSIS_TAB-DMBE3 = 0 - BSEG-DMBE3.
                BSIS_TAB-WRBTR = 0 - BSEG-WRBTR.
              ENDIF.
              APPEND BSIS_TAB.
          endif.
        endloop.

    Avoid selecting BSEG within the it_bsis loop. BSIS will have huge data and when you do data selection for BSEG inside this loop things will only worsen.
    My points:
    BSIS:
    1. Avoid 'INTO CORESSPONDING FIELDS OF" during the bsis table fetch. Instead define your target structure with the required fields and select only those fields from the BSIS table.
    2. Make sure that only "Key fields" are used in your filter (where condition) for this BSIS table fetch.
    3. I presume your company code in selection (so_bukrs) is a mandatory field. If not suggest for mandatory option.
    BSEG:
    To avoid selection of BSEG inside the bsis loop do the following.
    1. Sort it_bsis by  bukrs belnr gjahr buzei.
    2. Move the contents of it_bsis into a temporary table of same structure, say it_bsis_tmp.
    3. delete adjacent duplicates from it_bsis_tmp comparing bukrs belnr gjahr buzei.
    4. Now use the below selection:
       select <fields required from bseg>
         from bseg
         into table it_bseg
         for all entries in it_bsis_tmp
    where bukrs = it_bsis_tmp-bukrs and
    belnr = it_bsis_tmp-belnr and
    gjahr = it_bsis_tmp-gjahr and
    buzei = it_bsis_tmp-buzei and
    ebeln in so_ebeln and
    matnr in so_matnr and
    hkont in so_hkont.
    if sy-subrc eq 0.
      sort it_bseg by bukrs belnr gjahr buzei.
    endif.
    5. Modify your loop construct as below:
    loop at it_bsis.
      read table it_bseg into wa_bseg with key bukrs = it_bsis-bukrs
                                                                  belnr = it_bsis-belnr
                                                                  gjahr = it_bsis-gjahr
                                                                  buzei = it_bsis-buzei
                                                                  binary search transporting <required fields>.
    if sy-subrc eq 0.
       move the required fields from wa_bseg to your BSIS_TAB.
      BSIS_TAB-WAERS = it_bsis-WAERS.
    BSIS_TAB-BUDAT = it_bsis-BUDAT.
    BSIS_TAB-BLART = it_bsis-BLART.
    IF it_BSIS-SHKZG = 'H'.
    BSIS_TAB-DMBTR = wa_BSEG-DMBTR * -1.
    BSIS_TAB-DMBE2 = wa_BSEG-DMBE2 * -1.
    BSIS_TAB-DMBE3 = wa_BSEG-DMBE3 * -1.
    BSIS_TAB-WRBTR = wa_BSEG-WRBTR * -1.
    ENDIF.
    APPEND BSIS_TAB.
    endif.
    endloop.

  • Time out issues in globe transaction

    Hi experts,
    I have one issue that is ,...A variant ran several times in the past for monthly requirements for CAT updates is now timing out no matter how short of length of time report is set to run.
    Users are using the variants  like CAT_HCN_SLP, CAT_IF, and CAT_HCN  and populating the field "Date of Usage Decision" with a range from 15 days to as short as 1 day - and continuously having time out issues.
    This report is necessary for CAT downloads for regulatory complaince and needs to be utilized by the end of the month if not sooner.
    Thanks in Advance
    Hari

    Hi John,
    I dont know what transaction are you talking about...
    But if it is TIME_OUT.... you need to check for any OSS Notes available for this problem.
    If not send a product error message to SAP.
    There cannot be anyother solution,,,, if it is time_out.
    go ahead.

  • Please Help --Export to excel time out issue

    500 Connection timed out
    Hi Friends,
    We have a query which runs about 3 minutes on web and  brings bach 54000 rows  , but when the user tries to export to excel It give timeout error as below.
    Connection timed out (-5)
    Error: -5
    Version: 6020
    Component: ICM
    Module: icxxthr_mt.c
    Line: 2467
    Server: tepas0_abc_00
    Detail: Connection to partner timed out
    Please help me out.
    Thanks a lot!

    Hi,
    Check the info here:
    https://forums.sdn.sap.com/click.jspa?searchID=5203764&messageID=959490
    There are also a lot of other threads on time out issue...
    Hope this helps...

  • Windows Handheld application Time out issues.

    How to Handle Windows Handheld Application idle time out issues.

    For your reference I found something interesting stuff:
    http://www.hjgode.de/wp/2011/07/04/wm-6-5-remote-desktop-client-disconnects-after-10-minutes/comment-page-1/
    and a blog:http://blogs.msdn.com/b/raffael/archive/2009/09/11/remote-desktop-mobile-rdp-client-disconnects-after-10-minutes-of-inactivity.aspx
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Dear Apple, Have you fixed the 'Time out' issue with airport? It now happens to me 2-3 times a day for the past 6 months. Answers please.

    Dear Apple, Have you fixed the 'Time out' issue with airport? It now happens to me 2-3 times a day for the past 6 months. Answers please.

    We're not Apple - these boards are user-to-user.
    Your profile says 10.7.3 - try applying the 10.7.5 combo update.

  • Time-out issue Always on SQL 2012 Cluster

    Currently I'm working on a large deployment of a SharePoint 2013 environment (stretched farm over 2 DC's). We are using a SQL 2012 alwayson multisubnet cluster (each DC has 1 SQL node). During the installation of SharePoint we encountered several connection
    time-out errors from the SQL environment. (Exception calling "Open" with "0" argument(s): "Connection Timeout Expired.  The timeout period elapsed during the post-login
    phase.  The connection could have timed out while waiting for server to complete the login process and respond;)
    Steps we follow for SharePoint installation are:
    Steps to configure SharePoint 2013 on an AlwaysOn Availability group:
    1>Create SharePoint databases (with the PowerShell script)
      Configure a SQL alias for a consistent SQL instance name.
     Create farm on SQL instance/replica 1 (one of the SQL nodes), creating all databases needed (service-apps & web-apps). -->
    we are connected directly to 1 SQL node and not connecting to the cluster. Installation server is in same DC as the SQL node.
       Stop SharePoint so databases remain static during migration to an AlwaysOn cluster.
    2>Move database to AlwaysOn high-availability group.
    Restore all the DBs onto SQL replica 2 (with NORECOVERY).
    Create AlwaysOn availability group, or use existing
    Join the replica 2 databases to availability group.
    Create listener.
    3>Migrate SharePoint onto AlwaysOn on cluster
    Make all SharePoint DB MultiSubnetFailover aware with PowerShell Cmdlet
    Reconfigure SQL alias for new listener
    àat this point the SharePoint farm is connecting to the SQL cluster (listener of AlwaysOn availability group of the SQL Instance), but we never reached this point so far.
     Restart SharePoint services with updated alias.
    Event errors and SQL log errors that I found:
    Date,Source,Severity,Message,Category,Event,User,Computer
    09/18/2014 07:34:59,Microsoft-Windows-FailoverClustering,Error,Cluster network name resource 'SPAG_CU8000001105' failed registration of one or more associated DNS name(s) for the following reason:<nl/>DNS bad key.<nl/>.<nl/><nl/>Ensure
    that the network adapters associated with dependent IP address resources are configured with at least one accessible DNS server.,(19),1196,NT AUTHORITY\SYSTEM,CU8000000015
    09/18/2014 07:34:59,MSSQL$SPAG,Information,The Service Broker endpoint is in disabled or stopped state.,(2),9666,,CU8000000015
    09/18/2014 07:34:52,Microsoft-Windows-FailoverClustering,Error,Cluster network name resource 'SPWMAG_CU8000002105' failed registration of one or more associated DNS name(s) for the following reason:<nl/>DNS bad key.<nl/>.<nl/><nl/>Ensure
    that the network adapters associated with dependent IP address resources are configured with at least one accessible DNS server.,(19),1196,NT AUTHORITY\SYSTEM,CU8000000015
    09/18/2014 07:34:52,MSSQL$SPWMAG,Information,The Service Broker endpoint is in disabled or stopped state.,(2),9666,,CU8000000015
    09/18/2014 07:34:47,Service Control Manager,Information,The WMI Performance Adapter service entered the running state.,(0),7036,,CU8000000015
    09/18/2014 07:32:41,Microsoft-Windows-FailoverClustering,Error,Cluster network name resource 'SPSDAG_CU8000003105' failed registration of one or more associated DNS name(s) for the following reason:<nl/>DNS bad key.<nl/>.<nl/><nl/>Ensure
    that the network adapters associated with dependent IP address resources are configured with at least one accessible DNS server.,(19),1196,NT AUTHORITY\SYSTEM,CU8000000015
    09/18/2014 07:32:41,MSSQL$SPSDAG,Information,The Service Broker endpoint is in disabled or stopped state.,(2),9666,,CU8000000015
    09/18/2014 07:31:09,PowerShell,Information,Engine state is changed from Available to Stopped. <nl/><nl/>Details: <nl/> NewEngineState=Stopped<nl/> PreviousEngineState=Available<nl/><nl/> SequenceNumber=61464<nl/><nl/> HostName=OpsMgr
    PowerShell Host<nl/> HostVersion=7.0.5000.0<nl/> HostId=32012185-8d9a-41c2-be56-91929c02f1e8<nl/> EngineVersion=4.0<nl/> RunspaceId=af176e01-185d-4574-ab9b-0fd745178d29<nl/> PipelineId=<nl/> CommandName=<nl/> CommandType=<nl/> ScriptName=<nl/> CommandPath=<nl/> CommandLine=,(4),403,,CU8000000015
    We are not allow to update/write in the DNS for the multisubnet cluster IP registration, so I think that explains the "failed registration
    " error. But can this explains our time-out errors during the SharePoint installation? For the installation we are connection directly to 1 SQL node and not to the SQL
    cluster.
    Any help is appreciated!
    Ronald Bruinsma - Independent SharePoint Consultant - iDocs.info - The Netherlands -- Please don't forget to propose this post as an answer or mark it as helpful if it did help you. Thanks.

    Don't just change the connection timeout on your SharePoint farm. This will just hide the real issue. From your error message, it seems that the DNS record for the Availability Group listener name is not being written. Talk to your AD administrators to validate
    if dynamic DNS registration is configured for the DNS servers. If it is, AD will create the DNS entry of the virtual computer object for the Availability Group listener name. The WSFC should also have Create Computer Objects permission in the AD Organizational
    Unit where your Availability Group listener name will be created.
    On a side note, make sure that you configure a separate SharePoint 2013 farm for your DR environment that will use the content databases joined in the Availability Group. For a stretched farm deployments, latency should be less than 1ms one way as
    per this article. And while you can add your admin content and config databases on the Availability Group, asynchronous commit is
    not supported.
    Edwin Sarmiento SQL Server MVP | Microsoft Certified Master
    Blog |
    Twitter | LinkedIn
    SQL Server High Availability and Disaster Recover Deep Dive Course

  • SOAP Adapter And Protocol issue

    Why and when we use SOAP adapter ? Does Xi uses processed XML messages using SOAP protocol ? I am new to Xi and confused over the issue. Can anyone please explain this to me. Thanks for your time.

    HI KM
    When you want to Send Data to XI from a Webservice and vice versa, your SOAP adapter is used.
    Check these links for reference...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    A SOAP adapter is used in order to post messages to a webservice or provide a web service for receiving messages.
    How To…Use the XI 3.0 SOAP Adapter
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    Please follow stefan's weblog
    /people/stefan.grube/blog/2006/09/21/using-the-soap-inbound-channel-of-the-integration-engine
    SOAP adapters are used for communicating with the WEB SERVICE. Web service is a software system designed to support interoperable Machine-to-Machine interaction over a network. Web services are frequently just Web APIs that can be accessed over a network, such as the Internet, and executed on a remote system hosting the requested services. In common usage Web Service refers to clients and servers that communicate using XML messages that follow the SOAP standard. So we communicate the WEB SERVICE using the SOAP adapters.
    This is an example WEB SERVICE which follows the SOAP standards
    http://www.webservicex.com/CurrencyConvertor.asmx?op=ConversionRate
    A scenario using SOAP adapter..
    RFC -> XI -> WebService - A Complete Walkthrough (Part 1) by Shabarish Vijayakumar
    RFC -> XI -> WebService - A Complete Walkthrough (Part 2) by Shabarish Vijayakumar
    SOAP , we will use for Webservices.. for sender and receiver side..also
    one example from Webbrowser to XI to receiver ...system
    another example is we can send it to end point URL..
    Webservice
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/dad1ae3908ee44a5caf57e10918be9/frameset.htm
    /people/shabarish.vijayakumar/blog/2006/03/23/rfc--xi--webservice--a-complete-walkthrough-part-1
    /people/shabarish.vijayakumar/blog/2006/03/28/rfc--xi--webservice--a-complete-walkthrough-part-2
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi - Invoke Webservices using SAPXI
    /people/siva.maranani/blog/2005/03/01/testing-xi-exposed-web-services
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2131 [original link is broken] [original link is broken] [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/336365d3-0401-0010-9884-a651295aeaa9
    Soap adapter?
    Regards
    Abhishek Agrahari

  • Session time out issue in Firefox 3.0 .

    I am using intranet application developed in .net framework 3.5. Users are authenticated via Windows Authentication in application.
    Issues in following steps;
    1) I am browsing application in one Firefox 3.0 browser. Simultaneously I am browsing some different site say google.co.uk in different instance of Firefox. Please note I am browsing google.co.uk in other Firefox browser not in different tab of same browser instance in which I am browsing my intranet application.
    2) Session time out in intranet application .
    3) I am starting new Firefox instance and try to open intranet site. I am again getting Session time out message.
    4) I closed all of Firefox browsers (2 instances)
    5) Start again a new browser and try to open intranet application.
    6) It is successfully opend.
    Now the pain is why I need to close all other Firefox browsers in case of session time out in one browser .Similar issue I was getting in IE 8 but they have feature like Open site with a new session .
    It would be nice if you can help in getting rid of this issue
    == This happened ==
    Every time Firefox opened
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E)

    Hi Rohit,
    If you want to increase Session time : increase time in web.xml in min
    <session-config>
            <session-timeout>30</session-timeout>
        </session-config>
    and after session time out if you want to re-login to webshop then
    do following settings in XCM.
    url : http://<host>:<port>/b2b/admin/xcm/init.do
    goto -> General Application settings -> b2b -> b2bconfig.
    For reloginurl.core: value : ../init.do
    note: after session expire if your application is redirecting to https:<port>:<host>/....
    Then
    set  SSLEnabled: as false
    Restart your application
    Hope this works.
    Regards,
    Devender
    Edited by: devender on Jul 12, 2010 5:01 PM

  • FTP adapter time out connection

    Hello,
    I'm trying to send a file with a receiver ftp comunication channel and I obtain the following log in the runtime workbench monitor:
    Time Stamp Status Description
    2008-05-08 18:41:51 Success Message successfully received by messaging system. Profile: XI URL: http://gestsapxid:50000/MessagingSystem/receive/AFW/XI Credential (User): XIISUSER
    2008-05-08 18:41:51 Success Using connection AFW. Trying to put the message into the receive queue.
    2008-05-08 18:41:51 Success Message successfully put into the queue.
    2008-05-08 18:41:51 Success The message was successfully retrieved from the receive queue.
    2008-05-08 18:41:51 Success The message status set to DLNG.
    2008-05-08 18:41:51 Success Delivering to channel: FILE_OCHOA_RECEIVER_FTP
    2008-05-08 18:41:51 Success File adapter receiver: processing started; QoS required: ExactlyOnce
    2008-05-08 18:41:51 Success File adapter receiver channel FILE_OCHOA_RECEIVER_FTP: start processing: party " ", service "ESMAR_OCHOA"
    2008-05-08 18:41:51 Success Connect to FTP server "NNN.NNN.NNN.NNN", directory "/ochoaesmar"
    2008-05-08 18:41:51 Success Write to FTP server "NNN.NNN.NNN.NNN", directory "/ochoaesmar",   file "ochoa20080508_0000000006166839"
    2008-05-08 18:41:51 Success Transfer: "TXT" mode, size 412 bytes, character encoding UTF-8
    2008-05-08 18:42:12 Error Attempt to process file failed with Connection timed out: connect
    2008-05-08 18:42:12 Error Delivery of the message to the application using connection AFW failed, due to: Connection timed out: connect.
    2008-05-08 18:42:12 Error Exception caught by adapter framework: Connection timed out: connect
    2008-05-08 18:42:12 Success The asynchronous message was successfully scheduled to be delivered at Thu May 08 18:47:12 CEST 2008.
    2008-05-08 18:42:12 Success The message status set to WAIT.
    I have tested to put a file (with the same FTP parameters) from the promt of the xi server operating system and all works fine. can someone help me to find why the time out connection happens?.
    Thank you very much
    Alberto.

    I have tested in the xi server: run->cmd->ping nnn.nnn.nnn.nnn and I don't reach the ftp server but if I test in the xi server: run->cmd->ftp nnn.nnn.nnn.nnn and introduce the user and password then I log in without problem and I can put the file in the remote directory.
    If you see in the log above:
    2008-05-08 18:41:51 Success Connect to FTP server "NNN.NNN.NNN.NNN", directory "/ochoaesmar"
    2008-05-08 18:41:51 Success Write to FTP server "NNN.NNN.NNN.NNN", directory "/ochoaesmar", file "ochoa20080508_0000000006166839"
    2008-05-08 18:41:51 Success Transfer: "TXT" mode, size 412 bytes, character encoding UTF-8
    2008-05-08 18:42:12 Error Attempt to process file failed with Connection timed out: connect
    the first 3 steps are ok. If the ftp was down or if credentials was wrong other error will be generated.
    Thank you very much.
    Alberto

  • Maximum number of pages in Chapter? iBA crash and time out issue.

    Hello,
    I'm trying to put together a book with roughly 17,000 pages where each page is a single full page image displayed inline and is between 2 and 3 kb.. Preferably these would all be in a single chapter, but I run in to issues with this at around 2,000 pages. iBA will crash and when I try to reopen the file it will either time out or take several minutes.
    Dividing my book in to chapters with around 250 pages each keeps iBA from crashing, but unfortunately the chapter structure doesn't make sense for the book.
    To try to help iBA to run smoothly I've right clicked on the application icon, selected "get info" and then checked the box next to "run at low resolution". I've also disabled the display of thumbnail previews of pages in the app.
    Is there anything else I can do to make iBA run faster? (Can I allocate more memory to it somehow?)
    Is there a way to combine chapters?
    Also, if anyone has ideas of ways to structure my pages that might use less memory than displaying my images inline, I'd be open to hearing that too.
    Any help or suggestions are very much appreciated.
    Thanks

    A finished, exported iBooks file to be uploaded to the store...is limited to 2 gigabyte file size..whatever your content.
    If your computer is running slow, you need to close all applications not needed.
    Also when creating a large book file, its advisable to create chapters individually...giving a more manageable work file.
    Create a master template  and open..save the book as a master copy and save it. Open a copy of..the master copy snd name it ..say Chapter one...and repeat as needed. when done, copy the chapters from 2 onwards into the chapter one book, if needed, drag and drop the chapters up or down the tree to get the right order.

  • Soap adapter: string transformations issues

    I have a difficult issue:
    I want to send a SOAP message to a thirdparty environment ,this environment requieres a special format of the message XML to String; iu2019ll put a sample:
    < SOAP:Body >
    < ns0:application xmlns:ns0=u201Dhttp://xxxxxx/yyyyyyy.com/zzzzu201D >
    < in0>
    < inputMessage >
    < request>name </request >
    < versionMsg>x.0
    u2026u2026u2026u2026..
    < /parameters >
    < /inputMessage>
    This is the meesage that i process with PI. Then when it arrives to the other environment should be as this one, i'll write wrong the chars because the web change it in code...:
    u201C< SOAP:Body >
    < ns0:application xmlns:ns0=u201Dhttp://xxxxxx/yyyyyyy.com/zzzzu201D>
    < in0>
    & lt inputMessage& gt
    & lt request & gt name& lt /request& gt
    & lt versionMsg& gt x.0& lt /versionMsg& gt
    etc etc etcu2026u2026.u201D
    I have changed it in the mapping, it's something easy to map a source structure ot a target whit a string field and mark Return as XML in the source field. that's ok.
    But now is the problem: The SOAP adapter changes all the '&' in differents chars as:&|#|34 (i separate whit |in this sample) or the tag > or < in other ascii chars.
    Some one knows what can i do? i have tried too whit the last post, the module config for SOAP adapter: strictXML2PlainBean but it doesn't work.
    Any help will be appreciated.
    Best regards and thanks in advance.
    Thanks in advance and best regards.

    No, the problem is that the SOAP adapter does the escaping of these chars, so i can't control it. I am trying to deploy a EAR in the server, but i guess that an easiest way should exist for this case.
    The main problem is that the thirdparty system has an filter and this kind of chars are not allowed, this system only understand & lt and & gt in the string field.
    Thanks anyway
    Edited by: Cantabria on Mar 18, 2010 3:07 PM

  • Time out issue for many users

    Hello all
    many users reported us TIMEOUT issue in our system
    we wanted to extract the report how many users were faced the same issue and why they have received  400 Session time out error.
    what parameter needs to be adjusted in SRM to avoid the same problem
    any help is appreciated and piece of information on this help .
    Muthu

    Hi Muthuraman,
    The error you are experiencing is caused by the icm/conn_timeout parameter being exceeded. You should increase this parameter to solve your issue. Also there are a number of other parameters that will cause the webdispatcher and ICM to close a connection.
    Please refer to SAP Note [824554|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_cst/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d383234353534%7d] for additional information in webdispatcher and ICM timeouts.
    Michael

Maybe you are looking for

  • BW7.3 SOURCE_PACKAGE and DATA_PACKAGE are incompatible in the Start Routine

    Hi Gurus, a face a strange behavior with BW7.3 and the Inventory Cube 0IC_C03: the standard scenario works well when I activate the cube and its transformations ..bx, bf and um. Then I have modified the InfoCube 0IC_C03 and added some field like 0cus

  • Adobe Bridge and Elements 10

    Way back with Elements 4 I also received a copy of Bridge. Having lost my hard drive, and having loaded Elements 4 as a download, I lost Bridge. Now with Elements 10, I find no copy of Bridge. I also can't find it as a download. Is it only available

  • Elements 8 Organiser will not load Photoshop as External Editor

    For some years I've succesfully used Photoshop CS2 with Elements (various versions) Organiser as my photo file manager.  The Organiser allowed me to select Photoshop as the external editor and subsequently accepted/managed the edited photos from Phot

  • How can I copy and paste styles in pages on my iPad?

    I can not see a Paste Styles command to paste a style to words or paragraphs. Doesnt matter if it's a built in style from a built in template or any custom formatting. Apple help file has clear instructions that do not work.

  • Getting Deployment error in Oracle 10g server

    Hii while deploying EAR in Oracle Enterprise Manager 10g. I am getting following error message and an resoluation message,which i could not able to proceed further. Deployment Failed : Another operation in progress which prevents your operation from