cancel
Showing results for 
Search instead for 
Did you mean: 

user.client data tag data in java class

Former Member
0 Kudos

Hi

i want to fetch the data from user tag(<<user.client>> Data Tag Container) in java steplat classe. if you have any java code please share with me.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Amitoj ,

The below code may help  .

this._user.eval("<<user.cleint>>").

Thanks and Regards,

Malthesha H S

Former Member
0 Kudos

What is this and how my code knows which class to refer.

Former Member
0 Kudos

Hi Amit,

In the steplet class there will be a method excecute() . In that metod you have to use this code. U have to find out in which steplet you have to use the above code snippet.

For example:

public boolean execute()

    throws AgentryException

  {

    try

    {

   lastUpdate = ConversionUtility.getInvalidTimestamp();

   lastUpdateValid = this._user.eval("<<LastUpdateValid>>");

}

Hope this may help.

Thanks and Regards,

Malthesha H S

Former Member
0 Kudos

Hi

i want to use in complex table. I want to create an complex table with all the client data. because complex table does not have execute method but the Iterator method.

Former Member
0 Kudos

Are you building your own Java Application our using a rebuilt SAP one?

Stephen

Former Member
0 Kudos

I am building my own java application which communicate between my agentry application and SFDC.