Unable to obtain File lock on examplesServer.lok

Hi experts,
Pls help me..I am new to WebLogic..I have good exp on other App servers..
after installation,when i click quickstart ..the console showing this error.. i have done googling on this..but i haven't find proper answer..pls help me
weblogic.management.ManagementException: Unable to obtain File lock on C:\bea\wlserver_10.3\samples\domains\wl_server\servers\examplesServer\tmp\examplesServer.lok
: java.io.FileNotFoundException: C:\bea\wlserver_10.3\samples\domains\wl_server\servers\
examplesServer\tmp\examplesServer.lok (Access is denied)
at weblogic.management.internal.ServerLocks.getServerLock(ServerLocks.java:1
51)
at weblogic.management.internal.ServerLocks.getServerLock(ServerLocks.java:5
8)
at weblogic.management.internal.DomainDirectoryService.start(DomainDirectory
Service.java:73)
at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager
.java:459)
at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServices
Manager.java:164)
at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:711)
at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:482)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:440)
at weblogic.Server.main(Server.java:67)
>
Awaiting reply

First make Sure that you have Read/Write Permission of this file "examplesServer.lok"
ls -lrt
If you already have all the Permissions on this file still if you are facing this issue then....Just Delete the file "examplesServer.lok" from "C:\bea\wlserver_10.3\samples\domains\wl_server\servers\examplesServer\tmp\" location and then restart your Server. As soon as you start your Server It will create a New File like that.
Thanks
Jay SenSharma
http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

