Batch problem with 'BAPI_PRODORDCONF_CREATE_TT'

Hi All!
We are using function 'BAPI_PRODORDCONF_CREATE_TT' but not fully sucessfully.
We call this function to make a completion confirmation with a goods movement.
Right now we are doing some test trying to get the same results that if we use COR6N.
We enter a proc order, then put a qty into yield, click Goods movement (the matr is batch managed) and then enter a batch (movement type 101 by default). Then save. Everything is ok and is I check in table MSEG there is an entry for the confirmation with the batch I used.
Now, when we try this with the bapi the qty is confirmed but in MSEG the batch that appears is different than the one we passed to the BAPI. This is how we are calling the funciton:
  CALL FUNCTION 'BAPI_PROCORDCONF_CREATE_TT'
EXPORTING
  POST_WRONG_ENTRIES       = '0'
  TESTRUN                  = 'X'
   IMPORTING
     return                   = wa_bapiret1
   TABLES
         timetickets              = i_timetickets[]
         goodsmovements           = i_goodsmovements[]
         link_conf_goodsmov       = i_link_conf_goodsmov[]
         detail_return            = li_detail_return[] .
  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
  EXPORTING
     WAIT          = 'X'
   IMPORTING
     RETURN        = li_ret
i_timeticket one entry with fields informed: orderid, phase, plant, yield, conf_acti_unit1
i_goodsmovements one entry with material plant resource stg location, batch, mov type
(values as in COR6N)
i_link_conf_goodsmov[] two cases:
  1.if we place an entry such as
      i_link_conf_goodsmov-INDEX_CONFIRM = 1.
      i_link_conf_goodsmov-INDEX_GOODSMOV = 1.
    Then no entry appears in table MSEG, in COR3 delivered qty is not increase but in COR6N the already confirmed quantity IS increase
  1.if we place no entry then
    Then an entry appears in table MSEG but the batch is not the one in i_goodsmovements, in COR3 delivered qty is increase and in COR6N the already confirmed quantity also increases
So our problem is that when we use i_link_conf_goodsmov to make the bapi use the batch we specify then it does not seem to work. success is returned from bapi in both cases.
I would really appreciate it anyone can shed some light in this. (points will be given of course!)

Hi Alberto,
We are facing same problem.
While we are passing batch through BAPI it is considering running batch not considering inputed batch.
Thanks
Ram Mittal

