cancel
Showing results for 
Search instead for 
Did you mean: 

Inbound Proxy

Former Member
0 Kudos

Hi All,

I am working in a file-XI-(ABAP)proxy scenario. My input file is getting processed in XI and converted to XML format. In receiver end, I could not find the xml msg in target appln server. I have used XI receviver adapter and HTTP destination addressing type. Also in my ID I have configured Receiver Determination, Interface Determination & Receiver Agreement.

Any inputs on this.

Thanks & Regards,

Jai Shankar.

Accepted Solutions (0)

Answers (1)

Answers (1)

Shabarish_Nair
Active Contributor
0 Kudos

file-XI-(ABAP)proxy >>> do run SXMB_MONI in your target system (R3) and check for entries.

Also Ref:

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

/people/siva.maranani/blog/2005/04/03/abap-server-proxies

Former Member
0 Kudos

Hi,

I could find the xml msg in target system. The error comes when the date & time fields in my input is converted to ABAP date & time formats resp.

I have given date & time in the format 13.07.2006 & 12:41:06.

Can any one tell me how I l have to give my date & time in my input file.

Your suggestions will be of great help.

Thanks & Regards,

Jai Shankar.

bhavesh_kantilal
Active Contributor
0 Kudos

Hi,

Try Date : <b>YYYYMMDD</b>

Time : <b>HHMMSS</b>

so, 20060713 and 124106

Regards,

Bhavesh

Former Member
0 Kudos

Hi Bhavesh,

No success. Same err...

The error msg is

Classname: CX_SY_CONVERSION_NO_DATE_TIME Error Text: Time 20060713 is not a valid date according to the XML format for ABAP Kernel ErrorId: CONVT_NO_DATE

Thanks & Regards,

Jai Shankar.

Former Member
0 Kudos

Hi All,

It can process the date & time in the format YYYY-MM-DD & HH:MM:SS ie 2006-07-13 & 10:51:08.

Kindly let me know if I can specify the date & time in any other format and also what should I do to give Date & Time in user specified format.

Thanks & Regards,

Jai Shankar.

bhavesh_kantilal
Active Contributor
0 Kudos

Hi Jai,

Use the Date Transformation function of your Message mapping.

Get the date in the User's format, use Graphical Mappings date transformation function or write a simple UDF to convert it to the Proxy format.

Regards,

Bhavesh

Shabarish_Nair
Active Contributor
0 Kudos

try the predefined date functions else try

Date currentDate = new Date();

SimpleDateFormat formatter = new SimpleDateFormat("ddMMyy"); //try diff. formats here

String dateString = formatter.format(currentDate);

return dateString ;

Former Member
0 Kudos

Hi Bhavesh,

Thanks a ton. The graphical tool for date conversion must suffice my current requirements.

Thanks for all your efforts.

Regards,

Jai Shankar.