Preferable database for storing the Inbox Mail Content

Hi All
we are developing one Email clinet software by using java mail API,
we are getting the inbox mail content without any problem, but when storing the data in database is giving problem, now i'm using MS Access database
For mailbody content used as MEMO type.
Error is : Count Field is Incorrect
thankq in advance
vasu

Srinivas,
1) Is the problem only with the message being sent through custom code using SO_DOCUMENT_SEND_API1? What happens if you send a message using SAPOffice?
2) Are the patch levels of the GUI same on both machines? Are you sure both PCs are configured exactly the same? Especially wrt to Windows & IE patches. I vaguely remember there were some issues a while ago with some IE patches. Normally in most client environments the desktops upgrades are controlled centrally and users do not have admin rights. Make sure the user has not done upgrades/installs on the PC in question. If that were the case the PC may needs to be reimaged.
BTW - What version  are you on R/3 and SAPGUI?
Regards,
Ramki Maley

Similar Messages

  • Why Sybase is not the prefered database for SAP?

    Dear Sir/Madam,
    Why Sybase is not the preferred database for SAP?
    What is the difference between Oracle performance and Sybase!
    I am sure that both are RDBMS!
    Please Clear this doubt.
    Sreevidya.S

    Because Sybase is a much smaller "player" in the DB world.
    Oracle is the industry leader; and it is usually a wise decision for a software product to store it's data into the "best of brand" technology.

  • Business Workplace Inbox : Mail Content Not Displayed

    Friends,
    We have a problem in displaying contents of the mail(SAP Inbox) in one of the PC's. When we reply w/refernce to that message the content is displayed properly. And also the same mail content is displayed properly in another PC's for the same user.
    We thought this is a GUI problem and re-installed SAP GUI(all components) but still the issue exists.
    Any other settings are required to be done to solve this problem? Can anyone please help us solving the issue?
    Note: we are using SO_DOCUMENT_SEND_API1 for creating the mail notification and the content is passed as 'RAW'.
    Thank you very much for your help and suggestions.
    Cheers,
    MS
    Message was edited by: Srinivasa Maram

    Srinivas,
    1) Is the problem only with the message being sent through custom code using SO_DOCUMENT_SEND_API1? What happens if you send a message using SAPOffice?
    2) Are the patch levels of the GUI same on both machines? Are you sure both PCs are configured exactly the same? Especially wrt to Windows & IE patches. I vaguely remember there were some issues a while ago with some IE patches. Normally in most client environments the desktops upgrades are controlled centrally and users do not have admin rights. Make sure the user has not done upgrades/installs on the PC in question. If that were the case the PC may needs to be reimaged.
    BTW - What version  are you on R/3 and SAPGUI?
    Regards,
    Ramki Maley

  • How to connect to database for all the reports FR

    Hi,
    I have developed 100 reports in production client, for testing purpose I have moved to
    test client. How can I connect to database for all the reports at a time?
    Regards
    Taruni

    Hi Taruni,
    You can connect to the database connection for all the reports through workspace in HFM.
    Connect to HFM Workspace-->click on Explore option-->and click on Tools-->click on Data Base Connection Manager and change the respective connections from Production Instance to Test Instance with required information, and than you will be able to connect to Test database for all the reports at a time.
    Regards,
    Srikanth

  • Configuration for storing CRM attachments to content server

    Hi Experts,
          We are in the process of large scale implementation. As part of it
    we are trying out solution to store attachments of business a transaction (ex-
    crmd_order - opportunities) to content server.
    As part of Initial configuration and set up
    1. We have installed and connected Content server to CRM system (
    CSADMIN)
    2. We have created a content repository ( OAC0)
    3. We have defined document type (OAC2)
    4. Category linked to content repository ( OACT)
    5. Created relationship b/w Content repository,Object type,document
    type and link table(OAC3)
    Connection looks fine and we are also able to store print lists to
    content server. But when we try saving attachments in tcode crmd_order
    for opportunities , its not saving to the content server. For this we
    have attached object type BUS2000111 to custom doc type and to content
    repository ID. But still have not been successful.
    If you could please confim on what are we missing here.
    We have actually able to save and retrive docs from ECC system but are
    not able to do so in CRM. Any assistance here will be of great help.
    Regards

    Hello,
    Table SOFFCONT1 attachments are stored that are recorded in the database logic of sap. That is if the id of the document not find it in this chart means that you are storing away in a content server.
    I've gotten crm annexes the content stored on a server.
    The first thing I have done is create a content server-class CRM. OAC0 in, then I created the category AOCRS taking the content. CSADMIN and I found that the content is running.
    In transaction SKPR08 BDS_POC1 class I have assigned to the Z-server content that I created. and in all kinds of CRM type I have assigned the new Z category I created.
    After the transaction SBDSV2 I created a new record with BUS1006 in this case because it was a contact in CRM and I have given the document class Z BDS_ATTACH the category of content.
    The BUS is obtained by a trace of the transaction and SWELS swel (with some modification from the transaction in which I attach the document).
    In SBDSV1 I've got to bus1006 BDS_LOC1 class.
    And with that I have solved the problem.

  • JavaMail: data type for storing subjects and message content

    Hello,
    I am writing a JavaMail program which gets incoming emails.
    I need to retrieve the subjects of the emails which are codes (ABCDEF, for ex) and insert the corresponding message body in the database if one code matches one in de database (DB). The subject codes are not unique.
    For example:
    - Message 1 on 12/12/2007
    Subject: ABCDEF, Message Body: You need to come soon
    - Message 2 on 13/12/2007
    Subject: ABCDEF, Message body: Sorry I was late
    - Message 3 on 14/12/2007
    Subject: ABCGHI, Message body: We'll have Chrismas party at your place
    My questions are:
    1. Should I retrieve all messages at a time, get the subjects codes and then do the checking in the DB?
    2. If yes, what kind of data type should I use to store the subject codes and the message body in order to guarentee that the correct corresponding message will be inserted in the DB once one subject code matches in the DB.
    ( I thought of a HashMap<subject_code, msg_content> but the subject_code are not unique)
    All suggestions are really appreciated. Please help!
    Marianne

    If you get all the messages at once, store them in
    an array or list, and then iterate over them to
    query the database, that would work. The message
    data won't be fetched from the mail server until you
    access it for each message. If you want to reduce
    the time you're connected to the mail server (maybe
    not important), you'll need to copy the messages
    into memory.
    One of the big issues to consider is what you want
    to happen in the event of a failure. You can't include
    the mail server operations in your database
    transaction so you probably want to update the
    database before removing the messages from
    the mail server. But you'll need to handle possible
    duplicates if your application fails after the
    database transaction and before the message
    is removed from the mail server.

  • TABLE for storing the condition type maintained in a RFQ

    Dear All ,
    I am maintaining some condition types ( both at header & item level ) while creating a RFQ .
    I want to know in which table can I find the condition types which I maintained for that particular RFQ.
    I have tried searching EKKO with the following parameter
    Purchasing Document No = RFQ No.
    Statu  = 'A'
    and tried to retrieve the valuein KNUMV field , so that i can pass the value of KNUMV to table KONV and retireve the condition .
    But KNUMV for document type 'A' ( RFQ ) is coming as blank for all the records.
    Requesting help on this .

    Hi,
    Condition types are stored in KONP table. You can try linking tables  EKKO / EKPO with KONP with required fields to get the data stored.
    Regards
    Ram

  • How to find an table for storing the employee salary

    hi,
           how to find an table for storing employee salary .. In which table those details are stored .. Please reply me.
    regards,
    kumar

    Hi,
    You can see the basic salary details from table -pa0008.If you can see the payroll data,then its not stored in transparent table.its in cluster.For viewing that,you can see through transaction code - pc_payresult.
    Regards,
    Manoj.

  • When I turned on my device the inbox mail was empty, in time machine does not show options to find old back up, only inbox is not listed... how I can get my inbox emails back?

    I turned my macbook on and all the emails of inbox were gone. In time machine, only the inbox option does not shows option to get back old back ups... how I can get my inbox emails?

    I figured it out. I couldn't see the old backups because the sparsebundle had not been properly unmounted in a previous session, so it kept giving an "already in use" error. The problem was solved by restarting the Time Capsule through the Airport Utility, mounting the sparsebundle by double-clicking it, and then going through the "Browse other backup disks" option in the Time Machine menu bar icon.
    The following links were helpful in figuring this out:
    http://pondini.org/TM/C12.html
    http://pondini.org/TM/17.html

  • Is there any database table for storing the weeks of a physical year?

    Hi all,
    Is there any standard table for displaying weeks in a year
    thanks in advance.

    Not sure about tables
    See the FM : TSTR_PERIODS_AMERICAN_WEEKS,TSTR_PERIODS_WEEKS
    Thanks
    Seshu

  • Standards for storing the Javadoc generated html files?

    I'm new to using Javadoc have the following questions:
    1) Does anyone know of any standards as to what directory structure should be used to store the Javadoc generated html files?
    2) When working with a development and production environment, where should they be stored? Only on the development server or on both?
    3) When setting up a html page to link to all of the various Javadoc generated files for all of our applications, should we just manually create an html page that links to them or is there a tool that will take care of this?
    Any information that can be provided will be a big help!

    1) All you do is specify a directory with the -d option and Javadoc creates the directory structure below that. We often use either "-d docs" or "-d html" to create a directory named "docs" or "html" in the current directory.
    2) Preferably they should be stored on a server that has a web server running so people can access them. We build the docs nightly on the development server where people can access the latest version using a file: URL (not with a web server). Then before each release we stage them on our intranet before we push them out to the intranet. We also run the DocCheck doclet and a link checker nightly so developers and writers can find errors in their documentation.
    3) If you want a top-level page that links to separate javadoc documents, you need to do this manually. However, keep in mind that you can also inter-link all those separate documents by using the -link or -linkoffline option.
    Let us know if you have more questions or comments.
    -Doug Kramer
    Javadoc team

  • Table for storing the substitutes in workflows.

    Hi ,
    I would like to know the table in which all the sustitute reletionship is stored i.e for which user who is the substitute.
    Regards
    Aditya

    Hi Aditya,
                  The table for the entry you specified in the question is HRUS_D2.I hope your query resolves soon.Have a best day ahead.

  • My email opens fine but when I click on the inbox mail crashes

    When I log onto my mail it crashes when I select my inbox. If I click on any box except my inbox it's ok. Any tips?

    Try gn_id's suggestion from the following post:
    Re: iTunes 11 crashes when opening the store - no error message

  • Java mapping - for reading the binary file contents and changing filename

    Hi,
    I have already gone through the various bolgs and threads and have not been able to find a solution to my problem.
    One blog did give some idea but did not help- "JAAPPING", an alternate way of reading a CSV file
    I am not very good in java but have been trying some out recently to fulfill the interface requirements.
    I would really appreciate if you could help am I am giving below the detailed scenario below.
    Part 1- working fine - The incoming file looks like:
    :20:STMEMU096868DUBE
    :25:001180256210
    :28C:00371/00001
    :60F:C090617AED742136,92
    :61:0906300630CD34,27FINTCREDIT INTEREST
    26MAY2009 TO 25JUN2009
    :62F:C090630AED742171,19
    :64:C090630AED742171,19
    The file name as received is:TCDE.BLQSAM.SAEA2682.C0084025.A9G24T58.20090724195908
    This file without any conversion is placed on XI server dircetory folder.
    Part 2 - need to develop
    The file should now be renamed according to the incoming value in 2nd line - specifically the 12 digit value 001180256210 and placed on the R/3 dircetory folder.
    The new file name in the above example should be:
    AC_NO_001180256210_datetime
    The module for the above was created and the last time I checked it was working.
    However, when I wanted to do final testing in Dev and move the changes further, the module has seemed to have stopped working so I need an alternate solution fast.
    I was thinking of doing the Java mapping as I will be more in control as to what is going on thereby reducing the dependency.
    There is no need to create any target xml structure as the file as it is needs to be placed in the target folder with a new name.
    I can get the file name in UDF which I have already created but i am not usre if it working.
    Can you please help?
    Any help will be greatly appreciated.
    Regards,
    Archana
    +44-7867636863

    Hi Stephen
    The xml must be getting added in the below part of the code. It is coming from arg[0]
    You can put a check and get it removed.
    while ((len = arg0.read(buffer)) != -1) {
      arg1.write(buffer, 0, len);
    Regards
    Osman

  • Possible to use ServiceCenter's Oracle database for Content Management?

    Hi,
    I have a quick question, and I would really appreciate if any of you have a quick answer for me.
    My company is sourcing for a Content Management option as a complement to the object information that can be stored in ServiceCenter's CMDB. We are working towards a complete information storage solution, where the CMDB is the obvious master for all object information.
    Our ServiceCenter/CMDB solution is run on an Oracle database. We have an interest in possibly using an Oracle Content Management solution on top of the existing Oracle database.
    A question was raised if the Content Management solution can use ServiceCenter's Oracle database for storing documents, ie act as a Content Management database?
    The documents need to be fully searchable from Oracle's Content Management product. The solution should support storage of a large amount of data and documents and be scalable. It is critical that this in no way lower ServiceCenter's performance.
    Please bear in mind that I'm not a technician, but involved in the portal/Content Management aspect of the project. I'm also responsible for the user environment of our ServiceCenter-implementation.
    Best regards
    Leila Blomqvist
    EDB Business Partner Sweden AB

    Hi Harsha,
    Are you going to use the same ERP server for Content server as well? Are you planning to store the documents of this ECC system to the content server only?
    If yes, what is the use of that, Anyways all the documents will be stored on this server only for this ECC system. Please go through the link given by Mr Saxena above, that will give you a clear picture of how the content server works.
    You can install content server with Max DB although you already have oracle installed on your linux server.
    I would suggest you to check the stuff about content server and get your concepts cleared up before going ahead. if you are not clear, you may end up crashing your existing ERP system as well.
    AC

Maybe you are looking for

  • Post an NON PO based incoming invoice

    Hi Experts, I need to know if there is any BAPI to create a incoming FI invoice. It is not PO/MM invoice that I want to post. I wanted to create a accounting invoice document/Vendor Invoice. I can create the same through transaction FB60. Thanks, Pra

  • N78 USB CONNECTIVITY PROBLEMS

    Hy guys, Since i've bought my N78 i've been able to connect the phone via cable only one time. After that, every time i've tryed to connect my n78 via cable my computer doesn't recognize my Phone. When I plug USB cable in one of the USB ports, Window

  • Mountain Lion Download where is it

    Hi, I started the download and went to bed (it was taking forever).The download appears to have finished but no sign of download in download folder or anywhere else. Can somebody please help? This is my 1st Mac and I am already wondering if I have ma

  • ASA 12 Import files

    An external program is dumping .xml files in a folder. As soon as the file is dumped we should import it in our SQL anywhere 12 database and move this file to a other folder. We do not know the names of the external files but the extension is allways

  • My default printer is constantly reset

    I have a Dell Dimension E310 with XP SP3. It is connected via USB to a DJ 940c and OfficeJet Pro L7680. Normally I use only the 940c but have sent/received data to/from the L7680. As I write this only the 940c is connected and it is assigned as the d