How to define callback in conversation webservice on WLS

Hello,
I have a very simple Conversation WS (source included) for WebLogic and I like to use it in BPEL process. But BPEL Designer does not recognize callback method. I can see callback method as standard WS operation for synchronous call. Please help me. When I use this WS in WLI (Web Logic Integration Server) everything is ok.
Thank you for your help.
JMELICHN
--- Code of WS: --------------------------------------
package ws;
public class SimpleAsynchrWS implements com.bea.jws.WebService
* @common:control
* @jc:timer timeout="10 s"
private com.bea.control.TimerControl timer;
public Callback callback;
static final long serialVersionUID = 1L;
private String internal = "";
* @common:operation
* @jws:conversation phase="start"
public void setString(String text)
this.internal = text;
this.timer.start();
return;
public interface Callback extends com.bea.control.ServiceControl
* @jws:conversation phase="finish"
void textCallback(String text);
public void timer_onTimeout(long time)
callback.textCallback(internal);
timer.stop();

I'm allmost sure that they are using SOAP converation. I attached WSDL generated for my service:
<?xml version="1.0" encoding="utf-8" ?>
- <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:conv="http://www.openuri.org/2002/04/soap/conversation/" xmlns:cw="http://www.openuri.org/2002/04/wsdl/conversation/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:jms="http://www.openuri.org/2002/04/wsdl/jms/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://www.openuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://www.openuri.org/">
- <types>
- <s:schema xmlns:s="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.openuri.org/">
- <s:element name="setString">
- <s:complexType>
- <s:sequence>
<s:element name="text" type="s:string" minOccurs="0" />
</s:sequence>
</s:complexType>
</s:element>
- <s:element name="setStringResponse">
- <s:complexType>
<s:sequence />
</s:complexType>
</s:element>
- <s:element name="textCallbackResponse">
- <s:complexType>
<s:sequence />
</s:complexType>
</s:element>
- <s:element name="textCallback">
- <s:complexType>
- <s:sequence>
<s:element name="text" type="s:string" minOccurs="0" />
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
- <s:schema elementFormDefault="qualified" targetNamespace="http://www.openuri.org/2002/04/soap/conversation/">
<s:element name="StartHeader" type="conv:StartHeader" />
<s:element name="ContinueHeader" type="conv:ContinueHeader" />
<s:element name="CallbackHeader" type="conv:CallbackHeader" />
- <s:complexType name="StartHeader">
- <s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="conversationID" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="callbackLocation" type="s:string" />
</s:sequence>
</s:complexType>
- <s:complexType name="ContinueHeader">
- <s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="conversationID" type="s:string" />
</s:sequence>
</s:complexType>
- <s:complexType name="CallbackHeader">
- <s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="conversationID" type="s:string" />
</s:sequence>
</s:complexType>
</s:schema>
</types>
- <message name="setStringSoapIn">
<part name="parameters" element="s0:setString" />
</message>
- <message name="setStringSoapOut">
<part name="parameters" element="s0:setStringResponse" />
</message>
- <message name="textCallbackSoapIn">
<part name="parameters" element="s0:textCallbackResponse" />
</message>
- <message name="textCallbackSoapOut">
<part name="parameters" element="s0:textCallback" />
</message>
- <message name="setStringHttpGetIn">
<part name="text" type="s:string" />
</message>
<message name="setStringHttpGetOut" />
<message name="textCallbackHttpGetIn" />
- <message name="textCallbackHttpGetOut">
<part name="text" type="s:string" />
</message>
- <message name="setStringHttpPostIn">
<part name="text" type="s:string" />
</message>
<message name="setStringHttpPostOut" />
<message name="textCallbackHttpPostIn" />
- <message name="textCallbackHttpPostOut">
<part name="text" type="s:string" />
</message>
- <message name="StartHeader_literal">
<part name="StartHeader" element="conv:StartHeader" />
</message>
- <message name="CallbackHeader_literal">
<part name="CallbackHeader" element="conv:CallbackHeader" />
</message>
- <portType name="SimpleAsynchrWSSoap">
- <operation name="setString">
<input message="s0:setStringSoapIn" />
<output message="s0:setStringSoapOut" />
</operation>
- <operation name="textCallback">
<output message="s0:textCallbackSoapOut" />
<input message="s0:textCallbackSoapIn" />
</operation>
</portType>
- <portType name="SimpleAsynchrWSHttpGet">
- <operation name="setString">
<input message="s0:setStringHttpGetIn" />
<output message="s0:setStringHttpGetOut" />
</operation>
- <operation name="textCallback">
<output message="s0:textCallbackHttpGetOut" />
<input message="s0:textCallbackHttpGetIn" />
</operation>
</portType>
- <portType name="SimpleAsynchrWSHttpPost">
- <operation name="setString">
<input message="s0:setStringHttpPostIn" />
<output message="s0:setStringHttpPostOut" />
</operation>
- <operation name="textCallback">
<output message="s0:textCallbackHttpPostOut" />
<input message="s0:textCallbackHttpPostIn" />
</operation>
</portType>
- <binding name="SimpleAsynchrWSSoap" type="s0:SimpleAsynchrWSSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <operation name="setString">
<soap:operation soapAction="http://www.openuri.org/setString" style="document" />
<cw:transition phase="start" />
- <input>
<soap:body use="literal" />
<soap:header xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" wsdl:required="true" message="s0:StartHeader_literal" part="StartHeader" use="literal" />
</input>
- <output>
<soap:body use="literal" />
</output>
</operation>
- <operation name="textCallback">
<soap:operation soapAction="http://www.openuri.org/textCallback" style="document" />
<cw:transition phase="finish" />
- <input>
<soap:body use="literal" />
</input>
- <output>
<soap:body use="literal" />
<soap:header xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" wsdl:required="true" message="s0:CallbackHeader_literal" part="CallbackHeader" use="literal" />
</output>
</operation>
</binding>
- <binding name="SimpleAsynchrWSHttpGet" type="s0:SimpleAsynchrWSHttpGet">
<http:binding verb="GET" />
- <operation name="setString">
<http:operation location="/setString" />
<cw:transition phase="start" />
- <input>
<http:urlEncoded />
</input>
<output />
</operation>
- <operation name="textCallback">
<http:operation location="/textCallback" />
<cw:transition phase="finish" />
- <input>
<mime:mimeXml part="Body" />
</input>
- <output>
<http:urlEncoded />
</output>
</operation>
</binding>
- <binding name="SimpleAsynchrWSHttpPost" type="s0:SimpleAsynchrWSHttpPost">
<http:binding verb="POST" />
- <operation name="setString">
<http:operation location="/setString" />
<cw:transition phase="start" />
- <input>
<mime:content type="application/x-www-form-urlencoded" />
</input>
<output />
</operation>
- <operation name="textCallback">
<http:operation location="/textCallback" />
<cw:transition phase="finish" />
- <input>
<mime:mimeXml part="Body" />
</input>
- <output>
<mime:content type="application/x-www-form-urlencoded" />
</output>
</operation>
</binding>
- <service name="SimpleAsynchrWS">
- <port name="SimpleAsynchrWSSoap" binding="s0:SimpleAsynchrWSSoap">
<soap:address location="http://ntb22:7001/eShopWs/ws/SimpleAsynchrWS.jws" />
</port>
- <port name="SimpleAsynchrWSHttpGet" binding="s0:SimpleAsynchrWSHttpGet">
<http:address location="http://ntb22:7001/eShopWs/ws/SimpleAsynchrWS.jws" />
</port>
- <port name="SimpleAsynchrWSHttpPost" binding="s0:SimpleAsynchrWSHttpPost">
<http:address location="http://ntb22:7001/eShopWs/ws/SimpleAsynchrWS.jws" />
</port>
</service>
</definitions>
I'd like to try definition of explicite correlationSet in BPEL, but i think that callback must be recognized.
Thnak you for yor attention.
JMELICHN

