Processing log output for Purchase order

Dear All,
Iam getting some problem when iam creating an IDOC and checking in the Processing log for IDOC number.
Actually i had created one custom idoc for Purchase order since my client need only some field and in one line for header and line item, I had done it and i can see it in sdata of EDIDD structure. When i create a Purchase order and save it an idoc number is posting and I can see this file in my physical directory indeed.
Now when iam going into change mode of PO ME22n to see the Processing LOG, It is not showing the IDOC Number in Purchase order output processing log popup.

The processing log will only show output based standard output control (Table NAST).
How is your IDoc being created. Via a user exit, BADI. If so then they will not appear on the processing log.
It is being created as a custom IDOC for which i had written a Z function module and given that in PO processing code which is ME10. When iam checking the standard IDOC for PO it is generating the IDOC in processing log as well.
Iam just placing my code just have a look at it and suggest if any thing needs to be done.
FUNCTION Z_IDOC_OUTPUT_ORDERS.
""Local Interface:
*"  IMPORTING
*"     VALUE(OBJECT) LIKE  NAST STRUCTURE  NAST
*"     VALUE(CONTROL_RECORD_IN) LIKE  EDIDC STRUCTURE  EDIDC
*"  EXPORTING
*"     VALUE(OBJECT_TYPE) LIKE  WFAS1-ASGTP
*"     VALUE(CONTROL_RECORD_OUT) LIKE  EDIDC STRUCTURE  EDIDC
*"  TABLES
*"      INT_EDIDD STRUCTURE  EDIDD
*"  EXCEPTIONS
*"      ERROR_MESSAGE_RECEIVED
*"      DATA_NOT_RELEVANT_FOR_SENDING
DATA: xdruvo.                          "Druckvorgang
DATA: neu  VALUE '1',                  "Neudruck
      h_kappl LIKE nast-kappl,         "Hilfsfeld Applikation
      h_parvw LIKE ekpa-parvw,         "Hilfsfeld Partnerrolle
      h_ebeln LIKE ekko-ebeln.         "Hilfsfeld Belegnummer
  CLEAR control_record_out.
   xdruvo = neu.
  h_kappl = object-kappl.
  h_ebeln = object-objky.
  h_parvw = object-parvw.
  DATA:
       LT_EDIDC LIKE EDIDC OCCURS 0 WITH HEADER LINE,
         L_EDIDC LIKE EDIDC,
         L_SEND_FLAG,
         W_SDATA LIKE EDIDD-SDATA.
  DATA: T_BDI_MODEL LIKE BDI_MODEL OCCURS 0 WITH HEADER LINE.
  DATA: T_EDIDC LIKE EDIDC OCCURS 0 WITH HEADER LINE.
  DATA: T_EDIDD LIKE EDIDD OCCURS 0 WITH HEADER LINE.
  DATA: C_MESSAGE_TYPE LIKE EDIDC-MESTYP VALUE 'ZORDER'.
