Running BDLS with SHDB input

Hi experts,
Some time ago, I have written a program that uses ABAP4_CALL_TRANSACTION RFC to call user defined transactions. It works by using a textfile - generated by SHDB - as input for the dynpros.
Now I need to use this program to execute BDLS automaticly, but it fails with this message:
<b>"Start screen does not exist in batch input data"</b>
What does this message mean and how can I avoid it?
Here some additional information:
Running BDLS manually works.
Running BDLS by using SHDB & SAPGUI directly works, too.
Running other Transactions (SM21, SE38, AL08) by my executeable works.
I'm using:
SAP IDES 4.70
SAP_BASIS 620 Level 38
Client and AS are running on the same host, which is AIX 5.3.0.0
BDLS Status data:
Transaction      BDLS
Program          RBDLSMAP
Program (screen) RBDLSMAP
Screen number    1000
Program (GUI)    RSSYSTDB
Here is my input (removed additional white spaces for easier read):
          0000  T  BDLS
RBDLSMAP  1000  X
          0000     BDC_CURSOR     NEW_LS
          0000     BDC_CURSOR     =ONLI
          0000     OLD_LS         DTZ_801
          0000     NEW_LS         Z_DTZ_801
          0000     CLNT_IND       X
          0000     TESTRUN        X
          0000     CHECK_IT       X
          0000     MAXIMUM        1.000.000
Thanks
Christian

Hi ,
Can you try with the following input...
RBDLSMAP  1000  X
          0000     BDC_CURSOR     NEW_LS
          0000     BDC_CURSOR     =ONLI
          0000     OLD_LS         DTZ_801
          0000     NEW_LS         Z_DTZ_801
          0000     CLNT_IND       X
          0000     TESTRUN        X
          0000     CHECK_IT       X
          0000     MAXIMUM        1.000.000
and the import parameters to the FM would be Tcode = 'BDLS', skip_screen = ' ' ...
Thanks.

