Uniqueness of conversation IDs(?)

In WebLogic81sp5/WLI8.5 I use a service control to call a conversational Web service from a JPD process. The service control exposes two methods, clientRequest (conversation state: start) and a callback method, clientResponse (conversation state: finish).
When I call the clientRequest method (in a Control send node), the service control generates a unique conversation id of the form:
[<processInstanceID>]myserviceControl:<AUniquePart>
Now, the web service may not reply, so I put a Timeout path on my Control send/Control receive structure, configured to retry once. In case the response does not arrive within, say, 1 minute, the request is resent, generating a new conversation ID for the service control:
[<processInstanceID>]myserviceControl:<AnotherUniquePart>
So far, so good. But now the fun starts: Assume that the first response was only delayed, not lost. After 1.5 minutes it arrives, bearing the original conversation ID in a <CallbackHeader> element in the SOAP header. Because the service control is now tied to the new conversation ID, I would expect the Workshop framework to ignore the incoming (delayed) response and just return a SOAPFault saying that the conversation ID is unknown.
However, the process happily accepts the old message, even if the conversation ID is outdated?
In fact, when the second response arrives, IT triggers a SOAPFault stating that the conversation is unknown.
Workshops seems to discard the unique part of the service control conversation ID, given that the error message reads: "An attempt was made to send a request to conversation id <processInstanceID>. This is not a valid conversation id." So for conversation control, Workshop only uses the process instance ID?
I tested this theory by having the web service return with a modified conversation ID in the header, like:
[<processInstanceID>]myserviceControl:BLAHBLAHBLAH
Indeed, the process happily accepts this response and continues?!
Is this how the Workshop framework is supposed to work, or is there some switch that I am not aware of? In other words, how can I make sure that Workshop does not loose the uniqueness of a service control ID and just accepts any incoming message to the process instance in question?
(This becomes a serious issue if the control is used more than once in a process. Assume requestA will generate responseA ('SUCCESS'), and requestB will generate responseB ('FAILURE'). If the Control receive node waiting for responseA times out, it causes requestA to be resent. Now, if the first responseA is received, it will appear to the process as belonging to the second requestA. This is not critical; however, when the process now sends off requestB, it receives (and accepts) the second responseA as belonging to requestB! Since responseA and responseB differ (SUCCESS/FAILURE), the process now thinks that requestB went fine even though it actually failed.)
If you are still with me so far, I thank you for reading and apologize for the lengthy post...
/ Anders