*- Call function module to determine if message is to be distributed
OBJECT_TYPE = 'BUS2012'.
  MOVE control_record_in TO control_record_out.
  CALL FUNCTION 'ALE_MODEL_DETERMINE_IF_TO_SEND'
    EXPORTING
      MESSAGE_TYPE           = C_MESSAGE_TYPE
    IMPORTING
      IDOC_MUST_BE_SENT      = L_SEND_FLAG.
   EXCEPTIONS
     OWN_SYSTEM_NOT_DEFINED = 1
     OTHERS                 = 2.
  DATA : BEGIN OF EKKO_tAB OCCURS 0,
  EBELN LIKE EKKO-EBELN,
  F1 TYPE C VALUE ',',
  BUKRS LIKE EKKO-BUKRS,
  F2 TYPE C VALUE ',',
  BSART LIKE EKKO-BSART,
  F3 TYPE C VALUE ',',
  LIFNR LIKE EKKO-LIFNR,
  F4 TYPE C VALUE ',',
  WAERS LIKE EKKO-WAERS,
  F5 TYPE C VALUE ',',
  BEDAT LIKE EKKO-BEDAT,
  F6 TYPE C VALUE ',',
  WERKS LIKE EKPO-WERKS,
  F7 TYPE C VALUE ',',
  PLIFZ LIKE EKPO-PLIFZ,
  F8 TYPE C VALUE ',',
  EBELP LIKE EKPO-EBELP,
  F9 TYPE C VALUE ',',
  MATNR LIKE EKPO-MATNR,
  F10 TYPE C VALUE ',',
  MENGE LIKE EKPO-MENGE,
  F11 TYPE C VALUE ',',
  MEINS LIKE EKPO-MEINS,
  F12 TYPE C VALUE ',',
  END OF EKKO_TAB.
  DATA SDATA1 LIKE EKKO_tAB OCCURS 0 WITH HEADER LINE.
  DATA EBELN LIKE EKKO-EBELN.
  WRITE OBJECT-OBJKY TO EBELN.
  SELECT T1EBELN T1BUKRS BSART LIFNR WAERS BEDAT  WERKS PLIFZ EBELP MATNR MENGE MEINS
  FROM EKKO AS T1
  INNER JOIN EKPO AS T2 ON T2EBELN = t1EBELN
  INTO CORRESPONDING FIELDS OF TABLE EKKO_tAB
  WHERE
*T1~KAPPL = 'EF' AND
  T1~EBELN = EBELN.
*T1~KSCHL = 'YEDI' .
  DATA SDATA LIKE EDIDD-SDATA.
  DATA NDATE LIKE SY-DATUM.
  DATA NMENGE(17) TYPE C.
  LOOP AT EKKO_tAB.
    WRITE EKKO_TAB-MENGE TO NMENGE.
    NDATE = EKKO_tAB-BEDAT + EKKO_tAB-PLIFZ.
    CONCATENATE  EKKO_tAB-EBELP ',' EKKO_tAB-BUKRS ',' EKKO_tAB-BSART EKKO_tAB-EBELN ',' EKKO_tAB-LIFNR ',' EKKO_tAB-BEDAT ','
    NDATE ',' EKKO_tAB-BSART EKKO_tAB-EBELN ',' EKKO_tAB-EBELN ', 0,' EKKO_tAB-MATNR ','
    NMENGE ',' EKKO_tAB-MEINS ',' EKKO_tAB-WERKS INTO SDATA.
    MOVE SDATA TO: W_SDATA, T_EDIDD-SDATA.
    MOVE 'ZORDERS' TO T_EDIDD-SEGNAM.
    APPEND T_EDIDD.
  ENDLOOP.
*call function 'L_IDOC_SEGMENT_CREATE'
    exporting
         i_segnam = 'ZORDERS'
         i_sdata  = w_sdata
    exceptions
         others   = 1.
*LT_EDIDC
call function 'L_IDOC_SEND'
     tables
          t_comm_idoc           = LT_EDIDC
     exceptions
          error_distribute_idoc = 1
          others                = 2.
*DATA T_BDI_MODEL LIKE BDI_MODEL.
WRITE OBJECT-OBJKY TO T_BDI_MODEL.
READ TABLE T_BDI_MODEL INDEX 1.      " maximum 1 recipient
L_EDIDC-DIRECT = 1.
  L_EDIDC-DOCNUM = DOCNUM. "***
  L_EDIDC-RCVPRN = 'HCM_00_785'.
  L_EDIDC-RCVPOR = 'MM_PO_FILO'.
  MOVE 'ZORDER'   TO L_EDIDC-MESTYP.
  MOVE 'ZPURIDOC' TO L_EDIDC-IDOCTP.
  MOVE 'LS'      TO L_EDIDC-RCVPRT.
