how to pass data from one simple-method to another simple-method?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

how to pass data from one simple-method to another simple-method?

Patrick-4
I am trying to call "updateSecurityGroup" simple-method from another
method.  How do I tell it I want add a security setting for a
particular user.  If it was a service I would use <set-service-fields>
but since its a method I'm confused.  Thanks. Patrick
Reply | Threaded
Open this post in threaded view
|

Re: how to pass data from one simple-method to another simple-method?

S K Pradeep kumar
Hi,

See the service groups .

For example: createCreditCardAndAddress

With regards,
S K Pradeep kumar,



On Tue, Feb 2, 2010 at 12:16 AM, Patrick <[hidden email]>wrote:

> I am trying to call "updateSecurityGroup" simple-method from another
> method.  How do I tell it I want add a security setting for a
> particular user.  If it was a service I would use <set-service-fields>
> but since its a method I'm confused.  Thanks. Patrick
>
Reply | Threaded
Open this post in threaded view
|

Re: how to pass data from one simple-method to another simple-method?

Adrian Crum
In reply to this post by Patrick-4
The called simple method will inherit the context of the calling simple
method. Any variables declared in the first will be available to the second.

-Adrian

Patrick wrote:
> I am trying to call "updateSecurityGroup" simple-method from another
> method.  How do I tell it I want add a security setting for a
> particular user.  If it was a service I would use <set-service-fields>
> but since its a method I'm confused.  Thanks. Patrick
>
Reply | Threaded
Open this post in threaded view
|

Re: how to pass data from one simple-method to another simple-method?

S K Pradeep kumar
result-to-field you can use..


With regards,
S K Pradeep kumar,



On Tue, Feb 2, 2010 at 12:50 AM, Adrian Crum <[hidden email]> wrote:

> The called simple method will inherit the context of the calling simple
> method. Any variables declared in the first will be available to the second.
>
> -Adrian
>
>
> Patrick wrote:
>
>> I am trying to call "updateSecurityGroup" simple-method from another
>> method.  How do I tell it I want add a security setting for a
>> particular user.  If it was a service I would use <set-service-fields>
>> but since its a method I'm confused.  Thanks. Patrick
>>
>>