Which log file will give the info about what is missing in sales document

Hello SAP gurus
I am trying to send a quote from our application to get saved in SAP using .Net Connector. I get the following error messages
S  V4   233  SALES_HEADER_IN has been processed successfully
S   V4  233  SALES_ITEM_IN has been processed successfully
W  V1  555  The sales document is not yet complete: Edit data
I am looking for any kind of incompletion log that will give more info about what is missing etc.,
Where can I find such a log. Your feedback will be greatly appreciated.
Tks
Ram

Hi,
Just check this path.
Go to sales order->Edit->Incompletion log.
This  tells your docuement status. If at all your document is incomplete,you can just see what all you are missing.
Thanks
KV

Similar Messages

  • Where does JDeveloper save the info about last opened jspx / files ?

    Hi all,
    In JDev 10.1.3.1, Where does JDeveloper save the info about last opened jspx / files ?
    e.g:
    opened pages are : page1.jspx and faces-config.xml
    after we save and close JDeveloper and Open again, i will start with same opened page/files : page1.jspx and faces-config.xml.
    Where does JDeveloper save this settings ?
    Thank you,
    xtanto

    Xtanto,
    its jdeveloper_home\jdev\system\oracle.ide.10.1.3.<version>\preferences.xml
    The most recent entries are last on the list. The editor reference also indicates whether this file was opened in WYSIWYG or Editor view
    Frank

  • Which table will give the completion timestamp of the last success run?

    Which table will give the completion date timestamp of the last successful execution of an OWB Mapping or Process_flow.?
    I was thinking of using
    select max(RTA_LOAD_DATE|| RTA_LOAD_TIME) from OWBSYS.OWB$WB_RT_AUDIT
    where
    trim(RTA_LOB_NAME) like '%EMP_LOAD1%'
    and
    rta_status = '1'
    But the RTA_LOAD_DATE AND RTA_LOAD_TIME is null
    and RTA_STATUS column is having the value 1 irrespective of whether the JOB has completed or abended
    Please advise??

    Check with these tables :
    <b>coss
    cosl
    cosp</b>
    aufk
    qmat

  • Which files actually hold the info & settings for a single Mail Account?

    One of my mail accounts must have gotten corrupted yesterday. Since then I can no longer retrieve mail for this account. This account can still send mail normally. All the other mail accounts on this machine function properly and I can retrieve emails from this account on another Mac.
    I could probably solve the problem by deleting the account and recreating it. However when I had this problem once before and deleted/recreated the account it was a long process to try to import all the old emails (which I want to keep) from my Time Machine backup. At that time I still lost emails because the import kept hanging up at the same point in the process, so I would like to avoid having to go through that again.
    I'm hoping that if I could identify the files that hold all the account specific info I could restore just those files with Time Machine. I'm guessing that if I were to quit Mail, restore those files and then relaunch Mail, everything should be back to the way it was before the files were corrupted.
    Does anyone know if my theory is valid? And, if so, do you know which files I need to replace and where to find them?
    -- Thanks, in advance, for your help!

    Thanks for the response!
    Well, I looked in the location you mentioned (Users/yourname/Library/Mail/nameof_yourpop account) before posting my question, but if you look in that POP folder the only things there are the .mbox files for that account: Deleted Messages.mbox, Drafts.mbox, INBOX.mbox, Junk.mbox & Sent Messages.mbox. Inside each of those are the actual emails for those folders, which would restore all the emails (which I haven't lost), but there doesn't seem to be any files that carry the info/settings for the account.
    I was hoping to find the settings files which must be located somewhere else. Do you have any other suggestions?

  • Different log file name in the Control file of SQL Loader

    Dear all,
    I get every day 3 log files with ftp from a Solaris Server to a Windows 2000 Server machine. In this Windows machine, we have an Oracle Database 9.2. These log files are in the following format: in<date>.log i.e. in20070429.log.
    I would like to load this log file's data to an Oracle table every day and I would like to use SQL Loader for this job.
    The problem is that the log file name is different every day.
    How can I give this variable log file name in the Control file, which is used for the SQL Loader?
    file.ctl
    LOAD DATA
    INFILE 'D:\gbal\in<date>.log'
    APPEND INTO TABLE CHAT_SL
    FIELDS TERMINATED BY WHITESPACE
    TRAILING NULLCOLS
    (SL1 DATE "Mon DD, YYYY HH:MI:SS FF3AM",
    SL2 char,
    SL3 DATE "Mon DD, YYYY HH:MI:SS FF3AM",
    SL4 char,
    SL5 char,
    SL6 char,
    SL7 char,
    SL8 char,
    SL9 char,
    SL10 char,
    SL11 char,
    SL12 char,
    SL13 char,
    SL14 char,
    SL15 char)
    Do you have any better idea about this issue?
    I thought of renaming the log file to an instant name, such as in.log, but how can I distinguish the desired log file, from the other two?
    Thank you very much in advance.
    Giorgos Baliotis

    I don't have a direct solution for your problem.
    However if you invoke the SQL loader from an Oracle stored procedure, it is possible to dynamically set control\log file.
    # Grant previleges to the user to execute command prompt statements
    BEGIN
    dbms_java.grant_permission('bc4186ol','java.io.FilePermission','C:\windows\system32\cmd.exe','execute');
    END;
    * Procedure to execute Operating system commands using PL\SQL(Oracle script making use of Java packages
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "Host" AS
    import java.io.*;
    public class Host {
    public static void executeCommand(String command) {
    try {
    String[] finalCommand;
    finalCommand = new String[4];
    finalCommand[0] = "C:\\windows\\system32\\cmd.exe";
    finalCommand[1] = "/y";
    finalCommand[2] = "/c";
    finalCommand[3] = command;
    final Process pr = Runtime.getRuntime().exec(finalCommand);
    new Thread(new Runnable() {
    public void run() {
    try {
    BufferedReader br_in = new BufferedReader(new InputStreamReader(pr.getInputStream()));
    String buff = null;
    while ((buff = br_in.readLine()) != null) {
    System.out.println("Process out :" + buff);
    try {Thread.sleep(100); } catch(Exception e) {}
    catch (IOException ioe) {
    System.out.println("Exception caught printing process output.");
    ioe.printStackTrace();
    }).start();
    new Thread(new Runnable() {
    public void run() {
    try {
    BufferedReader br_err = new BufferedReader(new InputStreamReader(pr.getErrorStream()));
    String buff = null;
    while ((buff = br_err.readLine()) != null) {
    System.out.println("Process err :" + buff);
    try {Thread.sleep(100); } catch(Exception e) {}
    catch (IOException ioe) {
    System.out.println("Exception caught printing process error.");
    ioe.printStackTrace();
    }).start();
    catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    public static boolean isWindows() {
    if (System.getProperty("os.name").toLowerCase().indexOf("windows") != -1)
    return true;
    else
    return false;
    * Oracle wrapper to call the above procedure
    CREATE OR REPLACE PROCEDURE Host_Command (p_command IN VARCHAR2)
    AS LANGUAGE JAVA
    NAME 'Host.executeCommand (java.lang.String)';
    * Now invoke the procedure with an operating system command(Execyte SQL-loader)
    * The execution of script would ensure the Prod mapping data file is loaded to PROD_5005_710_MAP table
    * Change the control\log\discard\bad files as apropriate
    BEGIN
    Host_Command (p_command => 'sqlldr system/tiburon@orcl control=C:\anupama\emp_join'||1||'.ctl log=C:\anupama\ond_lists.log');
    END;Does that help you?
    Regards,
    Bhagat

  • Please give me info about my monthly payment!! online offer last monday for $49.99

    Hello! I have had a very frustrating experience with Comcast customer service and billing department and my service hasn't started yet!! I am afraid I will have to cancel or opt out of your services.On Monday I contracted an online offer. Here's the screen shot of what I contracted. I tried to click on the blue letters "pricing & other info" but nothing will pop up never, so I was not able to check the "little print" that usually hides extra fees or anything. Go to your website and tell me if anyone can retrieve that info, from Chrome in my Galaxy Light phone, I couldn't.  On Tuesday I receive the confirmation of my order, but the details of my bill say something different from what I contracted!!  Here's a screen shot of the order confirmation.    Now, as I took screenshots of the steps it took me while I was contracting the service, here's the info of what I selected.   I remember I choose self installation and the cheapest shipping and handling, but I thought it wa going to be free too, as the one that was $29.00 something was the expedited shipping. Today, I needed to set up my username and password and choose the papaerless bill so at 11 am I called the number 1 855 230 4264  they said they could not help me and sent my call to other number, they helped me with the username and password and sent my call tbilling department so they could give me info about the carges on my confirmation email. The lady that picked up was super rude, first she said that I contracted the service at a comcast office, which I didn't, then she said some nonesense and ended up cutting my call and sending it to somebody else. I ask for her supervisor or manager and she told me he would be able to talk to me. Put me on hold and I had to wait more thatn 15 minutes for somebody to pick up my call again. The man that picked up, asked how was my day and since I said that I was not as good as I would wanted to, he put me on hold again and picked up 5 minutes later. By then I was very super angry >:-(  but I needed to finish this matter of knowing how much do I have to pay every month, so I tried to be patient, maybe a little sarcastic at a time. He started to give explanations that were not right, cause I answered with the info that I had. Then finally he said he had the offer I purchased and that probably it was shipping and handling what i was paying for, but he couldn't say if this was going to be my monthly statement or not.  He sent me to somebody else that was supposed to tell me this, but the man that picked up told me my monthly statement was going to be $54.** plus tax!! Even worse!! He didn't knew about the online offer or whatsoever. Please people!!!  All I want to know is if this $60.** was a one time charge or my monthly bill.   The state tax is around 10% in TN so what I expected to pay is $55.00 tops Who am I supposed to ask if neither your customer service or billing departments have the information???????  A super angry >:-( customer from Antioch, Tennessee

    http://support.apple.com/kb/HE57

  • Pls give some info about userexit

    hi everyone,
    i never did work on userexit before. Could you give some info about how to create userexit and some knowledge related to that. Any suggestion is appreciated.
    Best Regards,
    Julian

    User exits (Function module exits) are exits developed by SAP.
    The exit is implementerd as a call to a functionmodule.
    The code for the function module is writeen by the developer.
    You are not writing the code directly in the function module, but in the include that is implemented in the function module.
    The naming standard of function modules for functionmodule exits is:
    EXIT_<program name><3 digit suffix>
    The call to a functionmodule exit is implemented as:
    CALL CUSTOMER.-FUNCTION <3 digit suffix>
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    CUSTOMER EXITS-> t-code CMOD.
    As of Release 4.6A SAP provides a new enhancement technique, the Business Add-Ins.
    Among others, this enhancement technique has the advantage of
    being based on a multi-level system landscape (SAP, country versions, IS solutions, partner,
    customer, and so on)
    instead of a two-level landscape (SAP, customer) as with the customer exits.
    You can create definitions and implementations of business add-ins at any level of the system landscape.
    You can use below code to find out user exits associated with particular transaction.
    *& Report  ZUSEREXIT                                                   *
    *& Finding the user-exits of a SAP transaction code                    *
    *& Enter the transaction code in which you are looking for the         *
    *& user-exit and it will list you the list of user-exits in the        *
    *& transaction code. Also a drill down is possible which will help you *
    *& to branch to SMOD.                                                  *
    REPORT zuserexit NO STANDARD PAGE HEADING.
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct.
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
      SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
                       AND object = 'PROG'
                       AND obj_name = tstc-pgmna.
      MOVE : tadir-devclass TO v_devclass.
      IF sy-subrc NE 0.
        SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
        IF trdir-subc EQ 'F'.
          SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
          SELECT SINGLE * FROM enlfdir WHERE funcname = tfdir-funcname.
          SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR'
                                      AND object = 'FUGR'
                                    AND obj_name EQ enlfdir-area.
          MOVE : tadir-devclass TO v_devclass.
        ENDIF.
      ENDIF.
      SELECT * FROM tadir INTO TABLE jtab
                    WHERE pgmid = 'R3TR'
                     AND object = 'SMOD'
                   AND devclass = v_devclass.
      SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu
                                  AND  tcode EQ p_tcode.
      FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
      WRITE:/(19) 'Transaction Code - ',
           20(20) p_tcode,
           45(50) tstct-ttext.
      SKIP.
      IF NOT jtab[] IS INITIAL.
        WRITE:/(95) sy-uline.
        FORMAT COLOR COL_HEADING INTENSIFIED ON.
        WRITE:/1 sy-vline,
               2 'Exit Name',
              21 sy-vline ,
              22 'Description',
              95 sy-vline.
        WRITE:/(95) sy-uline.
        LOOP AT jtab.
          SELECT SINGLE * FROM modsapt
                 WHERE sprsl = sy-langu AND
                        name = jtab-obj_name.
          FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
          WRITE:/1 sy-vline,
                 2 jtab-obj_name HOTSPOT ON,
                21 sy-vline ,
                22 modsapt-modtext,
                95 sy-vline.
        ENDLOOP.
        WRITE:/(95) sy-uline.
        DESCRIBE TABLE jtab.
        SKIP.
        FORMAT COLOR COL_TOTAL INTENSIFIED ON.
        WRITE:/ 'No of Exits:' , sy-tfill.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'No User Exit exists'.
      ENDIF.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST   SCREEN.
    *---End of Program.
    I hope it gives some basic idea.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • System.out.println in which log file

              We are using weblogic 51 server.
              We have System.out.println's in the servlets but don't see
              it in any log file. Which log file would/should
              it go to.
              

    If you are running a shell script (not as as service) you will see it in
              that shell window, if you run it without a console window (service), you
              usually see nothing.
              If you are using a third party tool to run the server as a service (e.g.
              ServiceMill for Win2k/NT) you usually can set files where you would like
              your output to be redirected.
              If you run the server as a service and don't have this option you can do
              it yourself by setting System.setErr / System.setOut, e.g. in a
              startup-class
              Daniel
              -----Ursprüngliche Nachricht-----
              Von: smita [mailto:[email protected]]
              Bereitgestellt: Mittwoch, 6. Juni 2001 18:54
              Bereitgestellt in: servlet
              Unterhaltung: System.out.println in which log file
              Betreff: System.out.println in which log file
              We are using weblogic 51 server.
              We have System.out.println's in the servlets but don't see
              it in any log file. Which log file would/should
              it go to.
              

  • Log files will continue increasing if disable checkpoint operation?

    Hi all,
    If I disable the checkpoint operation by setting CkptFrequency=0,I think data store's log file will continue increasing and have to be deleted manually, is that right?
    thanks,
    Michael

    Hi Michael
    This is not correct. You should NEVER manually delete log files. If you disable automatic checkpoint you will still have to perform checkpoints but it will be completely under your control as to when they occur.
    It is only the operation of the checkpoint, or ttDestroy which should delete log files.
    Hope this helps
    Paul

  • Cannot shrink log file 2 because the logical log file located at the end of the file is in use ?

    HI,
    I am getting this error frequently.. any recomendations :
    Executed as user: DB0\sqlservices. Processing database: dbin [SQLSTATE 01000] (Message 0) 
    Cannot shrink log file 2 (DB_log) because the logical log file located at the end of the file is in use. [SQLSTATE 01000] (Message 9008) 
    Processing database: DB_ [SQLSTATE 01000] (Message 0)  DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Message 2528) 
    Cannot shrink log file 2 (DB_log) because the logical log file located at the end of the file is in use. [SQLSTATE 01000] (Message 9008) 
    Processing database: DB [SQLSTATE 01000] (Message 0) 
    DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Message 2528) 
    Backup, file manipulation operations (such as ALTER DATABASE ADD FILE) and encryption changes on a database must be serialized. Reissue the statement after the current backup or file manipulation operation is completed. [SQLSTATE 42000] (Error 3023) 
    Processing database: DB_AC [SQLSTATE 01000] (Error 0)  
    [SQLSTATE 01000] (Error 0)  DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Error 2528). 
    The step failed.
    Please give any receomendations to avoid this error in future :
    Yangamuni Prasad M

     
    Hi Yangamuni,
    Are there any progress?
    Please have a look on the below threads with the similar issues as yours:
    http://www.sqlservercentral.com/Forums/Topic652579-146-1.aspx
    http://social.msdn.microsoft.com/forums/en-US/sqldatabaseengine/thread/ae4db890-c15e-44de-a2af-e85c04260331
    The solution is change the recovery mode to SIMPLE, shrink log files and then change to the FULL recovery mode.
    Thanks,
    Weilin Qiao
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. This can be beneficial to other community members reading the thread.

  • How to I find out the photos SIZE in inches. It will give the the resolution

    How to I find out the photos SIZE in inches. It will give the the resolution of the image and the file size.

    In iPhoto, images don't have a size in inches until you use them. Until then it is just the pixel size. If you know the pixel size and resolution you calculate it this way:
    If the image size is 5184 x 3486 (like my Canon T3i, you divide the size in pixels by the resolution in pixels per inch to get the actual length, so for some common resolutions:
    Res Width Height
    --         5184     3486
    300      17.3      22.6  
    220       23.6     15.8
    72          72       48.4
    So, as you can see, iPhoto is probably correct in ignoring file size for most recent digital cameras. There is plenty of resolution for almost any size you want to print.

  • When I go to buy an app that isn't free it asks for my security question but I don't know what my security question is so I go to change it and it said it will send the info to this email that I don't even have. What do I do?

    When I go to buy an app that isn't free it asks for my security question but I don't know what my security question is so I go to change it and it said it will send the info to this email that I don't even have. What do I do?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • My macbook pro recently got swiped and I lost all my data, problem is, just before it was swiped I set up my new iphone 5 which transferred all my photos and music over which is no longer on the computer. What will happen to my phone if I plug it in?

    My macbook pro recently got swiped and I lost all my data, problem is, just before it was swiped I set up my new iphone 5 which transferred all my photos and music over which is no longer on the computer. What will happen to my phone if I plug it in?

    I never used icloud before so there is no data to back up from. I just spoke  to the apple store and they said that if I do plug it in, all the data will be swiped....is there a program I can use to transfer my data from my phone to computer without loosing it all ???
    Renee

  • I just got a new MacBook Pro, and I tried to bring across my files from my last mac using time machine. After it was done copying I can't find my files anywhere but the space (about 130gb) has been used on my hard drive. Help please!!

    I just got a new MacBook Pro, and I tried to bring across my files from my last mac using time machine. After it was done copying I can't find my files anywhere but the space (about 130gb) has been used on my hard drive. Does anyone know how I can get to them? I did change my user name from 'user' while it was copying, could this have something to do with it?

    You don't want to do that by copying.
    Your best bet, by far, is to use Setup Assistant.  If your Mac is running Snow Leopard, see Using Setup Assistant on Snow Leopard or Leopard.
    If it came with Lion, it's a bit different: Using Setup Assistant on Lion

  • From where i can get the info about javazoom package

    From where i can get the info about javazoom package

    You mean this?
    http://www.javazoom.net/mp3spi/sources.html

Maybe you are looking for