Similar Messages

  • Run Transaction with Custom Inputs

    Hi,
    I am trying to schedule a transaction in Background
    like this.What Should I do if I don't have a PARAMETER ID for that field.
    I need to Uncheck the default Option which is checked while scheduling this job.
    SET PARAMETER ID: 'ACM' FIELD KKA0100-BIS_ABGR_M.
    SET PARAMETER ID: 'ACJ' FIELD KKA0100-BIS_ABGR_J.
    CALL TRANSACTION 'KKAO' .
    regards
    Vara
    Message was edited by: Vara K

    If there is no parameter id set for this checkbox, then I am not sure we can try this without using BDC. I am not aware of Transaction variants in detail but you can check this thread for more details -
    Transaction variant

  • Run emigall with a "mig.object" and "input file" as parameters in a job?

    Hi!
    I'm looking for a way to run emigall with a "mig.object" and "input file" as parameters in a job. We will use emigall in a data load step of a process. Is this possible? Is emaigall designed for this use?
    Thanks for any help and suggestions.
    Best regards.

    Hi!
    I'm looking for a way to run emigall with a "mig.object" and "input file" as parameters in a job. We will use emigall in a data load step of a process. Is this possible? Is emaigall designed for this use?
    Thanks for any help and suggestions.
    Best regards.

  • MacPro with10.7.3. running a Python script in terminal I see a : "There is no more application memory available on your startup disk". Python uses 10G of 16G RAM and  VM =238G with 1TB free. Log: macx-swapon FAILED - 12. It only happens with larger inputs

    On my MacPro with10.7.3. while running a Python script in terminal, after a while, in several hours actually,  I see a system message for the Terminal app: "There is no more application memory available on your startup disk". Both RAM and VM appear to be fine at this point, i.e. Python uses only 10G of 16G RAM and  VM =238G with ~1TB free. Log reads: " macx-swapon FAILED - 12" multiple times. Furthermore, other terminal windows can be opened and commands run there. It only happens with larger inputs (text files), but with inputs that are about half the size everything runs smoothly.  So the issue must be the memory indeed, but where to look for the problem/fix?

    http://liulab.dfci.harvard.edu/MACS/README.html
    Have you tried with the --diag flag for diagnostics? Or changing verbose to 3 to show debug messages? Clearly one of three things is happening;
    1. You ARE running out of disk space, but once it errors out the space is reclaimed if the output file is deleted on error. When it fails, does your output have the content generated up to the point of termination?
    2. The application (Terminal) is allocated memory that you are exceeding
    3. The task within Terminal is allocated memory that you are exceeding
    I don't know anything about what this does but is there a way to maybe run a smaller test run of it? Something that takes 10 minutes? Just to see if it works.

  • Calling report from a form with user input parameters

    Hello,
    I am new to Oracle reports. I have an application coded in 6i. I am currently running the application in Oracle Forms Builder 9i. There are also few reports which are called from the forms. Since the application was developed in 6i, the report was called using Run_Product. The forms pass a set of user parameters to the report using the parameter list pl_id. The syntax used was Run_Product(REPORTS, 'D:\Report\sales.rdf', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
    I learnt that the Run_product doesnt work in 9i and we need to use run_report_object. I have changed the code to use run_report_object and using web.show_document () i am able to run the report from the form. There are 2 parameters that need to be passed from forms to reports. The parameters are from_date and to_date which the user will be prompted to enter on running the form. In the report, the initial values for these parametes are defined. So, the report runs fine for the initial value always. But when i try to change the user inputs for the form_date and to_date, the report output doesnt seem to take the new values, instead the old report with the initial values(defined in the report) runs again.
    Can someone give me the code to pass the user defined parameters to the report from the forms? I have defined a report object in the forms node as REPTEST and defined a parameter list pl_id and added form_date and to_date to pl_id and used the following coding:
    vrepid := FIND_REPORT_OBJECT ('REPTEST');
    vrep := RUN_REPORT_OBJECT (vrepid,pl_id);
    But this doesnt work.
    Also, Should the parameters defined in the forms and reports have the same name?

    Thanks for the quick response Denis.
    I had referred to the document link before and tried using the RUN_REPORT_OBJECT_PROC procedure and ENCODE functions as given in the doc and added the following SET_REPORT_OBJECT_PROPERTY in the RUN_REPORT_OBJECT_PROC :
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,' FROM_DATE='||:BLK_INPUT.FROM_DATE||' TO_DATE='||:BLK_INPUT.TO_DATE||' paramform=no');
    But this also dint work. Please help me understand what difference does setting paramform=no OR paramform=yes make?
    In the report, i have defined the user parameters as FROM_DATE and TO_DATE respectively so that they match the form datablock BLK_INPUT items FROM_DATE and TO_DATE.
    My WHEN_BUTTON_PRESSED trigger is as below:
    DECLARE
    report_id report_object;
    vrep VARCHAR2 (100);
    v_show_document VARCHAR2 (2000) := '/reports/rwservlet?';
    v_connect VARCHAR2 (30) := '&userid=scott/tiger@oracle';
    v_report_server VARCHAR2 (30) := 'repserver90';
    BEGIN
    report_id:= find_report_object('REPTEST');
    -- Call the generic PL/SQL procedure to run the Reports
    RUN_REPORT_OBJECT_PROC( report_id,'repserver90','PDF',CACHE,'D:\Report\sales.rdf','paramform=no','/reports/rwservlet');
    END;
    ... and the SET_REPORT_OBJECT_PROPERTY code in the RUN_REPORT_OBJECT_PROC procedure is as:
    PROCEDURE RUN_REPORT_OBJECT_PROC(
    report_id REPORT_OBJECT,
    report_server_name VARCHAR2,
    report_format VARCHAR2,
    report_destype_name NUMBER,
    report_file_name VARCHAR2,
    report_otherparam VARCHAR2,
    reports_servlet VARCHAR2) IS
    report_message VARCHAR2(100) :='';
    rep_status VARCHAR2(100) :='';
    vjob_id VARCHAR2(4000) :='';
    hidden_action VARCHAR2(2000) :='';
    v_report_other VARCHAR2(4000) :='';
    i number (5);
    c char;
    c_old char;
    c_new char;
    BEGIN
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,report_file_name);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,report_server_name);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,report_destype_name);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,report_format);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,' FROM_DATE='||:BLK_INPUT.FROM_DATE||' TO_DATE='||:BLK_INPUT.TO_DATE||' paramform=no');
    hidden_action := hidden_action ||'&report='||GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME);
    hidden_action := hidden_action||'&destype='||GET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE);
    hidden_action := hidden_action||'&desformat='||GET_REPORT_OBJECT_PROPERTY (report_id,REPORT_DESFORMAT);
    hidden_action := hidden_action ||'&userid='||get_application_property(username)||'/'||get_application_property(password)||'@'||get_application_property(connect_string);
    c_old :='@';
    FOR i IN 1..LENGTH(report_otherparam) LOOP
    c_new:= substr(report_otherparam,i,1);
    IF (c_new =' ') THEN
    c:='&';
    ELSE
    c:= c_new;
    END IF;
    -- eliminate multiple blanks
    IF (c_old =' ' and c_new = ' ') THEN
    null;
    ELSE
    v_report_other := v_report_other||c;
    END IF;
    c_old := c_new;
    END LOOP;
    hidden_action := hidden_action ||'&'|| v_report_other;
    hidden_action := reports_servlet||'?_hidden_server='||report_server_name|| encode(hidden_action);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'pfaction='||hidden_action||' '||report_otherparam);
    -- run Reports
    report_message := run_report_object(report_id);
    rep_status := report_object_status(report_message);
    IF rep_status='FINISHED' THEN
    vjob_id :=substr(report_message,length(report_server_name)+2,length(report_message));
    message('job id is'||vjob_id);pause;
    WEB.SHOW_DOCUMENT(reports_servlet||'/getjobid'||vjob_id||'?server='||report_server_name,' _blank');
    ELSE
    --handle errors
    null;
    END IF;
    In the code - " hidden_action := hidden_action ||'&'|| v_report_other; " in the RUN_REPORT_OBJECT_PROC procedure above, how do i make sure that the v_report_other variable reflects the user input parameters FROM_DATE and TO_DATE ??? v_report_other is initialised as v_report_other VARCHAR2(4000) :=''; in the procedure. Will ensuring that the v_report_other contains the user input parameters FROM_DATE and TO_DATE ensure that my report will run fine for the input parameters?
    Thanks in advance.
    Edited by: user10713842 on Apr 7, 2009 6:05 AM

  • Hierarchy on HANA Calculation View with Optional Input Parameters Fails

    Hi,
    Has anyone succeeded in building a hierarchy on top of a calculation view with optional input parameters, where an input parameter is not filled?
    The original requirement came from the wish to create a parent child hierarchy on a calculation view that was copied into the customer space from a HANA Live Financial Statement query view, but I have found the following when creating a simple level hierarchy on a calculation view that consumes one table. The Calculation View has one Input Parameter where the 'mandatory' box is unchecked.
    Calculation view reads ECC table FAGLFLEXT
    Simple level based hierarchy on fields PRCTR, RACCT and SEGMENT
    Input parameter is used as a filter for PRCTR with logic ("EMPTY" = '$$P_PROFITCTR$$' or "PRCTR" = '$$P_PROFITCTR$$')
    When I run the view I see the following behaviour in HANA Studio and Analysis for Excel
    Before building the hierarchy I could run the view with or without the Input Parameter
    After building the hierarchy I can run the view with the Input Parameter filled, but it fails when the Input Parameter is not filled.
    Error message is "error: search table error:  [2426] missing placeholder; missing value for mandatory parameter P_PROFITCTR"
    P_PROFITCTR is not a mandatory parameter, but the selection for the hierarchy view thinks it should be. I don't find any notes around this issue, so I don't think it's version related, however the version I have used for this test is 1.00.70.
    It's a shame we can't currently build the hierarchy as the parent child relationship is provided in HANA Live view NewGLFinancialStatementQuery.
    Thanks,
    Ken

    Hi Ken,
    We have been facing similar issue. We have even tried to set default value and as optional parameter. View still fails to create hierarchy (we are not using HANA live). As mentioned on page 97 of HANA modelling guide input parameter is mandatory from engine point of view. Hierarchy is generated as column view during the initial activation of calculation view and therefore expect a value by caller.
    This seems to be a product error. Some one from HANA development team should explain this issue in detail. I would expect someone like Thomas Jung reply to us.
    At the moment, we cant use input parameter for date prompt which gives us calendar popup feature for date selection. Hierarchies just don't work with input parameter. We are missing something.
    Regards
    Angad

  • Crystal Report with standard Input-Parameters in InfoView

    Hi there,
    i've created a crystal report which has non-optional input parameters, e.g, Date from ... Date to ...
    I've managed to fill this parameter with standard parameters if the user does not choose a value. e.g. date is today - 14 days.
    If i start the report in crystal and do not enter a input-parameter, it gets it input parameer automatically, see:
    (if not hasvalue({?PARA_TA_von}) then ({PW_BO_HU_TA.LTAP-WDATU}>=CurrentDate-14) else ({PW_BO_HU_TA.LTAP-WDATU}>={?PARA_TA_von}))
    It works perfectly in crystal. But if i start the Report in Webintelligence Infoview, it doesn't work and i get the message to enter the input-parameters....
    Any idea ?
    Thanks,
    Sebastian

    Hi Ingo,
    I have tried the sample reports and other crystal reports created with data sources other than SAP which all work fine. The problem happens on all clients and the server when running reports with SAP data source.
    I did find an error in the Tomcat logs.
    [/SAP].[jsp] Thread [http-8080-Processor24];  Servlet.service() for servlet jsp threw exception
    java.lang.NoClassDefFoundError: com/crystaldecisions/Utilities/LengthLimitedDataInputStream
    I did manage to run one report which had 4 records but the other reports which vary from 432 - 2500 records return the error found in the tomcat logs.
    I will be installing BOE XI 3.1 on my desktop to see if the still issue occurs in this release.
    Thanks and Regards,
    Paul.

  • How can i control graph with two inputs?

    Hi,
        i would like to ask you about the graph with two inputs
    Normally, if i just give one input, they generate the graph with this input(y) vs time(x).
    But now i would like to get the graph with my two inputs in x axis and y axis .
    i want to control both of two axis. How could i do for it ?
    i attached the file that i try to use "Build XY graph" to control both x and y axis with random number .
    It can run but i don't know how come the graph show nothing. .
    Actually , it have to show something like wavefrom continuously. am i right?
    Could you tell me a way to solve it ? 
    >>>
    what i want to get is ..
    in Graph,
    for x axis , ditance (always increases)
    for y axis , vibration (vary)
    >>>
    Thank you so much for your time . I am looking forward your kindly reply.
    With Respect,
                            Su
    Attachments:
    using Build XY graph.vi ‏59 KB

    Hi NI9233,
    Mind me to interrupt, I am just helping Mike to explain what he meant to you, refer to the graph:
    Picture 1:
    Double click on Build XY Graph, uncheck the clear data on each call
    Picture 2 and 3:
    Change your formula node into +1 Basic Function in Functions Pallette.
    Hope that helps!
    PS: I am sorry for the size of the image, seems I made a mistakes when I saved the picture.
    Sincerely,
    Krisna Wisnu
    Message Edited by Krisna Wisnu on 11-19-2008 08:19 PM
    Sincerely,
    Krisna Wisnu
    Attachments:
    Clear Graph on Each Call.PNG ‏46 KB
    +1.PNG ‏30 KB
    +1_2.PNG ‏21 KB

  • Unable to interact with Flash content when running Firefox with restricted user

    When running Firefox with limited Windows user on Windows XP the Flash elements are displayed, the content that is set to auto-play does so even, but the flash area doesn't receive any mouse input: e.g. when I right click in the area instead of the flash context menu I get the browser context menu as if the flash plug-in wasn't even there. The exact same page on the exact same computer but with Administrator user works as expected: can press buttons, interact with flash controls and the context menu upon right-click is of course the flash one. This behavior occurs even if I disable all add-ons.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

  • What is the possible impact of running BDLS in wrong client?

    Hello,
    I've been doing a system refresh from PRD to QUA and as a part of post refresh actions I've run BDLS for each client I have in the system. That system has 4 clients (500,600,700,800) so I've run BDLS 4 times (PRDCLNT500 -> QUACLNT500, PRDCLNT600 -> QUACLNT600, PRDCLNT700 -> QUACLNT700, PRDCLNT800 -> QUACLNT800). The problem is that I've run all four reports from the same client (500).
    When BDLS finished and I've been checking the spool reports I found out my mistake - there were over 5.000.000 updates in correct report (PRDCLNT500 -> QUACLNT500) and only 3.000 updates in wrong ones (all other reports).
    After this I've started BDLS for the remaining clients (600,700,800) correctly.
    <b>The question is - could there be any possible impact on data consistency?
    If so - what impact could I expect?
    Would be wise to run the BDLS reports in inverse mode (changing the logical names to the original ones) in client 500?</b>
    Here is some information that can help - tables with amount of modified records:
    BDSX_CON04*                    LOG_SYSTEM                             1                      1
    ROIDOCPRMS*                    SLOGSYS                                1                      1
    ROOSGEN*                       RLOGSYS                                0                      0
                                   SLOGSYS                                1                    201
    ROOSPRMSC*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      3
    ROOSPRMSF*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      4
    RSBASIDOC*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      1
    SRRELROLES                     LOGSYS                                 1                  2.040
    TBTCO*                         RECLOGSYS                              1                      1
    EDIDC                          RCVPRN                                 0                      0
                                   SNDPRN                                 1                    780
    EDP21                          SNDPRN                                 1                      3
    EDPP1                          PARNUM                                 1                      1
    T076B                          KONTO                                  1                      1
    T076M                          KONTO                                  1                      1
    T076S                          KONTO                                  1                      1
    I expect that all tables marked with star (client independent tables) have no impact (they would be changed anyway).

    Thanks. I got similar response from other SAP experts I've consulted. But I do not understand what are the changed records? If there would be no changed records - I would agree there is no impact. But when I've by accident changed 3x3000 records - it is hard to belive that there is absolutely no impact.
    Can you please explain?

  • UK TV with scart input only - got it working, here's how

    For those of you that are in the same predicament and would like to know how to get the apple tv working with your 'old' tv with scart input only, here is the run down of how I managed to get in working.
    In order to display the component signals via a scart you would need to have a very expensive type of tv (one that allows YUV via scart)... i don't (you may, but it is VERY rare).
    Getting a component to scart lead will NOT work (RGB input not YpPpR).
    You will need a component to scart convertor. I have only found 2 that do the job as most convert the wrong way i.e. scart to component.
    the one I plumped for was the SYNCBLASTER RGB2C COMPONENT TO RGB TRANSCODER and can be bought from Keene Electronics : http://www.keene.co.uk/electronics/multi.php?mycode=RGB2C
    It costs £89.99 but it is worth it!
    You will also need a component lead (3 phono to 3 phono) (an adaptor is included with the transcoder that will allow you to plug it into the scart socket on the transcoder)
    You will also need a FULLY wired scart lead (i.e. ensure it has rgb capability - most have)
    You will also need to connect the audio up to an amplifier either via the two red/white connectors OR via the optical out to an appropriate input (I use the optical to my amplifier). You will NOT be able to transmit the audio via the scart.
    Once plugged in, you need to set the switches on the front of the transcoder to :
    1 down
    2 up
    3 down
    4 up
    Press in the button so the light shows amber(red)
    apply power to the apple tv, it should now startup and you should see a picture (if no picture is seen, wait until the white light displays on the front of the apple tv and HOLD MENU and + for 6 seconds, it will now cycle through the resolutions... click ok when you can view it).
    Works a treat, and is cheaper than buying a new HD TV!
    TO be honest, don't believe the bad press, the apple tv IS as good as you hoped it would be even without a HDTV....
    Shame that apple didn't offer an additional composite (yellow) output, this would have prevented so many problems for so many.
    for all its worth, I hope this helps someone.
    CD

    How is the quality of the picture? I bought the
    converter from J.S Technology:
    http://www.js-technology.com/product_info.php?cPath=22
    &products_id=52
    The picture on my Sony SD Widescreen TV is really
    dark on most of the movies I have - in most instances
    making it unwatchable - I am going to try re-ripping
    some DVDs paying attention to the resolution etc, but
    I am not convinced this is the issue. Many of my
    photos look far darker on the TV than they do on my
    MacBook Pro.
    I am going to take the AppleTV round to a friend who
    has an HD tv and try it there to see if there is an
    issue with the ATV. Failing that it is down to the
    component to RGB converter I suppose.
    What is other people's experience with the other
    conveters out there?
    Having forked out almost £100 and still not having a
    watchable Apple TV, I am a bit fed up.
    I called J.S Technology today, and they suggested restarting the converter - everything is now working great.
    Very pleased!

  • I can't type with Chinese Input Methods in Mail and Notes

    Today I suddenly can't type/input any word or character in Mail and Notes
    when the input method switches to any Chinese input method like Zhuyin, Yahoo KeyKey and Bopomofo.
    Even the cursor won't move when I press the " ↑↓←→"
    The keyboard just doesn't work from " ` " to "→" when it comes to Chinese input methods.
    However,
    the keyboard works well as soon as I switch to English input method and I can type English in Mail and Notes.
    I can type with any Chinese input methods in Chrome, TextEdit, Reminder, iPhoto, Contacts,......etc..
    Is there something wrong with Mail and Notes?
    Could anyone help me solve the problem?
    Thank you!

    Thank you, Tom.
    I have posted my issue there and hope for the best
    btw,
    I had the same problem (cannot input any word and move the cursor with Chinese input methods) in Evernote.
    Evernote Support helped me solve it.
    Here is how it works (for Evernote only).
    Ticket # 16051-XXXXX
    We believe that reinstalling the latest Mac version may address the issue that you reported. Please perform the following steps:
    Quit Evernote from the elephant icon in the Menu Bar
    Drag the Evernote application to the system Trash
    Reboot your Mac
    Download and install the latest version of the Mac client:
    http://www.evernote.com/about/download/get.php?file=EvernoteMac
    When you open the download, make sure to drag the Evernote icon into the Applications folder instead of running it from within the installer package.
    Eject the disk image and delete the installer file before you runEvernote.
    Let us know how this works for you.
    Thank you.
    Tania

  • Fuzzy controller with 5 inputs

    Dear
    I have two questions:
    1. Is there anyway to load or open the files of .fis using matlab in labview?
    2. I have fuzzy controllers with 5 inputs but why the fuzzy controller in labview is limited to only four inputs? Is there anyway to build a fuzzy controler with 4 inputs?
    Thanks

    Hey Eng.Ahmad
    I think it is possible to employ a 5th input for the fuzzy controller (or any number for that matter). It requires editing the (Fuzzy Controller.vi) and (Inferenz4.vi) In the second one the job is not very simple but I think it can be done. You have to add case5 to the case structure that creates all the 4 inputs (and it shall create 5 inputs after editing), you also have to make the big For Loop run 5 times instead of 5 etc... In the Fuzzy Controller.vi you only have to add one set of inputs similar to others. 
    I am sorry but I have to admit straight from here that I have not tried to do this as I still do not know how to use this whole "fuzzy business". But if you attempt to do this, please post a reply with the result. 
    Message Edited by RafalM on 05-06-2009 10:08 AM

  • Run JSPs with JSDK2.1

    Hi,
    I've download the JSDK2.1 and I can run servlets with it.
    Now, I would like to run a JSP. What configurations must I do?
    thank you very much
    apaf

    Thank you for your answer.
    But, even if I only want to run a simple JSP as the following
    <body>
    <form name=f action=thisJSP.jsp>
    <input type=text name=t>
    <input type=submit>
    </form>
    Last value: <%out.println(request.getParameter("t")%>
    </body>
    do I steel need to download the J2EE?

  • I am trying to run PASW with Lion.

    I am trying to run PASW with Lion.  I've found a patch that allows it to run, except that it will not do graphs. These always produce this warning: 'Could Not Start Java Virtual Machine. Chart will not be drawn."  Anyone know of another patch for this?
    David

    I am grateful for your atypical response.
    DR

Maybe you are looking for