Similar Messages

  • How to define endpoint for SessionBeans webservice in OC4J 10.1.3.1?

    Hi Gurus,
    I am trying to find solution for defining endpoint in HTTP/SOAP webservice created from SessionBeans based on annotations JSR-181. My problem is that I have cluster of J2EE nodes where my webservice is deployed and each node has its own hostname. when I access WSDL file from particular node I see that endpoint definition is pointing directly to its hostname. For example:
    <service name="CreditService">
    <port name="ValidateCreditCardServiceSoapHttp" binding="tns:ValidateCreditCardSoapHttp">
    <soap:address location="http://node1.site.com:7777/CreditService"/>
    </port>
    </service>
    But this is unwanted behavior, because I am loadbalancing my nodes by HW loadbalancer and I'd like to have this endpoint to pointing to my HW loadbalancer. Like this:
    <service name="CreditService">
    <port name="ValidateCreditCardServiceSoapHttp" binding="tns:ValidateCreditCardSoapHttp">
    <soap:address location="http://hwloadbalancer.hostname/CreditService"/>
    </port>
    </service>
    In normal WebService project I could force this endpoint definition in oracle-webservice.xml by adding this tag to it:
    <oracle-webservices xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/oracle-webservices-10_0.xsd">
    <web-site host="hwloadbalancer.hostname" port="80" />
    But it SessionBeans webmethods I can't do it because I don't have oracle-webservice.xml file. I have just this java file where I specified by annotations webmethods:
    package org.soademo.customerservice.business;
    import java.rmi.RemoteException;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebService;
    import org.soademo.customerservice.persistence.Customer;
    @WebService(serviceName = "CustomerSvc",
    targetNamespace = "http://www.globalcompany.com/ns/customer")
    public interface CustomerService {
    @WebMethod
    Customer findCustomerById(
    @WebParam(name = "custid",
    targetNamespace = "http://www.globalcompany.com/ns/customer")
    String custid) throws RemoteException;
    @WebMethod
    Customer findCustomerByEmail(
    @WebParam(name = "email",
    targetNamespace = "http://www.globalcompany.com/ns/customer")
    String email,
    @WebParam(name = "password",
    targetNamespace = "http://www.globalcompany.com/ns/customer")
    String password);
    @WebMethod
    String getCustomerStatus(
    @WebParam(name = "CustomerID",
    targetNamespace = "http://www.globalcompany.com/ns/customer")
    String CustomerID);
    @WebMethod
    String addNewCustomer(
    @WebParam(name = "customer",
    targetNamespace = "http://www.globalcompany.com/ns/customer")
    Customer customer);
    Do you have any idea how to do it?
    Any advice is welcomed.
    Thanks
    Peter

    Hello Peter,
    The version of JSR181 (WS Annotations) we have implemented does not provide such feature.
    So Oracle has implemented a proprietary annotation to control the endpoint (context) generation, this is the @Deployment annotation that is documented here
    Regards
    Tugdual Grall

  • How to callback from a webservice to a workflow node?

    I've initiated a conversation with a webservice from a workflow. The workflow
    goes on until it gets to the point where it must stop and wait for the callback
    from the webservice. I'd like it to passively wait (not polling in a loop).
    I'm an intermediate with webservices, not an expert - I think the callback handler
    should be in the workflow somewhere and the callback method should be defined
    in the webservice - am I completely off-base? Conceptually, could someone explain
    how a webservice could callback to a specific node in a workflow?

    Hi Lisa,
    if you are speaking about Weblogic 8.1, then use Client Response nodes in
    the webservice and Control Receive nodes in the calling workflow process.
    Regards,
    Robert Varga
    "Lisa" <[email protected]> wrote in message
    news:3fcf9105$[email protected]..
    >
    I've initiated a conversation with a webservice from a workflow. Theworkflow
    goes on until it gets to the point where it must stop and wait for thecallback
    from the webservice. I'd like it to passively wait (not polling in aloop).
    I'm an intermediate with webservices, not an expert - I think the callbackhandler
    should be in the workflow somewhere and the callback method should bedefined
    in the webservice - am I completely off-base? Conceptually, could someoneexplain
    how a webservice could callback to a specific node in a workflow?

  • How to define complex type with table per record?

    Hi,
    for one of my tasks I'm dealing with XML export. After short investigation of the postings in the forum I found an acceptable solution:
    Re: Convert ABAP to XML and Vice versa
    The issue is that I need an XML file like this:
    <plant>
      <material>
        <purchases>data</purchases>
        <purchases>data</purchases>
        <purchases>data</purchases>
        <sales>data</sales>
        <sales>data</sales>
        <sales>data</sales>
      </material>
      <next material>
      </next material>
    </plant>
    So here are the questions:
    1. Is it possible (and how) to define such deep structured type where for each record (means material) there is at least 1 internal table connected to that record? That would let me use a record-2-DOM conversion and a standard DOM-2-XML renderer.
    2. Could anyone please provide a very simple and short example?
    Of course, I could write my own XML renderer and achieve what I need (without using DOM, simply write to file all the desired XML tags while looping at my *nested* tables), but if there is a way to define such a structured type and further to fill it with data, it would help me learn a little bit more about abap opportunities and would save me a bit more time to create a renderer.
    Many thanks in advance.
    Regards,
    Ivaylo Mutafchiev

    Hi,
    You can declare deep structure as below
    TYPES : BEGIN OF ty_address,
              house(10) TYPE c,
              street(10) TYPE c,
            END OF ty_address.
    TYPES : BEGIN OF ty_itab,
             name(10) TYPE c,
             age      TYPE i,
             address  TYPE ty_address OCCURS 0,
            END OF ty_itab.
    DATA : i_address TYPE STANDARD TABLE OF ty_address,
           i_itab    TYPE STANDARD TABLE OF ty_itab.
    DATA : wa_address TYPE  ty_address,
           wa_itab TYPE  ty_itab.
    CLEAR :  wa_address,
             wa_itab.
    wa_address-house = 'House1'.
    wa_address-street = 'Street1'.
    APPEND wa_address TO i_address.
    wa_address-house = 'House2'.
    wa_address-street = 'Street2'.
    APPEND wa_address TO i_address.
    wa_itab-name = 'Test'.
    wa_itab-age  = 10.
    wa_itab-address[] = i_address[].
    APPEND wa_itab TO i_itab.
    Also check structure BSPL_GRID_FIELDCAT field CELL_COLOR

  • New to FrameMaker ~ How to define elements?

    I'm new to FrameMaker and was hoping somebody could help me. I've just uploaded a huge document from Microsoft Word into FrameMaker and I'm having issues with elements. Does anybody know how to define an element for the entire document? When I go into "element validation" on the side toolbar, I keep getting notices that my entire document is undefined.
    Hope this made sense! Thanks in advance!

    Hi Jen, Russ's advice is sound, but do you know that you *need* structured FM?
    If so, then that structured model should be known by your org and you should have a structured template (an existing FM doc with structured content will do...)
    You then need to create the conversion table (you've done that) and start assigning to the structure model you were given in the structured template.
    If you don't have any structured content or a structured template, you're probably working harder than you have to.
    If you do have those things, then you'll need to understand your structure model (either the EDD or element definition document or the DTD, the Document Type Definition). That will be critical to understanding what the conversion document is supposed to do.
    Finally...if this is the only document you have to convert, you may find that you're working really hard to do something you are not likely to do again. You might want to consider contracting out, as it may save you money, and will definitely save you time.
    -Matt
    BTW, if you're looking to learn all of this, we offer classes in Str FM Authoring, EDD Creation, Conversion, and Structured App Development...

  • How to define JMS-Adapter WSDL?

    Is there somewhere a short guide on how to define a WSDL für accessing
    a JMS queue through an JMS adapter?
    How do I have to define the XSD for the payload of a JMS message?
    Peter

    Srini,
    the URL format u need to give while creating webservice is ....
    <b>http://url:port/XISOAPAdapter/MessageServlet?channel=:service:channel</b>
    here
    service= <b>sender business ser</b>vice /<b>business system</b> whatever u have used.
    channel= sender communication channel
    for example
    <b>http://xyz.com:59600/XISOAPAdapter/MessageServlet?channel=:BS100:Sender_SOAP</b>
    BS100= sender business system
    SEnder_SOAP = sender communication channel
    hope u r clear now!!!!
    regrads
    biplab
    Use a Good Subject Line, One Question Per Posting - Award Points

  • How to define CSV to Document

    Hello experts,
    I'm looking for a scenario "how to define CSV to Document, etc:Order,Quatation..."
    Can someone please send me a sample or a link?
    I tried to use B1i Guide but the information is not enough
    Best Regards
    Nir

    Hi Nir,
    did you set up the File Inbound configuration according to your object definition of the F.AnySystem?
    I suppose you created an F.AnySystem object for the incoming CSV file. The mapping into B1 object is easier, if you use the same local object ID as in B1 (e.g. 22 for puchase order).
    Please open your created scenario with the Graphical scenario Design (SAP B1iSN Tools -> Development Tools -> Graphical scenarion Design) , select your Bizpackage and the Bizstep.
    In the opening window B1iSN DesignTime-Diagramm check, that every element is displayed in "green", especially:
    - Sender ObjectType
    - FileInbound
    If there is any red or yellow color in it, it means that something of your configuration is missing.
    If the FileInbound is not set up correctly, the inbound file will not be recognized as your defined F.AnySystem SenderObjectType.
    Please focus on FileInbound and maintain:
    - ObjMap (Define own, generate own and save own in exact order)
    - Format : Here you need to specify with kind of file is sent towards B1iSN, e.g.:
           SysType = F.AnySystem
           Inbound Formats = DSV
           Character encoding = ISO-8859-1
           DSV Object Identifier = e.g FieldName, if name of File is equal to field Object Id as defined in SenderObjectType
           DSV Object identifier Parameter = this entry needs to fit, what you defined in ObjMap
           DSV Field Delimitter = ;
           DSV Field Wrapper = "
    As last step you need to map the column names of the CSV file into XML format as described in chapter Inbound Format conversion  of B1iSNGuide 04 on page 44 for section DSV.
    Please have a look into the B1iSN guide again, you will find every information needed to tranform an CSV file into F.AnySystem object and into B1 object.
    Best regards
    Bastian

  • In Pages 5, Maverick, How do I stop automatic conversation of URLs to hyperlinks and seeing them underlined

    There used to be a preference setting in Pages.  Now it seems gone in Pages 5.   So how do I stop automatic conversation of URLs to hyperlinks and seeing them underlined in text.  Sometimes I want it, but not always.

    The preference setting to turn off links is gone. When you enter content that triggers link detection, a link character style gets applied. Right-click on the link, choose Edit Link from the menu, and then Remove.
    To prevent Pages from automatically detecting links, visit Edit > Substitutions > and deselect Smart Links.

  • How to define our own selection screen for logical database  in abap-hr?

    Hi Friends,
    Can u please help me
    How to define your own selection screens for  logical database.
    we use to do like(goto->attributes-HRReportcatagerious ).but How to desin using  customer table like t599c, t599f and how to add to my logical database?
    Thanks in advance
    charan

    check out this online help
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dba65c35c111d1829f0000e829fbfe/frameset.htm
    Regards
    Raja

  • How to define namespace with one XSD using in two different DB-Locations ?

    I'm not clear,How to define namespace, targetnamespace, schemaLocation or NoNamespaceSchemaLocation
    when using one common schema.xsd-definition
    in two different database-locations for exchange xml-documents?
    when insert xml-document I've got an error ORA-30937
    do you have an good exsample ?
    thanks
    Norbert
    schema :
    <xs:schema
    xmlns="http://sourcehost.com/namespace"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:oraxdb="http://xmlns.oracle.com/xdb"
    targetNamespace="http://sourcehost.com/namespace"
    xml-document :
    xmlns="http://Sourcehost.com/namespace"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:SchemaLocation="http://sourcehost.com/namespace http://desthost:8080/sys/schemas/PUBLIC/ADRESSEN.XSD">
    SQL> insert into ADRESSEN values
    (XMLType
    (bfilename ( 'XMLIMPORT_DIR', 'adressen.xml')
    , 0 )
    --> error :
    ORA-30937: No Schemadefinition for "SchemaLocation" (Namespace "http://www.w3.org/2001/XMLSchema-instance") in übergeordnetem Knoten "/ADRESSEN"

    Norbert
    The schema location used to register the XML schema with XML DB does not need to be a valid URL for accessing the XML Schema
    I can use the same URL , for instance
    http://xmlns.example.scom/xsd/myXMLSchema.xsd
    on machines dbserver1, and dbserver2. The only reason some people choose to use the hostname / portnumber convention is that this makes it possible to validate the XML Instance documents against the copy of the XML schema stored in the XML DB repository using an external tool like XMLSpy without have to add entries to XMLSpy's OASIS catalog files.
    I am concerned about the message you are getting. That's not correct AFAICT but I'd need to see the complete XML Schema and Instance to be sure.

  • How to define BPC architecture?

    Hi All,
    Iu2019m a BI and BPS consultant and Iu2019m doing a prototype for evaluating BPC for Sales Planning and I need some help.
    Process flow as:
    a.     Extract sales from COPA (amount and quantities);
    b.     Copy Actual to Budget version;
    c.     Create new customers;
    d.     Delete old customers;
    e.     Calculate the seasonality of sales & and adjust budget;
    f.     Load & adjust prices
    g.     Load & adjust sales costs
    h.     Calculate Net Revenue
    i.     Calculate costs
    My file format is as given below:
    Account|Category|Time|RptCurrency|Entity|Customer|Product|Amount|Quantity
    Questions:
    1- There is a specific KF to load quantity or I should use another account? If so how do I load the unit measures?
    2- I tried to load my file in u201CEuru201D but I received an error. The upload only finished OK when I changed the currency to u201CLCu201D. There is any trick?
    3- In customer dimension, I add the sales org. attribute but it didnu2019t work out because a customer can have more than one sales org. There is any way to define a compound key for a dimension?
    4- Where can I find relevant documentation about BPC?
    Thanks for reading my post.
    Regards, Fred

    Hi Shyam!
    Thanks for your answer.
    1. I followed your suggestion and load the data twice (one for amount and another for quantity) but I still have de unit measure problem (KG, TON, etc.). Any suggestion about how to handle this situation?
    2. Yes is easy for me to convert LC in any other currency after the data load. But the problem is that I must load data in multiple currencies (EUR, USD)u2026
    3. No it didnu2019t work out. Let me give you an example:
    Customer       Sales Org            Distribution Channel
    100001      AX01          1
    100001      AX02          2
    When I tried to process dimension I received the following message u201CMember ID must be   uniqueu201D. Any other idea about how to define the compound key Customer and Sales Org?
    Regards,
    Frederico

  • How to define Composite primary key for a Table

    Hi ,
    I am basically more into Java Programming , with little bit knowledge on Oracle as DataBase .so please excuse for my silly doubts .
    Can anybody please tell me how to define a Composite Primary Key on a Table .
    Thanks in advance .
    Edited by: user672373773 on Sep 25, 2009 8:54 AM

    Here is an example right out of the Oracle documentation and the syntax for adding PK since you mention adding a composite PK.
    Example creating composite index
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_indexing.htm#sthref594
    Syntax for adding a PK (composite or not)
    alter table oooooooo.tttttttt
    add constraint tttttttt_PK
    primary key (sample_column2,
    sample_column1)
    using index
    tablespace IDXSPC
    pctfree 05
    initrans 04
    maxtrans 08
    storage (initial 16k
    next 16k
    maxextents 32
    pctincrease 0);
    -- dictionary management with restricted storage, change as desired.
    HTH -- Mark D Powell --

  • How do I delete multiple conversations at once in messages?

    Hello All:
    I opened my messages app and was wanting to clean it up a bit. How do I delete multiple conversations at one time in messages on my mac?
    I can delete them one at a time but that is super annoying.. is this possible?
    thanks,
    paul

    Hi,
    There is no Modifier key in this instance to be able to select multiple chats/Conversations in the list.
    8:47 PM      Thursday; November 27, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How to define default element in SAP-Script?

    Hi Guys,
    How to define default element in SAP-Script?
    Can you tell me to do this...is it possible in all the windows or only in main window?
    Regards,
    GURU

    Hi,
    Welcome to SDN
    You can't post ur questions in other's threads .Open a new thread.
    click on post new thread and open new thread.
    Regards

  • How to define a Custom Action in VC 6.0 ?

    Hi all
    I want to know how to define a custom action like for a check box UI Element, I want particular action to be performed when it is checked ? How can I achieve this in VC 6.0
    Please feel free to ask me if my question is unclear ?
    Regards
    Kapil

    Hi,
    Try adding an expression element on your form.
    Go to the Expression control properties and in the Expression attribute enter
    IF(@Selected==true,"X"," ")
    @Selected is the checkbox. For your function call input use the expression element and not the checkbox.
    Hope this helps. Let me know if it works.
    Thanks.

Maybe you are looking for

  • How to delete a folder in Documents To Go.

    I've created a folder in Documents To called Song Lyrics. In that folder I have several 100 songs with lyrics. Now I want to delete the folder but there is no delete button. I can delete each song individually but that doesn't delete the folder itsel

  • Itunes match has duplicated my playlists

    My Itunes match failes when trying to match songs with 8 songs left to go on my new Mac Mini but it will retry and retry and causes duplicate playlists in itunes and Icloud. 1. How do I fix itunes Match? 2. How do I delete Multiple Playlist quickly r

  • Where has Adobe Acrobat 6.0 Professional gone?

    Hi,  I have just done something disastrous.  I had Adobe Acrobat 6 Professional installed and came across Adobe Reader 9 so I thought I'd upgrade!!!  Well, I obviously don't know my acrobats from my readers, etc. do I?  Duh!!  Now I can't look at any

  • Payment terms in bapi

    Hi im trying to change customer data using the BAPI BAPI_CUSTOMER_CHANGEFROMDATA1. I manage to change all the fields except the payment terms field. Whay is it hapenning?

  • Using accented characters in text

    I'm trying to create a document using text for the Czech republic. I only need "dead" text to be in the Czech language, so am using text objects. Every time I try to paste the Czech words in (via notepad to clear any background Java), LiveCycle crash