Format records in the MTA msllog file ?

Hi, All.
Where i can read about format records in the MTA msglog file ??
I need this for parse this log-file.
Serg

Greate !
Thank your !
Serg
> Hi Serg.,
>
> You might find what you're looking for in "Details of GroupWise Message
> Log files", document ID = 10087320.
>
> Cheers,
>
> Andy
>
> Serg wrote:
>
>> Hi, All.
>> Where i can read about format records in the MTA msglog file ??
>
>> I need this for parse this log-file.
>
>> Serg

Similar Messages

  • Will the informations  be recorded in the alert.log file? -----No.168

    will the informations about the loss of a temporary file be recorded in the alert.log file?

    Yes, because whe your database starts needs to "mount" a tablespace with temporary files (case of tablespace "TEMP"). But don't worry with a loss of this tablespace because doesn't contain nothing when database starts.

  • How to hard code a records at the end of file

    Hello experts,
    I am doing IDOC to File scenario,I need to append 4 records at the end of file each time it is created in XI(These four records are need to be hardcode in the o/p file) .
    For example with IDOC to File,the o/p file like
    1 name number sal
    2 name number sal
    3 name number sal
    But my expected file is
    1 name number sal
    2 name number sal
    3 name number sal
    1 abc    123   2345676
    2 bdc     234 11111111
    3 aaa     123 11111111
    4 fffff       567 33333333
    Every time these 4 records are common.How can i hard code the last 4 records in XI.
    could u plz help me in this.Thanks in advance.
    Regards,
    KP

    Hi,
    Hope u are doing File Content Conversion in ur receiver adapter.
    Lets assume that u have structure like below
    -Record
      -RecordSet
        X
        Y
        Z
    Add one more Recordset like for Trailer records
    -Record
      -RecordSet
         X
         Y
         Z
      -TrailerRecordSet
         Trailer
    In ur mapping hardcode the Trailer node with the four lines (u can use '\n' char to represent nextlines)
    In ur Receiver communication channel add the TrailerRecordSet also...
    RecordSetStructure:  RecordSet,TrailerRecordSet
    TrailerRecordSet.fieldSeparator -
    '0'
    TrailerRecordSet.endSeparator -
    '0'
    RecordSet Parameters....
    Regards,
    Sudharshan

  • JAXB duplicates database records in the output XML file

    I am trying to export a database through XML file using JAXB. But i get an XML file having my records with the @XMLElement name i gave it (SMS_Database) and also another one following it with <list/> as the RootElement name. I don't know where it's coming from. Here is the code:
    import java.io.*;
    import java.sql.*;
    import java.util.ArrayList;
    import javax.xml.bind.*;
    public class Parse2Xml {
      static final String XMLBASE = "./SMS_Database.xml";
      static ArrayList<Intermed> dataList = new ArrayList<Intermed>();
      static Connection con = null;
      static PreparedStatement ps = null;
      static ResultSet rs = null;
      public static void main(String[] args) throws JAXBException, IOException {
            con = getConnection();
            try{
              ps = con.prepareStatement("SELECT * FROM SMS_Log");
              rs = ps.executeQuery();
              while (rs.next()) {
                  dataList.add(getData(rs));
              rs.close();
              ps.close();
              con.close();
            } catch (SQLException ex) {
                ex.printStackTrace();
            DataStore SMS_Database = new DataStore();
            SMS_Database.setList(dataList);
            JAXBContext context = JAXBContext.newInstance(DataStore.class);
         Marshaller m = context.createMarshaller();
         m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
         Writer w = null;
         try {
              w = new FileWriter(XMLBASE);
              m.marshal(SMS_Database, w);
         } finally {
              try {
                   w.close();
              } catch (Exception e) {
        static Connection getConnection(){
            String sqlURL = "jdbc:mysql://localhost:3306/SMSDB";
            String username = "SUNNYBEN";
            String password = "drowssap";
            try {
                try {
                    Class.forName("com.mysql.jdbc.Driver").newInstance();
                } catch (InstantiationException ex) {
                    ex.printStackTrace();
                } catch (IllegalAccessException ex) {
                    ex.printStackTrace();
            } catch (ClassNotFoundException ex) {
                ex.printStackTrace();
            try {
                con = DriverManager.getConnection(sqlURL, username, password);
            } catch (SQLException ex) {
               ex.printStackTrace();
            return con;
        static Intermed getData(ResultSet rs) throws SQLException {
                Intermed mediator = new Intermed();
                mediator.setSms_id(rs.getString("sms_id"));
                mediator.setSender_id(rs.getString("sender_id"));
                mediator.setMessage(rs.getString("message"));
                mediator.setPhone_no(rs.getString("phone_no"));
                mediator.setDate_sent(rs.getString("date_sent"));
                mediator.setSchedule_date(rs.getString("schedule_date"));
                mediator.setUsername(rs.getString("username"));
                mediator.setResponse(rs.getString("response"));
                return mediator;
    import java.util.ArrayList;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlRootElement;
    @XmlRootElement(namespace = "SMS_Database")
    class DataStore {
        @XmlElement(name = "SMS_Log")
        ArrayList<Intermed> dataList = new ArrayList<Intermed>();
        public ArrayList<Intermed> getList() {
            return dataList;
        public void setList(ArrayList<Intermed> dataList) {
            this.dataList = dataList;
    import javax.xml.bind.annotation.*;
    @XmlRootElement(name = "SMS_Log")
    @XmlType(propOrder = {"sms_id", "sender_id", "message", "phone_no", "date_sent", "schedule_date", "username", "response"})
    public class Intermed {
        private String sms_id;
        private String sender_id;
        private String message;
        private String phone_no;
        private String date_sent;
        private String schedule_date;
        private String username;
        private String response;
        public String getSms_id() {
            return sms_id;
        public void setSms_id(String sms_id) {
            this.sms_id = sms_id;
        public String getSender_id() {
            return sender_id;
        public void setSender_id(String sender_id) {
            this.sender_id = sender_id;
        public String getMessage() {
            return message;
        public void setMessage(String message) {
            this.message = message;
        public String getPhone_no() {
            return phone_no;
        public void setPhone_no(String phone_no) {
            this.phone_no = phone_no;
        public String getDate_sent() {
            return date_sent;
        public void setDate_sent(String date_sent) {
            this.date_sent = date_sent;
        public String getSchedule_date() {
            return schedule_date;
        public void setSchedule_date(String schedule_date) {
            this.schedule_date = schedule_date;
        public String getUsername() {
            return username;
        public void setUsername(String username) {
            this.username = username;
        public String getResponse() {
            return response;
        public void setResponse(String response) {
            this.response = response;
    }

    Dear All
    my requirement is to generate an xml file which looks similar to
    <?xml version="1.0" encoding="UTF-8"?>
    <?TestLine?>
    <test_mt>
    <field1>123</field1>
    <field2>234</field2>
    </test_mt>
    how to add <?TestLine?>  tag?
    Hi shabrasish and rajashekar
    i am new to java and xslt mapping can you guide me  or give me links which are similar to my requirement how to proceed with this kind of mapping
    thanks
    uday

  • Format probelm about the downloaded txt file

    I encounter a problem. after the 4.7 system upgrade to ECC6.0 ..(sandbox)
    Our report can't download the correct txt file.
    I wrote a test program.
    REPORT  ZTEST  NO STANDARD PAGE HEADING.
    write: / '123',
             / 'abc'.
    I download from menu :system->list->save_>local file: not converted.
    but  when opening the txt file , it shows:
    2008.09.09                                                                   test                                                                          1----
    123abc
    everything is in one line. and  add  the current date ..and '----
    Help.. what's the problem?
    Many thanks
    Edited by: hand consultant on Sep 9, 2008 8:13 AM

    Hi,
    Ganesh Modhave,
    It is strange problem. Because in the same computer, I downloaded the txt file from 4.6c system. And the result is OK.
    So I guess some upgrade issue result in the problem..
    I path the gui 710 to level 2.,,........ It's okey now ,thanks.

  • Unable to delete records as the transaction log file is full

    My disk is running out of space and as a result I decided to free some space by deleting old data. I tried to delete 100,000 by 100,000 as there are 240 million records to be deleted. But I am unable to delete them at once and shrinking the database doesn't
    free much space. This is the error im getting at times.
    The transaction log for database 'TEST_ARCHIVE' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
     How can I overcome this situation and delete all the old records? Please advice.
    mayooran99

    In order to delete the SQL Server need to write the information in the log file, and you do not have the place for those rows in the log file. You might succeeded to delete less in each time -> next backup the log file each time -> next shrink the
    log file... but this is not the way that I would chose.
    Best option is probably to add another disc (a simple disk do not cost a lot), move the log file there permanently. It will increase the database work as well (it is highly recommend not to put the log file on the same disk as the data file in most cases).
    If you can't add new disk permanently then add one temporary. Then add file to the database in this disk -> create new table in this disk -> move all the data that you do
    not want to delete to the new table -> truncate the current table -> bring back the data om the new table -> drop the new table and the new file to release the temporary disk.
    Are you using full mode or simple recovery mode ?
    * in full mode you have to backup the log file if you want to shrink it
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • How to be notified for all ORA- Errors recorded in the alert.log file

    based on Note:405396.1, I Changed the Matches Warning from the default value ORA-0*(600?|7445|4[0-9][0-9][0-9])[^0-9] to ORA-* in order to receive an warning alert for all ORA- errors.
    but I just recieved the alert like the following:
    Metric=Generic Alert Log Error
    Time/Line Number=Mon Feb 25 23:52:21 2008/21234
    Timestamp=Feb 26, 2008 12:06:03 AM EST
    Severity=Warning
    Message=ORA-error stack (1654, 1654, 1654) logged in /opt/oracle/admin/PRD/bdump/alert_PRD.log.
    Notification Rule Name=Alert Log Error
    Notification Rule Owner=SYSMAN
    as you can see, the message only indicate the ORA-1654, nothing else.
    How to set in 10g grid control to get the details alert that in the alert log like:
    "ORA-1654: unable to extend index ADM.RC_BP_STATUS by 1024 in tablespace PSINDEX"
    I can't believe Oracle 10g Grid control only provide the ORA- number without details

    Go to your database target.
    On the home tab, on the left hand side under Diagnostic Summary, you'll see a clickable date link next to where it says 'Alert Log'. Click on that.
    next click on Generic Alert Log Error Monitoring Configuration (its at the bottom)
    In the alert thresholds put:
    ORA-0*(600?|7445|4[0-9][0-9][0-9])[^0-9]
    I believe that will pick anything up but experiment, its only perl.
    If you want to test this use the DBMS_System.ksdwrt package but I would advise you only do so on a test database. If you've never heard of it, google it. Its a way of writing to your alert log.
    Make sure you have your emails sent to long format as well.

  • EHP1 Installation - error during the XML stack file check.

    Hello SAP fans and gurus.
    I'm updating CRM with EHP1 and I'm stuck at the phase PREP_EXTENSION/SUBMOD_EXTENSION_NEW/SELSTACKXML. Something wrong with the XML stack file. I get this error:
    Severe error(s) occured in phase PREP_EXTENSION/SUBMOD_EXTENSION_NEW/SELSTACKXML!
    Last error code set: Error reading stack info, return Code = -1, Reason = 'The stack configuration is not valid for the system CRM, inst.-no. 0020652601'
    The trouble ticket isn't saying much, but I'll post it anyway:
    This trouble ticket was created by SAPehpi on 20110520102342
    SAPehpi broke during phase SUBMOD_EXTENSION_NEW/SELSTACKXML in module PREP_EXTENSION / Extension module for start release >= 40B
    Error Message: Error reading stack info, return Code = -1, Reason = 'The stack configuration is not valid for the system CRM, inst.-no. 0020652601'
    Summary of SAPehpi:
    SAPehpi Release:     lmt_001
    SAPehpi Version:     40.005
    Start Release:          701
    Target Release:          701
    Summary of host system details:
    SID:               CRM
    Host:               sapvmcrm
    MS Host:          sapvmcrm
    GW Host:          sapvmcrm
    Start Path:          /usr/sap/CRM/DVEBMGS00/exe     
    Kernel Path:          /usr/sap/CRM/DVEBMGS00/exe
    Summary of operating system details:
    OS Type:          Linux X86_64
    OS Version:          2.4
    Summary of database details:
    Database Type:          ada
    Database Version:     7.7.07.014
    Summary of RFC details:
    Host:               sapvmcrm
    GW Host:          sapvmcrm
    Client:               000
    Destination:          CRM
    Language:          
    System No.:          00
    There's one problem with the file SAPEXEDB_82-10007250.SAR, which was in the download basket, but is not available for download. I deleted the record in the XML stack file and tried the phase again... with no success. Going through the XML file and checking if the packages have been downloaded is a real pain in the ***.
    Anyway, can I somewhere download this file SAPEXEDB_82-10007250.SAR?
    Or can anyone help me, how solve this issue different way?
    Thanks a lot in advance.
    -Stefan

    OK, I got it. Wrong installation number. We had to change the installation number in the stack file according the system in the Solution Manager via transaction SMSY. Then it worked like a charm.

  • I am using Toast 11 to burn dvd's. With FCP10.1.3  I could go into the FCP shared folder grab the encoded .m2v file and drag it into Toast 11 and author dvd and burn.  How can you do this with FCP 10.1.4?

    I am using Toast 11 to burn dvd's. With FCP10.1.3  I used to go into the FCP shared folder grab the encoded .m2v file and drag it into Toast 11 and author dvd and burn.  How can you do this with FCP 10.1.4? 

    BenB it creates a disc image only and it's not in .m2v. I think it saved it as an Apple Pro Res 422 format instead. The disc image file format will not allow
    Toast 11 to create menus etc.  Thanks for your help.

  • Convert the Database records to a standard XML file format?

    Hai,
    i want to convert the Database records to a standard XML file
    format which includes the schema name, table name, field name
    and field value. i am using Oracle 8.1.7. Is there any option
    please help me
    Thanks in advance.

    You could put the files somewhere and I can export them as QuickTime. Or you could find anyone you know who has Director. Or do the 30 day trial download
    Another approach would be to play the DCR in a browser window, and do a screen recording. But that’s unlikely to give the perfect frame rate that you would get by exporting from Director.

  • I'm trying to extract audio files from my OLYMPUS Digital Voice Recorder VN-6200PC I am getting this error whenever I try to play its file type on my MacBook Pro,"The document "VN622195.WMA" could not be opened. The movie's file format isn't recognized."

    I'm trying to extract audio files from my OLYMPUS Digital Voice Recorder VN-6200PC
    I am getting this error whenever I try to play its file type on my MacBook Pro,"The document “VN622195.WMA” could not be opened. The movie's file format isn't recognized."

    The mac has no native way to read .wma files (these are Windows Media Audio files).  Do a search on the internet for playing wma files on a mac.  You will find several links to solution (one is to use flip4mac).

  • I'm recording video on JVC HD camera.Every 13:54 it starts a new file.I have one file that won't play.I get this message:Quick time player can't open (names file) because the movie's file format isn't recognized.  Only happens this one file.Ideas?

    I can't open one Quick Time movie file.  It says: Quick time player can't open (names file) because the movie's file format isn't recognized.  Only happens on this one file.  All the others of a two hour shoot are fine. 
    Any ideas what's happened and is there some way to open that file and retrieve what's on it? 

    Thanks this was useful. I have been ripping my audiobooks and I was finding that they would get uploaded to iCloud in the process, which in itself was fine, but then iTunes would not let me change the media type to Audiobook, which is annoying as it effects how iTunes treats the media. Like showing you the skip back 10 seconds button.
    The general outline here helped me work around the issue and change the media type before the media was re-uploaded to iCloud.
    Sean

  • What is the preferred video file format for iMovie? About to purchase POS digital camera w ability to record HD Video.

    I am about to purchase a digital point and shoot camera with the ability to record HD video.   I plan on importing all pics and video to iPhoto and want to begin creating iMovies combining photo's and the video clips.
    It seems from the many posts that .MOV is supported in iMovie, but many posts in the community seemed to suggest that .MOV does not always work in iMovie.  

    YEAH, but  "iMovie" changes the "camcorder Mts" files into "mov" files and
    this causes some lost of movie quality. To maintain the highest quality
    camcorder movie quality you must not change the "mts" files. However, if
    you want to "merge" any of your camcorder movies (and you most likely
    will) any merging also changes the "mts" files to "mov" etc., so you will still
    loose movie quality. "There appears to be no way to avoid loosing picture
    quality once you decide to change the "Mts" files to something other".

  • Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the rows? Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the records?
    Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    The Oracle documentation has a good overview of the options available
    Generating XML Data from the Database
    Without knowing your version, I just picked 11.2, so you made need to look for that chapter in the documentation for your version to find applicable information.
    You can also find some information in XML DB FAQ

  • IMovie 09 has trouble importing large video files from my JVC HD-40. I am trying to edit files such as these in 09. What should I do? Would buying iMovie 2011 help? I am shooting AVCHD files instead of the other mpeg2 file format.

    Hi,
         I am new into the Apple Community. I have a camcorder known as the JVC GZ-HD40 US and I currently am trying to use iMovie 2009 to edit my movies. With my camcorder, I have the choice to use two different video formats: AVCHD or Mpeg2. All my videos are shot in the AVCHD (HD) file format. This camcorder also has a 120 G Hard Drive built into it. When I plug in the camcorder through USB to my MacPro, the Hard Drive of the camcorder shows up as a icon on the desktop. Many of my video clips are at least thirty minutes in length, inside the camcorder. When I try to import in iMovie my video files, it only imports around ten minutes of the video and skips to the end of the clip. I would greatly prefer to use my MacPro desktop to edit movies instead of my Windows 7 computer which seems to work fine. Is there a solution to this problem? Would the new iMovie 2011 application solve this problem? I also have the Final Cut Express to work with, and also, can't get it to work. What should I try doing?

    Hi all,
    I have the exact same problem. I've just been to Thailand with my girlfriend, and we recorded a lot of stuff with my brand new Sony HD camcorder. And whenever the we ran out of camcorder memory we just emptied everything onto my HP laptop using the supplied Sony software, which produced m2ts files. When we got home, I realized that my Mac Pro/iMovie09 was not able to import this format. What a huge disappointment! Especially considering the fact that I just bought my mac back in March (my first mac ever) only for video editing and music composing (no problems with music composing, however!).
    Well, I needed a solution, so last week I just bought the Voltaic HD converting software (35$), and it works great. No problems. Only thing is that my Mac Pro (quad intel core) had to work 24 hours a day for four straight days/nights in order to finish the converting job - resulting in 434 GB worth of mov-files. This is no problem as such, and the quality is great. BUT it seems rather stupid that this converting has to take place. If I use Sony Vegas on my PC, it works out of the box with my original m2ts-files. And I would really appreciate if Apple would implement a simple import function of m2ts-files in their software - one that would (if necessary) automatically convert the files to mov. Or even better: would work natively with the m2ts-files.
    Best,

Maybe you are looking for

  • How do i import pictures from shutterfly to iphoto

    I am trying to upload photos from shutterfly to my iphoto - can you tell me how.

  • Enabling VT-x in the BIOS of a G780

    Hi I've tried to set up a 64bit guest operating system in VMWare and in VirtualBox, but have been unable to. I understand that the problem might be that VT-x is not enabled in the BIOS. However, on booting up my G780 and using F2 to edit the  setting

  • E420R Unable to install Solaris 8, 9 or 10

    Hi everyone, Currently I just got hold of a Sun E420R server from a customer. The machine was able to boot but when I re-install the OS to a newer version Solaris 9 it start to give me problem. The machine is have the following error messages.. Pleas

  • Wireless dot1x authenticated but no IPv4 DHCP assignment

    Hi all, facing some issue on wireless not getting IP from the external DHCP server. 01. Problem statement After authentication success, client PC cannot get IP from DHCP server. This is the error log found at the WLC *RRM-MGR-2_4-GRP: May 21 15:23:02

  • How to query the rows of a  ViewObject programatically?

    Hi All, I'm using View Objects(based on a SQL query) as part of my ADF form. At present my VO contains about 2500 rows. I need to programatically query these 2500 rows of the ViewObject for a particular row. I'd like to know the best approach to do t