[SOLVED]Is my hosts file functioning as it should?

I'm using this script to update my hosts file with ad blocking settings.
#!/bin/bash
# Hosts file updater
HFSERVER="http://hostsfile.mine.nu.nyud.net"
HFILE="hosts.zip"
ORIGFILE="/etc/hosts.original"
clear
echo "-------------------------------------------------------------"
echo "This script will update your Hosts file to the latest version"
echo "Your original Hosts file will be renamed to $ORIGFILE"
echo "-------------------------------------------------------------"
echo ""
if [ ! -f "$ORIGFILE" ] ; then
echo "Backing up your previous hosts file.."
cp -v /etc/hosts $ORIGFILE # I like verbose file operations. Can be less verbose if necessary.
fi
echo "Retrieving $HFILE from $HFSERVER"
echo ""
wget -O /tmp/$HFILE $HFSERVER/$HFILE
unzip -p /tmp/$HFILE | dos2unix > /tmp/hosts
if [ 'grep -c "banner" /tmp/hosts' ];then
echo "Downloaded and unpacked $HFILE OK"
echo "Appending host list to original content" # which was probably there for a reason, like to make sure localhost worked, and possibly even more stuff if part of a corporate LAN
#cp -f -u /tmp/hosts /etc/hosts
cat $ORIGFILE >/etc/hosts
echo "" >>/etc/hosts # to make sure the original file ends in a new-line so that 2 entries don't end up on the same line, either causing unexpected behavior or not working at all
cat /tmp/hosts >>/etc/hosts
rm -fv /tmp/hosts* # again, I like verbose file operations. I like to know what my system is doing.
echo "Update process complete"
#echo "-------------------------------------------------------------"
echo "As a side-effect of this script, any changes you wish to make"
echo "persistent in the hosts file should be made to $ORIGFILE"
echo "because /etc/hosts will be respawned from that file and the "
echo "newlist from the server each time this script runs."
exit
else
echo "Update failed"
fi
http://hostsfile.mine.nu/downloads/updatehosts.sh.txt
And my hosts file now looks like this:
# /etc/hosts: static lookup table for host names
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost pote
# The Hosts File Project http://hostsfile.mine.nu
# Global Advert Servers Blocklist - Personal Edition
# Release 13/09/2008
# Servers Verified as up and running 13/09/2008 (by dns exploration)
# Updated sorted and maintained by Andrew Short (sh0rtie)
# Contact: [email protected]
# A big thank you to all contributers (too many to mention)
# who really have made this project a success, well done :)
# Licensed under the LGPL a copy of the license may be viewed at
# http://www.gnu.org/licenses/lgpl.txt
# WARNING:
# This file is *extremely comprehensive* and some sites might be
# included here that you wish to visit, if this is the case you can
# deactivate the block on that site by placing a # (octothorpe)symbol
# before its entry, this will deactivate blocking on that server
# so for example #127.0.0.1 foobar.com
# will enable you to visit foobar.com or you can just simply delete
# the line that contains the site you wish to visit.
# NB:
# For some computer software updates you may need to disable
# this file in order to perform the update, if you have problems
# rename this file from "hosts" to "hosts.txt" reboot then perform
# the update and then rename this file back to "hosts" to re-enable it
# You must keep the below lines
127.0.0.1 localhost
127.0.0.1 pop3.norton.antivirus
127.0.0.1 pop3.spa.norton.antivirus
# /etc/hosts: static lookup table for host names
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost pote
# End of file
# The Hosts File Project http://hostsfile.mine.nu
# Global Advert Servers Blocklist - Personal Edition
# Release 13/09/2008
# Servers Verified as up and running 13/09/2008 (by dns exploration)
# Updated sorted and maintained by Andrew Short (sh0rtie)
# Contact: [email protected]
# A big thank you to all contributers (too many to mention)
# who really have made this project a success, well done :)
# Licensed under the LGPL a copy of the license may be viewed at
# http://www.gnu.org/licenses/lgpl.txt
# WARNING:
# This file is *extremely comprehensive* and some sites might be
# included here that you wish to visit, if this is the case you can
# deactivate the block on that site by placing a # (octothorpe)symbol
# before its entry, this will deactivate blocking on that server
# so for example #127.0.0.1 foobar.com
# will enable you to visit foobar.com or you can just simply delete
# the line that contains the site you wish to visit.
# NB:
# For some computer software updates you may need to disable
# this file in order to perform the update, if you have problems
# rename this file from "hosts" to "hosts.txt" reboot then perform
# the update and then rename this file back to "hosts" to re-enable it
# You must keep the below lines
127.0.0.1 localhost
127.0.0.1 pop3.norton.antivirus
127.0.0.1 pop3.spa.norton.antivirus
127.0.0.1 admintds.megatds.com
127.0.0.1 ads.game.net
127.0.0.1 ads.tokgajah.com
127.0.0.1 dl.downloadhosting.com
127.0.0.1 game.treeloot.com
127.0.0.1 gw1.celticfestival.org
127.0.0.1 incestlove.info
127.0.0.1 klickcash.com
127.0.0.1 loomia.cachefly.net
127.0.0.1 pornoexit.com
127.0.0.1 privacy.virtumundo.com
127.0.0.1 redirect.virtumundo.com
127.0.0.1 tds.megatds.com
127.0.0.1 telebizz.org.uk
127.0.0.1 the2all.info
127.0.0.1 treeloot.com
127.0.0.1 ultraload.net
127.0.0.1 ultratds.com
127.0.0.1 v1.cc
127.0.0.1 virtumundo.com
# etc...
The thing i'm unsure of is this section:
# You must keep the below lines
127.0.0.1 localhost
Since localhost is already stated here:
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost pote
For now I've deleted the redundant localhost entry, since it seems to be there for windows compatability.
Is there any harm in leaving that entry?
Last edited by verve (2008-11-29 04:08:29)

