Parameter.config error

Hai,
iam getting the error parameter.config could not be located or read in apache webserver,forms and reports webserver when i start the applications.i was asked to do the following
update the value for the guest user end date to null
but i checked the value for end date column for guest user.it was already set to null.
what is the reason iam getting the same error paramter.config could not be located or read .wat else can i do to solve the error.
Iam a fresher.so help me to solve the error.iam analysing this issue for a long time but i couldnot get a proper solution.
Regards
orauser123

Hi;
>
update the value for the guest user end date to null
but i checked the value for end date column for guest user.it was already set to null.
what is the reason iam getting the same error paramter.config could not be located or read .wat else can i do to solve the error.Plz follow those notes and see its helpful:
Cannot Read Value From Field Parameter.Config Error When Starting/Stopping Apache  Doc ID:  298143.1
adstrtall.sh is failing with error 'Cannot read value from field PARAMETER.CONFIG'   Doc ID:  356434.1
Regards;
Helios

Similar Messages

  • Error AP-CANNOT READ FIELD (FIELDNAME=PARAMETER.CONFIG)

    Hi,
    We are running a depriciation report in our test instance which is on 12.0.6 Oracle Apps
    While report executes we get this error:Error AP-CANNOT READ FIELD (FIELDNAME=PARAMETER.CONFIG)
    Can u please highlight where the error lies.

    Hi;
    Please see:
    Error AP-CANNOT READ FIELD (FIELDNAME=PARAMETER.CONFIG) When Viewing the Concurrent Request Output [ID 466410.1]
    Regard
    Helios

  • ORA-16024: - ORA-32004 - Parameter modification Error

    Hi all,
    I have two errors after modifying the LOG_ARCHIVE_DEST_1 parameter. I've run this...
    ALTER SYSTEM SET LOG_ARCHIVE_DEST_1='LOCATION=/u04/archive/EST OPTIONAL REOPEN=300' SCOPE=spfile;
    and after restarting the instance, I found these errors
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    ORA-16024: parameter LOG_ARCHIVE_DEST_1 cannot be parsed
    I checked the spfile and I discovered an error in it due this change:
    *.log_archive_dest_1='LOCATION=/u04/archive/EST OPTIONAL REPO^H^HOPEN=300'
    "^H^H" these characters were inserted because an stty config error and I was not able to see them.
    How should I procede to recover my instance?
    Thanks

    Thanks! I really appreciate your help!
    I have no need to do a recovery, I just wanted to say only bringing it open again.
    I am not able to start it up in nomount mode...
    Thanks by your help!
    EdStevens wrote:
    martinmorono wrote:
    Hi all,
    I have two errors after modifying the LOG_ARCHIVE_DEST_1 parameter. I've run this...
    ALTER SYSTEM SET LOG_ARCHIVE_DEST_1='LOCATION=/u04/archive/EST OPTIONAL REOPEN=300' SCOPE=spfile;
    and after restarting the instance, I found these errors
    ORA-32004: obsolete and/or deprecated parameter(s) specified
    ORA-16024: parameter LOG_ARCHIVE_DEST_1 cannot be parsed
    I checked the spfile and I discovered an error in it due this change:
    *.log_archive_dest_1='LOCATION=/u04/archive/EST OPTIONAL REPO^H^HOPEN=300'
    "^H^H" these characters were inserted because an stty config error and I was not able to see them.
    How should I procede to recover my instance?
    ThanksFirst, is your instance in need of recovery? these look like non-fatal errors to me. Since you had intended that archive destination to be optional, I presume you have another, non-optional, destination that is good?
    Are you able to do a 'startup nomount'? That's as far as you need to get to issue ALTER SYSTEM commands against the spfile to correct the bad value.
    And btw, you didn't need to bounce the system in the first place. log_archive_dest_n is a dynamic parameter - you could have specified scope=both and kept on trucking - or gotten an error at that time:
    SQL> alter system set log_archive_dest_2='location=c:  lksdjf optional' scope=both;
    alter system set log_archive_dest_2='location=c:  lksdjf optional' scope=both
    ERROR at line 1:
    ORA-02097: parameter cannot be modified because specified value is invalid
    ORA-16024: parameter LOG_ARCHIVE_DEST_2 cannot be parsed
    SQL> alter system set log_archive_dest_2='location=c:\temp optional' scope=both
    System altered.
    SQL> alter system set log_archive_dest_2='' scope=both;
    System altered.
    SQL>

  • "Missing parameter values" error on Export

    Hi,
    I am getting "Missing Parameter Values" error if all required parameter values are not passed in the report through application. Same error is not coming when all the parameters are passed.
    And parameter window also not displaying if all parameters are not passed to the report for export option. (Parameter window displaying on preview option if all the parameters are not supplied).
    I have tried both Report Viewer's ExportReport function & ReportDocument's Export function. But both are results same.
    Software details:
    Crystal Report created in Version: 10.0.0.533
    .Net 2005
    10.2 Crystal component. Crystal Runtime Version - v2.0.50727 and DLL Version - 10.2
    Please help me to resolve this issue.
    Thanks,
    Venkateswaran.P

    Given example is not working as expected.
    1) Calling of  ExportReport() function invokes the file Save As window to save the exported file eventhough exported path & file name supplied in the program.
    2) After accepting the output file name, "Missing parameter values" error coming instead of displaying Crystal's Parameter window.
    Below is the piece of code to export the output. I am calling Export() function if all the parameters are supplied by the application otherwise i am calling Viewer's ExportReport() fuction. Please have a look and let me know if any code change is required.
                   ReportDocument crRepDocument;
                   String m_strExportPath;
                    Boolean bUseRepViewExport = false;
                    if( crRepDocument.ParameterFields.Count > 0 )
                        if (m_Parameters.Count < crRepDocument.ParameterFields.Count)
                                bUseRepViewExport = true ;
                    ExportOptions crExportOptions;
                    DiskFileDestinationOptions crDiskFileDestinationOptions;
                    crDiskFileDestinationOptions = new DiskFileDestinationOptions();
                    crExportOptions = crRepDocument.ExportOptions;
                    if (base.m_ExportFormat == eExportFormat.RTF)
                       crDiskFileDestinationOptions.DiskFileName = base.m_strExportPath + ".rtf";
                        crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                        crExportOptions.ExportFormatType = ExportFormatType.RichText;
                        crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
                    else if (base.m_ExportFormat == eExportFormat.PDF)
                        crDiskFileDestinationOptions.DiskFileName = base.m_strExportPath + ".pdf";
                        crExportOptions.DestinationOptions = crDiskFileDestinationOptions;
                        crExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                        crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
                    else if (base.m_ExportFormat == eExportFormat.DOC)
                     if (bUseRepViewExport)  //If all the parameter are not supplied. I calling Viewer
                        FormReportViewer oFormReportViewer = new FormReportViewer();
                        oFormReportViewer.CrystalReportViewer.ReportSource = crRepDocument;
                        oFormReportViewer.CrystalReportViewer.ExportReport();
                        return true;                 
                    else
                        crRepDocument.Export();  //
                        return true;

  • Is anyone else having Config error 16 issue when trying to start PSE 12 or Premier Elements after Mac upgrade to Yosemite 10.10 on iMac

    Is anyone else having Config error 16 issue when trying to start PSE 12 or Premier Elements 12 after the Mac upgrade to OS X Yosemite 10.10 on iMac. I have had a number of issues with software and things after upgrading to OS X Yosemite 10.10 and even 10.10.1.  I have uninstalled and reinstalled both PSE 12 and Premier Elements 12 a number of times and everything goes fine until its ready to launch and then you get an error message. Numerous uninstalled and reinstalls don't removing the problem.  Strangely enough  PSE 11 still appears to boot up and I never owned Premier Elements 11 so I don't know if it will start. I thought with Apple dropping its Apeture software and greater integration of iPhoto and Apeture files into Lightroom 5.7 all would be harmonious between these two players. Im not sure where Adobe wants us to go it recently removed the plugin to allow you to update files from LR to Adobe Revel, whats up with that. I now own two version of Adobe software that no longer work with my Mac and now way of uploading pictures from Lightroom to Revel. Needless to say I am pretty reluctant to sign on to a subscription of Creative Cloud with long term financial obligations when I can't even get my current Adobe software to work independently much less integrate with Lightroom. Frustrated with it all!

    Get rid of 'put disks to sleep when possible' and you may see a dramatic improvement (not necessarily a cure).
    That specific problem is a multiple-Processor (including graphics processor) problem, where one of the processors lost track of whether it should be responding to interrupts. You may have a Hardware problem.

  • Acrobat X Pro Config Error 130:11

    Hello,
    I've now un-installed & re-installed Acrobat X Pro a couple of times in order to get over the issue of Config Error 130:11 - which causes the application to quit (see link to original thread below).
    However, I cannot afford to do this continuously - where do I go from here?
    Thanks,
    Kieran
    http://forums.adobe.com/thread/1013013?tstart=30

    Hi there,
    The workaround we have right now is to:
    Launch any other CS6 product (such as Photoshop or InDesign)
    It will pop-up trial screen at launch.
    Click on License this software and restart subscription.
    Launch Acrobat X after this. It should launch fine
    Our engineering team is working on getting a permanent fix available for this issue.
    I'm sorry for the inconvenience!
    -David

  • Apple Outlook DAV Config error with Windows7; Any help?

    I have updated Windows7 and I have downloaded the icloud control panel.  I keep getting the Apple Outlook DAV Config error.  Any help?

    I encountered the same problem yesterday.  I have not found a solution but take a look at this thread. https://discussions.apple.com/thread/3377753?start=0&tstart=0  The conclusion (at that time) was a conflict between iClound and reoccurring appointments in Outlook.  The only solution:  delete all of your reoccurring appointments in outlook  (and stop using them going forward too?)........not very feasible for me.
    Let me know if you find anything.

  • Config error, account determ, group missing for paid by company exp.type

    Hi All,
    When I am adding an Expense type to an Expense report,I am getting the following error message:
    "Config error, account determ, group missing for paid by company exp.type"
    I have maintained the configuration in Business configuration>Fine tune activity>Expense reporting-US.
    I have maintained Expense Reimbursement Group as Z1(Customized) as well asExpense Account:-  but not maintained offsetting Account For  Paid Expenses.
    Please find the screenshot.
    Sincerely,
    Rajitha

    Dear All,
    SAP development has created a software correction related to the issue.
    Software correction is  deployed in customer systems on 25th August,2014.
    Sincerely,
    Manasa Anantapur

  • Url-template-config Error Deploying app in WLS9.1

    I am trying to deploy my application in WLS9.1 and using jdk1.5.0_08. I am getting url-template-config error. There is this file "url-template-config.xml"at
    \weblogic91\server\lib\consoleapp\webapp\WEB-INF which is where this error arises and inside that file the schema definition is:
    <url-template-config
    xmlns="http://www.bea.com/servers/weblogic/url-template-config/8.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/servers/weblogic/url-template-config/8.0 url-template-config.xsd">
    Why is weblogic 9.1 using a 8.0 defined template and is this the main problem? Please do help me out.
    -Thanks

    Hi
    Did you get solution for url-template-config issue with weblogic 9.1 . Iam also getting the same error
    15:23:22,531 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR URLTemplateDescriptor:152
    - Exception while loading URL templates, /WEB-INF/url-template-config.xml
    Throwable: javax.servlet.ServletException: error: The document is not a url-template-config: document element namespace mismat
    ch expected "" got "http://www.bea.com/servers/weblogic/url-template-config/8.0"
    Stack Trace:
    javax.servlet.ServletException: error: The document is not a url-template-config: document element namespace mismatch expected
    "" got "http://www.bea.com/servers/weblogic/url-template-config/8.0"
    at org.apache.beehive.netui.core.urltemplates.URLTemplatesFactory.getTemplates(URLTemplatesFactory.java:131)
    at org.apache.beehive.netui.core.urltemplates.URLTemplateDescriptor.load(URLTemplateDescriptor.java:133)
    at org.apache.beehive.netui.pageflow.PageFlowContextListener.performInitializations(PageFlowContextListener.java:102)
    at org.apache.beehive.netui.pageflow.PageFlowActionServlet.init(PageFlowActionServlet.java:120)
    at com.bea.console.internal.ConsoleActionServlet.init(ConsoleActionServlet.java:185)
    at javax.servlet.GenericServlet.init(GenericServlet.java:256)
    at weblogic.servlet.AsyncInitServlet.initDelegate(AsyncInitServlet.java:94)
    at weblogic.servlet.internal.WebAppServletContext$AsyncInitRequest.run(WebAppServletContext.java:1641)
    at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    Please let me knwo
    Thanks
    Binu

  • Startup config error after upgrading to ASA from PIX

    Hey guys.  I get the following startup-config errors when reloading our ASA.  A pix->asa conversion was just done on it.  The ASA is currently running 8.2(5), and I am trying to get ready to update it to the most stable release, and wanted to make sure all my ducks are in a row.  What is going on with the "will be identity translated for outbound"? This is part of the VPN configuration, and I understand nat0 is saying to not nat it.  Is this something that I should be worried about?  The ASA is not in production currently.
    Let me know if you need further information
    Thanks,
    .........nat 0 10.37.0.116 will be identity translated for outbound
    *** Output from config line 406, "nat (inside) 0 10.37.0.1..."
    nat 0 xx.xx.xx.xx (PUBLIC IP) will be identity translated for outbound
    *** Output from config line 431, "nat (inside) 0 xx.xx.xx..."
    Line 406
    nat (inside) 0 10.37.0.116 255.255.255.255
    Line 431
    nat (inside) 0 xx.xx.xx.xx (PUBLIC IP) 255.255.255.255
    Corresponding global
    nat (outside) 0 access-list outside_inbound_nat0_acl outside
    nat (inside) 0 access-list inside_outbound_nat0_acl
    ACL
    access-list outside_inbound_nat0_acl extended permit ip 172.16.16.0 255.255.255.0 any
    access-list inside_outbound_nat0_acl extended permit ip any 172.16.16.0 255.255.255.0
    access-list inside_outbound_nat0_acl extended permit ip 10.37.0.0 255.255.0.0 172.16.16.0 255.255.255.0
    access-list inside_outbound_nat0_acl extended permit ip 172.31.0.0 255.255.0.0 172.16.16.0 255.255.255.0

    Hi,
    I would imagine that there is no problem as the firewall has not given any kind of error message.
    I do personally wonder sometimes why is it so (atleast in the 8.2 softares etc) that the firewall shows a message on the CLI when you are for example configuring a "global" / "nat" command pair.
    I wonder if this falls into the same category.
    The configuration format for NAT has stayed pretty same leading to the 8.2 softwares. I'm not totally sure what software you are going to go for but you seem to have the latest 8.2 series software so next steps are already 8.3 / 8.4 / 9.0 / 9.1
    ALL of the above mentioned softwares introduce a completely new NAT configuration format to the ASA. While the ASA automatically converts the configurations its not always 100% process not to mention that the NAT configuration probably is far from optimal.
    - Jouni

  • Help with Acrobat X Pro Config Error

    Hello, I'm looking for some assistance with Config Error 130:11 on Acrobat X Pro running on Windows 7.
    The message reads:
    A problem has occured with the licensing of this product. Restart your computer and re-launch the product.
    Error: 130:11
    I'm using the subscription service for CS6.
    Help appreciated!
    Kieran

    Hi Sandeep,
    Thanks for your response.
    Acrobat Reader had been installed on the machine, but not an earlier version of Acrobat - it's a new machine, but I installed CS5 Design Standard before subscribing to CS6.
    Since my CS5 software was an upgrade (as was CS4 - I had been asked to re-enter the CS4 serial number), I think the Acrobat software was never fully installed prior to the CS6 download.
    The permissions for SLStore were:
    System & Administrator - Full Control
    Creator Owner - Special
    Users - Read & Execute
    Users - Speical
    The permissions for Adobe PCD & caps were:
    Administrator - Full Control
    Everyone - Read
    When the Adobe PCD & caps folders were moved to the Desktop & the Acrobat X Pro re-launched, I received an Error: 6 response:
    Please uninstall and reinstall the product. If this problem still occurs, please contact Adobe technical support... etc
    I assume this is my next step?
    Many thanks,
    Kieran

  • AI Group Config Error 10001 using Virtual Channels

    In my LabVIEW block diagram, I usually enter in numbers, e.g. 0,1,2 for the channel string input of AI Config. When I try to use a virtual channel, I simply type in the virtual channel, e.g. 0,K Thermocouple,2. However, this causes AI Group Config Error 10001, which applies to an invalid channel string. What is the correct way to enter a virtual channel into the channel string?

    Do you have channels with virtual names of "0", and "2"?
    If not you may be confusing MAX by using both naming conventions.
    Try using only Virtual names.
    I generally will use an array of strings where each element is the vitual channel name with no problems.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Indesign CC 2014 config error 5

    Hi there, need help fixing an issue i'm having with indesign CC 2014 coming up with config error 5 when i try to open up the program (not a file). I have tried uninstalling and reinstalling several times, deleting preferences and even reverting back to Indesign CC. Same thing happens everytime. Any ideas?

    Nevermind. I just saw the screenshot.
    I don’t have my Mac open right now but on Windows here’s the folder you need to look at: C:\Program Files\Adobe\Adobe InDesign CC 2014\Scripts
    Make sure that none of the CC extension scripts got moved there. If they did, move them back to the CC folder.

  • Port config error

    Hello,
    Our laptop is communicating with a Eurotherm 818 temperature control unit through the serial port. The program (Labview 7.1) uses VI's downloaded from the web, i.e. EI BYSINCH Read.vi and EI BYSINCH Write.vi, and obtains temperature and power measurements from the Eurotherm in real time. MAX says serial port is working properly. OS = Windows XP
    PROBLEM: After around 2.5 hours (fairly consistently), the "Port 0 Config Error" occurs, and the program cannot be continued. I have determined that the error originates in the "Open Serial Driver.vi" which is a subvi in "Serial Port Init.vi", which in turn is a subvi in "Lab Serial Port Init.vi". (The first two vi's are Labview library files).
    ATTEMPTS TO FIX: I have viewed a thread with a similar problem http://forums.ni.com/ni/board/message?board.id=170&message.id=76152&query.id=21947 for advice. I found the error handler and have tried creating loops to retry opening the driver, as well as closing it and then trying to open it again - with no success, i.e. Internal Error occurs. I have also been experimenting with the "force re-open" control in the "Open Serial Driver.vi", with no success as of yet.
    Any ideas on solving this issue would be greatly appreciated.
    Thanks very much,
    Ian

    Ian,
    Sounds like your program is not structured the way I like to interface the serial port.  There should be one call to serial init.  After the serial port is open save the reference and use it to read and write the serial port.  When the program is complete call serial close once.  This will take care of the issue.  I have serial devices that I talk to for months at a time.  Yes, months using Windows XP.
    Matt
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

  • PARAMETER CONVERSION ERROR

    Hi all,
    We have a strange problem. When run a RFC FM, SAP shows the abap dump and runtime error was PARAMETER CONVERSION ERROR. I use ST22 and find Error analysis was below.
    Parameters:
    P1..................... "XMLConverterMultipleImport failed in ab_xrfcreceive:abxrfccal.c(1328)#"
    P2..................... " error message: not a name character for character entities(2)#"
    P3..................... " error class: Document#"
    so i want to ask what the kind error of this issue. why it said XMLXMLConverterMultipleImport failed. How can i resolve it?
    thank you very much

    Hi Dhamat,
    This  is Z FM and it has 4 parameters with it. These parameters were complex and deep structure. The detail info is below.
    CALL FUNCTION 'Z_RFC'
       EXPORTING
            EXPORT_PARA1     =   "this para is type of INTERNAL TABLE and contains 4 fields
            EXPORT_PARA2     =   "this para is flat structure and contains 3 fields
            EXPORT_PARA3     =   "this para is also type of INTERNAL TABLE and contains 4 fields
          IMPORTING
            DETAILS                  =    IMPORTANT: THIS para is also type of INTERNAL TABLE and it is COMPLEX AND DEEP STRUCTURE. it contains two fields and also type of INTERNAL TABLE.
    I think this issue maybe due to complex and deep structure. but i don't make sure so help me.
    Thanks

Maybe you are looking for