MOVE T_BDI_MODEL-RCVSYSTEM TO L_EDIDC-RCVPRN.
*MOVE-CORRESPONDING L_EDIDC TO W_EDIDC.
*- Distribute the iDoc
BREAK-POINT.
  CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE' "IN UPDATE TASK
    EXPORTING
      MASTER_IDOC_CONTROL            = L_EDIDC
    TABLES
      COMMUNICATION_IDOC_CONTROL     = LT_EDIDC
      MASTER_IDOC_DATA               = T_EDIDD
    EXCEPTIONS
      ERROR_IN_IDOC_CONTROL          = 01
      ERROR_WRITING_IDOC_STATUS      = 02
      ERROR_IN_IDOC_DATA             = 03
      SENDING_LOGICAL_SYSTEM_UNKNOWN = 04.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
READ TABLE LT_EDIDC INDEX 1.
  control_record_out-direct = '1'.
  CONTROL_RECORD_OUT-DOCNUM = DOCNUM. " ***
  control_record_out-serial = sy-datum.
  control_record_out-serial+8 = sy-uzeit.
  control_record_out-mestyp = LT_EDIDC-mestyp.
  control_record_out-idoctp = LT_EDIDC-idoctp.
  control_record_out-SNDPRN = 'HCM_00_786'.
  MOVE 'MM_PO_FILO' TO control_record_out-RCVPOR.
  MOVE 'LI'      TO control_record_out-SNDPRT.
  MOVE 'SAPQIS' TO control_record_out-SNDPOR.
ENDFUNCTION.