Similar Messages

  • ORA-27037: unable to obtain file status

    what is the solution of this error
    skipping archive log file /u02/proddata/ARCH/1_1150_742566836.dbf; already backe
    d up 1 time(s)
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 02/24/2011 18:00:52
    RMAN-06059: expected archived log not found, lost of archived log compromises re
    coverability
    ORA-19625: error identifying file /u02/proddata/ARCH/1_1152_742566836.dbf
    ORA-27037: unable to obtain file status
    IBM AIX RISC System/6000 Error: 2: No such file or directory
    Additional information: 3

    It appears that an archivelog is missing.
    You should perform the following:
    CROSSCHECK ARCHIVELOG ALL;
    DELETE EXPIRED ARCHIVELOG ALL;

  • Question regarding file locking...

    Hi all--
    Here's the essential question...
    If I have a shared file across the network that will be subjected to multiple accesses from multiple clients. Most just need to read it, but some will occassionally need to write to it. If my client application obtains a lock on the file using FileLock myLock = myFileInputStream.getChannel().tryLock(), will other clients still be able to read the file?
    in other words, is the file lock obtained a "read-only" lock, preventing writing but allowing reading? or will other client's be unable to read the file when someone has a FileLock on it?
    Right now we use an excel spreadsheet. It's an utterly terrible solution, but what's good about the spreadsheet is that everyone can read it, but if someone has accessed it to begin with, you only have read-only access to it. Which is good...
    can I do the same thing using Java file-lock? Allowing the first client who accesses it to obtain a full-permisions lock but subsequent clients only are able to obtain read-only access?
    Thanks for the help!

    The docs are rather specific that all of the functionality for FileLock is platform dependent.
    So you should test it.

  • File locked, intern was using (file sharing). odd?

    An intern, was working on my excel file via file sharing.
    Sometimes, when I just go to open it it says, file locked - Julie working on it.... ok
    But what's odd it she left the office, closed, saved, quit, and I'm still getting this on the file.

    Check the privilages.
    Other resources
    Mac 101: File sharing
    Mac OS X: File can't be moved if locked
    Unable to move, unlock, modify, or copy an item in Mac OS X

  • Applet throws "Unable to obtain Document object"

    Hello,
    I have an applet in a html-page and a link to show the applet (in a later version this should be a menu with links to different applets).
    If I click very often (click,click,click,click) on the link I get an exception (see below).
    Used environment:
    - Windows 2000 English
    - Internet Explorer 6
    - Java(TM) Plug-in: Version 1.4.2, Using JRE version 1.4.2 Java HotSpot(TM) Client VM
    Here are my 4 tiny source-codes:
    1. My test Applet:
       import java.util.*;
       import javax.swing.*;
       public class BigApplet extends JApplet {
          Vector vec = new Vector();
          public void init() {
             this.getContentPane().add(new JLabel("BigApplet"));
             for (int i = 0; i < 10; i++) {
                vec.add(new Object[250000]);
       }And 3 HTML-Pages:
    2. Frame.html
       <html>
          <frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
             <frame src="link.html" name="menuFrame" noresize marginheight="0" marginwidth="0">
             <frame name="applet" noresize marginheight="0" marginwidth="0">
          </frameset>
       </html>3. Link.html
       <html>
          <a href="applet.html" target="applet">Applet</a>
       </html>4. Applet.html
       <applet code="BigApplet.class" codebase="bin" />The three html pages are in the same directory and the BigApplet.class is in the bin-folder of this directory.
    If I start the frame.html from Explorer and than click very fast (about 5 to 10 times) on the link to the applet I get this exception:
    netscape.javascript.JSException: Unable to obtain Document object
         at sun.plugin.AppletViewer.getDocumentBase(Unknown Source)
         at sun.plugin.AppletViewer.getCodeBase(Unknown Source)
         at sun.plugin.AppletViewer.appletInit(Unknown Source)
         at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
         at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)If the applet is delivered by a webserver (tried IIS and Apache) the Internet Explorer crashes without a message. In that case I get a different exception (found in the log file of the java console):
    java.lang.NullPointerException
         at sun.plugin.util.URLUtil.canonicalize(Unknown Source)
         at sun.plugin.AppletViewer.getDocumentBase(Unknown Source)
         at sun.plugin.AppletViewer.getCodeBase(Unknown Source)
         at sun.plugin.AppletViewer.appletInit(Unknown Source)
         at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
         at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)Any idee what to do to be sure that an user can not produce this error?
    Bye
    Thomas

    Hello, I am getting the same error under different circumstances. No clicking is involved. What I need to know is what causes the error? Anyone know?
    And levi_h - the end users of applets often get impatient when they don't see immediate results and will click and click and click and click, thinking that somehow they are helping the situation. You may feel they deserve to be punished, but the powers that be who are the customers who will deploy our applets don't feel that way at all, and they are the ones that pay our salaries and allow us to be sheltered, clothed, fed and send our kids to college!

  • ITunes Library File Locked

    Hi,
    Have been using iTunes 10.5 on my WinXP machine - no problems.  During a movie download tonight, iTunes crashed.  Tried to reopen and got the infamous error "iTunes Library file locked or on a locked disk..."  Tried several remedies listed. 
    Verified that MyMusic folder and contents are not READ ONLY.  I am unable to rename, edit, or move the file...she's locked up tight.
    Tried repairing the Windows Registry assignment using the Tweak UI utility discussed in another thread.  No joy.
    Tried starting iTunes from another account on the PC - iTunes boots fine.
    Pulling my hair out (what little is left)...Any ideas out there ???
    HELP !

    Fixed.  For those using WinXP...Here's what I had to do:
    It was a file properties thing as mentioned in other posts, but to change the file properties...
    1.  Boot Windows in SAFE MODE by holding F8 down during bootup
    2.  Log on as Administrator
    3.  Navigate to the iTunes Libary.itl file (My Music/iTunes)
    4.  Right Click and pull up the file properties
    5.  Under Security, re-add the user account to the file permissions
    6.  Then change file permissions to FULL (Read/Write/Edit...)
    7.  Reboot & Viola !
    Once you unlock the write protected status (which got defaulted to the Adminstrator account), iTunes opens just fine. 

  • Unable to obtain inventory from some XP PC's

    I am unable to obtain version 7.5 inventory info from a handful of XP PC's. I believe it's something to do with this WifName registry entry which is blank on a PC where I cannot obtain inventory.
    I have uninstalled the 7.5 client, deleted the registry contents as it leaves them there, deleted the Asset Management firectory from within program files as it doesn't completely uninstall the directory either, and re-installed from scratch. After the new installation the WifName registry entry is still blank.
    I am runing the command manually "cclient.exe scannow:edit". This all works on my PC logged on as me but not on another Pc logged on as me. This rules out the Asset Management server, policies, rights to the registry etc which have all been suggested as problms in previous posts.
    The ZAM Client and Collector have full access privileges to the ZAM
    portion of the Program Files directory as well as to their own portion of
    the registry at HKEY_LOCAL_MACHINE\SOFTWARE\Tally Systems
    Corp.\TSCensus\CollectionClient.
    The ZAM collection client is set in the services to run as a local
    system account on ALL PC's.
    I believe I need to know why this entry is blank to fix the problem.
    Secondly, when I run the Setup.exe program to install the client, it asks for my Server name from which it populates cps.ini like so:-
    [CollectionServer]
    Insight
    [CollectionClient]
    InBoxCC
    however when I run the .msi that I found today, it doesn't ask for any info and the cps.ini file looks like this:-
    [CollectionServer]
    [CollectionClient]
    Is this significant?
    My colw32.log file also contains the message "failed to get WIF path", all the time on the PC that fails but only sometimes on my PC.
    Thanks
    Lenny

    Found out what the problem was. The Windows firewall was switched on for the PC's that didn't work.
    Lenny

  • ORA-01242 - Media failure when restarting DB - data file locked ?

    Hi all,
    I've been experiencing the same problem on several databases for about one month.
    This occured on 8.1.7.4.1 and 9.2.0.7.0 db, on windows servers (2000 & XP).
    Here is the problem : I have scheduled tasks that shutdown the db, then restart and dump it.
    But for the 5th or 6th time in one month, I've found a stopped database in the morning
    and the same error in the alert.log file :
    alter database open
    Sat Jun 09 03:10:06 2007
    Errors in file e:\oracle\admin\elu\bdump\elu_lgwr_5708.trc:
    ORA-01110: data file 3: 'E:\ORACLE\ORADATA\ELU\DATA01.DBF'
    ORA-01114: IO error writing block to file 3 (block # 1)
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 32) Le processus ne peut pas accéder au fichier car ce fichier est utilisé par un autre processus.
         -> this error message in french says that the datafile is already used by another process.
    After performing a "recover datafile", I can restart the database.
    I don't understand what kind of process could lock a datafile in a db that has just been restarted...
    It seems that this problem never happened before, but now I get this error every week o_O
    can anyone help ?
    Thanks !
    regards,
    Antoine
    Message was edited by:
    Antoine.M

    I've found the source of the problem.
    Actually everytime I got this problem, the datafile was locked by the backup software (DAT) during the night.
    thx for your reply

  • Netscape.javascript.JSException: Unable to obtain Document object

    Hi all.
    I'm fighting against a very unusual problem involving applets and, probably, version 1.4.2_XX of the jre (in fact i've been looking for an answer over the Internet and I've found only one item related in the java programming forum. Unfortunately it was not resolved on any of the answers http://forum.java.sun.com/thread.jsp?thread=452400&forum=31&message=2532663).
    The thing is that the applet is unable to obtain any information about the parameters passed through the page; consequently, it finally crashes showing this ugly message:
    netscape.javascript.JSException: Unable to obtain Document object
         at sun.plugin.AppletViewer.getDocumentBase(Unknown Source)
         at sun.plugin.AppletViewer.getCodeBase(Unknown Source)
         at sun.plugin.AppletViewer.appletInit(Unknown Source)
         at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
         at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)as I said I've been looking for information over the Internet but it seems that few people knows about it. Any suggestion? Does anybody knows if it is a mater of the IExplorer?
    The configuration of the client machine is:
    Windows XP SP1
    IExplorer 6.0
    Although the same has ocurred over:
    Windows 2000
    IExplorer 6.0
    Thank you for your time.

    Can you reproduce this error with html and applet code (and post this code)?
    A full trace might tell you something:
    To turn the full trace on you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log

  • RMI Activatable (unable to obtain activation system)

    Hello, I am new to forum... I have a simple rmi activation program.. Before writing program,I have checked some books and example in the sun site...
    Before starting to program, I command "start rmiregistry" and
    rmid -J-Djava.security.policy=rmi.policy -J-Dsun.rmi.activation.execPolicy=none
    Up to here ,everything is Ok.
    However,when I started to Setup program .I got the error Unable to obtaion activation system....
    Following my codes:
    my remote object...package impl.server;
    import java.rmi.*;
    import araclass.Kitapcik;
    import araclass.Soru;
    public interface Sinav extends Remote{
         Kitapcik bilgileriGetir() throws RemoteException;
         String sorulariGetir(Soru soru) throws RemoteException;
    package impl.activate;
    import impl.server.Sinav;
    import java.rmi.*;
    import java.rmi.activation.*;
    import araclass.Kitapcik;
    import database.Database;
    import araclass.Soru;
    public class SinavYordam extends Activatable implements Sinav{
         Database data;
         public SinavYordam(ActivationID id,MarshalledObject data) throws RemoteException{
              super(id,0);
         public Kitapcik bilgileriGetir(){
              data=new Database();
              data.baglan();
              Kitapcik kitap=data.kitapcikGetir(2);
              data.kapat();
              return kitap;
         public String sorulariGetir(Soru soru){
              String sor="";
              data=new Database();
              data.baglan();
              sor=data.soruGetir("Soru_Getir", soru.soru_no, soru.tabloAdi);
              data.kapat();
              return sor;
         public String[] siklariGetir(Soru soru){
              String[] sik;
              data=new Database();
              data.baglan();
              sik=data.siklariGetir("Soru_Getir", soru.soru_no, soru.tabloAdi);
              data.kapat();
              return sik;
    }and lastly setup program,
    import impl.server.Sinav;
    import java.rmi.*;
    import java.rmi.activation.*;
    import java.util.Properties;
    import java.util.prefs.Preferences;
    public class SinavServer {
         public SinavServer(){
         public static void main(String[] args) throws Exception{
                   System.setSecurityManager(new RMISecurityManager());
         Properties prop=new Properties();
            prop.put("java.security.policy","/workspace1/SINAV");
               ActivationGroupDesc.CommandEnvironment  cmd=null;
               ActivationGroupDesc grpdesc=new ActivationGroupDesc(prop,cmd);
              ActivationGroupID id=ActivationGroup.getSystem().registerGroup(grpdesc);
              String location="file:/workspace1/SINAV";
              ActivationDesc desc=new ActivationDesc(id,"impl.activate.SinavYordam",location,null);
              Sinav sin=(Sinav)Activatable.register(desc);
              Naming.rebind("Sinav", sin);
    } Thanks in advance..

    Actually, I got two diffirent exception in an interesting order.. I mean one day I got the following the error;
    Exception in  thread "main"  java.Access.Security.ControlException: access denied <java.io.FilePermission \\c\workspace1\SINAV read>
    at java.security.AccessControlContext.checkPermissionthat goes on...
    The other day ,
    Unable to obtain activation system exception today I could not have got so far. If I got, I would post.
    So anyone who I have an idea of this problem...
    Thanks in advance...

  • Log Viewer: Unable to obtain a valid configuration - BAMRuntimeException

    Hi All,
    We have problems working with the Visual Administrator -> Log Viewer
    tool.
    excuting the Visual Administrator -> F:\usr\sap\<SID>\J(XXX)\j2ee\admin>go.bat
    Login with the user Administrator.
    Click On: Cluster -> PEP -> Server X X_XXXXX -> Services -> Log Viewer.
    Them you get the following error:
    Unable To Obtain a Valid Configuration ->
    com.sapmarkets.bam.util.BAMRuntimeException
    The Problem is in all our Portals System Landscape: DEV, QA, PRD.
    Best Regards,
    Erick Ilarraza

    Hi All,
    We solved the problem. You have to deleted the old archive files. **J2ee/Cluster/Server<n>/log/archive.
    Them the Log Viewer works.
    Best Regards,
    Erick Ilarraza

  • CIFS on OES2SP3 not registering as server on WINS server - Unable to obtain server list from CIFS server.

    Running OES2P3 cifs on SLES10SP4. This server is on it's own subnet
    connected via a router to the other subnets, with the rest of the
    servers. Name resolution and CIFS file access does work, but browsing
    does not work. I found that the server registers the workstation
    service with the WINS server, but not the server service. Adding a a
    static WINS entry enables netbios name resolution. But due to the
    unability to obtain a server list from the CIFS server (a packet trace
    shows, that the request for the server list from the OES CIFS server is
    answered by the server with an unspecified server error) browsing does
    not work.
    Is browsing supported by OES2 CIFS like it is in SAMBA or does it need
    another server as browser to allow browsing to work?
    W. Prindl

    Okay, then we have the same knowledge status in that area.
    I'll try to open a SR on this question.
    W. Prindl
    Peter Kuo wrote:
    >Sorry for the delay - I fired up my VM that had CIFS configured for
    >OES2 and you're right that there is no obvious setting for WINS; if
    >its there, like you I cannot readily find it!
    >
    >The closest I can find is:
    >
    >
    >"10.2.4 CIFS Server Broadcasts the Browser Packets every Twelve
    >Minutes
    >
    >Cause: It is designed to broadcast every twelve minutes.
    >
    >Action: An entry with the NetBIOS Name and the respective server IP
    >address in LMHOSTS file must be present on Windows client machine or
    >WINS should be configured for both the server and the client."
    >
    >
    >Oh, I did find (and that was what was in the mind when I first
    >replied) that the CIFS Server Parameter page in iManager has this
    >seting:
    >
    >
    >"WINS IP Address
    >The address of the WINS server that locates the PDC, if the PDC and
    >the server running CIFS are on different subnets."

  • Unable to set import lock for software component version

    Hi team,
    While importing object (.tpz) file into integration repository we are getting error message as below.
    ======
    Unable to set import lock for software component version <XXXX>-COMMON,1.0 of <XXX>.com because user <userid> is currently importing data to this component
    try again once user <userid> has finished importing data
    =======
    We checked with the user and found he is not doing any activity in fact he logged off. the developer wants to import and how do we terminate this import attement and proceed with new importing of the  same object
    We wan't to avoid cache refresh as this is production environment
    We already performed clear SLD data cache with in the IR not for whole.
    Thanks
    Vijay

    Hi Vijay,
        Thefollowing threads speak about the locking issues with the IR objects .Hope this will help you out in resolving the issue.
    http://help.sap.com/saphelp_erp2005/helpdata/EN/93/a3a74046033913e10000000a155106/content.htm
    Internal lock version management : Unable to copy objects
    Thanks,
    Ram.

  • File Locks and SMB shares with ML

    I've been doing a lot of research on SMB and the way it locks files during access. I've made a lot of ground work in my research but could use a little further assistance from this support community.
    The symptom is simple to explain: Users are occasionally being prompt for a username and password when attempting to rename or move files and folders.
    After doing some research on this topic, I have discovered that there is a direct relationship to files being open on the server at the time the user is attempting to rename or move the folder. The following thread, albiet old, appears to have nailed the problem on the head http://arstechnica.com/civis/viewtopic.php?p=24558131. In particular, there appears to be file locking happening when preview is turned on through the finder. I've had all users remove preview from their Macs and this appears to have helped reduce the occurances of the password prompt, but has not completly solved the problem. This is also a work around, not a fix.
    I've been using a series of command to help me trace the problem including openfile.exe on the Windows 2012 Storage Server (sharing the files via smb only) to discover who has what files open on the server, and the lsof command on the client workstations to discover what process has the file open. So far, the finder is consistently the only thing with the file open... even with the finder preview turned off. I've also found that the "open file" is simply the fact that the offending users Mac has a finder window with just the folder open (none of the files within the folder or previews open).
    Is the real solution to simply close all finder windows when you're done working in a folder, or is there more that anyone can think of to help me find out exactly what is holding the file lock? Is this a known bug in the SMB implementation of ML? Can we expect to see a fix with Mavericks which will now be using SMB2.0?
    Any help or information anyone can provide would be greatly appreciated. I have a bunch of documentation on this issue and would be happy to share. Please let me know if anyone needs any additional details.

    Hello all - many apologies for my delay in posting here; and Squiggle, thanks for the second-hand nudge. As Stephen said we have been testing a solution concerning a setting in Finder's view options for the last few months, and these seem to have solved the issue in hand.
    Essentially, we found that Finder was holding files open whenever the 'Show Icon Preview' option was set, on any of the four folder views, on any client machine accessing the share. Below is a piece of documentation I wrote up for our Service desk explaining how to diagnose and manually fix this issue on the client:
            - In Finder, open any folder
            - Click on the cog icon and select 'show view options.' Check that, in the dialogue box which appears, the 'Show icon preview' box is not checked. Click the other three Finder views and check it's turned off here too.
            - Click 'Use as Defaults'
    In order to make this change remotely on multiple machines, you will need to change the clients' com.apple.plist files, and set every instance of the <showIconPreview> key to <False>. This is nested within several key / dictionary pairs in com.apple.finder.plist, once under <standardViewOptions> and thrice within <standardViewSettings>. As Stephen has already mentioned, the fact that this key is nestled deep within compound dictionaries seems to render them untouchable by defaults, though I would be very happy to be corrected on this.
    How you push this change out will depend on your management system. We had been using Casper to
    to create a managed preference pertaining to <standardViewOptions> and <standardViewSettings> within com.apple.finder.plist. These contained as values the entire dictionary associated with these keys, with the value for each <showIconPreview> set to false. This was then applied at a User Enforced Level (running every logon after Finder has set up the system defaults).
    As a side note, I have found that certain machines (Such as the 10.8.3 machine I'm working on now) contain a key named <FK_StandardViewSettings>, which I have been unable to ascertain the purpose or origination of. These don't seem to affect the fix, so we've left them alone.
    Irritatingly, Casper has dropped support for custom Managed Preferences in their latest release, so this problem has now resurfaced. I will keep this page updated with any fixes or workarounds I find.
    Hope that helps,
    Josh Smith

  • Unable to obtain dynamiclink server

    Hello.
    I'm using a windows 8 pc. I think its a 64bit, not sure. but anyways i installed adobe creative cloud. had trouble installing after effects due to internet and such. but eventually i got it downloaded then had trouble actually starting it. ran as administrator and that fixed it. today i tried doing a camera tracker and i got the message "unable to obtain dynamiclink server" and i'm really fustrated, ive dealt with so many issues lately ive almost had enough. Ive look on the forums for answers and saw none. Please help. and if any of you could tell me how i'm supposed to uninstall and reinstall after effects that would be great. cause when it wasn't working i uninstalled it and tried finding the files again that i through in the trash and from then ive had trouble. Point being i'm inexperianced and need assistance. In fact. after effects doesn't even show up in the control panel uninstall. so i'm somehow using it and its not even there...
    Best regards, Kyle West
    Message was edited by: Irishoffspring

    Run the cleaner tool and then reinstall if you must:
    http://www.adobe.com/support/contact/cscleanertool.html
    Won't solve your issue, though, I can tell you that. As we've written like a gigazillion times on this forum, AE not being able to connect to external processes comes down to blockages from virus scanners or general issues with the operating system like specific TCP ports being unavailable due to network configuration and firewall settings. You need to straighten out that part.
    Mylenium

Maybe you are looking for

  • Headphone jack no longer working - How to test if it is a hardware or software issue?

    Hi, my headphone jack fairly suddenly stopped working. The speakers and the sound are fine, but when I plug my headphones in nothing plays. I see that the computer does recognize that headphones are plugged in, and it does change it to "headphones" i

  • Inbound Invoice IDOC mapping Required fields

    Hi All, Please let me know what need to be mapped for the @begin , @segment , TABNAM , SNDPOR, SNDPRT etc like this elements in the IDOC structure. In my scenarion i get Invoices in  XML file so that i can pick that and process it into SAP R/3 by doi

  • Update memory info failed

    We have an Oracle SQL query which runs in seconds directly on the database but when we put it in InfoView it runs for several minutes. We ran a trace on the query in InfoView and received thousands of lines of this: **WARNING:CCDZMgr:Update memory in

  • T.code O7Z3: could anyone show me the custom. navigation on this t.code?

    Hi All, T.code O7Z3: could anyone show me the custom. navigation on the t.code O7Z3? I've SAP ECC 6.0 Thanks Gandald

  • Incorrect texts in SAP Query Designer

    Hello, I have problems with incorrect text in SAP Query designer, I work with SAP codepage 1404 and I see all queries correct, but when I want to edit some query with some special character for czech language its problem. Query designer can=t use cze