Everyone have their own laws to follow, others are citizens depends on their activities they will be accused or praised,
Someone accept drinks, cigarette as 'not bad', even brothel also but others point of view that should be punished......If we don't like or can't okay with that, that is bad as far as everyone concerned, when women starts to smoke and they are telling that is not bad, if it's in limit, limit also they describing and they started drinks also and other things also....in dark side..
If one like that or one am okay to do that, that is good, that is definition for good to all..others_______,
And when business man or who have power breaking law means that is not bad or wrong, money and power play role to decide good and bad in country.....
but i believe final judgment day(Everyday)......will get what we are giving only.......
Tuesday, July 27, 2010
Monday, July 19, 2010
Good after the bad.....and Bad after the Good...
We can't stop "Good after the bad and bad after the Good".
For every man in this world some good things will come after some bad things and also some bad things will come after some good things.......Hard to believe, If not realized..:-)
Even Good man would get bad things and Bad man would get good things. We can stop this cycle, whatever we are doing reflects the result of "good" sometime and also "bad" sometimes, Even if we don't do anything.....
Cycle always rotate for all peoples like this, But the good person with his truth, honest, fearless and wishes from good persons will save them, when they get "bad"...
But Bad mans with their irrespective with humans and bad characters will destroy(show) them, when "bad" comes to their life...
And finally all the persons in this world will get good and bad things in this world always as per cycle............:-)
For every man in this world some good things will come after some bad things and also some bad things will come after some good things.......Hard to believe, If not realized..:-)
Even Good man would get bad things and Bad man would get good things. We can stop this cycle, whatever we are doing reflects the result of "good" sometime and also "bad" sometimes, Even if we don't do anything.....
Cycle always rotate for all peoples like this, But the good person with his truth, honest, fearless and wishes from good persons will save them, when they get "bad"...
But Bad mans with their irrespective with humans and bad characters will destroy(show) them, when "bad" comes to their life...
And finally all the persons in this world will get good and bad things in this world always as per cycle............:-)
Friday, June 25, 2010
XML Publisher date format problems..
I faced one different problem in Rtf template for XML publisher.....
when i tried to get the date format as "mm/dd/yyyy"(as default the date format would come as 'yyyy-mm-dd), I just changed the date format in field properties(Text form field Options) that format and ran that report, I got the dates one day less to that actual date, for ex., if the actual date is 02/02/2010, In report it came as 02/01/2010,
When i tried to any date format in Field properties, it is coming like this.
So instead of this I used the below code in (text form field options -> add help text)
It is working fine now....
when i tried to get the date format as "mm/dd/yyyy"(as default the date format would come as 'yyyy-mm-dd), I just changed the date format in field properties(Text form field Options) that format and ran that report, I got the dates one day less to that actual date, for ex., if the actual date is 02/02/2010, In report it came as 02/01/2010,
When i tried to any date format in Field properties, it is coming like this.
So instead of this I used the below code in (text form field options -> add help text)
It is working fine now....
To view file attachment in peoplesoft - getting from webserver file web.xml
While viewing any attachment, we may get some trouble to open some files. It depends on File extention which is defined in the file web.xml in webserver..Here for example .doc files couldn't open in View attachment..For this case..
Please check the web.xml file as given in peoplebooks.......
"The web server determines the MIME type by looking at the extension of the attachment file and mapping it to a MIME type. The mapping is done in the following ways, depending on the web server and platform:
For Microsoft IIS, the mapping is done by using the standard Microsoft Windows extension association mechanism.
For Apache, the mapping is done by editing a configuration file called mime.types.
For WebLogic, a file called web.xml does the mapping.
The file web.xml is located in the WEB-INF subdirectory. This file contains a section that looks like this:

this file might be in your webserv folder.....
\FS89DMO\webserv\applications\peoplesoft\PORTAL\WEB -INF\ Web.xml
Please check and confirm once, you have the all file types on this....
Please check the web.xml file as given in peoplebooks.......
"The web server determines the MIME type by looking at the extension of the attachment file and mapping it to a MIME type. The mapping is done in the following ways, depending on the web server and platform:
For Microsoft IIS, the mapping is done by using the standard Microsoft Windows extension association mechanism.
For Apache, the mapping is done by editing a configuration file called mime.types.
For WebLogic, a file called web.xml does the mapping.
The file web.xml is located in the WEB-INF subdirectory. This file contains a section that looks like this:

this file might be in your webserv folder.....
\FS89DMO\webserv\applications\peoplesoft\PORTAL\WEB -INF\ Web.xml
Please check and confirm once, you have the all file types on this....
Thursday, June 24, 2010
Viewing File Attachments - setup with webserver
Viewing File Attachments
When viewing a file attachment, the browser invokes a viewer based on the content-type Multipurpose Internet Mail Extensions (MIME) category sent in the response header from the web server.
For example, if the user tried to view an MP3 file, the response header sent to the browser by the web server would indicate the audio/MPEG content type.
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Mon, 01 Oct 2001 21:25:51
GMT Content-Type: audio/mpeg Accept-Ranges:
bytes Last-Modified: Mon, 01 Oct 2001 21:00:26
GMT ETag: "78e21918bc4ac11:cc8"
Content-Length: 60
Notice that the Content-Type is audio/mpeg. The browser uses this MIME type to determine that a viewer for audio/MPEG is appropriate. If the web server did not send this content-type header, the browser would not be able to determine the nature of the file being transmitted, and it would be unable to invoke the correct application. The browser would try to display the file as text/plain, which might be the wrong assumption.
The web server determines the MIME type by looking at the extension of the attachment file and mapping it to a MIME type. The mapping is done in the following ways, depending on the web server and platform:
*
For Microsoft IIS, the mapping is done by using the standard Microsoft Windows extension association mechanism.
*
For Apache, the mapping is done by editing a configuration file called mime.types.
*
For WebLogic, a file called web.xml does the mapping.
The file web.xml is located in the WEB-INF subdirectory. This file contains a section that looks like this:
doc
application/msword
xls
application/vnd.ms-excel
Let's say you want to add an extension that causes log files to be interpreted as plain text files.
To determine the correct MIME type, check Request for Comments (RFC) documents 2045, 2046, 2047, 2048, and 2077, which discuss internet media types and the internet media type registry.
After checking the RFCs, you determine that the correct MIME type is text/plain. The following is an example of code you would add to the previous section of web.xml:
doc
application/msword
log
text/plain
xls
application/vnd.ms-excel
Once you save the file, the log extension is associated with the content type of text/plain.
Note. You must restart the WebLogic server before these changes are recognized.
Similar mappings can be achieved on other web servers, such as IBM WebSphere or Netscape Enterprise Server.
See your web server documentation.
Note. When trying to view the objects, the extension must exactly match what is set up in the web.xml file. This value is case-sensitive. If the object view appears garbled, chances are that either the extension is not set up in the web.xml file or there is a case mismatch.
source: http://download.oracle.com/docs/cd/E15645_01/pt850pbr0/eng/psbooks/tpcd/book.htm?File=tpcd/htm/tpcd11.htm#H3002
When viewing a file attachment, the browser invokes a viewer based on the content-type Multipurpose Internet Mail Extensions (MIME) category sent in the response header from the web server.
For example, if the user tried to view an MP3 file, the response header sent to the browser by the web server would indicate the audio/MPEG content type.
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Mon, 01 Oct 2001 21:25:51
GMT Content-Type: audio/mpeg Accept-Ranges:
bytes Last-Modified: Mon, 01 Oct 2001 21:00:26
GMT ETag: "78e21918bc4ac11:cc8"
Content-Length: 60
Notice that the Content-Type is audio/mpeg. The browser uses this MIME type to determine that a viewer for audio/MPEG is appropriate. If the web server did not send this content-type header, the browser would not be able to determine the nature of the file being transmitted, and it would be unable to invoke the correct application. The browser would try to display the file as text/plain, which might be the wrong assumption.
The web server determines the MIME type by looking at the extension of the attachment file and mapping it to a MIME type. The mapping is done in the following ways, depending on the web server and platform:
*
For Microsoft IIS, the mapping is done by using the standard Microsoft Windows extension association mechanism.
*
For Apache, the mapping is done by editing a configuration file called mime.types.
*
For WebLogic, a file called web.xml does the mapping.
The file web.xml is located in the WEB-INF subdirectory. This file contains a section that looks like this:
doc
application/msword
xls
application/vnd.ms-excel
Let's say you want to add an extension that causes log files to be interpreted as plain text files.
To determine the correct MIME type, check Request for Comments (RFC) documents 2045, 2046, 2047, 2048, and 2077, which discuss internet media types and the internet media type registry.
After checking the RFCs, you determine that the correct MIME type is text/plain. The following is an example of code you would add to the previous section of web.xml:
doc
application/msword
log
text/plain
xls
application/vnd.ms-excel
Once you save the file, the log extension is associated with the content type of text/plain.
Note. You must restart the WebLogic server before these changes are recognized.
Similar mappings can be achieved on other web servers, such as IBM WebSphere or Netscape Enterprise Server.
See your web server documentation.
Note. When trying to view the objects, the extension must exactly match what is set up in the web.xml file. This value is case-sensitive. If the object view appears garbled, chances are that either the extension is not set up in the web.xml file or there is a case mismatch.
source: http://download.oracle.com/docs/cd/E15645_01/pt850pbr0/eng/psbooks/tpcd/book.htm?File=tpcd/htm/tpcd11.htm#H3002
Friday, March 26, 2010
Monday, January 18, 2010
ராஜேந்திரன் மாரியப்பன்
My Name is Rajendran.M, Native place Virudhunagar and after college just i travelling across Madurai(madurai my 2nd home) and Trivendrum, Tirupur, Erode, Coimbatore, Chennai, Hyderbad now in bangalore... still my journey is going on.......:-)
now i am working in Peoplesoft as Associate Consultant Functional(Finance).
I started this blog to test my ablity to writing and also little curiosity to share my knowledger and thoughts.,Let see how can i use this..........
now i am working in Peoplesoft as Associate Consultant Functional(Finance).
I started this blog to test my ablity to writing and also little curiosity to share my knowledger and thoughts.,Let see how can i use this..........
Subscribe to:
Comments (Atom)