Similar Messages

  • Message Output for purchase order

    Dear SAP Expert,
    We have defined the message output type for purchase order document type XX with special function. We have maintained condition record for the same. It is working fine.
    Now we have defined another output type for another PO document type YYwith special function by copying earlier one.
    But message output is not genarated in case of YY document type.
    Please tell us what we have missed out.
    Thanks & Regards,
    Reva.

    Hi Reva,
    In ME22N for your PO, click on the Messages button. Then click on the blue information button - this should display the output determination analysis for the order, and will show you which output determination procedure was used, which output type and access sequence was processed and whether the system was able to find a matching record. At the lowest level of detail it will show you the keys that were used to read the condition records. All this information should help you to determine why a condition record could not be found for the purchase order.
    Regards,
    Monika

  • Repeat email output for purchase order

    Hi all,
        I have an email output (ZMAL)) that sends a notification from purchase order when the total value exceed $50,000 at creation of PO.  This works fine.  However, during ME22N, when the total po value goes from  intial $30,000 to $60,000, at saving, it should email out a notification but it does not as initial output ZMAL was created at po creation.
    Q:  How can i get the notification to send out automatically the second time or third time when the condition exceeding $50,000 
         is   met ?
    If i create another output ZMAL manually in PO, then i can resend ZMAIL. 
    The condition checking is made in   'EXIT_SAPMM06E_012 in Include ZXM06U43.
    Pls provide any suggestions you have.
    thanks
    Joyce

    Hi,
    Does the output type get triggered for the first time automatically?  Instead of writing the condition in enhancement, it is recommended to write the output type determining conditions in Output type Requirement routine.
    NACE -> Select application -> Click on Procedures -> select procedure -> Click on Control -> Insert record for the output type -> Create routine and assign .
    Check standard output procedure of Purchase order "RMBEF1" to get an idea.
    Regards
    Vinod

  • Suppressing Output for Purchase Order changes to Vendors

    Hi There,
    Can someone please advice what is the best way to supress an output to a vendor that only relates to changes made to a Purchase Order. We need to limit this suppression to one document type.
    Any help appreciated.
    Many Thanks
    Uzzy

    Normally you can define requirements routines. There you could e.g. check for document type and for the transaction code (SY-TCODE). From the transaction code it should be possible to see if the documnet is created or changed.

  • How to see the changed output for purchase order

    Hi..
    I have zmedruck. i need to increse item text lengh. i done this in editor. how to see the changed output now...I increased the length of text to be displayed. I checked the print preview in me23n. i cant see the increased length. Guide me where i am wrong.
    Edited by: Meena 303 on May 1, 2008 6:24 PM

    Hi
      In ME22N go to message -
    > select old message -
    >click change OutPut button -
    > Save
    then see print priview  through ME9F or ME22N it sself.
    regards
    Sachin

  • Debugging EDI output (IDOC creation) for purchase order...

    Hi,
    We have a EDI output type defined for Purchase order. When I go to Messages tab in ME22N transaction and repeat the EDI output and save it, it creates a IDOC which I can see using transaction WE02.
    Now the problem is there is a user exit which I know gets triggered, when the IDOC is created for this PO. When we do some changes in this user exit, I see those changes are reflected when new IDOC is created. But if I put breakpoint, and do repeat output -> save, the debugger does not stop there.
    Is there is some technique I can see the breakpoint stoppage in user exit for IDOC creation during EDI output for Purchase order ?
    Regards,
    Rajesh

    Hi
    Youc can set the output Peridoically (After Giving the output type, set the furthere data as periodic).
    Save.
    Set the break point in your user exit.
    Go to se 38 -> Run RSNAST00,
    Give the object id (Your PO #)
    Give the output type  and execute, the control will stop at break point.
    Regards,
    Baburaj

  • Problem in using output type for purchase order

    Hi experts,
         I am using output type for first time so may be i have done wrong configuration for po output type.The steps i have done are :-
    1) Going to  tcode NACE->Selected  the row u201CEF Purchase Orderu201D and clicked on u201CProcedures".
    2) In procedures there are 2 procedures for the application EF (Purchase Order). To proceed further, we would need to find out the procedure that is currently active.Gone to transaction SPRO. In this, navigate as Materials management -> Purchasing ->Messages -> Output control -> Message Determination Schemas ->Define Message Schema for Purchase Order
    3) Clicking on u201CAssign Schema to Purchase Orderu201D. So, the procedure RMBEF1 is active for EF (Purchase Order) . 
    4) Go back to transaction NACE. Select u2018EFu2019 and click on u201COutput typesu201D.
    5)  Let us use the output type u201CNEU name purchase orderu201D for this purpose. Double-click on NEU.
    6) Ensured  that the checkboxes u201CAccess to conditionsu201D and u201Cmultiple issuingu201D are checked and the access sequence is 0001(DocType/PurchOrg/Vendor).Only 0001 and 0002 is available in f4 help for this.
    7) Now clicked on u201CProcessing Routinesu201D on the left hand side. Ensured that there is an entry for Medium u2018Au2019 (Distribution ALE).
    8) After that going back to the main screen of NACE. Select EF (Purchase Order) and clicked on u201CCondition Recordsu201D.
    Select NEU and clicked on u201CCondition recordsu201D. The pop-up box appears that gives three radio button option :-
      1) Purchasing output determination :purchasing org / vendor for EDI
      2) Purchasing output determination :doc. type / purchasing org /vendor
      3) Purchasing output determination :document type
          but it is not having option only for purchasing organisation through which we can send idoc for changes or creation of PO in that particular pur.org now if i choose 2) i have to give doc type and purchasing org both bcoz they are mandatory fields and value for vendor.
    9)  Also i  have done the necessary ALE configuration (not covered in this document). In the partner profiles, use the message type u201CORDERSu201D and the IDOC type u201CORDERS05u201D.In the tab u201CMessage Controlu201D, used the process codes u201CME10u201D and u201CME11u201D for u201CPO Createu201D and u201CPO Changeu201D respectively.
    but the idoc is not generated many times when po is changed and when once it is generated it is giving error
    Please suggest solution.
    Thanks in advance
    nehavt

    In me22n in messages tab after looking into  processing log it is giving->No recipient found for message type ORDCHG in the
    ALE model ,next time giving error as no idoc items belonging to purchasing document found,when i changed message type to ORDCHG the  status is green in messages tab it is giving-> error occured while idoc xyz is sent and in WE02 status is red 02
    error passing data to port(could not find code page for receiving system)

  • Reg.Output type for purchase order

    Dear Sir
    I followed your steps but not come to "List of allowed output"
    when I select the message for Purchase order(ME21N). There are listing NEU,SPO,MAHN  and AUFB.
    I just copy the NEU and all,I did not change anything.
    Maintain Output of Purchase Order
    1. Condition Table
    SPRO > Material Management> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
    Select:
    Purchasing Doc. Type,
    Purch. Organization,
    Vendor
    2. Access Sequences
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
    3. Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
    Ex:
    EF---> TES
    Select “TES” and double click on “Mail title and texts” and go to
    EN- New Purchase Order Print Out,
    Select “TES” again and double click on “Processing routines,
    Select “TES” again and double click on “Partner Roles
    4. Message Determination Schemas
    4.1. Message Determination Schemas
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
    4.2. Assign Schema to Purchase Order
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
    5. Partner Roles per Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
    6. Condition Record
    Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
    Now you create PO(ME21N) and save it. Go to ME22N and print the PO by giving output type TES.
    Please help me sir
    Rajj

    Hi
    Go to NACE
    Select application as EF Purchase Order
    Define TES as out put type there
    Vishal...

  • Output determination for purchase order

    Dear friends,
    Please help me, how to create condition record for both printout and email for output determination of standard PO.
    I have created condition record through MN04 for Purchase order with medium(external send) and it worked.
    I also need to create condition record for printout. Because Client wants to select either email,fax or printout. They will select whatever sending option.when i tried to create condition record for medium(1-printout).I got an error " The condition record entered already exists". So i tried to change that condition record,but i got here also error as "The condition is being processed in the current session".
    Please help me to set up condition record for both mail and printout for standard PO.
    Thanks

    For this kind of option you need diff message type like
    use NEU for Fax and Print and for Email create new message type than it will work.

  • Assign Form and Output Program for Purchase Order

    Hi,
    in SPRO, Assign Form and Output Program for Purchase Order I see the following data:
    -  IMG Activity  Assign Form and Output Program for Purchase Order
        -  View Maintenance: Data                                                                               
    -  VV_TNAPR_EF                                                                               
    -  TNAPR                                                                               
    -  007ZNEU2EF
    What is 007ZNEU2EF ? 
    Yours faithfully

    I dont have enough knowledge on this one. However i will try to clarify this
    007 i think its a version
    ZNEU2 its a Process type
    EF Purchase order

  • Inbound Delivery Idoc processing for Purchase Order

    We are trying to create a Inbound Delivery for purchase order. We are using idoc basic type DELVRY03.
    When we are processing this Idoc we are constantly getting error :
    Item 00000 of purchasing document does not exist
    Message no. ME706
    Diagnosis
    Purchase order 00000 with item was not found.
    Procedure
    Enter a different purchase order.
    We have mapped the PO and PO Item fields to Idoc segment fields E1EDL24-VGBEL and VGPOS respectively.
    Let me know if anyone came across or know the reason for this message and remdy.
    Thanks in advance.

    Hi Milind,
    Did you get this to work?
    Thanks,
    Finbarr

  • Output Message Determination for Purchase Order

    Hi all !
    Can anybody please explain in brief, the procedure for Ouyput message determination for Purchase order. (including printer settings)
    I have tried it throgh the Standard Configuration guide. but i am not able to do.
    Please explain step by step including form attachment.
    Thanks in Advance !!!!

    Hi,
    Customization steps for Output of Purchase Order
    1. Condition Table
    SPRO > Material Management> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
    Select:
    Purchasing Doc. Type,
    Purch. Organization,
    Vendor
    2. Access Sequences
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
    3. Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
    4. Message Determination Schemas
    4.1. Message Determination Schemas
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
    4.2. Assign Schema to Purchase Order
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
    5. Partner Roles per Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
    6. Condition Record
    Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
    Now you create PO (ME21N) and save it. Go to ME22N and print the PO by giving output type.
    Note1
    Now Check in SPAD (Printer settings) settings & try to check the printer configuration. Check Device attributes, Access methods etc. are maintained in Spool Administration (SPAD) for the selected printer (your local Printer, may be ur using HP01or any but in SAP std is LP01) but consult with your basis consultant regarding above.
    Check the following also:
    Spool generated using SP01 or SP02.
    Output device.
    Local printer settings.
    Paper Tray, Print Mode, Printer
    Note2:
    Check MN04 and NACE t.codes
    Regards,
    Biju K

  • Output Message for Purchase order not being created Automatically

    Hi all,
    I created a Condition type for Purchase order in MN04 with key combination "Doc.Type/Purch.Org/Vendor". The problem arises when i delete this condition record. After deletion when i create purchase order in me21n for that condition type, the system gives an error.
    Message no. 06261 - No message generated for output of purchasing document.
    Is there anyway the purchase order message is created automatically again when its condition type has been deleted from MN04.
    - Regards
    Sahar Khalid

    Before creating the entry in MN04 the message was being created automatically. I want the system to create the same output message as it was creating before the creation of the entry in MN04.

  • Different interfaces for purchase order output from MM system

    Dear Guru's,
    We are configuring the business scenarios of service procurement classic and Plan driven procurement with supplier enablement in the MM-SUS environment for our SRM7.01/ECC6 ehp 5 combination.
    These two scenarios are using different interfaces for purchase order output.
    The service procurement classic is using the proxy interface PurchaseOrderERPRequest_
    Out_V1 for purchase order output from ERP.
    However, the plan driven procurement uses the interface ORDERS.ORDERS02 for idoc message for purchase order output from ERP.
    Why are there two different interfaces for the same document output in two different business scenario? How the system will determine which interface needs to be used in the runtime for the purchase order output?
    Any thoughts will be highly appreciated.
    Thanks and regards,
    Ranjan

    Hi Ranjan,
    Please add the value 'CL' in the table SWF_CATIDS
    Then it will work.
    With Regards,
    Malay

  • PROCESS CODE  FOR  PURCHASE ORDER

    Hi Friends,
        what is the process code for Purchase order...  because  i need to   creating a  partner profile in WE20 in the inbound side.. if iselect  message type   ORDERS menas.. that related.. process code( for purchase order is not  displaying)..
      can  any of you give me the <b>Message type </b> and that related <b>Process code</b> for <b> purchase order</b>..
    thanks
    Babu

    Hi Babu,
        You will find out the all Process Code from WE41 for Outbound & WE42 for Inbound.
    The Process code for ORDERS: Purchase order is ME10 for Outbound and you can find it out the message type for Inbound from WE42.
    If need more info let me know..
    Cheers
    Veera