Similar Messages

  • Automate, Batch problem with exporting files

    Hello.
    I have already used batch many times where i have for example changed image size and then exported it to another folder. So my actoin looked like:
    - image size
    - export
    - close
    Then i have set the batch source and destination folder and it all went smooth. All the work has been done automatically with no click needed.
    Today im having problem however: When i do the above steps photoshop do all these actions to all the source files but saves them all as single file whic is being replaced over and over and over againw ith same name... I dont see any difference in what i have done now and what i have been doing all the time but this time it just do not want to modify and export the modifyied source files with their own names to the destination folded... Im stuck with 1 file in destination folder with source name of the first file in source folder (when i look in that folder during the batch process i see the thumbnail image changing)...
    All i could do to finally finish my work was to delete "export" and "close" positions from the saved action so it started asking me about compression when each file has been modified... It works, finally i have all modified source files in destination folder, but it kept asking me about compression with each file... it can hardly be called automated process.
    Anyone have any idea why it stopped working while it have been working before flawlessly?
    Regards
    Muniek

    When you record the export (save for web),
    if you change the name in export dialog, then
    file will be replaced over and over.
    Do you get a message like this?
    MTSTUNER

  • Printing Problem with BAPI_PRODORDCONF_CREATE_TT

    Hi,
    I am using  BAPI_PRODORDCONF_CREATE_TT  to carry out production order confirmation. The confirmations are carried out correctly. The auto-goods receipt happens for the confirmation qty which generates an Inspection lot. My problem is with this BAPI, Inspection lot output is not triggered. If I manually do confirmation using CO11, inspection lot output is printed automatically. Does this BAPI support inspection output? Any input on this will be highly appreciated. Thanks in Advance.
    Regards,
    Amol

    Did you ever get an anser to this Amol? I am having the same issue.
    Cheers
    Graham Robbo

  • Problem  in BAPI_PRODORDCONF_CREATE_TT change status back to PCNF

    Hi Abap and functional experts. Problem with  BAPI_PRODORDCONF_CREATE_TT. Once Sap production order status changed to CNF for final confirmed OK no problem. But when additional postings the  production order status is set back to PCNF from CNF without a cancellation of the final confirmation, which allows another CNF to be set. The bapi does not through an error when the prod order is already closed.  Any ideas why this happens.

    I am facing the same issue. How did you fix it?

  • Problem with RollBack in  Oracle Batching

    Hi all,
    This is Adhil. I am facing a problem with Oracle Batching in java.
    I am using java 1.5 and Oracle 10 g.
    I have a below standalone code to test the Oracle Batching (Assume that i have the 2 tables with zero records ).
    with the batch size set as 10, I am trying add 2 records in each table.
    Now I rise divideByZero error exception manually and trying to rollback the connection in catch statement . But couldn't rollback the connection. I see the 2 records added in both of my tables.
    The same code when i set the batchsize 2 and trying to insert 10 records ,I could rollback and no rows get inserted.
    Since I am going to get the no of insert from user in runtime , my rollback may fail in any combinations as in my first case(with batch size 10 and if the no of insert is 2).
    import java.io.*;
    import java.util.*;
    import java.sql.*;
    import oracle.jdbc.*;
    public class BatchTest{
         public static void main(String args[]) throws Exception{
              Connection conn = null;
              conn = new BatchTest().createConnection();
              new BatchTest().insertdata(conn);
         public Connection createConnection() throws Exception{
                   Properties props =new Properties();
                   props.load(ClassLoader.getSystemResourceAsStream("connection.properties"));
                   String connectionString = (String)props.get("connection");
                   String username = (String)props.get("username");
                   String password = (String)props.get("password");
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                   Connection connection = DriverManager.getConnection(connectionString, username, password);
                   return connection;
         public void insertdata(Connection dbConnection){
              PreparedStatement psCnt =null;
              PreparedStatement psImp =null;
              try{
              dbConnection.setAutoCommit(false);
              psCnt = dbConnection.prepareStatement("insert into CHKCNT values (?,?)");
              psImp = dbConnection.prepareStatement("insert into CHKIMP values (?,?)");
              ((OraclePreparedStatement)psCnt).setExecuteBatch (10);
              ((OraclePreparedStatement)psImp).setExecuteBatch (10);
              int x=0;
              for(int i=1;i<=2;i++){
                        psCnt.setInt(1,i);
                        psCnt.setString(2,"Jack");
                        psImp.setInt(1,i);
                        psImp.setString(2,"John");
                        psImp.executeUpdate();
                        psCnt.executeUpdate();
              if(true) x=10/0;
              dbConnection.commit();
              }catch(Exception e){
                   try{
                   dbConnection.rollback();
                   dbConnection.close();
                   }catch(Exception ex){
                   e.printStackTrace();
              }finally{
                   try{
                        psCnt.close();
                   }catch(Exception ee){
                   ee.printStackTrace();
    Can anyone suggest me a way to make my rollback work.
    Thanks in advance.
    -adhil.J

    Hi all,
    This is Adhil. I am facing a problem with Oracle Batching in java.
    I am using java 1.5 and Oracle 10 g.
    I have a below standalone code to test the Oracle Batching (Assume that i have the 2 tables with zero records ).
    with the batch size set as 10, I am trying add 2 records in each table.
    Now I rise divideByZero error exception manually and trying to rollback the connection in catch statement . But couldn't rollback the connection. I see the 2 records added in both of my tables.
    The same code when i set the batchsize 2 and trying to insert 10 records ,I could rollback and no rows get inserted.
    Since I am going to get the no of insert from user in runtime , my rollback may fail in any combinations as in my first case(with batch size 10 and if the no of insert is 2).
    import java.io.*;
    import java.util.*;
    import java.sql.*;
    import oracle.jdbc.*;
    public class BatchTest{
         public static void main(String args[]) throws Exception{
              Connection conn = null;
              conn = new BatchTest().createConnection();
              new BatchTest().insertdata(conn);
         public Connection createConnection() throws Exception{
                   Properties props =new Properties();
                   props.load(ClassLoader.getSystemResourceAsStream("connection.properties"));
                   String connectionString = (String)props.get("connection");
                   String username = (String)props.get("username");
                   String password = (String)props.get("password");
                   Class.forName("oracle.jdbc.driver.OracleDriver");
                   Connection connection = DriverManager.getConnection(connectionString, username, password);
                   return connection;
         public void insertdata(Connection dbConnection){
              PreparedStatement psCnt =null;
              PreparedStatement psImp =null;
              try{
              dbConnection.setAutoCommit(false);
              psCnt = dbConnection.prepareStatement("insert into CHKCNT values (?,?)");
              psImp = dbConnection.prepareStatement("insert into CHKIMP values (?,?)");
              ((OraclePreparedStatement)psCnt).setExecuteBatch (10);
              ((OraclePreparedStatement)psImp).setExecuteBatch (10);
              int x=0;
              for(int i=1;i<=2;i++){
                        psCnt.setInt(1,i);
                        psCnt.setString(2,"Jack");
                        psImp.setInt(1,i);
                        psImp.setString(2,"John");
                        psImp.executeUpdate();
                        psCnt.executeUpdate();
              if(true) x=10/0;
              dbConnection.commit();
              }catch(Exception e){
                   try{
                   dbConnection.rollback();
                   dbConnection.close();
                   }catch(Exception ex){
                   e.printStackTrace();
              }finally{
                   try{
                        psCnt.close();
                   }catch(Exception ee){
                   ee.printStackTrace();
    Can anyone suggest me a way to make my rollback work.
    Thanks in advance.
    -adhil.J

  • Problem with RoboHelp 7 and Batch Generate "Printed Documentation"

    Hello people! I have a problem with Batch Generate of Word documenttion in RoboHelp 7, when launch the Batch Generate with "Printed Documention"  option selected send me a error message like this "Adobe Acrobat or Adobe Elments version 7 or Higher is not installed on your system".
    RoboHelp generate de .chm file without problems.
    I have the last version of Adobe Acrobat Reader Installed in my computer, my RoboHelp's project is not very complicated, the only to remarks is in spanish lenguage and the computer is in spanish too, but anothers projects in english US generate documentation without problems, I dont know if this had anything to do..
    I have windows XP SP 3,so I test in another computer to generate documentation and I have the same problem. What´s happend ?? 
    Thank you for all.

    I too am having this issue with the TOC. Firefox simply
    doesn't handle it correctly and I have no idea how to fix
    it.

  • Problem with running rhcl.exe in batch file

    Hi,
    I'm running Robohelp 8 and trying to use rhcl.exe to generate multiple help projects. I'm having a problem with the folder where the rhcl.exe is generating the web help. It seems to ignore the "-o" switch and gets the generation folder from the project all the time. As you can see from the log file below, the exe appears to pick up the "-o" path  (......\Test\Opportunities.htm), but writes the generated files to the path in the project (.....\Opportunities\index.htm).
    Anyone else come across this problem?
    MY BATCH FILE IS:
    "C:\Program Files\Adobe\Adobe RoboHelp 8\RoboHTML\rhcl.exe" "C:\Data\RoboHelp\RoboHelp Projects\SubProjects\SupplierPortal\Opportunities\Opportunities.xpj" -l Webhelp -o "C:\Data\RoboHelp\GeneratedWebHelp\SupplierPortal\mergedProjects\Test" -g "C:\Data\RoboHelp\GeneratedWebHelp\Generate.log"
    THE LOG FILE CREATED IS:
    Adobe (R) RoboHelp Project Command Line Compiler version 8.0.0.203
    Copyright (C) 2006-2007, Adobe Systems Incorporated and its licensors. All rights reserved.
    Project: C:\Data\RoboHelp\RoboHelp Projects\SubProjects\SupplierPortal\Opportunities\Opportunities.xpj
    Layout: WebHelp.
    Output: C:\Data\RoboHelp\GeneratedWebHelp\SupplierPortal\mergedProjects\Test\Opportunities.htm.
    Scanning project for compilation....
    Scanning finished.
    Warning: No baggage file description.
    Starting compilation...
    WebHelp preprocessor 8.0.0.203
    Compiling C:\Data\RoboHelp\GeneratedWebHelp\SupplierPortal\mergedProjects\Opportunities\index.htm ...
    Preparing to create WebHelp...
    Clearing output folder...
    Preparing files for WebHelp...
    Copying files...
    Updating files...
    Finished preparing in 1 sec(s)
    Initializing compiler...
    Generating WebHelp 5.50 (8.0.0.203)...
    Processing TOC data...
    Processing Context-sensitive-Help data...
    Updating HTML topics...
    Updating opportunities/e-auctions/how_do_i/creating_a_new_bid.htm...
    Updating opportunities/e-auctions/how_do_i/creating_a_response.htm...
    Updating opportunities/e-auctions/how_do_i/viewing_auction_details.htm...
    Updating opportunities/e-auctions/how_do_i/viewing_bid_details.htm...
    Updating opportunities/e-auctions/how_do_i/viewing_a_list_of_auctions.htm...
    Updating opportunities/e-auctions/how_do_i/withdrawing_from_an_auction.htm...
    Updating opportunities/e-auctions/screen_level_help/list_of_auctions.htm...
    Updating opportunities/e-auctions/screen_level_help/new_bid.htm...
    Updating opportunities/e-auctions/screen_level_help/view_auction_details.htm...
    Updating opportunities/e-auctions/screen_level_help/view_bid_details.htm...
    Updating opportunities/e-auctions/introduction_to_e-auctions.htm...
    Updating opportunities/introduction_to_opportunities.htm...
    Finished updating HTML topics in 0 sec(s) : total 12 topic(s).
    Processing Full-text-search data...
    Finished processing Full-Text-Search data in 0 sec(s)
    Applying WebHelp 5.50 Template...
    Finished applying Template in 1 sec(s)
    Processing Mark of the Web...
    Finished compiling WebHelp in 3 sec(s)
    Compilation complete.

    Hi again
    And that's why we call them bugs.
    Did you remember to report it as same to Adobe? The link is in my sig.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Mulitproject solution build failed with batch build but no problem with F6

    when I tried to use batch build on a solution that I have built many times successfully before, the build failed without error message.
    F6 works and no problem with debug using F5 either.
    the build order and dependencies have been verified
    what should do to find the cause of build failure?
    btw: build failed near very end, apparently the last step to completion in the progress bar

    Hello,
    >> what should do to find the cause of build failure?
    Please follow the blog to see how to debug MSBuild script with visual studio.
    http://blogs.msdn.com/b/visualstudio/archive/2010/07/06/debugging-msbuild-script-with-visual-studio.aspx. You can also add logging feature in MSBuild.
    http://msdn.microsoft.com/en-us/library/ms171470%28v=VS.90%29.aspx.
    Feel free to let me know if you have any concerns.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • Problems with the batch in transaction MB1A and MB21

    Hi everybody, I am new in the MM module. I am having a problem with transaction MB1A and MB21, when i try to select a batch for the movement 901. if i click the match code for the material's batch, the system shows me all the batches for the material, but some of these batches don't have available quantity stock and order creates the reservation or the material output. The system dont allow negative stock. Do you have any idea of this problem? Regards.

    Hi,
    In IM, when you select a batch with possibile entries, system always shows the available batches no matter whether stock is there are not.
    However, if you setup batch determination strategy for example, when you are processing in MB1A, SAP fills the batch based on the criterion you define in:
    MBC1Logistics -->Materials Management -->Inventory Management -->Environment -->Batch Search Strategy -->MBC1 - Create
    Select appropriate strategy (if defined in your system, say for mvt ty)
    maintain search strategy and sort criteria for your movement type here.
    Hope this helps!

  • Batch Processing problem with Directories

    Hi All!
    I am having a problem recording an action for Batch Resizing/Optimizing a large number of Photos.
    What I want is to resize about a 1000+ photos, all optimized, but there is a catch!
    they are all in separate directories(also in the hundreds!), and as I am delivering them to separate Clients, I would need to preserve the same directory structure after resizing/optimizing, IE its laid out like this:
    John's Folder - 50 Photos
    Jane's Folder - 120 Photos
    Joe's Folder - 75 Photos
    David's Folder - 50 Photos
    IE: I cant choose "Save Optimized" and 'include sub directories' and then have the Action output them into a Common directory as that would obviously loose the directory structure, and i would have no way of tracking which photo belonged to whom.
    (as Image names are all 'Camera' filenames, ie 013121012.jpg, so I cant use that to identify the different Photo-sets as most of the photos were taken on the same day.)
    What I came up with so far was to:
    Duplicate all files and the Directory structure as it is, and try to write an action that after processing would just 'Save' and Overwrite files as they are. (IE Resize/Optimize, then save/overwrite all photos and then choose 'Include all Subfolders )
    Problem is I cant 'Save Optimized' and overwrite the original file! I couldn't even find a way to set 'Compression settings' for Jpg when I am using the 'SAVE' dialog(that would automatically overwrite the original files). The Jpeg Compression only pops up with 'Save As', but then again that is not useful for overwriting the same file.
    Any ideas??
    Thanks!
    PS: I am using Photoshop CS3.

    Nicolas Leroy (guest) wrote:
    : Hello,
    : I have found a problem with Oracle JSP.
    : When you put a .JSP file into a directory which name contains
    : only numbers, Oracle JSP cannot compile.
    : I'm using Apache 1.3.9 + JServ 1.0 + Oracle JSP + Oracle 8.1.5.
    : I try to execute the following file:
    : /httpd/html/081/file.jsp
    : and I have the following error:
    : 1: Identifier expected. package 081.pages;
    : Is there any solution?
    : Nicolas
    : PS: I have a GnuJSP solution which deals with such directories.
    The JSP specification doesn't define the mapping used by a JSP
    engine to generate a Java package.className from a given
    request.
    Oracle JSP takes a simple approach (for a variety of reasons).
    Rather then generating a munged/random name, Oracle JSP uses the
    full path information in the request. The path information
    generates the package name while the classname comes from the
    target. As virtual paths within a host are unique this works.
    Unfortunately, you have encountered the one limitation of this
    approach, namely VP names can contain names that are invalid Java
    package or classnames. Names that are all numbers is one case.
    Java reserved words is another. Currently, the only way to avoid
    this is to change the VP you use to access the JSP so its path
    name and target only includes valid Java (package/class) names.
    null

  • Batch Capture Problem with 5D mark II

    At the end of an event we normally copy all cards to the HDD, each card in a separate folder. We then point FCP at the card folders and use log & transfer to ingest the footage and transcode to ProRes 422.
    Once all the footage is ingested we save the project and copy it from the Mac Pro to the iMac so that a second editor can work on it at the same time. Because the iMac doesn't have a RAID we set all the footage to 'offline' and use batch capture to recapture it all in ProRes Proxy.
    So far so good.... that is with all the Panasonic HMC footage.... BUT we recently started shooting on the Canon 5D2 and 7D as well and this simply isn't working.
    For some reason FCP recaptures all the Panasonic footage but refused to re-capture the Canon footage. I can see all the files in the L&T window but it never seems to equate the footage with the files I am trying to recapture.
    HELP! What could be causing this? It's only a problem with the Canon footage.
    Both MacPro and iMac are running identical versions of FCP and identical (latest) versions of the Canon L&T plug in ..... and YES we copied the entire CF card to a folder - just like we do with the Panasonic HMC stuff.

    Hi Andy, compressor is current chugging away, so we'll get going for the edit I am sure. Only 600 more clips to go
    I've tried everything I can think of in terms of recapturing. Even on the original Mac Pro that the footage came in to, if I copy the entire project folder (including the 'cards' folder) from one RAID to another it fails to recapture in the original project using the original codec (ProRes 422), but if I point it back to the original cards folder it works fine. It seems to be 'moving/copying' the cards that is causing the problems.
    I've checked the dates and sizes on the copied files and they are all the same, and since recapturing to the original project at the original settings doesn't work once moved I am completely stumped....!

  • No batch input problem with Vendor master Upload

    Hi All,
    I am getting a problem with Vendor Master upload conversion. We have'nt change the code and configuration but when i try to run the code today its giving an error for particular Account group. I run this code yesterday and its work fine with that particluar Account group. But i am getting an error when i run the code today. The error is as follows "No batch input data for screen SAPMF02K 0610".When i got through the code i have'nt find that screen number.
    Can anyone suggest how to resolve that problem.

    Double click on the session name in SM35 and click on the screens tab there you can find the screen number.
    process the same session in foreground mode and see if you are getting the same error.
    If so, the new screen number you got is due to some change in the settings some where, show the new screen to Your Functional guy and he can help you.
    There is one more chance where some data is missing in the flat file, just check it out.
    Reward points if usefull.
    Thanks ,
    Veeru.

  • Problems with a session of batch input - In processing

    Hello!
    I have a problem with a depreciation posting Session (AFAB). User has stoped the process of session and now the status is 'In Processing' and we can't run it anymore...
    ¿How I can process this Session?
    I've tried to delete the session and re-run the depreciation posting, but it's not working.
    I've tried to delete in TABA table the line of this period, but it's not working.
    I've tried to suicide me, but... it's not working.
    I'll try to kill the user, I hope that It will work.
    Can you help me? Please.
    Thanks a lot!!!

    Dear Jorge,
    In SM35 analyze your session.
    If it was processed in background go to transaction SM37. Else, you can proceed in SM35 itself.
    Regards,
    Naveen.

  • I just order 8 calendars from iPhoto and they came to me fine. Now I need to order two more but when I go thru the process I get a message  saying:unable to assemble calendar. There is a probleme with the photo with the file name"(Null)"   more........ .

    Would someone be able to explain to me the following issue with Iphoto?
    I ordered 8 same calendars for my soccer team and received them fine. Although a couple of pictures on it are a little off (out of focus). I need to order two more of the same calendars but when I go thru the process ireceive an error message saying:
    "Unable to to assemble  calendar" There is a problem with the photo with the file name "(Null)" The full resolution version of this photo either cannot be located or is corrupt. Please replace this photo or delete it from your calendar.
    How can  I fine this "corrupt" photo? How did it go thru with the first batch of calendars but won't go thru now?
    Thank you for your help.   

    Apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start
    with Option #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Automatic batch classification with procedure on goods receipt does not wor

    Hi,
    I have a material with batch classification.
    The material has two characteristics.
    One is a number called VALUE.
    The other is also a number (called CONVERSION) and shall be deived from the first.
    A procedure is created and assigned to the second characteristic.
    $SET_DEFAULT ($SELF, CONVERSION , $SELF.VALUE / 6000)
    When I post a goods receive (movement Type 501) the characteristics can be filled . The field VALUE is set with 12000.
    I was expecting the characteristic CONVERSION to be calculated as '2' and filled by the procedure.
    This is not the case.
    If however, I try to fill it manually, the system accepts only the calculated value '2'. Otherwise an error is shown.
    How can I force the system to calculate and fill the second characteristic when insserting a value in the first ?
    Thanks for any help.

    Hi Marcus,
    i have the same problem with movement type 101.
    How did you solve this issue?
    Can you help me.
    Thank you.
    CM

Maybe you are looking for

  • How to display the fields,chkbox and a button

    Hi All, Here is the screen shot I may . Can anyone let me know the code to display a chkbox, button, textfield and a Jlabel fields on the screen in swing. Thanks Smi

  • Maximum  message size problem

    Hello, I'm trying to send a message of 30MB and the log reports: "552 5.2.3 sorry, that message size exceeds the maximum " After configuring sourceblocklimit and blocklimit in channels parameters the message still apears. I have compiled :/opt/SUNWms

  • Canon 5D Mkll Wrong serial number imported

    I am running the latest version of Aperture which I use extensively along with Nik software. I have been trying for the last few months to get Aperture's Exif Metadata to recognise the correct serial number, the one displayed in Exif bears no resembl

  • Runtime error ZDATE_ILLEGAL_LOCTIME

    Hi, I've got a customer who has a problem with the sap server. The following runtime error ZDATE_ILLEGAL_LOCTIME occurs. The following note, note 447839, suggested restarting the sap application. Restarted the sap application, but problems still occu

  • Adobe Reader plugin won't load on Safari for Windows

    I have 3 browsers running on Vista so that I can check website compatibility on all 3. Everything looks fine on Safari except that I cannot download and read PDF files (I can with FF3 and IE7). I realized that the Safari (version 4) on Windows that I