Hi Anders
Hi
I tested your scenario and it seems to work as designed.
It is true that the process Instance Id is what JPD considers and not the whole of conversationId.
So which ever response "comes first" will be consumed and other will get dropped.This is what we see now.
Here are the convId and the results for 2 concurrent requests.
JPD ---> Service control ---> JWS
Req 1:
<conversationID>[1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8d</conversationID>
Retry1:
<conversationID>[1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f87</conversationID>
Response1:
Actual response with convId [1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8d
Retry1 Response:
Failure with conv Id [1152668451563]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f87
com.bea.wlw.runtime.core.bean.ConversationNotFoundException: An attempt was made to send a request to conversation id 1152668451563. This is not a valid conversation id. The most common cause of this exception is an attempt to send a request to a conversation that has already been
Request2:
<conversationID>[1152668454958]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8a</conversationID>
Retry of request2:
<conversationID>[1152667953547]ws:192.168.1.100-1be3a66.10c6056ed9d.-7fa5</conversationID>
Response1:
Actual response with convId [1152668454958]ws:192.168.1.100-1be3a66.10c6056ed9d.-7f8a
Retry1 Response:
Failure with conv Id [1152667953547]ws:192.168.1.100-1be3a66.10c6056ed9d.-7fa5
com.bea.wlw.runtime.core.bean.ConversationNotFoundException: An attempt was made to send a request to conversation id 1152668451563. This is not a valid conversation id. The most common cause of this exception is an attempt to send a request to a conversation that has already been
MULTIPLE CONTROL INSTANCES:
In this case I believe we can use control factory to create multiple control instances and so they get unique control instance id also and so the responses are consumed correctly not across the requests as you mentioned here.
You can define a factory like
* @common:control
private test.WsControlFactory wsFac;
and then create the instances by
public void wsSayHello1() throws Exception
WsControl ws1 = wsFac.create();
WsControl ws2 = wsFac.create();
ws1.sayHello(timeout);
ws2.sayHello(timeout);
I have tested this scenario also.
the conv id looks like
control instance1 (ws1)
<conversationID>[1152668886228]wsFac:0:192.168.1.100-1be3a66.10c6056ed9d.-7f79</conversationID>
control instance2 (ws2)
<conversationID>[1152668886228]wsFac:1:192.168.1.100-1be3a66.10c6056ed9d.-7f77</conversationID>
control instance1 retry
<conversationID>[1152668886228]wsFac:2:192.168.1.100-1be3a66.10c6056ed9d.-7f6f</conversationID>
control instance2 retry
<conversationID>[1152668886228]wsFac:3:192.168.1.100-1be3a66.10c6056ed9d.-7f6d</conversationID>
Please let me know if you have any questions or you see a different behavior.
Thanks
Vimala

Similar Messages

  • Unique Plugin CSS IDs

    I'm trying to style the output from a number of the plugins, the email subscription and the search bar to be specific for now, but I can't find a good way to identify them. The only thing output is "ctl00_bannerslot_ctl02_SubscribePanel", but that changes depending on which page you are viewing. How do I globally and uniquely identify plugin output? I don't want to edit the .aspx files because then I have to remake those changes every time that I upgrade a patch level.

    Unfortunately you/we are stuck between a rock and a hard place with this. In some places the HTML elements have classes assigned to them (eg npbody) and these won't change based on the page.
    At the end of the day we are stuck either directly modifying a aspx/ascx page to embed a class we can re-use or you may need to get into some fancy css structure (nested paths). I'm not a designer so I'm not sure about this.
    I'm not sure if modifying a master page would help you make style changes and these remain  after upgrading. For example if you wrap a dot net control with a div tag and a class in a master page .. and then in the stylesheet you use the path from that class to define a specific style in the control you need (eg myclass.table.tr.td).

  • Unique Area FC IDs for HBAs

    When HBA port and the storage port are connected to the same switch. Some HBA ports require a different area ID than storage ports when they are both connected to the same switch. For example, if the storage port FC ID is 0x6f7704, the area for this port is 77. In this case, the HBA port's area can be anything other than 77. The HBA port's FC ID must be manually configured to
    be different from the storage port's FC ID.
    Can someone elaborate on which specific/host storage vendors referred here. Any insight on this behavior would be helpful.
    Reference: MDS CLI Guide (Text Part Number: OL-16484-02) - Page 18-17

    As I recall, this is a Qlogic (and their re branded HBAs) issue. Emulex HBAs do not have this issue. I think it stemmed from the early days of FC, when the vendors used the port number on the switch as the area portion of the FCID. When you trace the connection, you see the HBA Flogi, then register with the name server, then query the name server for devices in the same zone. For some reason, it never sends Plogi to any devices with the same area. Cisco developed the unique OUI feature as a bypass to the issue. If the MDS detects a Qlogic OUI at Flogi, it will be given an FCID with a unique area. You also have the ability to add additional OUIs as needed if you happen to hit this issue and the OUI is not included in the MDS firmware already. If you want to see which OUIs the firmware has included for unique area assignment, issue this command from the CLI "show fcid-allocation area"
    Hope this helps,
    Mike

  • Get unique sort result ids

    ID SORT
    2000001 1
    2000054 1
    2000161 1
    2004102 1
    2000126 8
    2000161 8
    2004102 8
    2000001 51
    2000054 51
    2000161 51
    2004102 51
    2000126 58
    2000161 58
    2004102 58
    Output
    ID SORT
    2000001 1
    2000054 1
    2000161 1
    2004102 1
    2000126 8
    2000161 8
    2004102 8
    we want all unique ID values with minimum sort values

    Try the below:
    ;With cte
    as
    (Select *,Row_number() over(partition by id order by SORT asc) Rn From Table)
    Select * From cte
    Where Rn=1

  • Uniqueness of Row IDs across Objects

    Are the RowIDs unique across all objects of an instance, or just within the object? Or Stated another way, would a Lead Row ID ever be the same as an Opportunity Row ID in the same instance?

    The RowIDs are unique across all objects in a CRM On Demand instance.

  • Unique frame conversion problem.....

    alright, so I have semi-progressive footage(you can ask how if needed) that gives me 29.97 frames a second in this cadence, PPPIIPPPIIPPPIIPPPIIPPPIIPPPII
    If I could remove the two interlaced frames and replace them with one progressive, it would be 24P, if I remove all the interlace frames I have 18P, but if final cut handles the footage without any modifying, it gives me 29.97 with the 2 interlaced frames being just the same frame played twice. So I've been messing with reverse telecining and motion compensation in compressor, but if anyone has any good ideas on how to fix this footage to be 24p with this irregular 3 progressive, two interlaced cadence, please let me know. I'm writing here because I considered shake could some how remap the clip or retime it to make the two repeated frames play as one or something. perhaps there's something to be done as an image sequence?
    thanks ahead of time, I know this is difficult, please let me know if I need to rephrase the question.....
    Danny

    Sorry for replying so late, I usually get a notice when someone has replied.
    Nope, I wish it were that simple, but it's a completely new cadence that even Black Magic (intensity Card creators) hasn't seen. the cadence is literally 3 consecutively different progressive frames in a row followed by 2 interlaced frames before starting over till the 5 frames make 30 fps. I think I may have fixed it with compressor through a specific combination of video settings and compressors smart reverse telecine. We'll see if this holds up, this method gives me uncompressed 422 HD progressive footage, but ends up about 9 gigs per minute. I want a Hitachi darkstar sponsorship on my figurative nascar.......
    thanks for your help,
    Danny

  • Fine Grained Access ERROR on INSERT when generating unique keys

    I'm using VPD/Fine Grained Access Control (FGAC) to implement security on my 9i backend. I created a security policy function that returns the predicate 'owner = USER'; - each of the tables has an additional column titled OWNER which contains the name of the logged-in user. Every time a user inserts a record, a BEFORE INSERT trigger fires (for every row) and inserts the USER name into the OWNER column. This is fairly straightforward and ensures that users can see only their rows. Using the DBMS_RLS.add_policy procedure, I attached the security policy to several tables and made it effective upon SELECT, UPDATE, INSERT, and DELETE statements.
    However, the frontend Java application (custom-made) generates unique IDs (sequences are not used) by selecting max(ID)+1 from the primary key columns of the tables. The problem is that the predicate is appended to the SELECT max(ID)+1 query to limit the max(ID) to only those rows where 'owner = USER'. Therefore, the max(ID) generated is not the largest ID for the entire table, but only the largest among the USER rows.
    So unless that USER happens to have the the largest ID in the whole table (and it has worked then), a primary-key violation error will be returned and the INSERT operation will be aborted.
    How can I allow every USER to select from AND get the absolute largest ID from the PK column without allowing that user to select records that don't belong to him? If I had developed the application, I would have made use of sequences on the back-end to generate unique primary key IDs. Unfortunately, I don't have this option and must work with the application as is.
    NOTE: the front-end Java application understands only the base table names, NOT Views created by me on the server. If the answer to this problem involves views, how can I make use of them on the backend when the front-end code does not recognize them?
    Any help is greatly appreciated!
    Michael

    first you could use default column values, not a trigger, which is more expensive.
    if your apps already assumes full access to table to get max id ( another RT ), this is bad. Current RLS can not really help if you can not change the apps because of this flaw logic ( you can store the maxid anywhere, why scanning the whole table to find it )

  • Using attribute uniqueness with multi-master replication?

    Hi,
    I'm trying to use attribute uniqueness in a iDS 5.1 multi-master replication env. I have created a plug-in instance for the attribute (memberID) on each directory instance (same installation on NT) and tested (if I try to create a duplicate value under the same instance I get a constraint error as expected). However if I create a entry under one instance and then create a second entry (different DN) with the same attribute value on the second instance, the entry is written with no complaints? If I create the entries with an identical DN, then the directory automatically adds nsuniqueID to the RDN of the second entry to maintain DN uniqueness but it doesn't seem to mind about duplicate values within the entry despite the plug-in?
    BTW I've tested MMR and it is working and I'm using a subtree to enforce uniqueness.
    Regards
    Simon

    Attribute uniqueness plugin only ensure uniqueness on a single master before the entry is added. It doesn't check replicated operation since they have already been accepted and a positive result was returned to the client. So in a multiMastered environment, it is still possible to add 2 identical attributes, if like you're saying you're adding the entries at the same time on both master servers.
    We're working on a solution to have Attribute Uniqueness working in a multiMastered environment. But we're worried about its impact on performances we may get with it.
    Regards,
    Ludovic.

  • Code Set pattern or best practice?

    Hi all,
    I have what I would have thought to be a common problem: the best way to model and implement an organization's code sets. I've Googled, and I've forumed - without success.
    The problem domain is this: I'm redeveloping an existing application, which currently represents it's vast array of code sets using a seperate table for each set. There are currently 180+ of these tables. Not a very elegant approach at present. The majority of these code sets are what I would class as "simple" - a numeric value associated with a textual description - eg 1 = male, 2 = female, or 1 "drinks excessively", 2 "drinks sometimes" ... etc. Most of these will just be used to associate a value with a combo box selected value.
    There are also what I would class as "complex" code sets, which may have 1..n attributes (ie not just a numeric and text value pair). An example of this (not overly complex) is zip code, which has a unique identifier, the zip code itself (which may change - hence the id), a locality description, and a state value.
    Is there a "best practice" approach or pattern which outlines the most efficient way of implementing such code sets? I need to consider performance vs the ability to update the code set values, as some of them may change from time to time without notice at the discretion of government departments.
    I had considered hard coding, creating classes to represent each one, holding them in xml files, storing in the database etc, but it would seem that making the structure generic enough to cater to varying numbers of attributes and their associated datatypes will be at the cost of performance.
    Any suggestions would be greatly appreciated.
    Thanks.
    Paul C.

    Hi Saish,
    Thanks for your response. Yes, this approach is what
    I had considered - I'll be using Hibernate so these
    values will be cached etc.
    I guess my main concern is reducing the huge number
    of very small tables in use. I was thinking about
    this some more, and for the simple tables was
    thinking of 2 tables: 1 (eg "CODE_SET") to describe
    the code set (or ref table etc) in question, the
    second to hold the values. This way 80 odd tables
    would be reduced to 2. Not sure what's best here -
    simpler ER diagram or more performance!Tables...
    Enumeration
    - EnumerationId
    - EnumerationName
    - EnumerationAbbreviation
    EnumerationValues
    - EnumerationId
    - ValueIndex
    - ValueName
    - ValueAbbreviation
    The above allows the names to change.
    You can add a delete flag if values might be deleted but old records need to be maintianed.
    Convention: In the above I specifically name the second table with a plural because it holds a collection of sets (plural) rather than a single set.
    In the first table the id is the key. In the second the id and the index are the key. The ids are unique (of course). The enumeration name should be unique in the first table. In the second table the EnumerationId and value name should be unique.
    Conversely you might choose to base uniqueness on the abbreviation rather than the name.
    The Name vs Abbreviation are used for reporting/display purposes (long name versus short name).
    It is likely that for display/report purposes you will have to deal with each of the sets uniquely rather than a group. Ideally (strongly urged) you should create something that autogenerates a java enumeration (specific with 1.5 or general with 1.4) that uses the id values and perhaps the indexes as the values and the names are generated from the abbreviations. This should also generate the database load table for the values. Obviously going forward care must be taken in how this is modified.

  • Prepare has not been completed succesfully

    Hi Experts,
    I started an upgrade release 4.6C to ECC 6.0 on windows 2003 db version is SQL Server 2005,
    I am getting an error message at the begining of prepare phase,
    I've also updated sapup.exe version and source system kernel to 2364,
    how can i prevent this error,
    ERROR: PREPARE has not been completed successfully.
    Correct the problems reported by PREPARE otherwise
    you cannot start the upgrade.
    here is UpgDialog.log
    Target SAP system is AHQ
    Enter the SAP instance number [00]:
    ? INSTANCE NUMBER   =
    Waiting for input since 30.Eki.2008 10:31:46
    > INSTANCE NUMBER   =  00
    Type of database system is mss
      >>>>>>>>>> Input Wizard <<<<<<<<<<
    Please enter up to 24 mount points for CDs.
    Enter at least the mount point for the CD titled "Upgrade Master CD/DVD"
    ? MOUNT POINT 01 = E:\upgdvds\upgmaster_51033520\UMN_WINDOWS_I386
    Reading data from "Upgrade Master CD/DVD"...
    SAP  UPGRADE  CONTROL  PROGRAM
    ================================
    This is SAPup version 7.00/3 upgrade to release
            600 of EA-APPL
            600 of EA-DFPS
            600 of EA-FINSERV
            600 of EA-GLTRADE
            600 of EA-HR
            400 of EA-IPPE
            600 of EA-PS
            600 of EA-RETAIL
            600 of ECC-DIMP
            600 of ERECRUIT
            600 of FI-CA
            600 of FI-CAX
            600 of FINBASIS
            600 of INSURANCE
            600 of IS-CWM
            600 of IS-H
            600 of IS-M
            600 of IS-OIL
            600 of IS-PS-CA
            600 of IS-UT
            600 of LSOFE
            2005_1_700 of PI_BASIS
            700 of SAP_ABA
            700 of SAP_AP
            600 of SAP_APPL
            700 of SAP_BASIS
            700 of SAP_BW
            600 of SAP_HR
            600 of SEM-BW
            2005_1_700 of ST-PI
    Target SAP system is AHQ, MSSQL database
    ? continue
    ? cancel
    Waiting for input since 30.Eki.2008 10:34:32
    > continue
    ERROR: PREPARE has not been completed successfully.
    Correct the problems reported by PREPARE otherwise
    you cannot start the upgrade.
    ? continue
    ? cancel
    And also in /usr/sap/put/log directoy these logs existent;
    SAPup.log;
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    SEVERE ERROR: problems with SERVER mode - abort
    ...CANCELED at 20081030104921.
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    ...begin dialogue at 20081030105012
    ...end dialogue at 20081030105013
    ...begin dialogue at 20081030105013
    ...end dialogue at 20081030105015
    ...begin dialogue at 20081030105034
    ...end dialogue at 20081030105039
    Reading Parameter File "C:\usr\sap\put\bin\DBSYNC.PAR" at 20081030105039
    Condition level 1, total => FALSE '#if ( "MSS" == "ORA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "OPS" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "ADA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "INF" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "DB6" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "D4A" )' => FALSE
    Condition level 1, total => TRUE '#elseif ( "MSS" == "MSS" )' => TRUE
    ...begin dialogue at 20081030105039
    ...end dialogue at 20081030105041
    ...STARTED at 20081030105041.
    Reading Parameter File "C:\usr\sap\put\bin\TRATTR.LST" at 20081030105041
    Reading Parameter File "C:\usr\sap\put\bin\TRGROUP.LST" at 20081030105041
    ...begin dialogue at 20081030105041
    ...end dialogue at 20081030105104
    ...CANCELED at 20081030105104.
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.011.
    ...begin dialogue at 20081030105626
    ...end dialogue at 20081030105627
    ...begin dialogue at 20081030105627
    ...end dialogue at 20081030105630
    ...begin dialogue at 20081030105711
    ...end dialogue at 20081030105715
    Reading Parameter File "C:\usr\sap\put\bin\DBSYNC.PAR" at 20081030105715
    Condition level 1, total => FALSE '#if ( "MSS" == "ORA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "OPS" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "ADA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "INF" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "DB6" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "D4A" )' => FALSE
    Condition level 1, total => TRUE '#elseif ( "MSS" == "MSS" )' => TRUE
    ...begin dialogue at 20081030105715
    ...end dialogue at 20081030105719
    ...CANCELED at 20081030105719.
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    ...begin dialogue at 20081030105752
    ...end dialogue at 20081030105753
    ...begin dialogue at 20081030105753
    ...end dialogue at 20081030105756
    ...begin dialogue at 20081030105814
    ...end dialogue at 20081030105818
    Reading Parameter File "C:\usr\sap\put\bin\DBSYNC.PAR" at 20081030105818
    Condition level 1, total => FALSE '#if ( "MSS" == "ORA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "OPS" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "ADA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "INF" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "DB6" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "D4A" )' => FALSE
    Condition level 1, total => TRUE '#elseif ( "MSS" == "MSS" )' => TRUE
    ...begin dialogue at 20081030105818
    ...end dialogue at 20081030105824
    ...STARTED at 20081030105824.
    Reading Parameter File "C:\usr\sap\put\bin\TRATTR.LST" at 20081030105824
    Reading Parameter File "C:\usr\sap\put\bin\TRGROUP.LST" at 20081030105824
    ...begin dialogue at 20081030105824
    ...end dialogue at 20081030110026
    ...CANCELED at 20081030110026.
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    ...begin dialogue at 20081030110034
    ...end dialogue at 20081030110035
    ...begin dialogue at 20081030110035
    ...end dialogue at 20081030110038
    ...begin dialogue at 20081030110054
    ...end dialogue at 20081030110104
    Reading Parameter File "C:\usr\sap\put\bin\DBSYNC.PAR" at 20081030110104
    Condition level 1, total => FALSE '#if ( "MSS" == "ORA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "OPS" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "ADA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "INF" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "DB6" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "D4A" )' => FALSE
    Condition level 1, total => TRUE '#elseif ( "MSS" == "MSS" )' => TRUE
    ...begin dialogue at 20081030110104
    ...end dialogue at 20081030110123
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    ...begin dialogue at 20081030110134
    ...end dialogue at 20081030110140
    ...begin dialogue at 20081030110140
    ...end dialogue at 20081030110143
    ...begin dialogue at 20081030110149
    ...end dialogue at 20081030110154
    Reading Parameter File "C:\usr\sap\put\bin\DBSYNC.PAR" at 20081030110154
    Condition level 1, total => FALSE '#if ( "MSS" == "ORA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "OPS" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "ADA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "INF" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "DB6" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "D4A" )' => FALSE
    Condition level 1, total => TRUE '#elseif ( "MSS" == "MSS" )' => TRUE
    ...begin dialogue at 20081030110154
    ...end dialogue at 20081030110155
    ...STARTED at 20081030110155.
    Reading Parameter File "C:\usr\sap\put\bin\TRATTR.LST" at 20081030110155
    Reading Parameter File "C:\usr\sap\put\bin\TRGROUP.LST" at 20081030110155
    ...begin dialogue at 20081030110155
    ...end dialogue at 20081030110328
    ...CANCELED at 20081030110328.
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    ...begin dialogue at 20081030110335
    ...end dialogue at 20081030110335
    ...begin dialogue at 20081030110335
    ...end dialogue at 20081030110337
    ...begin dialogue at 20081030110342
    SEVERE ERROR: problems with SERVER mode - abort
    ...CANCELED at 20081030110342.
    ************************* SAPup started in UPGRADE mode *************************
    This is SAPup version 7.00/3 patch level 25.013.
    ...begin dialogue at 20081030110858
    ...end dialogue at 20081030110859
    ...begin dialogue at 20081030110859
    ...end dialogue at 20081030110901
    ...begin dialogue at 20081030110937
    ...end dialogue at 20081030110940
    Reading Parameter File "C:\usr\sap\put\bin\DBSYNC.PAR" at 20081030110940
    Condition level 1, total => FALSE '#if ( "MSS" == "ORA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "OPS" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "ADA" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "INF" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "DB6" )' => FALSE
    Condition level 1, total => FALSE '#elseif ( "MSS" == "D4A" )' => FALSE
    Condition level 1, total => TRUE '#elseif ( "MSS" == "MSS" )' => TRUE
    ...begin dialogue at 20081030110940
    ...end dialogue at 20081030110941
    ...STARTED at 20081030110941.
    Reading Parameter File "C:\usr\sap\put\bin\TRATTR.LST" at 20081030110941
    Reading Parameter File "C:\usr\sap\put\bin\TRGROUP.LST" at 20081030110941
    ...begin dialogue at 20081030110941
    ...end dialogue at 20081030110945
    ...CANCELED at 20081030110945.
    CHANGES.LOG
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030104921"
    "20081030104921"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105012"
    "20081030105012"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105013"
    "20081030105013"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105013"
    "20081030105013"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105015"
    "20081030105015"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105034"
    "20081030105034"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105039"
    "20081030105039"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105039"
    "20081030105039"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105041"
    "20081030105041"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "STO_IR"
    "20081030105041"
    "20081030105041"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105041"
    "20081030105041"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105104"
    "20081030105104"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030105104"
    "20081030105104"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105626"
    "20081030105626"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105627"
    "20081030105627"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105627"
    "20081030105627"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105630"
    "20081030105630"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105711"
    "20081030105711"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105715"
    "20081030105715"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105715"
    "20081030105715"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105719"
    "20081030105719"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030105719"
    "20081030105719"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105752"
    "20081030105752"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105753"
    "20081030105753"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105753"
    "20081030105753"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105756"
    "20081030105756"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105814"
    "20081030105814"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105818"
    "20081030105818"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105818"
    "20081030105818"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030105824"
    "20081030105824"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "STO_IR"
    "20081030105824"
    "20081030105824"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030105824"
    "20081030105824"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110026"
    "20081030110026"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030110026"
    "20081030110026"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110034"
    "20081030110034"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110035"
    "20081030110035"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110035"
    "20081030110035"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110038"
    "20081030110038"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110054"
    "20081030110054"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110104"
    "20081030110104"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110104"
    "20081030110104"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110123"
    "20081030110123"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110134"
    "20081030110134"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110140"
    "20081030110140"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110140"
    "20081030110140"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110143"
    "20081030110143"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110149"
    "20081030110149"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110154"
    "20081030110154"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110154"
    "20081030110154"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110155"
    "20081030110155"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "STO_IR"
    "20081030110155"
    "20081030110155"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110155"
    "20081030110155"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110328"
    "20081030110328"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030110328"
    "20081030110328"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110335"
    "20081030110335"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110335"
    "20081030110335"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110335"
    "20081030110335"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110337"
    "20081030110337"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110342"
    "20081030110342"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030110342"
    "20081030110342"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110858"
    "20081030110858"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110859"
    "20081030110859"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110859"
    "20081030110859"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110901"
    "20081030110901"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110937"
    "20081030110937"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110940"
    "20081030110940"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110940"
    "20081030110940"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110941"
    "20081030110941"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "STO_IR"
    "20081030110941"
    "20081030110941"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "DIA_IR"
    "20081030110941"
    "20081030110941"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "END_IR"
    "DIA_IR"
    "20081030110945"
    "20081030110945"
    "0"
    "0"
    "0"
    "0"
    MILESTONE
    "BEG_IR"
    "STO_IR"
    "20081030110945"
    "20081030110945"
    "0"
    "0"
    "0"
    "0"
    TOOLOUT.LOG
    SAPup>  Starting subprocess disp+work.exe with id 732 at 20081030103432
    EXECUTING C:\usr\sap\AHQ\SYS\exe\run\disp+work.exe -V
    disp+work information
    kernel release                46D
    kernel make variant           46D
    DBMS client library           SQL_Server_7.00                
    DBSL shared library version   46D.00
    compiled on                   NT 4.0 1381 Service Pack 6 x86 MS VC++ 12.00
    compile time                  Jan 14 2008 08:47:41
    update level                  0
    patch number                  2364
    source id                     0.2364
    supported environment
    database (SAP, table SVERS)   46A
                                  46B
                                  46C
                                  46D
    DBMS server                   MSSQL 6.5.213 or higher
                                  MSSQL 7.0.1 or higher
    operating system              Windows NT 4.0
                                  Windows NT 5.0
                                  Windows NT 5.1
                                  Windows NT 5.2
                                                                                    System build information:
                                  LCHN  : 955407
    disp+work patch information
    ( 0.001) Correct cursor preservation (I) (note 307486)
    ( 0.002) SU53 reports always 'Check on S_TCODE SU53' (note 310513)
    ( 0.003) PXA: Emergency mode (note 307976)
    ( 0.004) Correct shortcut handling under EASY ACCESS (note 309791)
    ( 0.005) POST driver: no set locale (note 310076)
    ( 0.006) ASSIGN attr+off(len) TO <fs> (note 302214)
    ( 0.007) Contextmenu for tableview cells (note 309755)
    ( 0.008) Rfc and full screen (note 308383)
    ( 0.009) Dropdown listbox performance (note 307795)
    ( 0.010) Correct cursor preservation (II) (note 307486)
    ( 0.011) Spool-Patch-Collection 26 (note 92482)
    ( 0.012) Correct cursor preservation (III) (note 307486)
    ( 0.013) Correct cursor preservation (IV) (note 307486)
    ( 0.014) Core in dyCheckRadioGroups() (note 308958)
    ( 0.019) STAT: DB Resonse Time for SQL Server (note 310288)
    ( 0.021) Rfc authority problem (note 93254)
    ( 0.024) RFC extended trace information (note 311386)
    ( 0.027) CALL SCREEN: error 'MISMATCH DYNPRO NAME / CONTENT' (note 310186)
    ( 0.028) ABAP: OO-Transactions and event LOAD-OF-PROGRAM (note 312244)
    ( 0.029) Profile 'abap/oo_warn' suppress OO-context errors (note 182767)
    ( 0.031) Occasional core when reading statistics file (note 313669)
    ( 0.032) ABAP: unnecessary class-constructor calls (2) (note 213622)
    ( 0.035) Corrections in errormessage handling (sapdext) (note 312252)
    ( 0.040) TSTC: transaction is not an oo-transaction (note 315037)
    ( 0.044) F4 on checkbuttons (note 312258)
    ( 0.045) Core in moveleft() (note 312418)
    ( 0.046) Error trace: invalid dynpro dynpabsv.c 3490 (note 314373)
    ( 0.047) Error trace: memory conflict diagscrol.c (note 313967)
    ( 0.048) Iterator problem with iXML collections fixed (note 315119)
    ( 0.050) Invocation of not-implemented methods (note 314064)
    ( 0.051) Core at dynamic invoke with interface reference (note 314487)
    ( 0.052) GW: Avoid multiple send (note 314495)
    ( 0.053) Spool-Patch-Collection 27 (note 92482)
    ( 0.054) Printing via e-mail (note 311037)
    ( 0.055) User default time zone from TTZCU-TZONEDEF (note 314300)
    ( 0.056) Bad batch job statistic (note 315147)
    ( 0.057) LOOP AT SCREEN: counter field increased (note 314516)
    ( 0.058) Missing init. in temse (note 314094)
    ( 0.065) GW: shared block leak with multiple reg programs (note 309969)
    ( 0.067) RFC: load balancing over SAPRouter (note 316221)
    ( 0.068) No debugging until login while remote debugging (note 316456)
    ( 0.069) Open SQL: INTO CORRESPONDING with JOINs (note 315747)
    ( 0.071) Support 'Windows NT 5.1' (note 316188)
    ( 0.072) Destroyed dynpro load (note 207817)
    ( 0.073) Error in spool entry queue (note 316148)
    ( 0.074) mySAP.com workplace single signon enabling (note 177895)
    ( 0.075) Sap statistic destroys eye catcher (note 317178)
    ( 0.076) Syslog messages while printing (note 316630)
    ( 0.077) Performance optimization for list boxes (note 214806)
    ( 0.078) Loop in batch input (note 316686)
    ( 0.080) Loop in batch input 2 (note 316686)
    ( 0.081) Don't block s-messages in local update processing (note 312252)
    ( 0.084) Correct error message in conversion exit 'ALPHA' (note 318027)
    ( 0.085) Destroyed dynpro load (note 207817)
    ( 0.086) Print from rfc server (note 318692)
    ( 0.087) Unknown syntax errors after changing the kernel (note 142888)
    ( 0.088) RFC: error discarding unneeded tables (note 319634)
    ( 0.089) Sapstartsrv handle service stop and shutdown correctly (note 142100)
    ( 0.091) GW: Nonblocking connect problems (note 319675)
    ( 0.092) Tstc: transaction is not an oo-transaction (note 315037)
    ( 0.093) Coredump with 'INSERT LINES OF ...' (note 142100)
    ( 0.094) Corrupted cluster item displayed (note 318904)
    ( 0.096) BDC: Enable input in list screens (note 212569)
    ( 0.099) Hanging apps after writing core (note 320168)
    ( 0.102) Syntax warning for literals crossing line boundaries (note 319328)
    ( 0.103) Generation error at statement 'IF itab IS SUPPLIED' (note 321069)
    ( 0.105) Spool-Patch-Collection 28 (note 92482)
    ( 0.109) Several errors within footline (note 312848)
    ( 0.111) Check dynpro processor state (note 301406)
    ( 0.112) Memory usage roll area 0+1 (note 322070)
    ( 0.113) Sapstartsrv: GetProcessList exception, librfc32 delayload (note 142100)
    ( 0.114) Rfc call and default fontsize data (note 323342)
    ( 0.115) OBJECTS_NOT_COMPATIBLE with READ TABLE (note 323039)
    ( 0.116) Random syntax errors (MOVE-CORRESPONDING) (note 207149)
    ( 0.117) SKIP 1ST SCREEN: ignore GRAPH dynpros (note 317917)
    ( 0.118) Japanese IXML, table TCP0F (note 301406)
    ( 0.119) SE30 errors (note 170470)
    ( 0.121) Correct call of POV modules for comboboxes (note 323141)
    ( 0.122) Exception in NiExit (note 319675)
    ( 0.123) GW: No restart during db reconnect (note 321863)
    ( 0.125) TX variants: correct reset field input (note 325275)
    ( 0.126) ITS_LOGIN_CHECK_RFC rejected as XXPASS caller (note 324758)
    ( 0.129) Error message: correct cursor setting (note 318292)
    ( 0.130) Check dynpro processor state (II) (note 301406)
    ( 0.131) Correct SET FOCUS CONTROL for NO-PAI (note 322455)
    ( 0.132) Init tcview components (note 323686)
    ( 0.133) BDC: No loosing track of data during F4-Help (note 323061)
    ( 0.136) BDC: Avoid duplicate messages in log (note 324490)
    ( 0.138) Resize: docking control - dynpro (note 323974)
    ( 0.139) GW: Secinfo for start of external programs (note 323925)
    ( 0.140) False error texts for workplace ticket logon (note 325222)
    ( 0.141) "user locked" for logon attempt at CUA master system (note 325213)
    ( 0.143) HPL2 driver: unreadable text for green/red (note 323460)
    ( 0.146) Loop of dispatcher (note 325559)
    ( 0.148) Spool-Patch-Collection 29 (note 92482)
    ( 0.149) Control Framework global flush mode (note 316243)
    ( 0.150) TX variants: correct reset field input (II) (note 325275)
    ( 0.152) Em detach before process restart (note 326876)
    ( 0.153) Workplace: multiple logon popup for wingui sessions (note 326604)
    ( 0.154) ABAP Debugger: Rollback before restart (note 325903)
    ( 0.156) Conversion X to STRING (note 327086)
    ( 0.158) Bugfix new-page print on + message (note 107321)
    ( 0.159) IXML: coredump when parsing empty XML document (note 326888)
    ( 0.160) Resume in current screen after returning from exit module (note 327803)
    ( 0.161) SORT: close extract file, if runtime error occurs (note 328691)
    ( 0.162) Adapt ABAP runtime to new signal handling (note 329091)
    ( 0.163) BDC: corresponding screen to bsdup-entry in dybimsgi (note 330071)
    ( 0.164) Stat-file is not deleted in old 4.6 releases (note 329603)
    ( 0.169) Do not change loopheader during help processing (note 330761)
    ( 0.171) Disabling GUI in aRFC when called from tRFC (note 329811)
    ( 0.174) Test dynpro: do not call POV modules (note 332538)
    ( 0.175) No commit during wait in update task (note 332077)
    ( 0.176) Printing frames in text mode (note 320792)
    ( 0.177) Spool-Patch-Collection 30 (note 92482)
    ( 0.178) TSTC transaction is not an oo-transaction (note 315037)
    ( 0.179) RFC-Import of deep structures failed (note 333694)
    ( 0.180) STRING_BAD_REF in control break processing (note 332663)
    ( 0.181) Increase structure stack (note 332500)
    ( 0.184) PXA: initialization (note 160875)
    ( 0.185) PXA_NO_FREE_SPACE (note 147568)
    ( 0.186) Update task: increase vb2Cnt for update type 5 (note 333878)
    ( 0.187) Correct handling of empty loop lines (note 334886)
    ( 0.188) TX variants: correct reset field input (III) (note 325275)
    ( 0.189) EmHyperContextCreate() => alreday exists (note 334389)
    ( 0.192) Default cursor: reset cursor offset (note 334951)
    ( 0.194) Invalid client index of sap gateway (note 333949)
    ( 0.195) RFC authority check failed (note 93254)
    ( 0.196) BDC: No loosing track of data after F4-Help (note 323061)
    ( 0.197) ABAP: optimized dynamic SELECT clauses (note 324772)
    ( 0.198) Bugfix new-page print on + message (note 107321)
    ( 0.199) Bugfix displaying printer name after print (note 107321)
    ( 0.201) Error recovery (in ni datagram) after workprocess-restart (note 335967)
    ( 0.207) Diag: correct list size (note 337298)
    ( 0.209) GW: memory block freed twice (note 337957)
    ( 0.210) Incorrect logon ticket expiration calculation  (note 337794)
    ( 0.218) Errortrace: invalid offset (dybasfield.c 95) (note 337820)
    ( 0.219) Deactivate LIST TO MEMORY on selection screen (note 313558)
    ( 0.220) Dbbmng0.c: generic invalidation of shared buffer objects (note 338451)
    ( 0.221) Itab operations on tableview-controls (note 339270)
    ( 0.222) GW: RFC attached gui (note 337425)
    ( 0.223) ASSIGN: set output length accurately (note 338925)
    ( 0.224) Tabstrip pages and wrong scroll offset (note 339469)
    ( 0.225) Set pf-status excluding and rollout (note 338954)
    ( 0.226) Auth problems with 20 characters transactions (note 339913)
    ( 0.227) Batch input: new algorithm for QID-generation (note 338246)
    ( 0.229) Inappropriate short dump ZDATE_ILLEGAL_LOCTIME (note 323954)
    ( 0.230) Print of a list dumps (note 338994)
    ( 0.231) Archive device (note 339659)
    ( 0.232) S-messages in CTU-log (note 339302)
    ( 0.238) Correct trace SET PARAMETER (note 340096)
    ( 0.240) Print of a list dumps (II) (note 338994)
    ( 0.242) Start Row Start Column for Dynproresizing (note 351685)
    ( 0.243) GW: Bad em context handling (note 351526)
    ( 0.244) SORT AS TEXT: length too short (note 350526)
    ( 0.245) Get cursor information on pushbutton (note 351890)
    ( 0.247) ABAP: Slin default check; type I vs. type P (note 351976)
    ( 0.248) GW: CCMS Monitoring Patch-Collection 1 (note 202591)
    ( 0.249) Short dump CALL_TRANSACTION_LOCKED (note 350360)
    ( 0.250) Controls and list processing (note 352065)
    ( 0.251) Blanks in authorization values (note 207196)
    ( 0.252) Tableview line/column selection (note 350363)
    ( 0.253) Spool-Patch-Collection 31 (note 352269)
    ( 0.254) Decrease and increase for dynpro and window (note 352542)
    ( 0.255) ABAP Debugger: Avoid DEBUGGER_ILLEGAL_VALUE in RFC-Debug. (note 182989)
    ( 0.256) Incomplete DATA in D010INC and D010TAB (note 352480)
    ( 0.257) Diag: warning and resize (note 212524)
    ( 0.258) Workplace: provide logon ticket for X.509 logon (note 350776)
    ( 0.260) StartRow StartColumn for Dynproresizing (note 351685)
    ( 0.261) EmHyperContexts: reduce memory consumption (note 353103)
    ( 0.262) Invalid focus memory (note 353496)
    ( 0.263) EmHyperContexts: reduce memory consumption (II) (note 353103)
    ( 0.266) Slow SetQoS due to unnecessary DNS query (note 180940)
    ( 0.268) ABAP-Exception-Handling: Internal State-Stack (note 350146)
    ( 0.269) BDC: no user command allowed on SAPMSYST 0040 (note 163639)
    ( 0.270) Wrong portability warnings from extended syntax check (note 353681)
    ( 0.271) Passing EXP-IMP parameters in RFC calls (note 352629)
    ( 0.272) Spool-Patch-Collection 31a (note 352269)
    ( 0.273) Modal level and suppress dialog (note 355616)
    ( 0.274) DBIF_RSQL_INVALID_REQUEST with very old cluster records (note 353651)
    ( 0.275) Horizontal radiobutton groups (note 355260)
    ( 0.276) Proportional cut for variable Dynpro-objects (note 351685)
    ( 0.277) Hostname resolution blocks processes (note 356788)
    ( 0.278) Tabstrip pages and wrong scroll offset (note 339469)
    ( 0.280) Core in DiagiTableHeader (note 159421)
    ( 0.281) GW: Bad statistic after summer time switch (note 353893)
    ( 0.283) CPIC-Timeout for frontend printing (note 352269)
    ( 0.284) List scrollbar and docking control (note 357241)
    ( 0.285) Sy-SubRc 8 with SELECT SINGLE on logic cluster table  (note 355714)
    ( 0.287) Missing entry in table FIDO (note 357019)
    ( 0.290) BDC: conversion of old batch-input logfiles (note 356758)
    ( 0.293) Invalid sapgui data (note 358681)
    ( 0.294) Reading of ASTAT records fails in 4.6D (note 358532)
    ( 0.295) ABAP: Loop in function LookForFref (note 357698)
    ( 0.297) Muliconnect error reporting (note 358171)
    ( 0.298) RFC: data dependent read error (note 358557)
    ( 0.300) Protect against 'error in datastream' (note 359511)
    ( 0.301) Treatment of looplines by loc. horiz. resize (note 212861)
    ( 0.302) Initial values with DynpValuesUpdate (note 359873)
    ( 0.303) ABAP: warning for duplicate keys removed (note 359114)
    ( 0.304) Core dump when calling RfcClose (note 359865)
    ( 0.306) Suppression of unnecessary syslog messages (note 359523)
    ( 0.308) System Core Dump with F4-Button in R/3-Dialog(modal) setting (note 212861)
    ( 0.309) Core dump in RFC engine (note 353136)
    ( 0.311) Start EASY-ACCESS only for dialog sessions (note 360980)
    ( 0.314) Check if dynpro exists before access it (note 361120)
    ( 0.315) Optimize concatenate for STRING (note 327185)
    ( 0.317) New RFC logon method 'external identification' (note 358469)
    ( 0.319) List scrolling: last line missing (note 362181)
    ( 0.320) GW: Set locale in update task (note 360971)
    ( 0.321) SORT: avoid EXSORT_TOO_MANY_PARALLEL_SORTS (note 361532)
    ( 0.322) Extended syntax check with BETWEEN ... AND (note 361470)
    ( 0.323) ICMAN fails to open event flags for HTTP connections (note 360696)
    ( 0.326) Open SQL: improved statement generation for UPTO (note 361392)
    ( 0.327) Check (ABAP_ASSERT) in ASSIGN to avoid core (note 363059)
    ( 0.329) Bad NOWP request (note 365156)
    ( 0.330) ABAP; SCAN STRUCTURE: error in SELECT-ENDSELECT logic (note 363992)
    ( 0.331) Native SQL: return code for EXECUTE PROCEDURE (note 364707)
    ( 0.332) Semaphore error in ASTAT (note 363499)
    ( 0.333) Printing with format LETTER (note 363624)
    ( 0.334) Problems with missing or short quickinfo (note 363394)
    ( 0.335) Parameters in macro _splitpathU swapped (note 365337)
    ( 0.339) Modified length mismatch (note 207817)
    ( 0.340) Problems with missing or short quickinfo (2) (note 363394)
    ( 0.341) Errortrace invalid value dybas.c 0179 (note 337820)
    ( 0.342) Errortrace invalid parameter dynpdiag 1131 (note 337820)
    ( 0.343) Errortrace dytracefocus invalid container (note 353496)
    ( 0.346) Spool-Patch-Collection 32 (note 352269)
    ( 0.347) Invalid focus memory 2 (note 353496)
    ( 0.348) Prevent duplicate RFC struct parameter transmission (note 365916)
    ( 0.351) Native SQL: memory leak for stored procedures (note 367509)
    ( 0.352) Resizing side to side and one below other Dynpro-Objects (note 367811)
    ( 0.353) Check ztta/dynpro_area (note 167229)
    ( 0.354) Problems with missing or short quickinfo (3) (note 363394)
    ( 0.355) GW: Bad NOWP request II (note 365156)
    ( 0.358) Breakpoint in ABAP Debugger at CONTINUE (note 368433)
    ( 0.359) Errortrace: should not happen (dycuahlp 1661) (note 369415)
    ( 0.360) Reactivate suspended clients (note 367384)
    ( 0.361) Disable persistent trace for RFC-Library (note 364034)
    ( 0.365) Large file support (note 330992)
    ( 0.366) IMPORT: avoid IMPORT_INIT_DECOMPRESS_FAILES (note 370053)
    ( 0.367) BAPI_USER_CHANGE returns wrong/blank error message (note 369761)
    ( 0.368) ABAP debugger: field display and global TABLES-parameters (note 370103)
    ( 0.369) ABAP debugger: empty source display (note 370717)
    ( 0.370) Saplicense: license buffer not initialized (note 371301)
    ( 0.371) List token in SELECT (note 370587)
    ( 0.373) GW: Duplicate conversation ids in gateway work processes (note 371481)
    ( 0.375) Dynamic Type at CREATE DATA (note 371607)
    ( 0.376) Printing selection page & long transaction (note 370661)
    ( 0.377) Library iXML: correction of CDATA size problem (note 371846)
    ( 0.378) DEC field input for none DDIC fields (note 373047)
    ( 0.379) Spool-Patch-Collection 33 (note 352269)
    ( 0.380) C-Call ABAP_CALLSTACK (note 371779)
    ( 0.381) Loop during decompression of corrupted Sources/Loads (note 374200)
    ( 0.382) Extended table compression for certain RFC connections (note 373452)
    ( 0.383) SORT: avoid EXSORT_TOO_MANY_PARALLEL_SORTS and recursion (note 361532)
    ( 0.384) PostScript error with TrueType fonts (note 373604)
    ( 0.385) XML-Import failed after empty structure tags (note 374447)
    ( 0.386) Disable QoS support by default (note 180940)
    ( 0.387) Message display type (note 368333)
    ( 0.389) DEC field input for none DDIC fields II (note 373047)
    ( 0.390) Long running report (note 373343)
    ( 0.391) Illegal request looping in dispatcher (note 373345)
    ( 0.394) Fix printing selection page & long transaction (note 370661)
    ( 0.397) Reserve address space for Extended Memory (note 373326)
    ( 0.399) VALUE /namespace/const (note 371720)
    ( 0.402) DYNG: get translated buttontexts from D021T (note 363394)
    ( 0.403) Correct returncode for SET_DYNP_FIELD_VALUE (note 374941)
    ( 0.404) Refresh control from screen (note 375251)
    ( 0.406) Receive result of aRFC (note 375356)
    ( 0.410) Disp+Work doesn't start up (note 376242)
    ( 0.414) DEC field input for none DDIC fields (note 373047)
    ( 0.415) Core dump in GenViewGetPbagRudi (note 375055)
    ( 0.416) DBIF_REPO_PART_NOT_FOUND during Garbage-Collection (note 374884)
    ( 0.417) Control focus correction (note 374510)
    ( 0.418) Title problems (note 374560)
    ( 0.419) Window width > 255 cause list problems (note 375856)
    ( 0.420) IS REQUESTED/SUPPLIED and RETURNING parameter (note 375329)
    ( 0.423) DEC field input for none DDIC fields (note 373047)
    ( 0.424) Core in appl info (note 376906)
    ( 0.425) Core in DiagIConvert, if trace level 3 (note 377184)
    ( 0.426) Correction for Spool-Patch-Collection 33 (note 352269)
    ( 0.429) Change default for cursor preservation (note 378706)
    ( 0.430) Error trace from dyariftb() (note 378093)
    ( 0.431) Enqueue table overflow, syslog message corrected (note 378682)
    ( 0.433) DEC field input for none DDIC fields (note 373047)
    ( 0.434) Illegal chars set spooljob to error (note 379119)
    ( 0.435) Debugger: data references and tables of type I (note 378838)
    ( 0.436) Set DISPLAY AGAIN in TH (note 380164)
    ( 0.437) Prepare: several mySAP.com components in one DB (note 379572)
    ( 0.439) Workplace: disable password logon (note 379081)
    ( 0.445) DiagSetCodepage() failed (note 382240)
    ( 0.446) Sapstartsrv update available.log on Start/Stop (note 142100)
    ( 0.447) Ldapreg: ITS LDAP registration (note 379691)
    ( 0.448) GW: Wp stuck in PRIV mode (note 381870)
    ( 0.449) Too many invalidations on USRBF2 (note 319727)
    ( 0.450) Correct static focus on subscreens (note 380809)
    ( 0.451) Correct HOLD DATA message (note 381528)
    ( 0.452) Trace DYNP_SET/GET_STATUS (note 381694)
    ( 0.453) Init screen buffer parameters (note 382032)
    ( 0.454) No core in dypov_treatDpovtabRow (note 381221)
    ( 0.455) Server shutdown after bind error (note 382440)
    ( 0.457) Handling of fatally corrupted cluster records (note 381968)
    ( 0.466) EXPORT: dynamic export of strings (note 384694)
    ( 0.467) Message in help: no core dump (note 384639)
    ( 0.468) Pull up other objects down of table after TABLE_PBO_DONE (note 383033)
    ( 0.469) Tablecontrol init and context (note 373977)
    ( 0.470) Correction of the nls locale check tool (note 40815)
    ( 0.471) GW: Missing aRFC response (note 384015)
    ( 0.472) GW: Core during write of statistic (note 384433)
    ( 0.473) Wp stuck in PRIV mode (II) (note 381870)
    ( 0.474) Shared Pool disturbed corrected (note 384810)
    ( 0.477) SORT/EXTRACT: large file support (note 384257)
    ( 0.478) Codepage problem: sap8000 (shift_jis) (note 384947)
    ( 0.479) Active/Inactive-Handling (note 385628)
    ( 0.480) Sporadic logon failures in batch processing (note 385894)
    ( 0.483) GW: Free unallocated memory (note 387747)
    ( 0.484) SORT/EXTRACT: large file support (II) (note 384257)
    ( 0.487) Open SQL: several minor errors (note 386783)
    ( 0.489) RABAX no dbrollback and dbcommit at core (note 386268)
    ( 0.490) C-call DY_GET_S_MESSAGE available (note 383089)
    ( 0.491) Correct I message for batch input (note 386661)
    ( 0.492) Do not skip message popup (note 385147)
    ( 0.493) Async RFC: set size of full screen (note 385132)
    ( 0.494) Correct error messages for CALL SUBSCREEN (note 386674)
    ( 0.495) Logon tickets slightly too long valid (note 387595)
    ( 0.496) Format error during output of empty strings (note 385796)
    ( 0.497) RFC: patch collection (46D) (note 387366)
    ( 0.498) Method calls in arithmetics (note 387066)
    ( 0.499) Reallocate the number of boxes for resizing (note 388988)
    ( 0.500) Generate correct forkey selects in dynpro (note 388699)
    ( 0.501) Destroyed dynpro load (note 207817)
    ( 0.502) Open a new audit file next day after maxsize event (note 321148)
    ( 0.503) Delete audit files with extended filenames (SM18) (note 370829)
    ( 0.504) DiagSetCodepage() failed (note 382240)
    ( 0.507) Missing arfc response (II) (note 384015)
    ( 0.508) Generation of very long sources: repeating END_INBUF (note 389041)
    ( 0.509) Correct hold control framework focus (note 389364)
    ( 0.510) BDC: F1 or F4-request in bdcdata (note 323061)
    ( 0.511) Overflow of memory (note 370661)
    ( 0.512) PARAMETERS referencing a named DDIC include (note 389940)
    ( 0.515) DB2/390: default dbs/db2/use_hints=abap->1 (note 162034)
    ( 0.516) Recovery from NI-error after WP-restart (note 335967)
    ( 0.517) Avoid RFC server timeout (note 390219)
    ( 0.522) Avoid core in ABAP debugger by bad string references (note 391169)
    ( 0.523) Keep scrollposition (note 391871)
    ( 0.524) ABAP debugger: Display header for bad object reference (note 391187)
    ( 0.530) Enqueue traces during transaction reset (note 392873)
    ( 0.531) Garbage-Collection beyond 600MB (note 393378)
    ( 0.534) Enqueue traces during transaction reset (II) (note 392873)
    ( 0.535) CPICFAIL in smq1 after kernel upgrade (note 394549)
    ( 0.536) APO: correct internal table processing in COM routines (note 395695)
    ( 0.537) DYNPRO_FIELD_CONVERSION on Get Parameter (output) (note 395450)
    ( 0.538) Core in dyGetDataR() (note 395299)
    ( 0.540) Core in DpFreeResource after restart (note 394454)
    ( 0.542) Restore of sy.datar when popping screen (note 393511)
    ( 0.543) Open SQL: Memory leak when updating with %_HINTS (note 393897)
    ( 0.547) List scrolling: last line missing(2) (note 362181)
    ( 0.548) DiagSetCodepage() failed (note 382240)
    ( 0.549) Limit on number of sessions per logon (note 392369)
    ( 0.552) ABAP: error in string access with offset or length (note 396800)
    ( 0.553) Wrong portability warnings from SLIN (note 353681)
    ( 0.555) SY-VLINE in Thai on AS/400 (note 391627)
    ( 0.557) Unsuccessful READ on a SORTED TABLE (note 395205)
    ( 0.559) Sapstartsrv shutdown one process after the other (note 142100)
    ( 0.560) GW: COMPUTE_INT_TIMES_OVERFLOW in SAPLSALK (note 395671)
    ( 0.561) MS: improved trace features (note 396750)
    ( 0.562) ABAP: PERFORM .. CHANGING VALUE(<itab-line>-comp) (note 399078)
    ( 0.564) No hint generation in case of SELECT SINGLE (note 397170)
    ( 0.565) READ TABLE with attribute keys (note 399263)
    ( 0.566) Error in msg-server communication (note 398525)
    ( 0.568) Spool-Patch-Collection 34 (note 352269)
    ( 0.569) GW: Destroyed update start message (note 157840)
    ( 0.576) ABAP debugger: display active calls (note 399920)
    ( 0.577) ABAP debugger: display of interface aliases (note 399915)
    ( 0.578) ABAP: SET LOCALE and SUBMIT / CALL TRANSACTION (note 399918)
    ( 0.579) Enforce minimal patch level for database library (note 400216)
    ( 0.581) Ticket logon resets initial flag (password) (note 402076)
    ( 0.582) New translations cause locks on D020 (note 36795)
    ( 0.585) Catching of problems during string <-> char handling (note 402340)
    ( 0.586) GET LOCALE: language incorrect (note 402801)
    ( 0.587) Icons are not printed properly (note 402967)
    ( 0.588) Em context destroyed after exception (note 403562)
    ( 0.589) Dummy call: super constructor (note 401553)
    ( 0.590) Visibility of local types (note 401910)
    ( 0.591) Coredump with READ TABLE and float attributes (note 400516)
    ( 0.592) Offset/length specifiers in a table key definition (note 402255)
    ( 0.594) Resize: docking control - dynpro (note 323974)
    ( 0.598) Avoid inconsistent overall source time stamp (note 405821)
    ( 0.599) PXA: correct unfound object cache & statistic counters (note 406075)
    ( 0.600) SY-VLINE and JAVASCRIPT in Thai on AS/400 (note 391627)
    ( 0.601) Avoid inconsistent overall source time stamp (II) (note 405821)
    ( 0.605) RFC_DEBUGGING_NO_DIALOG_USER (note 407471)
    ( 0.606) Core in dyAbapGetContainerPosition (note 405930)
    ( 0.607) X.509 certificate logon: timezone not set (note 408601)
    ( 0.608) Unsuccessful READ on a SORTED TABLE (II) (note 409175)
    ( 0.609) IPC, max shm size detection accelerated (note 406738)
    ( 0.610) Graphical characters and page borders (note 406673)
    ( 0.611) SE30: close measurement on /n (note 381500)
    ( 0.612) Detail selection does not work correct (note 400090)
    ( 0.613) Negative value for hdcurrow is not permitted (note 352542)
    ( 0.624) Cutting terminal names (note 412628)
    ( 0.625) Update debugging (note 336925)
    ( 0.626) Control for Table-Control in Resizing is wrong (note 388988)
    ( 0.627) Correct treatment of field symbols (note 406306)
    ( 0.629) Init params of ab_ListGetFieldName (local field symbols) (note 413506)
    ( 0.630) Open SQL: more than 255 alias names in SELECT list (note 411136)
    ( 0.631) Open SQL: wrong SY-DBCNT for FETCH NEXT (note 412399)
    ( 0.632) Core in db_blob (note 412063)
    ( 0.633) Core in DiagGetWindowDimension (note 412168)
    ( 0.634) Core by 'Display current statement' in debugger (LREF) (note 411673)
    ( 0.636) Coredump in PfOpenScratchFile (note 414242)
    ( 0.637) VALUE class=>const (note 413384)
    ( 0.639) Hebrew Sapscript printing causes signal 11 (note 155261)
    ( 0.640) Workarea change in case of SELECT SINGLE with SY-SUBRC 4 (note 410175)
    ( 0.641) Function DB_DBSCHEMA returns correct result now (note 411971)
    ( 0.642) Wrong syntax error at literals in macros (note 411757)
    ( 0.643) Change of an interface (note 411769)
    ( 0.647) Dbbuf: restrict rtbb/buffer_length to 200000 [kB] (note 414220)
    ( 0.649) Inserted option WAN_CONN into RfcOpenEx (note 415169)
    ( 0.650) SU01: error texts for invalid passwords (note 369761)
    ( 0.651) CONVERT TIME STAMP... for 9999/31/12 23:59:59 (note 401610)
    ( 0.653) Text of check- and radiobuttons with icon (note 414703)
    ( 0.654) MESSAGE ... INTO no rabax at message x (note 408740)
    ( 0.655) New list line at program load (note 412142)
    ( 0.656) Displaying frames in lists (note 412787)
    ( 0.657) Selection page and empty report (note 370661)
    ( 0.658) VMIT (NT): higher precision (note 414135)
    ( 0.659) Runtime error DSTEP_WRONG_PROGRAM (note 416350)
    ( 0.660) Core in csulzh.c (note 413899)
    ( 0.661) Msg_server accept ad-msg opcode 60 AD_SELFIDENT (note 415447)
    ( 0.662) Highlighting in Hebrew list printing (note 353987)
    ( 0.663) Extended syntax check with BETWEEN ... AND (2) (note 361470)
    ( 0.664) Breakpoint at (RFC) function module (note 414952)
    ( 0.665) Don't break iXML because of missing character (note 410929)
    ( 0.667) WP opmode switch (note 415840)
    ( 0.674) Msg_server accept ad-msg opcode 60 AD_SELFIDENT (note 415447)
    ( 0.675) Duplicate key in VBMOD (note 416961)
    ( 0.676) Trace spa/gpa memory overflow (note 34533)
    ( 0.677) Dbbuf: check rtbb/buffer_length and rtbb/max_tables (note 414220)
    ( 0.678) Display '?' in DropdownListboxes (note 417405)
    ( 0.679) Correct call dialog for system messages (I) (note 416053)
    ( 0.680) Correct call dialog for system messages (II) (note 417096)
    ( 0.682) Memory leak in short storage (MEMSAV) (note 419819)
    ( 0.683) Spooler C-call info msg in trace (note 418740)
    ( 0.684) Dithering of color bitmaps (note 410727)
    ( 0.685) Standalone enqueue server prepared (note 419283)
    ( 0.686) Correction of the nls locale check tool (note 40815)
    ( 0.687) System Core Dump in C-Destructors of ABAP Objects (note 416163)
    ( 0.688) Q

    Hi Experts,
    After i tried a few times, i can successfully start prepare with upgrade asistant monitor - Administrator >> Start Prepare,
    Thanks

  • 10g: Invoking a web service asynchronously from BPEL

    Hello,
    I am trying to figure out a good, generic method for making a previously synchronous web service asynchronous and changing the way in which it is invoked from BPEL. I am using SOA Suite 10g (10.1.3.5)
    As I understand, one possible method to achieve this is to use IDeliveryService.post() to deliver the web service's response to the BPEL process. For this route, the standard practice of correlation seems to be to supply a correlation Id when invoking the web service and returning the same correlation id as a part of the web service's response message. However, I want to avoid this since it would mean that all response messages from the web service (10+) would have to be modified to include a correlationId, which is problematic in the special case of this web service. Including a correlationId in the request message is possible, however.
    I have tried the approach of using the conversation Id directly instead of the correlation Id, by reading the value of ora:getConversationId(), passing this to the web service and setting the property CONVERSATION_ID of the response NormalizedMessage to the same value when returning. However, I cannot seem to get this approach right. Is this possible at all?
    An alternative might be to use WS-Addressing, but I do not know if I can make the web service support this - it is written using the EJB WebService-Annotations feature and runs on OC4J as well.
    Do you have any suggestions on how this problem could be resolved?
    Edited by: 901765 on 12.12.2011 06:01

    I have found the following tutorial that implements something similiar to what I am trying to do: http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/10g/10135/odiscenario_bpelcallback/odiscenario_bpelcallback.htm#t3
    Because of this, I am now confident that the conversation IDs can be used to achieve correlation. I have implemented the pattern by performing
    an invoke activity on the web service, passing the result of ora:getConversationId() as part of the message. The conversation Id returned is of UUID-Form.
    After the invoke activity, I have added a pick activity to receive the response message supplied by the web service through IDeliveryService.post(...). I can see that the message is received correctly by loooking at the contents of DLV_MESSAGE. However, the pick activity times out every time (after 10m). Looking at DLV_SUBSCRIPTION reveals that the conversation_id for the pick/receive activity is set to a value of the form bpel://localhost/default/MyBpelProcessName~1.0/7610001-BpInv0-BpSeq2.7-2. As far as I know, this should instead be set to the UUID that ora:getConversationId() returned before performing the invoke activity. What is going wrong here?
    Thanks for your help!

  • Best way to report on multiple libraries

    SharePoint 2010.
    We have 1,600 subsites all the same forms library, which has 10-15 content types in:
    All the content types have these fields that are published to the library.  All the  fields are the same.   Each file has unique naming conversation, based on the site, etc.
    Each document goes through a workflow lifecyle.   Pending , Approved, Rejected.
    If I wanted some form of Reporting based on all the docs, in all the sub sites...  What is the best way to approach this.
    I've seen the posted on a single list....   but this requirement is 1,600 libraries...

    Hi Peter,
    You don't say what type of reporting that you want to do? I'm assuming that it is probably something like displaying the last 1000 most recently approved forms or similar?
    If that's the case then you may be able to achieve what you need using the Search Core Results Web Part with some clever querying and is likely to be the most performant method.
    Once you have a result set back, you can then look at styling this using XSLT in the SCRWP or alternatively look at using the Search Query Model from code in a farm solution/webpart.
    Alternatively you could look at using SSIS to extract the data using the SharePoint List into a SQL table on a nightly basis. (This article covers how to get data out of SharePoint and into SSIS..
    http://msdn.microsoft.com/en-us/library/hh368261.aspx)
    Regards
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • Bom And Routing Import interface errors Help needed

    Hi All,
    I am using bom and Routing Interface to load the Bom and Routing Header.papulating the BOM_INVENTORY_COMPS_INTERFACE,BOM_OP_SEQUENCES_INTERFACE,and BOM_OP_RESOURCES_INTERFACE tables BOM header and Components are created sucessfully but routing is failed with process flag 3.the errorr i am getting is You cannot update or delete operation sequences when there is no routing for the assembly item &ASSEBLY_ITEM_NAME. (ASSEMBLY_ITEM_NAME=TESTITEMBOM) (ORGANIZATION_CODE) and
    This record received an error status since a severe error occurred in the operation sequence 10 while performing user unique index conversions."
    please let me know any api is avilable to load ROUTING Components
    Thanks in advance

    Hi,
    Try following
    step 1. Insert routing header (bom_op_routings_interface) : Run Interface
    step 2. Insert routing lines (bom_op_sequences_interface) with correct reference to routing_sequence_id: Run Interface
    step 3. Insert all resource lines (bom_op_resources_interface) with correct reference to operation_sequence_id, routing_sequence_id , Run Interface.
    Thanks,
    Hrishi

  • How to make search engine results lead to a specific slide

    Through Google Analytics I found that a search in Bing for a particular item took the user to my page. The third slideshow, one of three tabbed slideshows on that page, is the default and shows first. The user promptly left my site because this wasn't what they were looking for. Instead, if possible for that search should land on the slide contained within the second slideshow. The search results in Bing showed the caption for the correct slide. Is there any way to make sure they then go directly to the correct slide?  I tried to add anchors to the individual slides or captions but couldn't make it work. Would that even help?

    Thats easy. How many links from each engine do you want, do you want to allow duplicate results (i.e. google and yahoo both reporting the same URL in a listing)?
    Do your own search on Google, Yahoo, etc. Look at the HTML code (typically a table) and look for unique tags or IDs that surround the URL. Google and Yahoo incorporate Click-Streaming into their search result URLs. That is, they don't provide the direct URL, but rather reference it within their own redirector which is simply a CGI program designed to count page hits and by what keyword and then simply redirect your browser to the actual page.
    If you can find out what that redirecting URL is, just filter the HTML that you get from these search engines for that URL and then you know where the URL starts and stops.
    Doing some further research will show you how to extract the actual URL from the redirecting URL. Just look at the URL and remove the www.google.com or yahoo.com from the begining and strip out all of the CGI that comes after it until you get to another URL.
    Example: http://search.google.com/redirector?this-is-google=true&url=www.some-server-that-you-want.com
    First off, we now know where within the HTML a link starts, and doing a little more filtering, we can throw out the "search.google.com" and the first CGI of "this-is-google&url=" and then simply read and file the "www.some-server-you-want.com"
    Simple.

  • XI SLDCHECK error

    hi all
    I have installed XI3.0 and created business scenario(R3 4.7 * 110) but during call of SLDCHECK transaction it gives me the following error and doesn't connect to SLD.
    Properties of RFC destination LCRSAPRFC
      RFC host:        %%RFCSERVER%%
      program id:      LCRSAPRFC_EC1
      gateway host:    exxept01
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server address settings:
      host name:   10.147.250.9
      port number: 50100
    Use transaction LCRSERVADDR (XI 1.0) or SLDAPICUST (XI 2.0) if you wish to maintain the SLD server address
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Clearing the local SLD cache
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     3
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    ....I've search topics, notes and sdn contents and found nothing on duplicate conversation ids .  if anybody has any idea what could be causing this please let me know!
    THANKS
    nelson

    Hi Chilla
    I finished according to your guide, but it didn't help solve the problem.
    I'd like to write down my configuration and content more clearly as follows:
    1&#12289;configuration of R/3 role
      SXMB_ADM-&#12297;Configuration Data(Integration Engine)
      Role of Business System: Application System
      Corresponding Integ. Server : http://10.147.250.9:8001/sap/xi/engine?type=entry
       other field is empty.
       but a mistake is made when testing, it says  "No access to system landscape at
    present"  .
    2&#12289;Connecting to the Integration Server
    RFC destination : INTEGRATION_DIRECTORY_HMI
    con type : H
    Technical Seeting tab
        Target Host : 10.147.250.9
        PathPrefix : /dir/CacheRefresh
        Service No. : 50100
    Logon /Security tab
        Logon Procedure : Basic Authentication
        SSL : Inactive
        language : en
        Client 001
        User : Pisuper
        password : ***
    the user and key are already created in the Integration Server with related &#26435;&#38480;,but
    when the sysytem is executing the "test Connection",there is dialogue box, and i fill
    in the blanks as follows:
    Resource     dir
    Client       001 &#65288;Integration Server clinet)
    User name    pisuper
    Password     ***
    Language     EN
    but a mistake of HTTP/1.1 401 Unauthorized is made when i dial the enter key.
    3&#12289;I created a service connected with default_host->sap -> xi -> engine and set it as
    Activate Link
    4&#12289;Registering Queues
    5&#12289;Connecting Non-Unicode Business Systems has successfully being created LCRSAPRFC&#12289;
    SAPSLDAPI and the testing is also passed.
    6&#12289;connection created by Tcode SLDAPICUST is as follows:
       Alias : SAP_CONFIG
       Prim : (CHECKED)
       HostName: 10.147.250.9
       port: 50100
       user: PISUPER
       Password: ******
    7&#12289;when executing the SLDCHECK,i could logon sld, but problem arising as follows
      Properties of RFC destination SAPSLDAPI
      RFC host:        %%RFCSERVER%%
      program id:      SAPSLDAPI_EC1
      gateway host:    10.147.250.9
      gateway service: sapgw01
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server address settings:
      host name:   10.147.250.9
      port number: 50100
    Use transaction SLDAPICUST if you wish to maintain the SLD server address
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Testing the SLD API
    SLD API ping was successful
    Clearing the local SLD cache
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call terminated sucessfully
    List of business systems maintained in the SLD:
      EC1_106
      YH0_800
      EC1_001
      ZDH_900
      EC1_105
    Calling function LCR_GET_BS_DETAILS
    Retrieving data from the SLD server...
    Function call returned exception code     5
    => Check whether the SLD is running!
    Summary: Connection to SLD does not work
    => Check SLD function and configurations
    p.s:the client created on the base of XI3.0 platform is successfully tested and
    executing the own example .

Maybe you are looking for

  • APPLE ID SYNC ISSUE

    I just synced my new IPhone to my daughter's computer, yet when I now try to download for example, SKYPE from my iphone, there is a pop-up that shows up and it continues to ask me for my daughter's APPLE ID using her gmail account. I updated my APPLE

  • Installed iTunes 10.5.1, now my desktop icons are not showing up properly

    The icons that are effected are the taskbar icons at the bottom of the desktop. I use thes to open my programs. When I open itunes the icons will then show properly, but when I close iTunes they again look translucent and are hard to see.This has to

  • What to in SLD (Business and Technical sys)for Java server Proxy?

    I am using java server proxy for communicating with XI. I have HTTP as sender comm channel and XI as Receiver comm channel and this is the error i got in SXMB_MONI. What to give in SLD for java Server proxy, i have given Web as Java.....is this what

  • BPM Data sources

    Hallo Experts.. can any one help me with BPM Data sources (workflow data sources).Currently we are using customized extractor to track the processing time for purchase order or Invoice document.Now we want to go with standard data source ex.0BPM_OBJR

  • TilePuzzle Class - Not looking for solution just how to do each method

    The TilePuzzle class represents the basic functionality of the tile puzzle game. Even if there is no window or text interface available, you should be able to play the game using an instance of the TilePuzzle object in the interactions pane. All othe