How to compile developer2000 reports in 9i reports developer

Hi
We have developer 2000 (reports2.5 verion)executables on ibm/AIX. We want to open and compile the reports in oracle 9i reports developer. what is the diff between d2k and 9i rpeorts developer. Can i install 9i reports developer on ibm.aix5.1 ? Please let me know.
Thanks in advance.

We are also having the same issue.

Similar Messages

  • How To Compile Several Reports 10g At Once

    Hi all,
    I want to know how to compile several reports (rdf) 10g at once, not one by one.
    Thanks in adwance
    Vismantas

    Hi Inolau
    I am asking its working fine but where these rep files are generating i have put the batch file in my folder E:\Reports and from command prompt i am running this batch files its k but when i go to E:\Reprots folder there is not even a single rep file for these two reports.However if these rep generating some other directory but its not cause i have searched too for allz directory for exploc.REP and cldpln.REP.
    E:\Reports>my.bat
    E:\Reports>for %f IN (*.rdf) do RWCON60 userid=ics/ics@ics batch=yes source=%f s type=rdffile dtype=repfile overwrite=yes logfile=log.txt echo FINISHED COMPILING
    E:\Reports>RWCON60 userid=ics/ics@ics batch=yes source=exploc.RDF stype=rdffile dtype=repfile overwrite=yes logfile=log.txt echo FINISHED COMPILING
    E:\Reports>RWCON60 userid=ics/ics@ics batch=yes source=cldpln.RDF stype=rdffile dtype=repfile overwrite=yes logfile=log.txt echo FINISHED COMPILING
    Thanks for yours prompt response.

  • How to compile a report in windows

    Dear Memebers,
    Generally standard reports contain a lot of user exits as a results of which we cannot compile the reports using reports builder. How can we compile a standard report in windows. I know the syntax which is shown below but how should i proceed.
    REM WINDOWS COMPILE REPORT
    ::compile_report.bat
    cls
    Echo compiling Report .....
    for %%f IN (FAS400.rdf) do RWCON60 userid=apps/apps@test batch=yes source=%%f
    stype=rdffile DTYPE=REPFILE OVERWRITE=yes logfile=log.txt
    ECHO FINISHED COMPILING
    What if i have a report in some directory in windows. Can i mention the path and how do i run the above mentioned commands as a script in windows command prompt.
    I would really appreciate your help. Correct me if i am wrong.
    Thanks
    Sandeep

    for forms:
    REM WINDOWS COMPILE FORMS
    ::compile_forms.bat
    @echo off
    cls
    SET DBConnectString =
    SET /P DBConnectString= Please enter DB connect string (user/password@sid):
    SET workingDirectory =
    SET /P workingDirectory= Enter the directory where FMBs are located (i.e. c:\dev\forms\):
    cd %workingDirectory%
    @echo on
    echo Compiling Forms....
    for /f %%a IN ('dir /b *.fmb') do ifcmp90 module=%%a userid=%DBConnectString% batch=yes
    echo Finished Compiling for reports:
    REM WINDOWS COMPILE FORMS
    ::compile_reports.bat
    @echo off
    cls
    SET DBConnectString =
    SET /P DBConnectString= Please enter DB connect string (user/password@sid):
    SET workingDirectory =
    SET /P workingDirectory= Enter the directory where RDFs are located (i.e. c:\dev\reports\):
    cd %workingDirectory%
    @echo on
    echo Compiling Reports....
    for /f %%a IN ('dir /b *.rdf') do rwconverter userid=%DBConnectString% batch=yes source=%%a stype=rdffile dtype=repfile overwrite=yes logfile=log.txt
    echo Finished Compiling

  • How To Compile Several Reports 6i At Once

    Hi Allz
    I want to know how to convert reports 6i rdf to rep at once not one by one.Plz dont give me any link cause i have viewed alls the solution but unable to understand yet.Moreever plz tell me specifically how will i know coversion is completed at once for proof like from where can i get these generated rep files.
    Thanks in advance
    Khurram Siddiqui

    Hi Inolau
    I am asking its working fine but where these rep files are generating i have put the batch file in my folder E:\Reports and from command prompt i am running this batch files its k but when i go to E:\Reprots folder there is not even a single rep file for these two reports.However if these rep generating some other directory but its not cause i have searched too for allz directory for exploc.REP and cldpln.REP.
    E:\Reports>my.bat
    E:\Reports>for %f IN (*.rdf) do RWCON60 userid=ics/ics@ics batch=yes source=%f s type=rdffile dtype=repfile overwrite=yes logfile=log.txt echo FINISHED COMPILING
    E:\Reports>RWCON60 userid=ics/ics@ics batch=yes source=exploc.RDF stype=rdffile dtype=repfile overwrite=yes logfile=log.txt echo FINISHED COMPILING
    E:\Reports>RWCON60 userid=ics/ics@ics batch=yes source=cldpln.RDF stype=rdffile dtype=repfile overwrite=yes logfile=log.txt echo FINISHED COMPILING
    Thanks for yours prompt response.

  • How to compile forms & Reports in 10g

    Hi Guys,
    We are migrating an application from Forms & Reports 6i to Oracle 10g. We have Windows based 10g IDS, Application Server is on HP-UX and Database also on HP-UX. We are migrating the forms & reports successfully on windows using 10g ids. while deploying forms & Reports in application Server on HP-UX, it will not work as platform is different.
    So my question is,
    How do I compile all forms & Reports under unix environment using Application Server?
    Can you people help me out at the earliest?
    Thanks

    Hello,
    Use rwconverter.sh for Reports and frmcmp.sh for Forms .
    Regards

  • How to compile all invalid objects in SQL Developer

    Hi
    I am used to PL\SQL Developer and currently I am testing SQL Developer (version 2.1). I have question where can I find in SQL Developer functionality (or how to invoke those functions) like:
    1 ) To list all invalid objects and then compile them.
    2) Invoke window similar to “Command window” in PL\Sql Developer
    Thanks for help
    Groxy

    Could I please revive this and ask how do I use UTL_RECOMP?
    Also, I could not find a description of the icons in SQL Developer. Some procedures are shown with a green plus sign (I am guessing here since I can't make out what it is) on them and the ones that I right-click and compile have this green go away. Can you explain?
    Thanks a lot.

  • How to compile 600 d2k reports at a time.

    I have done import oracle database 8i in new server, how I can recompile reports developed in oracle d2k at a sigle go.
    as it is very tedious to compile one by one and time consuming everytime i import database. without recomile the reports does not work.

    Hello,
    Is this what you are looking for? You can create procedure from this and call it from application side
    DECLARE
    CURSOR mycur
    IS
    SELECT object_type, object_name FROM user_objects
    where status='INALID';
    v_sql VARCHAR2 (100);
    BEGIN
    FOR cur IN mycur
    LOOP
    v_sql :=
    ' ALTER ' || cir.object_type || ' ' || cur.object_name || ' COMPILE';
    EXECUTE IMMEDIATE v_sql;
    END LOOP;
    END;
    Regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to compile forms and reports 6i in Application server 1.0.2.2.2.

    Hi all,
    i used oracle forms and reports 6i with oracle database 10g in client server architecture.
    now i want to make 3 tier, client-application server version 1.0.2.2.2-origin database serversystem on 3 separate machines.
    i have installed application server version 1.0.2.2.2.
    now i have my forms and reports 6i in application server computer.
    can any one please tell me how to compile forms and reports 6i in application server computer i.e do i have to write some extra code in forms and reports 6i in order to compile in application server computer successfully.
    waiting for an early reply.
    best regards
    fahad ejaz
    email:[email protected]

    ... another question would be why not upgrade those old Forms & Reports to the newest release 10.1.2.0.2 and use the latest Application Server to run them with?
    Release 6i and 1.0.2.2 is as you know desupported.
    Regards,
    Martin

  • How to compile Reports sample OCI program in Sun solaris ?

    TO All:
    Here is reports OCI sample program.
    #include <stdio.h>
    long ret,rwcrun(),rwcsql();
    main()
    char options[132];
    long len;
    strcpy(options,"userid=ps51/ps51 report=emp batch=yes paramform=no destype=file desname=l.ps");
    printf("/options are: %s",options);
    len=strlen(options);
    ret=rw2run(options);
    printf("/n Value of return code is %d",ret);
    exit();
    Pls guide me , how to compile this program in Sun Solaris platform .
    1. Which library file I need to include.
    2. How to create make (.mk) file.
    If I compile this program using below command.
    $>cc ociprg.c r30dll.o
    then "rw2run" not found error.
    Also I need to use RW2RRB oci function, for this which library I need to use.
    Thanks in Advance
    Siva
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by R.Siva Kumar [[email protected]]:
    TO All:
    Here is reports OCI sample program.
    <HR></BLOCKQUOTE>
    null

  • How to compile reports Rdf files on Solaris

    hi
    My report is working fine in the Developer2000 env in report editor but when i put them on solaris
    it says that it Contains the Uncompiled pl/sql . i have some pl/sql packages attached as programming unit
    to the Report.
    2) I have compiled it in D2K AND its working fine , same user/p @service login
    3) Does any one knows whats the command line to compile on solaris
    whats the Utility.
    Regards
    Jai

    Jai,
    The question seems bit vague, I have answered based on my undedrstaing of your question
    1. You can compile a report in solaris also by opening it in Reports Builder and by chooing the submenu compile -all
    2. You can also run the report in batchmode and give compileall=yes
    Please see the commandline arguments section in the publishing reports manual at http://otn.oracle.com/docs/products/reports/content.html
    Thanks
    The Oracle Reports team

  • How to batch compile Oracle Reports ?(just like the code for compiling forms)

    The following is for Batch compiling forms..
    IF %1=="" GOTO END
    DEL *.FMX
    FOR %%F IN (*.FMB) DO START /W Ifcmp60 USERID=%1 BATCH=Y MODULE=%
    %F
    :END
    Any idea for compiling all reports using a technique just like
    this..

    User dbms_ldap package in the database to use PL SQL to create your database
    account and then an OID account with a RAD to match the database login. If you
    You may have to load the DBMS_Ldap package from the database ADMIN directory first to be available in the database.
    LDAP SQL Ex.
    user_username := LOWER(new_user) || '@domain.com'; -
    retval := dbms_ldap.search_s(my_session, ldap_base,
    dbms_ldap.scope_subtree, 'uid=' || user_username, my_attrs, 0,
    my_message);
    retval := dbms_ldap.count_entries(my_session, my_message);
    my_entry := dbms_ldap.first_entry(my_session,my_message);
    my_dn := dbms_ldap.get_dn(my_session,my_entry);
    dbpassword := 'PASSWD01';
    isvalidrad := forms_rad.newraddefinition(radname,new_user,dbpassword,
    dbtnsnames,errormessage);
    sessionestablished := forms_rad.createoidsession(ldap_user, ldap_passwd,
    ldap_host, ldap_port, ldap_base);
    radcreated := forms_rad.createradforcn(my_dn, 'false', errormessage);
    -- Create new user's database account same as RAD account.
    v_sql := 'CREATE USER "' || new_user || '" IDENTIFIED BY ' || dbpassword ||
    ' DEFAULT TABLESPACE JLIM TEMPORARY TABLESPACE TEMP';
    EXECUTE IMMEDIATE v_sql;
    v_sql := 'GRANT CONNECT TO ' || new_user;
    EXECUTE IMMEDIATE v_sql;

  • How to use Crystal Report in Oraacle Jdeveloper

    Hi all,
    I am new in crystal report . i want information how to use Crystal Report in Oraacle Jdeveloper10g like how to call .rpt file in oracle Jdeveloper or how to compile .rpt file in crystal report
    plz  can any one help me regarding that matter
    -Amol

    Hello Amol,
    The Crystal Report for Eclipse - Java-based Crystal Reports development - is integrated into the Eclipse IDE and IBM RAD.
    However, it's not integrated with JDeveloper.
    You can still access the Crystal Java Reporting Component to create Java applications to view Crystal Reports, but you'd not be able to create RPT files unless you use Eclipse or RAD.
    More info for CR4E here:
    [https://boc.sdn.sap.com/creclipse|https://boc.sdn.sap.com/creclipse]
    Sincerely,
    Ted Ueda

  • How to display BIRT report on Tomcat server

    Hi,
    I am using BIRT to generates the report, i am having a BIRT file called Customers.rptdesign that i want to execute on Tomcat server, but not able to execute. On eclipse brouser its running very well and displaying reports in brouser but not in Tomcat.
    Waiting for replies........

    Well all you have to there is deploy the report with webapplication and write your custom classes which would compile the report and gives a HTML/PDF/RTF..... response for you accordingly.
    please checkout the below link which gives an idea of how you can do that....
    http://www.onjava.com/pub/a/onjava/2006/07/26/deploying-birt.html?page=2*
    and here is an example of a Dynamic Servlet which could be configured accordingly to generate proper response for you accordingly by passing (Mapped) parameters to the report.
    http://wiki.eclipse.org/Java-DynamicReport_Servlet_(BIRT)_*
    and to get more insight information about how this framework creeps in and how is that we use its API and etc..
    You may have a look at the below article
    http://www.eclipsecon.org/summiteurope2006/presentations/ESE2006BIRT_The_Open_Source_Reporting_Framework.pdf_*
    Hope this might help :)
    REGARDS,
    RaHuL

  • How to create a report based on a DataSet programatically

    I'm working on a CR 2008 Add-in.
    Usage of this add-in is: Let the user choose from a list of predefined datasets, and create a totally empty report with this dataset attached to is. So the user can create a report based on this dataset.
    I have a dataset in memory, and want to create a new report in cr2008.
    The new report is a blank report (with no connection information).
    If I set the ReportDocument.SetDataSource(Dataset dataSet) property, I get the error:
    The report has no tables.
    So I must programmatically define the table definition in my blank report.
    I found the following article: https://boc.sdn.sap.com/node/869, and came up with something like this:
    internal class NewReportWorker : Worker
          public NewReportWorker(string reportFileName)
             : base(reportFileName)
    public override void Process()
             DatabaseController databaseController = ClientDoc.DatabaseController;
             Table table = new Table();
             string tabelName = "Table140";
             table.Name = tabelName;
             table.Alias = tabelName;
             table.QualifiedName = tabelName;
             table.Description = tabelName;
             var fields = new Fields();
             var dbField = new DBField();
             var fieldName = "ID";
             dbField.Description = fieldName;
             dbField.HeadingText = fieldName;
             dbField.Name = fieldName;
             dbField.Type = CrFieldValueTypeEnum.crFieldValueTypeInt64sField;
             fields.Add(dbField);
             dbField = new DBField();
             fieldName = "IDLEGITIMATIEBEWIJS";
             dbField.Description = fieldName;
             dbField.HeadingText = fieldName;
             dbField.Name = fieldName;
             dbField.Type = CrFieldValueTypeEnum.crFieldValueTypeInt64sField;
             fields.Add(dbField);
             // More code for more tables to add.
             table.DataFields = fields;
             //CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo info =
             //   new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
             //info.Attributes.Add("Databse DLL", "xxx.dll");
             //table.ConnectionInfo = info;
             // Here an error occurs.
             databaseController.AddTable(table, null);
             ReportDoc.SetDataSource( [MyFilledDataSet] );
             //object path = @"d:\logfiles\";
             //ClientDoc.SaveAs("test.rpt", ref path, 0);
    The object ClientDoc referes to a ISCDReportClientDocument in a base class:
       internal abstract class Worker
          private ReportDocument _ReportDoc;
          private ISCDReportClientDocument _ClientDoc;
          private string _ReportFileName;
          public Worker(string reportFileName)
             _ReportFileName = reportFileName;
             _ReportDoc = new ReportDocument();
             // Load the report from file path passed by the designer.
             _ReportDoc.Load(reportFileName);
             // Create a RAS Document through In-Proc RAS through the RPTDoc.
             _ClientDoc = _ReportDoc.ReportClientDocument;
          public string ReportFileName
             get
                return _ReportFileName;
          public ReportDocument ReportDoc
             get
                return _ReportDoc;
          public ISCDReportClientDocument ClientDoc
             get
                return _ClientDoc;
    But I get an "Unspecified error" on the line databaseController.AddTable(table, null);
    What am i doing wrong? Or is there another way to create a new report based on a DataSet in C# code?

    Hi,
    Have a look at the snippet code below written for version 9 that you might accommodate to CR 2008, it demonstrates how to create a report based on a DataSet programmatically.
    //=========================================================================
    +           * the following two string values can be modified to reflect your system+
    +          ************************************************************************************************/+
    +          string mdb_path = "C:
    program files
    crystal decisions
    crystal reports 9
    samples
    en
    databases
    xtreme.mdb";    // path to xtreme.mdb file+
    +          string xsd_path = "C:
    Crystal
    rasnet
    ras9_csharp_win_datasetreport
    customer.xsd";  // path to customer schema file+
    +          // Dataset+
    +          OleDbConnection m_connection;                         // ado.net connection+
    +          OleDbDataAdapter m_adapter;                              // ado.net adapter+
    +          System.Data.DataSet m_dataset;                         // ado.net dataset+
    +          // CR variables+
    +          ReportClientDocument m_crReportDocument;          // report client document+
    +          Field m_crFieldCustomer;+
    +          Field m_crFieldCountry;+
    +          void CreateData()+
    +          {+
    +               // Create OLEDB connection+
    +               m_connection = new OleDbConnection();+
    +               m_connection.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + mdb_path;+
    +               // Create Data Adapter+
    +               m_adapter = new OleDbDataAdapter("select * from Customer where Country='Canada'", m_connection);+
    +               // create dataset and fill+
    +               m_dataset = new System.Data.DataSet();+
    +               m_adapter.Fill(m_dataset, "Customer");+
    +               // create a schema file+
    +               m_dataset.WriteXmlSchema(xsd_path);+
    +          }+
    +          // Adds a DataSource using dataset. Since this does not require intermediate schema file, this method+
    +          // will work in a distributed environment where you have IIS box on server A and RAS Server on server B.+
    +          void AddDataSourceUsingDataSet(+
    +               ReportClientDocument rcDoc,          // report client document+
    +               System.Data.DataSet data)          // dataset+
    +          {+
    +               // add a datasource+
    +               DataSetConverter.AddDataSource(rcDoc, data);+
    +          }+
    +          // Adds a DataSource using a physical schema file. This method require you to have schema file in RAS Server+
    +          // box (NOT ON SDK BOX). In distributed environment where you have IIS on server A and RAS on server B,+
    +          // and you execute CreateData above, schema file is created in IIS box, and this method will fail, because+
    +          // RAS server cannot see that schema file on its local machine. In such environment, you must use method+
    +          // above.+
    +          void AddDataSourceUsingSchemaFile(+
    +               ReportClientDocument rcDoc,          // report client document+
    +               string schema_file_name,          // xml schema file location+
    +               string table_name,                    // table to be added+
    +               System.Data.DataSet data)          // dataset+
    +          {+
    +               PropertyBag crLogonInfo;               // logon info+
    +               PropertyBag crAttributes;               // logon attributes+
    +               ConnectionInfo crConnectionInfo;     // connection info+
    +               CrystalDecisions.ReportAppServer.DataDefModel.Table crTable;+
    +               // database table+
    +               // create logon property+
    +               crLogonInfo = new PropertyBag();+
    +               crLogonInfo["XML File Path"] = schema_file_name;+
    +               // create logon attributes+
    +               crAttributes = new PropertyBag();+
    +               crAttributes["Database DLL"] = "crdb_adoplus.dll";+
    +               crAttributes["QE_DatabaseType"] = "ADO.NET (XML)";+
    +               crAttributes["QE_ServerDescription"] = "NewDataSet";+
    +               crAttributes["QE_SQLDB"] = true;+
    +               crAttributes["QE_LogonProperties"] = crLogonInfo;+
    +               // create connection info+
    +               crConnectionInfo = new ConnectionInfo();+
    +               crConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;+
    +               crConnectionInfo.Attributes = crAttributes;+
    +               // create a table+
    +               crTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();+
    +               crTable.ConnectionInfo = crConnectionInfo;+
    +               crTable.Name = table_name;+
    +               crTable.Alias = table_name;+
    +               // add a table+
    +               rcDoc.DatabaseController.AddTable(crTable, null);+
    +               // pass dataset+
    +               rcDoc.DatabaseController.SetDataSource(DataSetConverter.Convert(data), table_name, table_name);+
    +          }+
    +          void CreateReport()+
    +          {+
    +               int iField;+
    +               // create ado.net dataset+
    +               CreateData();+
    +               // create report client document+
    +               m_crReportDocument = new ReportClientDocument();+
    +               m_crReportDocument.ReportAppServer = "127.0.0.1";+
    +               // new report document+
    +               m_crReportDocument.New();+
    +               // add a datasource using a schema file+
    +               // note that if you have distributed environment, you should use AddDataSourceUsingDataSet method instead.+
    +               // for more information, refer to comments on these methods.+
    +               AddDataSourceUsingSchemaFile(m_crReportDocument, xsd_path, "Customer", m_dataset);+
    +                              +
    +               // get Customer Name and Country fields+
    +               iField = m_crReportDocument.Database.Tables[0].DataFields.Find("Customer Name", CrFieldDisplayNameTypeEnum.crFieldDisplayNameName, CeLocale.ceLocaleUserDefault);+
    +               m_crFieldCustomer = (Field)m_crReportDocument.Database.Tables[0].DataFields[iField];+
    +               iField = m_crReportDocument.Database.Tables[0].DataFields.Find("Country", CrFieldDisplayNameTypeEnum.crFieldDisplayNameName, CeLocale.ceLocaleUserDefault);+
    +               m_crFieldCountry = (Field)m_crReportDocument.Database.Tables[0].DataFields[iField];+
    +               // add Customer Name and Country fields+
    +               m_crReportDocument.DataDefController.ResultFieldController.Add(-1, m_crFieldCustomer);+
    +               m_crReportDocument.DataDefController.ResultFieldController.Add(-1, m_crFieldCountry);+
    +               // view report+
    +               crystalReportViewer1.ReportSource = m_crReportDocument;+
    +          }+
    +          public Form1()+
    +          {+
    +               //+
    +               // Required for Windows Form Designer support+
    +               //+
    +               InitializeComponent();+
    +               // Create Report+
    +               CreateReport();+
    +               //+
    +               // TODO: Add any constructor code after InitializeComponent call+
    +               //+
    +          }+//=========================================================================

  • How to print a report in half of the A4 page

    Hi,
    Please help me, how to print a report in the half page of the A4 size paper.
    Thanks,

    Hi
    If you are using the command MEW-PAGE PRINT ON
    then we can give this layout options
    like
    NEW-PAGE PRINT ON
    DESTINATION <printer name>
    immediately 'X'
    KEEP IN SPOOL 'X'
    LAYOUT 'X_65_132'  (OR X_65_255)
    RECEIVER SY-UNAME
    NO-DISPLAY.
    OTHERWISE WHEN YOU SELECT THE PRINTER
    IN THE PRINTER PROPERTIES/SETTINGS BASICS-> PAPER
    you will have this facility to select LANGSCAPE/PORTRAIT
    use that and print
    Reward points for useful Answers
    Regards
    Anji

Maybe you are looking for

  • Installation of Premiere Elements 12 does not complete

    I received Premiere Elements for Christmas and have spent a few sessions trying to install it on my Windows PC. All of the files are loaded into program files and the installation is completed, but when I go to run the actual program, it cannot start

  • Accessing iTunes account from multiple computers

    I added iTunes gift cards to my account from one competer but cannot see the balance when logging in from another computer - any help appreciated

  • Why the error "unable to create unique temporary file" ?

    Hi, I've created a very simple zone on s10_69. The global zone is a default Solaris install, nothing added. When installing the local zones I get theses error messages: pkgadd: ERROR: unable to create unique temporary file </zones/zone2/root/usr/open

  • NAS NSS 326 Reset Issue.

    Hi peeps Have a little issue with a Cisco NAS NSS 326 Smart Storage 6 bay - with RAID 5 over 6 disks. Apparently there were some funny business with the performance with the device so someone reset the device from the button on the back. I've been as

  • How to Uninstall iTunes when not in Add/Remove

    How do you uninstall iTunes when it does not appear in Add/Remove programs. For the record, I have used the Window Install Clean-up Utility as described in another thread. Although iTunes appeared in the utilities' list, and seemed to process my requ