Maybe you are looking for

  • X220 Factory Reset - After Upgrade to Win 8 Professional

    Greetings All! I purchased X220 Lenevo tablet one and half year back. It shipped with Windows 7 Professional. In June 2013 I purchased Windows 8 Professional and upgraded my system from Windows 7 professional to Windows 8 professional.  I keen to rev

  • When I try to install an older version of Adobe flashplayer I get a message that says there is no application that can open it

    I have a MacBook Pro and using Mountain Lion.  Adobe automatically updated flashplayer and that wouldn't allow me to use my camera with skype.  I uninstalled flashplayer but cannot install an older version, when I try I get, "Safari can't open the "p

  • Doubt regarding ActionListener

    Hi, I am trying an example from roseindia.net regarding actionListener part in JSF as folllows. The form looks like this: <%@ page contentType="text/html" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.

  • Timestamping the certificate

    Is it possible to add a timestamp when I'm creating new signed applet. There is a problem with the signing that after the validity period there is a warning message that the certificate is out of the date. (I never want this warning dialog, I'm signi

  • Java and swap space in Solaris 8

    Hi,           I've set weblogic java to run on Xmx1534m with swap space 2Gb. It seems like we always encounter out-of-space during jsp compilations. This happens whenever the system crunches on available swap space. Any ideas what to adjust for, such