Display log!

HI All,
Trying to make a delivery with reference to ORDER,and am getting this problem:Order is incomplete-maintain the order!!
At the bottom it says: Order cannot be delivered(see long text)
how can I proceed?
ralph.

Hi,
Go to the order in change mode using VA02 transaction. Once the order is open, follow the steps below:
edit->Incompletion log. This gives a lsit of incompletion. Now complete the sales order, save the order and make the delivery.
If the incompletion log is too cumbersome, you can make changes to it  in SPRO using steps:
SPRO->Sales & Distribution->Basic functions->Log of incomplete items.
Regards
Muraleedharan.R

Similar Messages

  • Designer does not display logs

    The Designer (12.2.1.0) does not display logs when we use
        -s"jobname"
    instead of
        -G"guid"
    in parameter-text-files for exported-execution-commands (batch-files).
    The logfiles are created on disk.
    The management console finds the logfiles and displays them.
    The AL_HISTORY* tables and views know where the logfiles are.
    Has anyone experienced similar behaviour?
    Is there a cure?
    TIA
    Bernódus

    -s"jobname"  or  -s"JOBNAME"  or  -s"joBName"
    Case does not matter regarding display of logs.
    But console.job-name == al_history.sevice == value-of-parameter.
           it does not matter if name==lower(normname) or upper(name)==normname
    Designer location does not matter either. 
    We see no logs when activating Designer on the jobserver machine.
    And we see no logs when activating Designer on some developer machine.
    Edited by: Bernódus on Jul 22, 2011 4:26 PM

  • Capture message in Display Log

    Hello Experts,
    I have this bdc program which is posting GR via 'CALL TRANSACTION MIGO.....MESSAGES INTO T_MSTB.
    But the messages in table T_MSTB is not the actual messages in the display log, it is showing 'No batch input data for screen.....' instead.
    Any advise on this?
    Thanks in advance,
    Audrey

    hi,
    yes this means that your BDC data/table is not complete...i suggest you run it in foreground or create a record(SM35 - normal run ) to check what fields are lacking...you can also see the BDC data produced after recording..and like zry said you can also check msgs in bdcmsgcoll..

  • Is there a way to display log notes in the timeline?

    Hi All,
    Is there a way to display log notes in the timeline?
    My assistant has put all the vital information into the log notes instead of the name column...not a biggie but just so used to seeing a description on the timeline rather than a tape number.
    Thanks,
    Susan.

    Hi G,
    Thanks! But I want to display the info permanently in the timeline. Like ---- sorry ---- in the Avid, I can change the timeline to be blank or display other info like mediafile names, etc, etc. I've looked in the Sequence Settings and it looks like I can only change the clip display in the TL to be with frames or without frames. Any help would be greatly appreciate...thanks!
    Cheers,
    Susan.

  • Display log IN WD application

    Hi all,
    I want to display the logs for a particular application in the same application.
    The problem is that to view logs I should use the Administrator user (and to know its password) in all possible cases I thought of: remote connection to the machine where the application server runs, configure remote connection to Visual Admin of the remote machine where the server runs using Standalone Log Viewer, trying to see the logs through the web interface of the server. In all cases the problem is the same: the application user should not have rigths to Administrator credentials and to see log he should have such.
    So, how could I read and display the log of my application IN my application? The log is written in different file, it's not in the defaultTrace.trc.
    Please, don't redirect me to any link, except if it's about the same (not similar) question and have real solution!
    I've already tried to find something that will help, but I couldn't.
    Thanks,
    Ogniana

    Hi,
    I assume that, the messages are retunrd from a BAPI .
    DATA: es_message type bapret2 or any strcutre of your type or message manager messages table type.
    (Refer IF_WD_MESSAGE_MANAGER).
    loop at lt_msg into ls_msg.
        MESSAGE ID 'DEMO' TYPE 'E' NUMBER '139'
        WITH liv_id INTO es_messages-message.
        es_messages-id         = 'DEMO'. "Mesage class
        es_messages-type       = 'E'.
        es_messages-number     = '139'.
        es_messages-message_v1 = liv_id.
    or
    if ls_msg-type eq 'E'.
    lv_str = "Success ful'.
    endif.
    es_message-id = ls_msg-id.
    es_message-message = lv_str.
    endif.
    Maintain the messages in the Se91.
    By defalut as per the message type the framwork handles
    the Icon.
    But if you want some specific icon  to be displayed then you
    need have your own table that shows these meesages with custom icons.
    Regards,
    Lekha.
    Edited by: Lekha on Sep 3, 2009 3:17 PM

  • Infotype 21: Display Log with option to correct errors

    Hi All,
    I am trying to add two new social security(SS) fields to Infotype 21 (French - MP002100_CE). The fields need a detailed validation. [It is expected that the fields behave identical to the social security(SS) fields on Infotype 2 (French-MP000200_CE)].
    I have adapted code from Fn. Module "HR_FR_FORMAT_CHECK_NUMSS" (which is used on IT0002). Any errors/warnings on the additional fields are stored in a message table and are shown on the status bar by looping through it.
    So far so good, the behaviour of SS fields on Infotype 21 is identical to that on Infotype 2 but after this, on Infotype 21 I get a message to save the entries but on Infotype 2 there is a pop-up which displays the message log and gives an opportunity(by way of a button 'Correct errors') to correct the value in the affected fields, the save message comes after this.
    Could someone please tell me what additional logic should be put in place so that I could get the pop-up with the 'Correct errors' button.
    Many Thanks in Advance.
    Kind Regards
    Sanjay

    Hi,
    If you want to group by dates, maybe this query works for your requirement:
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    Connected as hr
    SQL>
    SQL> with data as(
      2  select to_date('01/03/2007', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      3  select to_date('01/03/2007', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      4  select to_date('02/21/2007', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      5  select to_date('03/03/2006', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      6  select to_date('03/07/2007', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      7  select to_date('03/12/2007', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      8  select to_date('03/14/2007', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
      9  select to_date('05/05/2006', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
    10  select to_date('05/18/2006', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
    11  select to_date('11/02/2006', 'MM/DD/YYYY') as dt_date  FROM DUAL UNION ALL
    12  select to_date('11/15/2006', 'MM/DD/YYYY') as dt_date  FROM DUAL
    13  )select to_char(dt_date, 'MM/DD/YYYY') from data group by dt_date order by dt_date;
    TO_CHAR(DT_DATE,'MM/DD/YYYY')
    03/03/2006
    05/05/2006
    05/18/2006
    11/02/2006
    11/15/2006
    01/03/2007
    02/21/2007
    03/07/2007
    03/12/2007
    03/14/2007
    10 rows selected
    SQL> Regards,

  • Compile and generate using adadmin step cant display log file

    Below is the output of the compile and generate step (1-4).
    UTL_FILE.READ_ERROR DIRECTORY: LOG_INSTANCE_1703FILE: script_10438.sh.logProcess Returned: 0 Results in: /mwiz/oracle/mwizdb/10.2.0/eof/log/INSTANCE_1703/script_10438.sh (49 bytes)
    I manually went and reviewed the logfile and everything seems like it ran fine and completed normally.
    How do I correct this issue that it couldn't display the log?
    Note, the logs from prior commands seem to have completed successfully.
    Thanks, Dean

    I have only error seen the UTL_FILE.READ_ERROR as a result of improper configuration. It is an oracle package error. What is the RDBMS release running the MW tool?
    This error is generated when the file permissions or owner are incorrect. I have logged a bug to have the entire 11i Pre-Upgrade Patching section removed. The patches being merged and applied are applied again later in the functional steps so that section is really not necessary.

  • Alert log display"Log actively being archived by another process"

    In my Production database(9i) alert log display me "Log actively being archived by another process".
    I want to know why this show,reason and how can i solve it.
    Wed Dec 05 00:01:35 2007
    Thread 1 advanced to log sequence 30174
    Current log# 21 seq# 30174 mem# 0: K:\ORACLE\ORADATA\APR2\REDO21A.LOG
    Current log# 21 seq# 30174 mem# 1: K:\ORACLE\ORADATA\APR2\REDO21B.LOG
    Wed Dec 05 00:01:35 2007
    ARC1: Completed archiving log 19 thread 1 sequence 30172
    Wed Dec 05 00:01:35 2007
    ARC0: Evaluating archive log 20 thread 1 sequence 30173
    Wed Dec 05 00:01:35 2007
    ARC1: Evaluating archive log 20 thread 1 sequence 30173
    ARC1: Unable to archive log 20 thread 1 sequence 30173
    Wed Dec 05 00:01:35 2007
    ARC0: Beginning to archive log 20 thread 1 sequence 30173
    Wed Dec 05 00:01:35 2007
    Log actively being archived by another process
    Wed Dec 05 00:01:35 2007
    Creating archive destination LOG_ARCHIVE_DEST_2: '(DESCRIPTION=(ADDRESS_LIST = (ADDRESS=(PROTOCOL=tcp)(HOST=mtm2stdb)(PORT=1521)))(CONNECT_DATA=(SID=APR2)(ORACLE_HOME=d:\oracle\ora92)(SERVER=DEDICATED)))'
    Creating archive destination LOG_ARCHIVE_DEST_1: 'L:\ORACLE\ORADATA\APR2\ARCHIVE\APR2T001S30173.ARC'
    ARC0: Completed archiving log 20 thread 1 sequence 30173
    Thanks for any help

    You can ignore this error as long as you see that completed archiving of the logsequence
    you can see ARCO and ARC1 in the log
    you get this error message say ARC1 when ARCO is archivhing the log

  • Display log file using applet

    Hi all,
    how can i display a log file from server using java applet.
    rgds
    geetha

    Build a tail-daemon using netcat or inetd, then have a socket from the applet connect to the service thus created, and display using some simple java.awt.Canvas or some other text-displayer in the awt or swing. Viola. Just means that everyone else can see your logfile as well, so why not just remove that firewall ?

  • Not displaying Log Message

    Hi All,
    I facing problem in displaying the log message.
    Here is what I am doing.
    I have created a RDF Report, In that In Before Report Trigger I have called Packaged.Procedure.
    (Packaged.Procedure has all code that  is needed.
    I have used the
    fnd_file.put_line(fnd_file.log,'Message') to display message in log.
    But when I ran the report I am getting the expected output. But when in Log I am not seeing the Message.
    Please help me how to display message. Or is there any way to display message in Log.
    Note: I didn't register the package as Concurrent Program. I have Concurrent program of type Oracle Report.
    In package I didn't use parameter ERRBUFF and RETCODE, since it is necessary only if we register as Concurrent program.
    Thanks in advance.
    Regards,
    Uva.

    Hi!
    Lets try these once again even if u followed previously....
    1. First go to SXI_CACHE and do cache refresh once inorder to reflect the IR and ID Objects once again....
    2. Also do Adapter Cache refresh once again some times adapters may not reflect the updated changes and then now make some changes in the SUBject and save and activate it..
    3. THis Point is Optional Suppoe if you are using any FTP FILE ADAPTER
    Check the source and destination folders are same as give in your channel and FTP also please check the file name mentioned is exactly same and make sure there may not be any spaces
    4. If possible if u r admin do once J2EE Soft Restart instead of restarting entire server..or else instead of doing hard restart..
    5. After making changes and saving and activating try the scenario once aand also go to Run time work bench and communication channel Monitoring onceagain check the status...
    6. Most important thing is Go To RWB--> Message Monitoring--> Check the status of the message in both Integration Engine and Adapter ENgine so that you can get where it is failing and also where it was strucked....whether in Integration server side or else Adapter Engine side...
    7. Also please check one again SXMB_MONI, SMQ1 and SMQ2 and ST01 ( which is used to Trace the message by using this ST01),,,
    I hope it works....also check once mapping side once again...
    Regards:
    Amar Srinivas Eli

  • Displaying logged in user when printing a query generated report.

    Hi all
    I need to know how can i show the user code of the person who printed a certain report.
    Scenario:
    When a despatch clerk reconciles driver cash they print a query genereted report , so i need his user code to show on the report... please check the query below... and make suggestions ...
    SELECT T0.DocNum, T0.CardName, T1.PymntGroup, T0.DocTotal, T0.U_ROUTEMARKTN, T0.U_RTNAME
    FROM OINV T0 INNER JOIN OCTG T1 ON T0.GroupNum = T1.GroupNum
    WHERE T0.docDate =[%0] and  T0.U_ROUTEMARKTN = [%1] GROUP BY T0.DocNum, T0.CardName, T1.PymntGroup, T0.DocTotal, T0.U_ROUTEMARKTN, T0.U_RTNAME
    ORDER BY t0.u_rtname
    i need the user be copied from the logged in user and be displayed in the header level of the report.
    Thanks

    Hi
    To display the username you need not modify your query.
    Rather, Add a Database Field in the PLD and click in Properties and select Content Tab and set following values:
    Table: Users
    Column: Username
    Preview the report and you'll get the logged in UserName

  • Displaying Log in messages at center

    Hi
    I'mhaving problem displaying Login(Oracle) at center, How do I display at center exactly, Reason is if user logs in with invalid username and password the message is not getting dipslayed at center, User has to scroll all the window to find it, How do I display the message exactly at center (This message is getting displayed by Oracle).
    Thanks in advance
    Murthy

    Nevermind. Whatever the problem was, it's working fine now. If there's a way to delete posts, I can't find it. Otherwise I would have done so.

  • Cannot Display Log File with Palm E2 and Palm Desktop 4.1.4.

    I finally got the Palm Desktop 4.1.4 which works okay with Vista. I have the Palm Tungsten E2. When I sync, and when it indicates that there were some duplications, etc. and do I want to view the HTM log file, I click on view log, and it comes up unable to display/find the page! Does anyone know what is going on?
    Post relates to: Tungsten E2
    This question was solved.
    View Solution.

    Thanks for replying PALM_LOVER!
    Sometimes, yes, sometimes no. When I first sync-ed today, I got the prompt, and when i clicked on VIEW LOG, it took me to a web page that said "FILE NOT FOUND "("Firefox can't find the file at /C:/Program Files/palmOne/Stephe/HotSyncLog.htm.") I re-sync-ed and did not get the prompt.
    Post relates to: Tungsten E2

  • [INQUIRY]: Display Logs in Operator

    Hi ODI-mates,
    Is there a way for me to control the display of the logs in Operator? I mean.. lets say I have a batch called TEST_BATCH which contains multiple odi objects such as interface,procedure, package, variable, etc...
    Upon execution of the batch, I only want to see TEST_BATCH in the Operator (kinda like a root log).. all other details are within the "log tree" of TEST_BATCH.. If I want to see the details, I'll have to expand the TEST_BATCH root log.
    With this kind of logging, I think it would be easier to monitor multiple batch process in ODI. Though of course, if there's a much more efficient way, I'm all ears.. err... eyes.. :)
    Regards,
    Dave Null

    Thanks Alistair for the response. It is actually very close to what I imagine.. In "Hierarchical Session", I am able to see each scenarios executed and then their child sessions.
    What about, let's say I have a Load Plan, and this load plan executes a lot of scenarios. In Operator, is there a way for me to see only one root log of the load plan, and then the child will be the Scenarios (then.. each scenarios child session)?
    Regards,
    Dave Null

  • Display logged in user record from MySql DB

    I am currently building my business website. I have already set up my MySQL database, added a table for clients with ID, Username, Password, SessionID, and File. I have connected the db in dreamweaver. I have built the log in page for users to log in. After they log in, I want them to be able to see their record data on the next page. Logging in works just fine, but when the next page comes up, it is blank, as if there is no record data. I do no know much about PHP so I am sure it has something to do with the way I have it set up. The only server behaviors I have added is to log in user. I chose not to add any other validation behaviors until I get this problem fixed. Anyone who could steer me in the right direction?

    > but if I do not use them, then someones going to have
    >to show me a basic code to get me started
    My suggestion would not be to just learn basic code just to get started. You'll end up creating a site that was build-as-you-learn, which are always a mess. A better approach, if you really want to be a developer, is to take time to learn the concepts first. If you really don't want to learn this stuff and just want your site built, then hire an expert. If this is your business then focus on your business and let an experienced developer build the site.
    And if you just need to fix this one problem, then do as osgood suggested - post the code and someone here can help sort it out. But I suspect this is the first of many roadblocks you will hit and you may end up spending more in your own lost time than it would take to bid this out. Hard to say without knowing more about the features you plan to implement.

Maybe you are looking for