Query about Local Listener

What is the concept of Local listener in Oracle ? Why it is needed ? I did not find any good documentation on it .
Thanks in advance.

Oracle assumes you have a listener running on port 1521. Actually, when you just issue lsnrctl start, without listener.ora, you will get a listener on port 1521.
The database will automatically register itself with any listener on port 1521.
However, if you, for some reason, decide to use a non default port, you need to set the local_listener parameter.
http://docs.oracle.com/cd/E11882_01/network.112/e10836/listenercfg.htm#NETAG1154
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • Query about local storage

    Hi,
         i had a query about local storage.
         I've a machine that hosts weblogic and tangosol. i've an ejb that accesses a distributed cache i.e NamedCache cache = CacheFactory.get("MyCache")
         i modified tangosol-coherence.xml and set local-storage to false ( for distributed cache) and replaced the file in coherence.jar.
         i'm using an overflow scheme and the back map uses a disk scheme.
         i also start a separate standalone instance of tangosol and i set the system property of local storage to true for the standalone instance.
         i start the standalone instance first and then weblogic.
         The idea is ensure that the tangosol instance in weblogic or the weblogic JVM should not participate in storing data (hence local storage false).
         only the JVM for the standalone instance should store data (hence local storage true -system property).
         i wanted to know whether the property "local-storage" is pertinent to a member(machine) or to a JVM?
         the reason for this doubt: as i'm using a disk scheme, tangosol creates a file for an overflow (e.g lh014402~.tp). i can see two such files when ideally i would have wanted only one for the tangosol instance.
         -rw-r--r-- 1 zephyr users 8364032 2005-06-23 17:02 lh014402~.tp
         -rw-r--r-- 1 zephyr users 8364032 2005-06-23 17:02 lh014403~.tp.
         can you please let me know if we can configure tangosol in such a way that we can two separate instances running with local stroage false for one and true for the other?
         Awaiting your reply
         Thanks
         Vinay

    I would suggest leaving the default 'local-storage' value set to 'true' in the tangosol-coherence.xml and just use the JVM argument to control the local storage of each individual node. Then start the stand alone instance normally (I assume you are using the com.tangosol.net.DefaultCacheServer) and start the WebLogic instance with the following:
         java [...] -Dtangosol.coherence.distributed.localstorage=false [...]
         Hope this helps.
         Later,
         Rob Misek
         Tangosol, Inc.

  • Oas 10gr2 can't be started: ons.log shows local listener terminated

    Hello all. I have the following problem
    When I try to start the oas infrastructure (we are using 10g release 2), I got the following error:
    */oas/product/10.1.2/opmn/logs>opmnctl startall*
    opmnctl: starting opmn and all managed processes...
    opmnctl: opmn start failed
    Reviewing oas log files, the $OAS_HOME/opmn/logs/ONS.LOG shows the following error:
    *09/03/25 17:23:04 [1] Local listener terminated*
    *09/03/26 09:45:17 [4] ONS server initiated*
    *09/03/26 09:45:17 [2] BIND (Can't assign requested address)*
    *09/03/26 09:45:17 [2] 127.0.0.0:399835136 - listener BIND failed*
    *09/03/26 09:45:17 [4] Listener thread 1543: 127.0.0.0:399835136 (0x442) terminating*
    *09/03/26 09:45:17 [1] Local listener terminated*
    This is similar to what others have reported about problems with listener binding, but this problem cannot be found in Metalink because it says the BIND can't assign requested address.
    I have the suspict this is a problem with the hostname or something because the ONS is trying to bind to 127.0.0.0... strange...
    The /etc/hosts shows this configuration
    *# 10.2.0.2 x25sample # x.25 name/address*
    *127.0.0.1 localhost.av-c.com loopback localhost*
    *172.19.1.26 avc1.av-c.com avc1*
    Please help because this install has a lot of applications and we cannot start it.
    Thanks!

    DO you have a Database there?
    What process did not start?
    What does the log of this process show?
    Regards.

  • Urgent query about copying array of objects to html item

    I have an urgent query about how I can display an array of objects on a html form. The only suitable html item I can see for this is a drop down box. Ideally a combo box would be preferable but I cant find anything like this. Basically the display item needs to contain 3 columns of data and has to display a number of rows. Can anyone tell me how to copy the array of values into a drop down box?

    Here is all the code from my jsp. It keeps returning null:
    <%@ page language="java" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ page import="java.util.*, java.lang.*" %>
    <html:html locale="true">
    <head>
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252"/>
    <link rel="stylesheet" type="text/css" name="timesheet" href="stylesheets/timesheet.css"></link>
    <script type="text/javascript" language="javascript" src="javascript/sum.js"></script>
    <title><bean:message key="eng.title"/></title>
    <html:base/>
    </head>
    <body bgcolor="white">
    <table border="0" width="100%">
    <tr>
    <td width="30%"><html:img page="/images/PwC_logo.gif"/></td>
    <td width="40%" class="applicationTitleCell">
    <div align="center">
    <bean:message key="application.title"/>
    </div>
    </td>
    <td width="30%"> </td>
    </tr>
    </table>
    <center>
    <html:form action="/selectEng" focus="engSearchNumber">
    <table border="0" width="100%">
    <tr>
    <td width="30%"></td>
    <td width="20%" align="center"> <b> <bean:message key="eng.prompt.engSearchNumber"/> </b> </td>
    <td width="20%" align="center"> <b> <bean:message key="eng.prompt.clientSearchName"/> </b> </td>
    <td width="40%">   </td>
    </tr>
    <tr>
    <td width="30%"></td>
    <td width="20%" align="center"> <html:text property="engSearchNumber" size="20" maxlength="9" onchange='<%= "SearchLength(this)" %>' onkeypress="return NumberOnly()" /> </td>
    <td width="20%" align="center"> <html:text property="clientSearchName" size="20" maxlength="20" onchange='<%= "SearchLength(this)" %>'/> </td>
    <td width="30%">   </td>
    </tr>
    </table>
    <table border="0" width="100%">
    <tr>
    <td width="30%"></td>
    <td width="40%" align="center"><html:image property="findButton" src="images/Find.gif" alt="Find"/></td>
    <td width="30%">   </td>
    </tr>
    <jsp:useBean id="selectEngForm" scope="session" class="Time.SelectEngForm" />
    <% if (selectEngForm.getEngSearchNumber() != null) { %>
    <tr>
    <td width="30%"></td>
    <td width="40%" align="center"><select name="engListing" size="5">
    <%= selectEngForm.getEngListing() %>
    </select></td>
    <td width="30%">   </td>
    </tr>
    <% } else if (selectEngForm.getClientSearchName()!=null){ %>
    <tr>
    <td width="30%"></td>
    <td width="40%" align="center"><select name="engListing" size="5">
    <%= selectEngForm.getEngListing()%>
    </select></td>
    <td width="30%">   </td>
    </tr>
    <% } %>
    <%=request.getParameter("engListing")%>
    </table>
    <br><br>
    <table border="0" width="100%">
    <tr>
    <td width="30%"></td>
    <td width="11%" align="center"> <html:image property="addButton" src="images/Add.gif" alt="Add the selected engagement to the timesheet"/> </td>
    <td width="11%" align="center"> <html:image property="cancelButton" src="images/Cancel.gif" alt="Cancel"/> </td>
    <td width="30%">   </td>
    </tr>
    </table>
    </html:form>
    </center>
    <br>
    <center><html:link forward="timesheet"> <html:img src="images/Back.gif" border="0"/> </html:link></center>
    </body>
    </html:html>

  • Query the Local Computer Policy with PowerShell

    One of our applications requires some local computer policy settings for some services accounts and we wanted to be able to query these values with a Remote PowerShell window. 
    I was unable to find the registry keys that hold the Local Computer Policy and I also tried activating and importing the import-module grouppolicy but couldn’t figure out how to query the local policy. 
    Below are the values I am interested in seeing:  I also tried the posting here which was most like what I was looking for but no luck.
    SeAssignPrimaryTokenPrivilege(Replace a process-level token)
    SeImpersonatePrivilege (Impersonate a client after authentication)
    SeServiceLogonRight (Log on as a service)
    SeIncreaseQuotaPrivilege (Adjust memory quotas for a process)
    SeBatchLogonRight (logon as a batch job)
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/9fac4ebd-ab68-4ee9-8d5a-44413f08530e/wmi-query-for-user-rights-assignment-local-computer-policy?forum=ITCG
    Thanks,
    Chris
    Chris J.

    The local GPO is a bit tricky.  Administrative Templates go into a registry.pol file, but for the rest of the settings you see in the local GPO, they're just configured on the computer (generally in the registry somewhere.)  If you change, for
    example, the user rights assignments with ntrights.exe, you'll see those changes reflected in the local Group Policy object as well.  This different from domain GPOs, where there's an INF file that contains all the settings that aren't part of an administrative
    template registry.pol file.
    Regarding user rights assignments, there's no quick and easy way to get at this information that I'm aware of.  NTRights.exe makes it easy to change user rights assignments, but doesn't offer functionality to query the existing settings.  For that,
    you need to use the Win32 API function
    LsaEnumerateAccountsWithUserRight.  This can be done from PowerShell, but it involves some embedded C# code that uses P/Invoke... it's about the most complicated type of code you're likely to encounter in a PowerShell script.
    I tinkered around with this recently, and this code seems to work (though it's a little on the ugly side):
    # All of this C# code is used to call the Win32 API function we need, and deal with its output.
    $csharp = @'
    using System;
    using System.Runtime.InteropServices;
    using System.Security;
    using System.Security.Principal;
    using System.ComponentModel;
    namespace LsaSecurity
    using LSA_HANDLE = IntPtr;
    [StructLayout(LayoutKind.Sequential)]
    public struct LSA_OBJECT_ATTRIBUTES
    public int Length;
    public IntPtr RootDirectory;
    public IntPtr ObjectName;
    public int Attributes;
    public IntPtr SecurityDescriptor;
    public IntPtr SecurityQualityOfService;
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct LSA_UNICODE_STRING
    public ushort Length;
    public ushort MaximumLength;
    [MarshalAs(UnmanagedType.LPWStr)]
    public string Buffer;
    [StructLayout(LayoutKind.Sequential)]
    public struct LSA_ENUMERATION_INFORMATION
    public IntPtr PSid;
    sealed public class Win32Sec
    [DllImport("advapi32", CharSet = CharSet.Unicode, SetLastError = true),
    SuppressUnmanagedCodeSecurityAttribute]
    public static extern uint LsaOpenPolicy(LSA_UNICODE_STRING[] SystemName,
    ref LSA_OBJECT_ATTRIBUTES ObjectAttributes,
    int AccessMask,
    out IntPtr PolicyHandle);
    [DllImport("advapi32", CharSet = CharSet.Unicode, SetLastError = true),
    SuppressUnmanagedCodeSecurityAttribute]
    public static extern uint LsaEnumerateAccountsWithUserRight(LSA_HANDLE PolicyHandle,
    LSA_UNICODE_STRING[] UserRights,
    out IntPtr EnumerationBuffer,
    out int CountReturned);
    [DllImport("advapi32")]
    public static extern int LsaNtStatusToWinError(int NTSTATUS);
    [DllImport("advapi32")]
    public static extern int LsaClose(IntPtr PolicyHandle);
    [DllImport("advapi32")]
    public static extern int LsaFreeMemory(IntPtr Buffer);
    public class LsaWrapper : IDisposable
    public enum Access : int
    POLICY_READ = 0x20006,
    POLICY_ALL_ACCESS = 0x00F0FFF,
    POLICY_EXECUTE = 0X20801,
    POLICY_WRITE = 0X207F8
    const uint STATUS_ACCESS_DENIED = 0xc0000022;
    const uint STATUS_INSUFFICIENT_RESOURCES = 0xc000009a;
    const uint STATUS_NO_MEMORY = 0xc0000017;
    const uint STATUS_NO_MORE_ENTRIES = 0xc000001A;
    IntPtr lsaHandle;
    public LsaWrapper()
    : this(null)
    // local system if systemName is null
    public LsaWrapper(string systemName)
    LSA_OBJECT_ATTRIBUTES lsaAttr;
    lsaAttr.RootDirectory = IntPtr.Zero;
    lsaAttr.ObjectName = IntPtr.Zero;
    lsaAttr.Attributes = 0;
    lsaAttr.SecurityDescriptor = IntPtr.Zero;
    lsaAttr.SecurityQualityOfService = IntPtr.Zero;
    lsaAttr.Length = Marshal.SizeOf(typeof(LSA_OBJECT_ATTRIBUTES));
    lsaHandle = IntPtr.Zero;
    LSA_UNICODE_STRING[] system = null;
    if (systemName != null)
    system = new LSA_UNICODE_STRING[1];
    system[0] = InitLsaString(systemName);
    uint ret = Win32Sec.LsaOpenPolicy(system, ref lsaAttr,
    (int)Access.POLICY_ALL_ACCESS,
    out lsaHandle);
    if (ret == 0) { return; }
    if (ret == STATUS_ACCESS_DENIED)
    throw new UnauthorizedAccessException();
    if ((ret == STATUS_INSUFFICIENT_RESOURCES) || (ret == STATUS_NO_MEMORY))
    throw new OutOfMemoryException();
    throw new Win32Exception(Win32Sec.LsaNtStatusToWinError((int)ret));
    public SecurityIdentifier[] ReadPrivilege(string privilege)
    LSA_UNICODE_STRING[] privileges = new LSA_UNICODE_STRING[1];
    privileges[0] = InitLsaString(privilege);
    IntPtr buffer;
    int count = 0;
    uint ret = Win32Sec.LsaEnumerateAccountsWithUserRight(lsaHandle, privileges, out buffer, out count);
    if (ret == 0)
    SecurityIdentifier[] sids = new SecurityIdentifier[count];
    for (int i = 0, elemOffs = (int)buffer; i < count; i++)
    LSA_ENUMERATION_INFORMATION lsaInfo = (LSA_ENUMERATION_INFORMATION)Marshal.PtrToStructure(
    (IntPtr)elemOffs, typeof(LSA_ENUMERATION_INFORMATION));
    sids[i] = new SecurityIdentifier(lsaInfo.PSid);
    elemOffs += Marshal.SizeOf(typeof(LSA_ENUMERATION_INFORMATION));
    return sids;
    if (ret == STATUS_ACCESS_DENIED)
    throw new UnauthorizedAccessException();
    if ((ret == STATUS_INSUFFICIENT_RESOURCES) || (ret == STATUS_NO_MEMORY))
    throw new OutOfMemoryException();
    throw new Win32Exception(Win32Sec.LsaNtStatusToWinError((int)ret));
    public void Dispose()
    if (lsaHandle != IntPtr.Zero)
    Win32Sec.LsaClose(lsaHandle);
    lsaHandle = IntPtr.Zero;
    GC.SuppressFinalize(this);
    ~LsaWrapper()
    Dispose();
    public static LSA_UNICODE_STRING InitLsaString(string s)
    // Unicode strings max. 32KB
    if (s.Length > 0x7ffe)
    throw new ArgumentException("String too long");
    LSA_UNICODE_STRING lus = new LSA_UNICODE_STRING();
    lus.Buffer = s;
    lus.Length = (ushort)(s.Length * sizeof(char));
    lus.MaximumLength = (ushort)(lus.Length + sizeof(char));
    return lus;
    Add-Type -TypeDefinition $csharp
    # Here's the code that uses the C# classes we've added.
    $lsa = New-Object LsaSecurity.LsaWrapper
    $sids = $lsa.ReadPrivilege('SeInteractiveLogonRight')
    # ReadPrivilege() returns an array of [SecurityIdentifier] objects. We'll try to translate them into a more human-friendly
    # NTAccount object here (which will give us a Domain\User string), and output the value whether the translation succeeds or not.
    foreach ($sid in $sids)
    try
    $sid.Translate([System.Security.Principal.NTAccount]).Value
    catch
    $sid.Value
    You do need to know the proper string for each user right, and they are case sensitive. 
    Edit:  You can get a list of right / privilege names from
    https://support.microsoft.com/kb/315276?wa=wsignin1.0 ; they're the same values used for NTRights.exe.

  • Cannot save query as local object

    Dear community,
    One of our users is not able to save a query change as a local object (not to be transported).  While another user is able to do this.
    Since we don't want the query changes to be transported, I must find a way to allow the save as local object in $TMP.
    An authorizations trace shows everything is OK from job role perspective.
    When the user changes a query in development and chooses "Save As", she is prompted for a transport.  At this time if she chooses "local object" then she is taken to the create a transport dialog.
    For another user this is not the case, and the 2nd user is able to save query changes locally without a transport request.
    Any thoughts on what might be the cause for this ?

    Hi Keith,
    without knowing the details of you system settings and the system where it happens (prod, dev, ...). One general remark:
    If you save a query lots of repository objects are generated an written to a transport request (i.e. structures, selections, ...), not only one for the query itself. Maybe in your case, the original query uses a globally defined structure in the columns or rows. If you now want to "save as" new query, many objects are checked for transportation. The global structure can not be saved as local object, because it was already transported before. Whilst the new query itself can be stored as local object. Means not all objects of the new query can be saved as local, because some are already transported.
    One way to check if this could also be your problem, both of your mentioned example users should try to save exactly the same query as new local query.
    Regards
    Adios

  • Big Troubles on designing Query about special customers' counting

    Hello buddies:
    I meet a problem on designing Query about special customers' counting. Let me describe the requirment first.  I want to create a query with BEX , and there is a key figure with very special logic.
    That is: to list the counts of the customers which has more than one sales records in a time period from sales data. 
    For example :
    when the user excute the query , he or she must input a time period ( 2007.01~2007.03 e.g)
    then the query output as follow:
    District          Cust-sount
    North-Zone       100
    South-Zone      120
    The Main trouble are :
    1. Threr are no document number in the detail of sales data document records. so I could not count the sales times with document number.
    2. The time period is not fixed value, it depends on the user's input, so I can not define the counting logic in the update rule or in the query with fixed time period.
    Anybody who met similar requirement pls show me your hand and give your solutions, thanks very much.
    Jason

    Hi,
        Your solution sounds a good way to count the distinct customers. but in my case, one salse line item must not be recognize as one sales record, instead,  one customer's all sales line items occurs in one day must be  recognize as one sales record ( or we say that one sales behavior).
    for example:
    customer     product    quantity   date
    cust001       prod001        10       2007.06.06
    cust001       prod002        20       2007.06.06
    the two line items above means one sales record for the customer "cust001".
    so I could not simply use the CKF : (( Counter ) *FV2 ) > 1 .
    Best Regards,
    Jason

  • Query about licensing Jdeveloper

    Dear Friends,
    I have a query about licensing of Jdeveloper development tool. I understand that Jdeveloper is Free tool.That is we do not require license to use Jdeveloper for development as well as production.
    Recent I heard that Jdeveloper is free only if we purchase Oracle Application Server. Is it correct ? Does one need to purchase Jdeveloper license if it is being deployed on any other App. server eg. Jboss etc ?
    Can anyone throw light on the same ?
    Many thanks,
    Vaij

    Hi,
    JDeveloper is free! Oracle ADF - the binding layer - ADF BC, and ADF Faces need an OracleAs licence
    Frank

  • Re: Multiple address in local listener

    Can some one explains how scan listener works ?
    Edited by: rcc50886 on Sep 16, 2012 6:55 PM

    rcc50886 wrote:
    1. Clients try to connect to a database using connect string. This connect string has SCAN NAME .
    2. Since connect string has SCAN NAME, SCAN chooses the one of the server in the cluster in a round robin way. lets say connection went to second node.
    3.On the second node, scan listener supposed to redirect the connection to local listener. But local listener is not supporting that service (database is running on only first node)
    4. At this point of time, the connection fails over to another listener on another node. lets say it fails over to node 1 and where it founds the required service.The local listeners registers their services with the remote (SCAN) listener. Why would the remote listener hand off a client connection (that specifies a service name, not server name), to a server's local listener that does not support the requested service?
    Notice that the remote listener, know exactly which services are available via which server's local listener:
    // service names slightly obfuscated for NDA reasons
    LSNRCTL> set current_listener LISTENER_SCAN1
    Current Listener is LISTENER_SCAN1
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_SCAN1)))
    STATUS of the LISTENER
    Alias                     LISTENER_SCAN1
    Version                   TNSLSNR for Linux: Version 11.2.0.2.0 - Production
    Start Date                19-APR-2012 15:22:32
    Uptime                    150 days 15 hr. 28 min. 42 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /software/app/11.2.0/grid/network/admin/listener.ora
    Listener Log File         /software/app/11.2.0/grid/log/diag/tnslsnr/dev5/listener_scan1/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER_SCAN1)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=11.22.33.44)(PORT=1521)))
    Services Summary...
    Service "dev.domain.com" has 4 instance(s).
      Instance "dev_1", status READY, has 2 handler(s) for this service...
      Instance "dev_2", status READY, has 2 handler(s) for this service...
      Instance "dev_3", status READY, has 2 handler(s) for this service...
      Instance "dev_4", status READY, has 2 handler(s) for this service...
    Service "poc.domain.com" has 2 instance(s).
      Instance "poc_1", status READY, has 2 handler(s) for this service...
      Instance "poc_2", status READY, has 2 handler(s) for this service...
    Service "live.domain.com" has 3 instance(s).
      Instance "live_1", status READY, has 2 handler(s) for this service...
      Instance "live_2", status READY, has 2 handler(s) for this service...
      Instance "live_3", status READY, has 2 handler(s) for this service...
    The command completed successfully
    LSNRCTL>

  • Problem with a local listener...

    Hi there,
    I have a problem with a backup system on Oracle using the Enterprise Manager.
    The story is that, if I create a backup file on a computer that is not joined to any domain or has local users there is no problem to recover the backup. The problem begins when I try to do this process on a domain controler, even though that the local listener is working, the arrow is pointing down saying the listerner is unavailable, but still the other database that I use is able to comunicate to it. (I have only one listener on the server.
    I have also two node Microsoft cluster environment installed on those two machines and Oracle files are stored on the SAN.
    Thank you for any tips in advanced.

    To get better help sooner, post a [SSCCE (Short, Self Contained, Compilable and Executable, Example Program)|http://mindprod.com/jgloss/sscce.html] that demonstrates the incorrect behaviour.
    db

  • New issue in R 12.1.3 in AP while query about inovice was recorded in AP

    i record new invoice in ap on release R 12.1.3 and when query about it on invoice form the error appeare was it
    forms
    FRM-40735:POST-QUERY trigger raised unhandled exception ORA-04063
    how can someone help us

    Hi,
    Please see these docs.
    R12:Getting FRM-40735 Post-Query Trigger On Quering Invoice [ID 1209736.1]
    After Applying Patch APXINWKB.fmb Is Not Working [ID 1159124.1]
    R12.1.1 APXINWKB Invoice Workbench Form Comes Up With 'ORA-01403' [ID 949942.1]
    12.1.1: FRM-40735: Post-Query Trigger Raised Unhandled Exception ORA-04063 [ID 1077613.1]
    Query on Invoices, Getting "FRM-40735: POST-QUERY trigger raised unhandled exception ORA-4063" [ID 1076609.1]
    Thanks,
    Hussein

  • I have one query about table entries.

    i have one query about table entries.
    suppose  for particular table we maintained   5 entries in dev server. actaully in the dev we have only these 5 entries.
    In production we have 200 entries actually.
    If we move the cts from  dev  to production ,we will get 205 entries right
    please help me in this.

    If i understood correctly, It is a Z table and you have done some changes in DEV system. If you move this to Production, it wont effect the production entries.
    There are 2 different ways you can trnasport a Table. 1. with Table entries 2. Without table entries.
    If you transport with Table entries then the DEV entries in this case 5 will be moved to PRODUCTION totaling 205.
    If you transport without table entries, then in Production you will find only 200 entries.

  • ERROR MSG DURING ATTEMPT TO SAVE A QUERY ON LOCAL

    Hi Experts,
    Kindly help me out
    ERROR MSG DURING ATTEMPT TO SAVE A QUERY ON LOCAL
    status message : Errors: Authorization change not available for query

    Hi Surendra,
    Nw while i executing this query in production system
    Error i gt:   1.  Infoprovider was changed or activated at runtime
                      2.  system error in program CL_RSD_Multiprov and form GET_PART_IOBJNM_CMP_01
    Kindly give me some inputs
    Thnks
    Sinu

  • Query about the DR -Standby

    Hi Support,
    I have a query about the DR -Standby:
    1) Is FAL_CLIENT and FAL_SERVER parameter mandatory in both Primary and standy node?
    2) How many standy by we can create for primary node?
    Thanks

    Dear Prashanth,
    Quantity of 3 is rejected so you blocked it? why you want to bring it again to Quality? Use of putting in block is as follows:
    Since quantity of 3  is rejected  and need to be kept aside you are blocking the stock, the purchase person will send back this material to vendor directly from block stock (MBRL or MIGO). This is best practice.
    There can be other situation that your vendor came to your place and done rework om that 3 blocked items and you are satisfied with the quality then you can use respective movement for transferring from block to unrestricted, if you want lot to be generated then assign 08 insp type and do inspection.
    Hope this will help you better.
    Best Regards,
    Shekhar

  • Query about the "User Decision

    Hi,
    I have a query about the u201CUser Decisionu201D, Suppose I have received the 10 quantity and lot get created for 10. At time of UD (QA11) I put 7 quantities in unrestricted and 3 in blocked stock .what we generally use to do with that block stock? Whether we again transfer it to quality stock (Movement 349)? Or move directly to unrestricted (movement: 343).
    I tried to move the blocked stock in u201Cquality stocku201D in transaction MB1B with movement 349 but it had given error u201CChange the inspection stock of material 9112223334A in QM onlyu201D. In QM how to transfer the blocked stock in quality stock?
    Regards,
    PK

    Dear Prashanth,
    Quantity of 3 is rejected so you blocked it? why you want to bring it again to Quality? Use of putting in block is as follows:
    Since quantity of 3  is rejected  and need to be kept aside you are blocking the stock, the purchase person will send back this material to vendor directly from block stock (MBRL or MIGO). This is best practice.
    There can be other situation that your vendor came to your place and done rework om that 3 blocked items and you are satisfied with the quality then you can use respective movement for transferring from block to unrestricted, if you want lot to be generated then assign 08 insp type and do inspection.
    Hope this will help you better.
    Best Regards,
    Shekhar

Maybe you are looking for

  • Reconcilation of Customer and Vendor from CRM and SRM to 0bpartner in BI

    Hi,       I am having customer master data and vendor master data in ECC  both represents the same numbers .Ex: 10001 - customer1 and 10001 - vendor1. I am sending this data from ECC system to CRM and SRM system and again Iam loading this data into 0

  • How to create folder on dashboard like paint repository "standard reports"

    Hi all, I want to create a folder (hyperlink) on dashboard like paint repository "standard reports". Please Refer me any link. Any response would be hightly appriciated. Regards null

  • Downloading flash player 9?

    I downloaded flash player 9 for Linux last week. I wanted to install on a different machine today. Much to my surprise, the 'current' release of flash player for Linux here http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwav

  • Reader XI annotations tool issue

    I am running windows 8.1 on a laptop (not touch) and adobe reader XI(11.0.05). I have tried reinstalling adobe. When I use the annotations tool to leave comments it causes an unreasonable slow down of the program, and has on many occassions crashed i

  • Three technical problems.

    Alright, this is my first post in the community but I really need a help. - My iPod Touch 4G's battery drains even more faster when I start working with it in a few minutes or seconds, it jumps  from %18 to %9. I was having that smartphone for one ye