Not as far as I know.
It probably just re-encounters the localhost hostname and either dumbly re-adds it to the internal table or ignores it. In any case, no logically discernible harm done.
-dav7

Similar Messages

  • Loop back adapter host file configuration issue?

    i did not exactly follow the following instructions :
    Add a line to the C:\winnt\system32\drivers\etc\hosts file with the following format, right after the localhost line:
    IP_address hostname.domainname hostname
    instead I have the following in my host file
    IP_address hostname
    that should be fine too right?

    i have actually reintalled oracle infra and then mid tier and it installed fine this time... I was able to log in to the portal at first with the the url
    http://localhost:7778/pls/portal
    but then I changed the portal database password with the command since I could not log into it
    alter user portal account unlock;
    alter user portal identified by password
    and I am getting the following error in the web page:
    Servlet Error
    An unexpected servlet error was encountered.
    Please check the log file for more details.
    where are the log files I looked in the server.log at C:\OraHome_midtier\j2ee\OC4J_Portal\log\OC4J_Portal_default_island_1 one of them and they say:
    java.lang.NullPointerException
         at com.evermind.server.rmi.RMIServer.run(RMIServer.java:464)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    06/04/09 15:11:15 Internal server error
    java.lang.NullPointerException
         at com.evermind.server.rmi.RMIServer.run(RMIServer.java:464)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    what does this is going wrong

  • Can't update iOS 8 on my iPhone5 through iTunes on Windows 8 (error 3004, 3194). Updated host file, opened port 80, 443; turned off security system and firewall, etc. But nothing works. How to solve this problem?

    Can't update iOS 8 on my iPhone5 through iTunes on Windows 8 (error 3004, 3194). Updated host file, opened port 80, 443; turned off security system and firewall, etc. But nothing works. How to solve this problem?

    Hi the_mad_movies,
    It seems like this article will be the best option for addressing this issue:
    Error 3194, Error 17, or "This device isn't eligible for the requested build"
    http://support.apple.com/kb/ts4451
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • HT201442 I am got error while trying to restore,, but i just only error file with 3194. I try many step by install lastest version and fix host file, but still fail. Anybody can give me any key point to solve this problem? Thank you

    I am got error while trying to restore,, but i just only error file with 3194. I try many step by install lastest version and fix host file, but still fail. Anybody can give me any key point to solve this problem? Thank you

    Error 3194:
    This device isn't eligible for the requested build
    It means that Apple has stopped signing the version of iOS that you have, try downloading the latest iOS version, then try Restore again.

  • How can I solve error 3194? My hosts file is clean!

    Hi, I try to restore my iPhone and iPad which both are a jailbroken iOS 5.1.1 to a clean 5.1.1 (and no, I don't want to update to iOS 6).
    Now when I am restoring them with shift+click restore and choose the correct and clean iOS 5.1.1 ipsw it gives me error 3194 after extracting.
    Error 3194 can be solved by cleaning the hosts file in system32,drivers,etc folder BUT my hosts file is clean and I can ping gs.apple.com . Deactivating Firewalls didn't help. I don't think it's a connection problem between my PC and gs.apple.com . Some say you get this if you have a jailbroken device. Well thanks, now I know why I'm getting it, but not how to solve it
    So. How can I restore my phone and get rid of error 3194?
    Even a clean iTunes on a friends PC couldn't restore my iOS devices. My iPod nano restored w/o any problem.
    Thanks

    Reboot and see whether it goes away.

  • [Solved] hosts file with ipv6 disabled

    Hello community!
    So I have disabled ipv6, as it was causing various issues and Comcast has not yet implemented ipv6 in my area.  Disabling was no problem, but nowhere can i find information regarding whether or not to keep the ipv6 line in the hosts file.  Should I comment it out? 
    For clarity I am referring to the ::1 line.  Will commenting it out be problematic, or will keeping it be problematic, or does it not really matter?  I know having an improperly configured hosts file can cause all sorts of network issues, so I am very curious. 
    Right now I have it commented out, and I have not noticed any real problems, but I also have a Realtek wireless card using rtl8192ce, which is not the most stable driver/connection.  Thus my connection is kind of intermittently crappy.  So I am curious if I am making my connection crappier than it was before.
    Thanks in advance!
    Edit:  Of course as soon as I posted this, I found an answer.  The Debian wiki recommends commenting it out when completely disabling ipv6.  So to those who at least read my post, thanks!
    Last edited by WonderWoofy (2012-08-19 20:19:44)

    @WonderWoofy,
    Do you have a link for the Debian wiki? I'd like to understand the reasoning.
    To be honest, I didn't even realise that line was for ipv6. Since I've disabled it in sysctl.conf, I should probably consider commenting it out, too. Right now, I seem to be loading firewall modules for ipv6, mind, which seems like slightly more security than can be strictly necessary if the thing is disabled...
    @ghen,
    It isn't, that I know of, a matter of "figuring it out correctly". Having ipv6 enabled can screw up ipv4 connections. Having it enabled prevents me from connecting to the internet at all on one of the networks I use. As I understand it, a properly configured network shouldn't do this but when the official IT support people say the problem is that you have ipv6 enabled, you don't have much choice. (And it isn't as if there's anything to be gained by having it enabled.)

  • Configuration "use next available filename" in "write measurement file" function

    My project recording signal and saving using "Write to Measurement File" function. I want to perform record multiple segments signals should have configured option "use next available filename". For example, if the original file is data.tdms then it will save the file into: data_1.tdms, data_2.tdms, data_3.tdms, ...
    To do that I use a button control enable and disable write functionality.
    In the past I have done normally. Now, I can not make it anymore, now every write new data were add into one file created without the next new file as desired, it has almost become a option "Append to file".
    I use LabVIEW 2013
    Solved!
    Go to Solution.
    Attachments:
    write measurement file.vi ‏54 KB

    Hello ducta9,
    It looks like you currently have the Write to Measurement File Express VI configured to "save to one file" - this means that all data from a given session will be saved to the same file.  The file number will only be incremented once the application is restarted or the Reset Boolean input is set to True.  If you want to save to a series of files, select the "save to a series of files" option and configure the Express VI as needed to generate new files at intervals. 
    If you want to write variable-size chunks of data to a new file every time the user clicks the Enable button, you might be able to get away with just wiring a True constant to the Reset.  I would still recommend taking a look at the options available in the save to a series of files settings.
    Best Regards,
    Tom L.

  • App.opendoc does not display security warning window like e.g. "open a file" function?

    When I link from one PDF to the other via "open a file" function (both PDFs are located in %userprofile%/mydocuments directory), Reader X and XI open a security warning box. If I agree to open the target file, this specific file always opens without displaying the warning again.
    When I link to the same file via app.opendoc, the security warning box does not open. So I do not get a chance to add the target file to the list of trusted files.
    Is there any way to motivate app.opendoc to display security warning boxes due to the new sandboxing technology in Reader >= X? So that I get a chance to add the target PDF to the trusted PDFs?

    Is there any chance that the application is being run from Developer Suite? In other words, is Developer Suite installed on the client machine and hosting the app?
    Regardless, although anything is possible, I have never heard of what you are describing. In all cases, the dialog box should be the java dialog which is a grayish/purple color. The exact color will vary depending on the JRE version you are using.
    If my first point is not the case, I would recommend that you consider using WebUtil 10.1.2.2 and also patch the AS environment to the same version. To get WebUtil to 10.1.2.2, you will need to patch a Developer Suite home and copy frmwebutil.jar to the AS home. After patching, I believe you will also find an updated webutil.pll in the DevSuite \forms directory which will also need to be copied then compiled on the deployment server.
    Also, ensure that you are using Jinitiator 1.3.1.26 or newer. If you are using the Sun JRE, be sure you are using a certified/supported version. For example, you can use the latest 1.5.x Sun JRE with Forms 10.1.2.2, which is 1.5.0_15

  • HR Renewal: Client infotype with upload/download file functionality

    Hi Gurus,
    I am writing to you today cuz a client of mine asked me to adapt one of their client-specific infotype for HR Renewal. Now the old-legacy infotype was developed by someone else so I am just to adapt the functionality for decoupled infotype framework and front-end.
    The infotype has no subtype and record from 01.01.1800 to 31.12.9999 with a table-control listing all the pdf (or other format) file for a particular employee (such has income tax statement; SEPA bank account sheet; ID card etc... any kind of personal document relevant to employees). (that data is listed from a client Z table when opening the infotype; e.g. there is not sub-strucutrue in the pnnnn to  represent that information).
    upload, download and open file functionality is done via the infotype old-framework screen 2000 by some custom code merely replicated what is available by cl_gui_services.
    File are stored directly on the SAP system not using the GOS option;
    back-end stuff is more or less done and working at least I can do pretty much what I want in puit_ui tcode; read;modify... off course no file upload there
    front-end is another story; I have managed the FPM views for the infotype (dataset; biz card, etc) and also I have managed to list the existing file in the ATS list.
    However What I need still to do is to be able to upload from NWBC files to the back end system; and also download or open them. this seems to be a little harder than expected.
    I am now doubting if I should rather do a P&F FPM form based or if I can achieve what it is suppose to do? or maybe I should go back to the client and talk him through changing that infotype architecture? using subtype instead of a connection to a Z table and GOS services to store employee files seems way easier for me; but still I am facing the upload/download functional which I dont really no how to wrap around the FPM either it is ATS or GL2. I have checked indian-specific infotype 3743 has this uploading functionality (GOS) but no corresponding FPM I could inspire myself on!
    Also, not sure if I am missing something but when I try to change the value of one the field on the infotype pnnnn structure (that infty actually has one checkbox field) and save I end up with a dump because to BOL model does not find my entity (lo_entity). it s not the first infotype I am enabling for HR Renewal and I never had this error before.. I wonder what I am missing....
    Would you gurus oriente me a lil on how I should best proceed? should I rather use P&F? Your help and advise would greatly be appreciated!
    Thanks.

    Hello:
    So after some thinking through:
    - upload and download are handler by the FPM ATS feeder (client copy with enhanced options into to manage event method).
    - lo_entity without pointer causing dump occurred because I had inconsistently used the set automatic tag option into the FPM configuration floorplan editor.
    - PAOC_ASR_PERSONAL_FILE would be my recommendation but client want to follow on its own mini-dev for personal file hosting.
    Thank you gurus!

  • How to edit host file...

    I have ICS on my SK17i  . I want to edit my /etc/host file. How  is it possible.
    Solved!
    Go to Solution.

    Since host file is a system file
    You need to root your phone and then use root explorer > mount R/W > open with text editor
    May i know what actually you want to do ?
    Why do you want to edit host file ?
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

  • Error with "Open/Create/Replace File" function with cancel button

    I've attached a very simple VI that embodies what I want to do with my Open File function. I simply want to stop the rest of my program (theoretically encased in the Case Structure) from running if the user deigns not to specify a file location.
    However, if the Cancel button is clicked an error is produced before the rest of the program runs. If you ignore the error and continue, the "cancelled' variable is appropriately made true and the Case Structure runs properly. I simply want to remove the error message LabView gives me.
    Any ideas on why or how?
    Solved!
    Go to Solution.
    Attachments:
    Open file test.vi ‏34 KB

    The cancel button gives you error code 43 (if I remember correctly). After your file vi's, use the general error handler (GEH) to clear this error (and no other errors). Use
    [exception action]=Cancle Error on Match
    [exception code]=43
    type of dialog=no dialog
    Felix
    www.aescusoft.de
    My latest community nugget on producer/consumer design
    My current blog: A journey through uml

  • Which localhost line shuold be used in the /etc/hosts file on Solaris Sparc

    Hi There,
    I would like to know which line should be use in the /etc/hosts file:
    127.0.0.1 localhost
    127.0.0.1 localhost.localdomain localhost
    Thanks :-)
    J

    user560159 wrote:
    Hi There,
    I would like to know which line should be use in the /etc/hosts file:
    127.0.0.1 localhost
    127.0.0.1 localhost.localdomain localhost
    Thanks :-)
    JThe format for the hosts file is
    ipaddress alias1 alias2 alias3 alias4 Most shops will just have two aliases, one with just the machine name, one with the fully qualified domain.machine name. In reality, you can do whatever makes sense:
    [root@vmlnx01 ~]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality wil fail
    127.0.0.1       localhost.localdomain localhost
    [root@vmlnx01 ~]# ping localhost
    PING localhost.localdomain (127.0.0.1) 56(84) bytes of data.
    64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=1 ttl=64 time=1.96 ms
    [root@vmlnx01 ~]# ping localhost.localdomain
    PING localhost.localdomain (127.0.0.1) 56(84) bytes of data.
    64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=1 ttl=64 time=0.094 ms
    [root@vmlnx01 ~]# vi /etc/hosts
    <<<< adding an alias 'fred' >>>>>
    [root@vmlnx01 ~]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality wil fail
    127.0.0.1       localhost.localdomain localhost fred
    [root@vmlnx01 ~]# ping fred
    PING localhost.localdomain (127.0.0.1) 56(84) bytes of data.
    64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=1 ttl=64 time=0.306 ms
    64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=2 ttl=64 time=0.093 ms
    64 bytes from localhost.localdomain (127.0.0.1): icmp_seq=3 ttl=64 time=0.092 msDoes the order of the aliases have any meaning? I leave that quick experiment as an exercise for the student.

  • Mac osx 10.7.5 /etc/hosts file being ignored

    Hi guys, i am a web developer and use my macbook pro for work, recently i upgraded my OSX to 10.7.5 and all **** broke loose. i use ubuntu server to on virtual box to host my webserver and now it seems like my hosts file is not being read because i cant ssh into my server anymore.
    i googled around and discovered this was actually intentional by apple( i wonder why?) and have tried several solutions. one of them actually worked last week, where i had to go systempreference/network/advanced and added 127.0.0.1 to the top of the list, copied /etc/resolv.conf to /etc/resolve.dnsmasq.conf and loaded dnsmasq.
    this worked for the last couple of days. today i restarted my macbookpro and im back to the same problem only this time a lot worse cause the past solution does not seem to wrk anymore and all solutions i have found on google dont seem to help anymore
    Please help, i need to do soem work.
    thanks...

    Take each of the following steps that you haven't already tried, until the problem is resolved.
    Step 1
    Restart the router. Many problems are solved that way.
    Step 2
    Change the name of the wireless network, if applicable, to eliminate any characters other than letters and digits. You do that on your router via its web page, if it's not an Apple device, or via AirPort Utility, if it is an Apple device.
    Step 3
    Run the Network Diagnostics assistant.
    Step 4
    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Enter the name of your wireless network in the search box. You should have one or more "AirPort network password" items with that name. Make a note of the name and password, then delete all the items. Quit Keychain Access. Turn Wi-Fi off and then back on. Reconnect to the network.
    Step 5
    You may need to change other settings on the router. See the guidelines linked below:
    Recommended settings for Wi-Fi routers and access points
    Potential sources of interference
    Step 6
    Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    Step 7
    Reset the System Management Controller (SMC).

  • Hostsfile (hosts file) on Symbian S60 5th edition ...

    Does anyone know if a hostsfile (or similar function as a hosts file) can be installed and how it can be used on Symbian S60 5th edition (for the Nokia 5800 XpressMusic)?
    I've found on Wikipedia: ( http://en.wikipedia.org/wiki/Hosts_file ) that it should be possible, it specifies folders where the file should be:
    Symbian OS 6.1-9.0
    C:\system\data\hosts
    Symbian OS 9.1+
    C:\private\10000882\hosts (AllFiles capable only)
    but there is no more details about the needed file format, and I couldn't find any application dealing with a hostsfile on Symbian. Apparently, there used to be the Appgate Mobile Client, but I can't find it anymore.
    I would appreciate any help/clue about this. Thank you.

    Hi
    Yah  INT/5.00.50 and TW/5.00.60 on the N5230 work just fine. 5.00.50 is the last International version but it has a bug when navagating in landscape view, (the map looks out of sync, streets don't line up on the left and right side of the screen). That happens on the N97, N97 mini, N5230, and the Samsung HD, others say it happens on other Nokia phones, but I can't say that because I only have the phones I listed. Anyhow in the Tawain version 5.00.60 this was fixed. As a sidenote it has been rumored that Garmin has discontiued develpoment of there mobile XT product for Symbian because Nokia is offering their own product for free. But map updates will always work no matter what and in my opinion Garmin even without any more updates is and always will be a better mapping program than they very buggy Nokia/OVI Maps 3*..Lastly I am using Garmin on all my phones because Nokia/OVI maps 3.* turn by turn doesn't work properly on any of the phones I have, it is off by 250yards, (in back of) the actually position, (it tells you turn 250 yards after you already turned, crazy!) Whereas Nokia.OVI Maps V2.* never had that problem. I really wish Nokia would fix there current bugs before adding more buggy features...
    Message Edited by jbricci on 01-Feb-2010 12:04 PM
    Message Edited by jbricci on 01-Feb-2010 12:05 PM
    Message Edited by jbricci on 01-Feb-2010 12:08 PM

  • How to edit host file to fix error 3194

    how do i edit the host file to solve the error 3194 problem?

    Since host file is a system file
    You need to root your phone and then use root explorer > mount R/W > open with text editor
    May i know what actually you want to do ?
    Why do you want to edit host file ?
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

Maybe you are looking for

  • Forgot sysadmin password, how to reset?

    Hi We have oracle EBS R12.0.6 instance running.Somebody who has system administrator responisiblity changed, sysadmin password. When i query help>record history does shows 'system logon=unknown'. If auditing is not enabled, how do i know who changed

  • Since inception figs for actual cost

    Hi all, Please suggest something. I have one scenario in which i want to calculate inception figs ex. i have one project which starts from say 2000. I want to know what is the actual till the date. As of now for the period i am getting by using cal y

  • Subcontracting process plant to plant

    Dear SAP consultants, I have the following issue. There are 2 plants . A material is being sent from one plant to another plant via 57f4 challan for subcontracting operation. I want to map this in SAP. Please guide. Regards, Aaditya

  • Error in IDOC CREMAS for Bank data

    Hi, I am trying to upload vendor master through IDOC.I am also sending bank data in my IDOC.But it gives the below error Fill all required fields SAPLBANK 0100 BNKA-BANKA We have created the bank and details exist for that bank. We are giving Bank Co

  • Do not allow to run a program more than once

    Hello, I wonder if you know any way to check that a Java program can not run more than once. Let me explain, when the user runs a .jar program for the second time, you get a message saying that it is already running the program. Thank you so much.