How to remove obsolete parameters in oracle

hi,
can anyone tell me how to delete a obsolete parameter in oracle,wat are the steps to follow or is there any command
Thanks
renjy

how to remove obsolete parameters.

Similar Messages

  • How to remove obsolete oss note from SPAU List

    Dear All,
       How to remove obsolete oss note from SPAU List. Bocz it having yellow trafic Signal and  it is not allowing me to reset to orginal or adopt.
    Please tell me how to reolve this problem.

    Hi,
    Please mention the Netweaver release of your system.
    Next, if you mention the note is obsolete - the traffic light should be grey.
    If its yellow, that means semi-automatic adjustment needs to be made.
    If you click on the obsolete greyed out note, you get a message saying the note correction was delivered with upgrade or support package and it could be reset.
    If you click on the yellow note, the system would try to reapply the note via SNOTE.
    Please try either or the above and let us know the system response.
    Regards,
    Srikishan

  • How to pass runtime parameters to Oracle Query from xMII server

    Please can anybody  help me that how to pass runtime parameter to Orcle Query  from xMII server.

    It works the same way as I described in this thread [How to pass runtime parameters to MySQL Query from xMII server].  It does not matter the datasource MII will work the same for all queries, at least for passing in parameters.  How to write those queries and their datatypes will be the differences.

  • How to remove request parameters in a filter

    Hello,
    I wanted to make a filter that removes all the GET parameters except for a few exceptions.
    How do I remove parameters from a ServletRequest or HttpServletRequest? I am trying to make a webapp that only uses POST variables, and not GET (except a few exceptions).
    Can someone point me in the right direction?
    Thanks!

    Arrowx7 wrote:
    Hey, thanks for the replies.
    Actually, I have a bunch of action forms in my webapp, which use request.getParameter(). This method doesn't distinguish between get and post. For security reasons, I don't want any of those parameters coming in with the URL as GET.
    At first I wanted to have the filter take the request URL, parse the variables, loop through them, and remove ones that aren't on the EXEMPT list.
    So a request like this:
    http://myweb.com/messageAction.do?method=send&to=bahuser&subject=i+am+stupid&body=you+stink
    would be turned into this:
    http://myweb.com/messageAction.do?method=send
    because the 'method' param is the only one that is on the EXEMPT list.
    Perhaps there is a way I can get the request URL with the GET params, and then redirect to the safe URL after taking out parameters?If you actually mean take out those parameters (ie make them not attainable anymore) then yes, you can do
    if ("get".equals(request.getMethod().toLowerCase()) {
      response.sendRedirect("http://myweb.com/messageAction.do?method="+request.getParameter("method"));
    } else {
      filterChain.doFilter(request, response);
    }>
    Thanks!
    Edited by: Arrowx7 on Jul 24, 2008 9:03 AM

  • How to change NLS parameters in Oracle XE?

    Hi
    I have to change some parameters in database using Oracle XE server but I don't know how to do it. I must change these parameters:
    NLS_CHARACTERSET
    NLS_NCHAR_CHARACTERSET
    How to do it?
    Thanks for help.

    Thanks, but I'm newbie and I have to ask you about more details :)
    What do you mean when you saying: init file (or spfile)? Where can I find these files?
    Registry entry (NLS_LANG) is correct, but when I'm using web based administration application I can see more NLS settings. Unfortunately I can't change them :(
    Using XE version I can't (I'm not sure about that) create another instance, there is only one instance created by installer. Is it possible to change NLS settings in this case?

  • LSO E-learning: how to remove obsolete flag?

    Hello,
    According to the SAP documentation (http://help.sap.com/saphelp_afs64/helpdata/ru/43/01558a845e5167e10000000a1553f6/content.htm) it is possible to remove the obsolete flag, but it's not explained how.
    In the Repository Explorer, I can see no way to do this. Does anyone know?
    Thanks!

    I can see that you have maintained "CONFIRM PASS RESULT" i.e. "K" option. In this case only when the learner has passed the test the confirm link will appear . If you want to display "confirm participation" in all cases, then you can maintain "CONFIRM PARTICIPATION" instead i.e. the option "A" for Learning Portal.
    Instead of using :
    3 Web-Based Training     S System     I     Follow Up Course
    With this setting  >
    The issue comes, when the first attendee for  WBT or on-line course goes and clicks confirm participation after completing the course, the application was confirming his participation and also it would follow up the course. So, when the next attendee attends the course, he will not be able to see 'Confirm participation' button link because the course was already followed up and will not allow attendees to further confirm participation.
    Please maintain :
    3 Web-Based Training     B Back end     I     Follow Up Course
    Many Thanks
    Chetan

  • How to remove precision value in oracle table

    Hi,
    I have created one table ,that table contains 40 million records and some of the columns containing precision values and the columns are of datatype is NUMBER...
    I need to remove precision values of those columns for 40 millions records which ever contains ,If I use update truncate scripts it's taking so long time to update ( for .eg. more than 2 weak to update --- update table_name set transaction_id=trunc(transaction_id) ).Is there any other way...
    so can you please suggest ....
    Thanks,
    vidhya

    hi marcopb,
    Below I have mentioned some columns in bold, which i am updating . yes it's taking to update more than 2 weak not yet finished...
    My update script is Update Inv.Mtl_Material_Transactions Set Transaction_Id=Trunc(Transaction_Id),Transaction_Action_Id=Trunc(Transaction_Action_Id),
    Transaction_Source_Id=Trunc(Transaction_Source_Id),Rcv_Transaction_Id =Trunc(Rcv_Transaction_Id );
    describe mtl_material_transactions;
    Name Null Type
    TRANSACTION_ID NOT NULL NUMBER
    LAST_UPDATE_DATE NOT NULL DATE
    LAST_UPDATED_BY NOT NULL NUMBER
    CREATION_DATE NOT NULL DATE
    CREATED_BY NOT NULL NUMBER
    LAST_UPDATE_LOGIN NUMBER
    REQUEST_ID NUMBER
    PROGRAM_APPLICATION_ID NUMBER
    PROGRAM_ID NUMBER
    PROGRAM_UPDATE_DATE DATE
    INVENTORY_ITEM_ID NOT NULL NUMBER
    REVISION VARCHAR2(3)
    ORGANIZATION_ID NOT NULL NUMBER
    SUBINVENTORY_CODE VARCHAR2(10)
    LOCATOR_ID NUMBER
    TRANSACTION_TYPE_ID NOT NULL NUMBER
    TRANSACTION_ACTION_ID NOT NULL NUMBER
    TRANSACTION_SOURCE_TYPE_ID NOT NULL NUMBER
    TRANSACTION_SOURCE_ID NUMBER
    TRANSACTION_SOURCE_NAME VARCHAR2(30)
    TRANSACTION_QUANTITY NOT NULL NUMBER
    TRANSACTION_UOM NOT NULL VARCHAR2(3)
    PRIMARY_QUANTITY NOT NULL NUMBER
    TRANSACTION_DATE NOT NULL DATE
    VARIANCE_AMOUNT NUMBER
    ACCT_PERIOD_ID NUMBER
    TRANSACTION_REFERENCE VARCHAR2(240)
    REASON_ID NUMBER
    DISTRIBUTION_ACCOUNT_ID NUMBER
    ENCUMBRANCE_ACCOUNT NUMBER
    ENCUMBRANCE_AMOUNT NUMBER
    COST_UPDATE_ID NUMBER
    COSTED_FLAG VARCHAR2(1)
    INVOICED_FLAG VARCHAR2(1)
    ACTUAL_COST NUMBER
    TRANSACTION_COST NUMBER
    PRIOR_COST NUMBER
    NEW_COST NUMBER
    CURRENCY_CODE VARCHAR2(10)
    CURRENCY_CONVERSION_RATE NUMBER
    CURRENCY_CONVERSION_TYPE VARCHAR2(30)
    CURRENCY_CONVERSION_DATE DATE
    USSGL_TRANSACTION_CODE VARCHAR2(30)
    QUANTITY_ADJUSTED NUMBER
    EMPLOYEE_CODE VARCHAR2(10)
    DEPARTMENT_ID NUMBER
    OPERATION_SEQ_NUM NUMBER
    MASTER_SCHEDULE_UPDATE_CODE VARCHAR2(10)
    RECEIVING_DOCUMENT VARCHAR2(10)
    PICKING_LINE_ID NUMBER
    TRX_SOURCE_LINE_ID NUMBER
    TRX_SOURCE_DELIVERY_ID NUMBER
    REPETITIVE_LINE_ID NUMBER
    PHYSICAL_ADJUSTMENT_ID NUMBER
    CYCLE_COUNT_ID NUMBER
    RMA_LINE_ID NUMBER
    TRANSFER_TRANSACTION_ID NUMBER
    TRANSACTION_SET_ID NUMBER
    RCV_TRANSACTION_ID NUMBER
    MOVE_TRANSACTION_ID NUMBER
    COMPLETION_TRANSACTION_ID NUMBER
    SOURCE_CODE VARCHAR2(30)
    SOURCE_LINE_ID NUMBER
    VENDOR_LOT_NUMBER VARCHAR2(30)
    TRANSFER_ORGANIZATION_ID NUMBER
    TRANSFER_SUBINVENTORY VARCHAR2(10)
    TRANSFER_LOCATOR_ID NUMBER
    SHIPMENT_NUMBER VARCHAR2(30)
    TRANSFER_COST NUMBER
    TRANSPORTATION_DIST_ACCOUNT NUMBER
    TRANSPORTATION_COST NUMBER
    TRANSFER_COST_DIST_ACCOUNT NUMBER
    WAYBILL_AIRBILL VARCHAR2(20)
    FREIGHT_CODE VARCHAR2(30)
    NUMBER_OF_CONTAINERS NUMBER
    VALUE_CHANGE NUMBER
    PERCENTAGE_CHANGE NUMBER
    ATTRIBUTE_CATEGORY VARCHAR2(30)
    ATTRIBUTE1 VARCHAR2(150)
    ATTRIBUTE2 VARCHAR2(150)
    ATTRIBUTE3 VARCHAR2(150)
    ATTRIBUTE4 VARCHAR2(150)
    ATTRIBUTE5 VARCHAR2(150)
    ATTRIBUTE6 VARCHAR2(150)
    ATTRIBUTE7 VARCHAR2(150)
    ATTRIBUTE8 VARCHAR2(150)
    ATTRIBUTE9 VARCHAR2(150)
    ATTRIBUTE10 VARCHAR2(150)
    ATTRIBUTE11 VARCHAR2(150)
    ATTRIBUTE12 VARCHAR2(150)
    ATTRIBUTE13 VARCHAR2(150)
    ATTRIBUTE14 VARCHAR2(150)
    ATTRIBUTE15 VARCHAR2(150)
    MOVEMENT_ID NUMBER
    TRANSACTION_GROUP_ID NUMBER
    TASK_ID NUMBER(15)
    TO_TASK_ID NUMBER(15)
    Thanks,
    vidhya

  • Query in Parameters in Oracle Forms 6i

    Can any one explain me how to go with parameters in oracle forms 6i's Object Navigator.If explained with an example it will be of great help for me.
    Thanks,
    Prathap

    Hello,
    Forms parameters are usefull to receive a value from a calling form or for a command line.
    You can pass a value to a form through these parameters, which value can be read inside the form.
    Assume your form have to display only employees of departement 10.
    In the parameter node, you create a new parameter then name it : DEPARTEMENT (number)
    A the start of this form, you can filter the data in the Where clause property of the block:
      DEPTNO = :PARAMETER.DEPARTEMENTand, when the first form call this one, it pass this parameter in the CALL_FORM() built-in
    Declare
      pl_id PARAMLIST;
      pl_name VARCHAR2(10);
    Begin 
      -- create the parameter list --
      pl_name :=  'temp';
      pl_id :=  get_parameter_list(pl_name);
      IF NOT ID_NULL(pl_id) THEN
        destroy_parameter_list(pl_id);
      END IF;
      pl_id := create_parameter_list(pl_name);
      -- add the parameter to the list --
      add_parameter(pl_id, 'DEPARTEMENT', TEXT_PARAMETER, 10);
      -- call the employees dialog --
      call_form('EMP_DIALOG', HIDE, NO_REPLACE, NO_QUERY_ONLY, NO_SHARE_LIBRARY_DATA, pl_id);
    End ;Hope this is clear enough.
    Francois

  • How to remove the prolog from XML in Oracle?

    Our system works like this:
    1. Pass in a piece of XML to the database as a CLOB
    2. Database converts this to XMLTYPE (stored as a CLOB (you can skip over this, Marco *{;-) ))
    3. An application then reads the XML from the database and inserts it into another bit of XML
    4. The application continues its processing based on this new composite XML.
    Up until now, the XML loaded into the database in step 1 (by various systems) has never contained a prolog. However, a new system has come along and is now passing in a prolog. This causes problems for the application in step 3.
    Aside from trying to get the new system to not pass in the prolog, is there a way to remove it from within Oracle?
    The two solutions I've come up with don't feel elegant:
    1. Use XMLTABLE to extract the main root node (which could be different, depending on which system sent in the data, and could change)
    2. Convert the prolog into a comment, using REPLACE, before converting the CLOB into an XMLTYPE.
    If I was forced to use one of these methods, I'd go with 2, but I really, really hope there's a better way of doing it.
    Has anyone got any other suggestions, please?
    PS. We're currently on 10.2.0.4 and are shortly about to move to 11.2.0.3, but the solution has to work on both versions, for added fun and excitement!

    This is the error the application gives: "Error obtaining Additional Info SAX Exception : No processing instruction starts with 'xml'" which the app dev says is due to the presence of the prolog in the middle of the xml the app has build up.So basically, the app just "pastes" the XML in the middle of another without caring about the structure? What kind of design is that?
    IMO, the app has to be fixed, not the input XML.
    Plenty about how to add the prolog, nothing about how to remove it!You can use XMLQuery function to extract the root element :
    SQL> create table tmp_xml3 of xmltype
      2  xmltype store as basicfile clob;
    Table created
    SQL> insert into tmp_xml3 values (xmltype('<?xml version="1.0" encoding="UTF-8"?><root/>'));
    1 row inserted
    SQL> select * from tmp_xml3;
    SYS_NC_ROWINFO$
    <?xml version="1.0" encoding="UTF-8"?><root/>
    SQL>
    SQL> select xmlquery('*' passing object_value returning content)
      2  from tmp_xml3;
    XMLQUERY('*'PASSINGOBJECT_VALU
    <root/>
    Edited by: odie_63 on 22 août 2012 15:26

  • How to remove the underline in the parameters in the selection screen?

    how to remove the underline from the parameters in the selection screen?
    i came through the comment statements in the forum is there any other ways like setting some fields in the declarattion of the parameter itself?
    like
    parameter:p1 type string .......?

    I dont think there is an alternative to removing the underlines other than to go for COMMENT. In the selection texts (of text elements) we can just give the parameter name or take the standard text from dictionary, but theres no option to remove the underlines.
    SELECTION-SCREEN BEGIN OF BLOCK rbg WITH FRAME TITLE tit.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20) text-001 MODIF ID sc1.
    PARAMETERS:
      p_param TYPE vbak-vbeln.
    SELECTION-SCREEN END OF LINE.
    PARAMETERS:
      p_posnr TYPE vbap-posnr.
    SELECTION-SCREEN END OF BLOCK rbg.

  • How to Pass Multiple Parameters To ReportReuest Method in Oracle  BI 11g

    Hi,
    Am integrate Oracle BI Publisher 11g via Web Services in Oracle Forms,For that am developing code in PublicReportServiceClient Class. This worked properly with out passing parameter to the report. so how to pass parameters to the report . If Report is requried some Parameters to generate report.
    If any one knows about How to Passing Multiple Parameters to ReportRequest Methos in Oracle 11g. Pls help me.
    Am trying with the below code for PassParameters to ReportReuest Method in Oracle BI 11g. But by using this code am able to pass only one parameter to the Report, not for multiple Parameter Passing.
    ArrayOfParamNameValue PnameValue=new ArrayOfParamNameValue();
    ParamNameValue Namevalue=new ParamNameValue();
    Namevalue.setName("P_SNO"):
    ArrayOfString aos=new ArrayOfString();
    aos.getItem().add("2");
    Namevalue.setValues(aos);
    PnameValue.getItem().add(Namevalue);
    ReportRequest RepReq = new ReportRequest();
    RepReq.setParmeterNameValues(PnameValue);
    Following method  callRunReport() with an array of parameters used in Oracle Bi 10g,To pass multiple report parameters to ReportRequest method.
    public void callRunReport (String reportPath, String[] paramName, String[] paramValue, Stringusername, String password, String format, String template, String outFile)
    try {
    bip_webservice.proxy.PublicReportServiceClient myPort =new bip_webservice.proxy.PublicReportServiceClient();
    // Calling runReport
    ReportRequest repRequest = new ReportRequest();
    repRequest.setReportAbsolutePath(reportPath);
    repRequest.setAttributeTemplate(template);
    repRequest.setAttributeFormat(format);
    repRequest.setAttributeLocale(“en-US”);
    repRequest.setSizeOfDataChunkDownload(-1);
    if (paramName != null)
    ParamNameValue[] paramNameValue = new ParamNameValue[paramName.length];
    String[] values = null;
    for (int i=0; i<paramName.length; i++)
    paramNameValue[i] = new ParamNameValue();
    paramNameValue.setName(paramName[i]);
    values = new String[1];
    values[0] = paramValue[i];
    paramNameValue[i].setValues(values);
    repRequest.setParameterNameValues(paramNameValue);

    Ramani_vadakadu wrote:
    window.open("http://hq-orapp-03.kuf.com:9704/xmlpserver/~weblogic/kufpec/BTA/KUF_CONF_ITINUD.xdo?_xpf=&_xpt=1&_xdo=%2F~weblogic%2Fkuf%2FBTA%2FKUF_CONF_ITINUD.xdo&_xmode=&_paramsP_BTM_ID="+parseInt(document.getElementById('P3_BTA_ID').value)+"&_xt=KUF_CONF_ITINUD&_xf=pdf&_xautorun=true&id=weblogic&passwd=kuf2011","_blank");
    the above code we are using apex JS to BI publisher calling for report as PDF
    i don't know exactly where your parameters , did you customize my link to multiple parameters
    'http://192.168.0.57:8889/reports/rwservlet?userid=retail/1@xe&destype=cache&desformat=PDF&paramform=no&report=item_cost&P_BATCH_NO='+$v('P138_BATCH_NO'); 

  • How to Remove 'Powered by Oracle' Image for specific  Dashboard

    Hi,
    How to remove 'Powered by Oracle' from dashboard, if so is itpossible to hide for specific dashboard.
    Thanks,
    Malli.

    Hi,
    The below code can be used to hide the Powered by Oracle logo in a specific dashboard.
    <script language="javascript">
    window.onload=hideImg;
    function hideImg(){
    var all = document.getElementsByTagName("img");
    for (var i=0, max=all.length; i < max; i++) {
         var imgName = all.getAttribute("src");
         if(imgName.substring(imgName.lastIndexOf("/")+1) == "siebelbug.gif"){
              all[i].style.visibility='hidden';
    </script>
    Open the dashboard, place a text object on it, open properties and copy/paste the above code as is. Check the option 'Contains HTML Markup'. Basically the above code searches for the image 'siebelbug.gif' (Powered by Oracle logo) and hides it as soon as the page is loaded. I have tested this in 10.1.3.4 version.
    Hope it helps!!
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to find and remove obsolete table entries from /SAPAPO/MATKEY table in EWM System.

    Hello,
    How to find and remove obsolete table entries from below tables in EWM System.
    /SAPAPO/MATKEY
    /SAPAPO/MATMAP
    /SAPAPO/MARM
    /SAPAPO/MATLOC
    /SAPAPO/MATMOD
    /SAPAPO/MATRQ
    /SAPAPO/MATLOTSZ
    Thank you,
    Pravin

    Pravin,
    First, tell me how you determine that these entries are 'obsolete'.
    Removing master data from SCM can usually be done using transaction WUF; however, you have to ensure that it is not re-sent to the SCM system, or you are just wasting your time.
    Best Regards,
    DB49

  • Linux how to remove oracle manually

    dear sir
    can you teach and guide if any documentation article available "linux how to remove oracle manually" we are using oracle 10gr2 with rhel 5.x
    kindly advise suggest
    regards
    salim

    Did you make the slightest effort to find the answer for yourself? Try googling that exact phrase:
    site:oracle.com linux remove oracle manuallyand you will get the official techniques. Do a simpler search:
    linux remove oracle manuallyand find lots of other places the steps are given:
    http://www.oracle-base.com/articles/misc/ManualOracleUninstall.phplooks to be a good choice.
    Are you trying to recover from a failed install? Check the RDBMS installation guide for instructions for that.

  • How to validate the input parameters in Oracle BI Publisher reports

    Hi
    i am new to Oracle BI Publisher
    I am using OBI for generating simple reports.
    here i need validation for input parameters (Date Parameter) and also want to disable the Date filed so that user can select through the calendar component.
    Here validation in the sense, the system must validate the date and alert the user with an appropriate message
    Can anyone please provide me the solution in detail.
    Thanks in advance
    Edited by: user10185520 on Aug 26, 2008 6:15 AM

    I have the same task to validate input parameters with Oracle BI Publisher 5.6.3 running under Oracle eBS 10.5.10.2. My validation goes beyond of what I can do during parameter registration. I am using Data Templates.
    My first logical place was the before report trigger. So, I built a report trigger which returns 'false' in case the parameters are not proper. Guess what... XMLP just returns a hard-coded message
    !!Error : trigger '" + datatrigger.getName() + "' returns status as 'false'
    First of all, this is a bad style to hardcode messages visible by the user (especially during French implementation). Second of all, it is not informative at all. It would be nice to change oracle.apps.xdo.dataengine.XMLPGEN.executeTrigger() to read, for example, a message from the message stack when the trigger returns 'false' and let the user read it.
    Anyway, what I did was I built a special data group, decalred before any other data group, query like
    select my_package.my_validation fro dual
    If parameters fail the validation my PL/SQL package throws an application exception with a message. At least, in this case the error message gets available as the description of the concurrent request.
    I wish the before report trigger worked!!!

Maybe you are looking for

  • BrowserLab won't work with local files in DW CS5

    Any issue report you make about BrowserLab on these forums should minimally contain the following information. If it doesn't, the first response you get from us will likely just ask for the missing info anyway Subject A descriptive summary of the iss

  • Control the combo box select of COPY FROM in Delivery Order

    Dear all I have a requirement where in the user wants to restrict the "copy from" button on the delivery order. They want the delivery orders to be created only from Sales orders. So that would mean that i do a bubbleevent = false when any other row

  • How do I remove an app from the Accessibility tab of Privacy & Security?

    I have a few apps listed in the accessibility section of the Privacy and Security system preference pane. Below you can see there is an app called "update."  I'd like to remove it (and one other higher up on the list), and for the life of me I can't

  • I have a problem with youtube video's.

    Hello, Recently this problem keeps occuring. Whenever I "watch" youtube video's they load for a while and then just jump back and are stuck there and keep giving this loading icon. I did a Format C a while ago to re-install Mountain Lion and it still

  • Plz help, delete exchange mailbox?

    Hi, i have a n85, i set up sync, mail part wasnt working so i tried exchange. now i found out i can add a IMAP mailbox instead, (which I would prefer to use). I added that fine. Now i cant remove the exchange mailbox. Ive been through the options and