Starting/Stopping Application Server Forms and Reports

Hello,
Are there any scripts (like dbstart and dbshut for Oracle DB) for starting and stopping "Application Server Forms and Reports". If not, any special suggestions?
I must automatically start this application on Unix. I know that during starting some steps must be performedy by the root user (export DISPLAY env variable and issue the "xhost +" command) and later the oracle user must do some things( export ORACLE_HOME and DISPLAY and issue the "opmnctl startall" command). Does anybody have scripts like that?
Regards,
Tim

If you're on 10.1.2, there is a script (requires an X Windows session). It's called runstartupconsole.sh, but you've got to update the install type to Portal in the ias.properties file if I remember right. It looks cool, but a shell script works better.
Here is a shell script that does some of those things. You still need to run xhost+ after running a display if you're using something that requires a DISPLAY to start. Someone may have a better one, but this one works.
We actually use one that starts all the different components individually except for Reports in rc scripts. That is the only thing we have that needs a Display set to start. So then xhost + is run & at the same time, the Unix sysadmin runs a script that start Reports from opmn.
I hope this is useful.
Cordially,
Steve
#!/bin/sh
# =======================
# Collect Global Variables
# =======================
# Collect server specific install location
export ORACLE_BASE=/u01/app/oracle
export MIDDLE_TIER_ORACLE_HOME=$ORACLE_BASE/product/ias/101202_EE/mt_maxportal_02
export INFRASTRUCTURE_ORACLE_HOME=$ORACLE_BASE/product/ias/101202_EE/if_maxportal_02
export SID=orcl
# Collect current PATH and LD_LIBRARY_PATH for reuse
export OLD_PATH=$PATH
export OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
# Unset variables that can cause problems starting or stopping
unset CLASSPATH
case "$1" in
start)
# =======================
# Start Infrastructure
# =======================
# Set environment to start infrastructure components
export ORACLE_SID=$SID
export ORACLE_HOME=$INFRASTRUCTURE_ORACLE_HOME
export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
export PATH=$ORACLE_HOME/bin:$OLD_PATH
# Start Infrastructure Database Listener
echo -n "Starting Infrastructure Database Listener: "
$ORACLE_HOME/bin/lsnrctl start
echo "OK"
# Start Infrastructure Database
echo -n "Starting Infrastructure Database: "
$ORACLE_HOME/bin/dbstart
echo "OK"
# Start Infrastructure OPMN managed components
echo -n "Starting Infrastructure OPMN Managed Components: "
$ORACLE_HOME/opmn/bin/opmnctl startall
echo "OK"
# =======================
# Start Middle Tier
# =======================
# Change environment for middle tier
unset ORACLE_SID
export ORACLE_HOME=$MIDDLE_TIER_ORACLE_HOME
export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
export PATH=$ORACLE_HOME/bin:$OLD_PATH
# Start Middle Tier OPMN managed components
echo -n "Starting Middle Tier OPMN Managed Components: "
$ORACLE_HOME/opmn/bin/opmnctl startall
echo "OK"
# Start Application Server Control
echo -n "Starting Application Server Control: "
$ORACLE_HOME/bin/emctl startifdown iasconsole
echo "OK"
stop)
# =======================
# Stop Middle Tier
# =======================
# Set environment for middle tier
unset ORACLE_SID
export ORACLE_HOME=$MIDDLE_TIER_ORACLE_HOME
export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
export PATH=$ORACLE_HOME/bin:$OLD_PATH
# Stop Application Server Control
echo -n "Stopping Application Server Control: "
$ORACLE_HOME/bin/emctl stop iasconsole
echo "OK"
# Stop Middle Tier OPMN managed components
echo -n "Stopping Middle Tier OPMN managed components: "
$ORACLE_HOME/opmn/bin/opmnctl stopall
echo "OK"
# =======================
# Stop Infrastructure
# =======================
# Set environment to start infrastructure components
export ORACLE_SID=$SID
export ORACLE_HOME=$INFRASTRUCTURE_ORACLE_HOME
export LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH:$ORACLE_HOME/lib
export PATH=$ORACLE_HOME/bin:$OLD_PATH
# Stop Infrastructure OPMN managed components
echo -n "Stopping Infrastructure OPMN managed components: "
$ORACLE_HOME/opmn/bin/opmnctl stopall
echo "OK"
# Stop Infrastructure Database
echo -n "Stopping Infrastructure Database: "
$ORACLE_HOME/bin/dbshut
echo "OK"
# Stop Infrastructure Database Listener
echo -n "Stopping Infrastrucutre Database Listener: "
$ORACLE_HOME/bin/lsnrctl stop
echo "OK"
reload|restart)
     $0 stop
$0 start
echo "Usage: `basename $0` start|stop|restart|reload"
exit 1
esac
exit 0

Similar Messages

  • Oracle Application Server Forms and Reports

    Dear All
    I want to install Oracle Application Server Forms and Reports on windows server 2008 32-bit
    how i can do that? and is there version for this new OS ?
    thanks in advanced

    You want to install "Oracle Portal, Reports, Forms, and Discoverer"
    Fusion Middleware Installation Planning Guide B32474-12
    http://download.oracle.com/docs/cd/E21764_01/install.1111/b32474/start.htm
    For OS information see My Oracle Support Doc "How to Find Certification Details for Oracle Application Server 10g and Oracle Fusion Middleware 11g [ID 431578.1]"
    Version 11gR1 (11.1.1.1+) can use Windows Server 2008 with SP1+
    If you find this helpful please mark it so.
    Best Regards
    mseberg

  • Oracle Application server Forms and Report services 10.1.2.0.2 on Windows 2

    Hi,
    I am installing the Oracle Application server Forms and Report services 10.1.2.0.2 on Windows 2003 R2, but the problem is that setup is not running on this Windows 2003 R2 version.
    Any idea about this why it is not running.
    Regards,
    Iftikhar

    You asked this
    How can i find what is the latest version that i can upgrade this install to
    I told you where to find the last update, I checked that version yesterday, the last update is 10.1.2.3, my misstake was to put a 0 before the 3.
    You can go to Patches & update>Quick Links to: Latest Patchsets, Mini Packs and Maintenance Packs>Oracle Fussion Middle Ware> Look for you OS versión and CPU> No clic just put pointer over the links and you will see the last one.
    And finaly could look for the CPU of Jul and Apr that as requirement they ask for version 10.1.2.3 (as I say I checked yesterday)
    Greetings.

  • Calling Reports from a Form - Application Server Forms and Reports Services

    Hi
    We currently are running App Server 10G Forms and Reports and Oracle DB 11G. Forms are running fine with the Apps Server but what I need to find out is how do I set the path for the .rdf files of the reports and how do I configure the Apps Server to present the Reports? I am sure we have to edit a .conf file and add the server name but not sure what to do or how to do it?
    ps. I am a newb but I managed to get both of Apps Server and Database configured on my lonesome so I am just missing the info on the Reports side of things.
    The Developer has asked the following questions :-
    We want to run a report created in report builder from forms by using the following command in forms;
    web.show_document(v_url,'_blank');
    what does v_url need to be - we need to find an example showing the v_web_address and v_rpt_server
    v_url := 'http://'||v_web_address||'/reports/rwservlet?server='||v_rpt_server||'+report=test_report.rdf &desformat=PDF&userid=user/pw@database'
    Do we need to make changes on the report server configuration and where should the rdf files reside?
    Regards

    Hiya
    Thanks for the message.
    I have started to look at the response you sent me. I have included an output of the rwservlet.properties file and the rep_s-lon-w-001_frhome1 file.
    rwservlet.properties
    SERVER_IN_PROCESS=YES
    RELOAD_KEYMAP=NO
    #DIAGNOSTIC=YES
    #TRACEOPTS=TRACE_ALL
    #TRACEFILE=rwservlet.trc
    #TRACEMODE=TRACE_REPLACE
    #SERVER=<reports_server_name>
    #IMAGEURL=http://<web_server_name>:<port_num>/reports/rwservlet
    #KEYMAPFILE=CGICMD.DAT
    #DBAUTH=RWDBAUTH.HTM
    #SYSAUTH=RWSYSAUTH.HTM
    #ERRORTEMPLATE=RWERROR.HTM
    #COOKIEEXPIRE=30
    #ENCRYPTIONKEY=reports9i
    #DIAGBODYTAGS=<reports_servlet_help_file_title>
    #DIAGHEADTAGS=<reports_servlet_help_file_body_tag>
    #HELPURL=<url_of_customized_help_file_for_reports_servlet>
    #SINGLESIGNON=YES
    OID_ENTITY=%REPORTS_OID_ENTITY%
    #ALLOWHTMLTAGS=NO
    #REPORTS_NETWORK_CONFIG=rwnetwork.conf
    #OIDCON_INIT=10
    #OIDCON_INCREMENT=10
    #OIDCON_TIMEOUT=0
    SERVER=rep_s-lon-w-001_FRHome1
    rep_s-lon-w-001_frhome1
    <?xml version = '1.0' encoding = 'ISO-8859-1'?>
    <!DOCTYPE server PUBLIC "-//Oracle Corp.//DTD Reports Server Configuration //EN" "file:C:\oracle\FRHome_1/reports/dtd/rwserverconf.dtd">
    <server version="10.1.2.0.2">
    <cache class="oracle.reports.cache.RWCache">
    <property name="cacheSize" value="50"/>
    <!--property name="cacheDir" value="your cache directory"/-->
    <!--property name="maxCacheFileNumber" value="max number of cache files"/-->
    <!--property name="ignoreParameters" value="parameter names to be ignored in constructing cache key, separated by comma ','"/-->
    </cache>
    <!--Please do not change the id for reports engine.-->
    <!--The class specifies below is subclass of _EngineClassImplBase and implements EngineInterface.-->
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="90000">
    <!--property name="sourceDir" value=c:\reports/-->
    <!--property name="tempDir" value=c:\reports_temp/-->
    <!--property name="keepConnection" value="yes"/-->
    </engine>
    <engine id="rwURLEng" class="oracle.reports.urlengine.URLEngineImpl" initEngine="1" maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000"/>
    <!--security id="rwSec" class="oracle.reports.server.RWSecurity">
    <property name="securityUserid" value="%PORTAL_DB_USERNAME%/%PORTAL_DB_PASSWORD%@%PORTAL_DB_TNSNAME%" confidential="yes" encrypted="no"/>
    <property name="oidEntity" value="%REPORTS_OID_ENTITY%"/>
    </security-->
    <!--destination destype="oraclePortal" class="oracle.reports.server.DesOraclePortal">
    <property name="portalUserid" value="%PORTAL_DB_USERNAME%/%PORTAL_DB_PASSWORD%@%PORTAL_DB_TNSNAME%" confidential="yes" encrypted="no"/>
    </destination-->
    <destination destype="ftp" class="oracle.reports.plugin.destination.ftp.DesFTP">
    <!--property name="proxy" value="proxyinfo.xml"/-->
    </destination>
    <destination destype="WebDav" class="oracle.reports.plugin.destination.webdav.DesWebDAV">
    <!--property name="proxy" value="proxyinfo.xml"/-->
    </destination>
    <!-- By default server will use rwnetwork.conf as network config file
    Use this element to override the same -->
    <!--networkConfig file="rwnetwork.conf"></networkConfig-->
    <job jobType="report" engineId="rwEng"/>
    <job jobType="rwurl" engineId="rwURLEng"/>
    <notification id="mailNotify" class="oracle.reports.server.MailNotify">
    <property name="succnotefile" value="succnote.txt"/>
    <property name="failnotefile" value="failnote.txt"/>
    </notification>
    <!--notification id="wfNotify" class="oracle.reports.server.WorkflowNotify">
    <property name="connStr" value="%WF_DB_USERNAME%/%WF_DB_PASSWORD%@%WF_DB_TNSNAME%" confidential="yes" encrypted="no"/>
    </notification-->
    <log option="noJob"/>
    <!--jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <property name="repositoryConn" value="repo_db_username/repo_db_password@repo_db_tnsname" confidential="yes" encrypted="no"/>
    </jobStatusRepository-->
    <!--trace traceOpts="trace_all"/-->
    <connection maxConnect="20" idleTimeOut="15">
    <orbClient id="RWClient" publicKeyFile="clientpub.key"/>
    </connection>
    <queue maxQueueSize="1000"/>
    <!--jobRecovery auxDatFiles="yes"/-->
    <!--
    The value of the 'identifier' element is encrypted and is of the form SERVERACCESSKEY_USER/SERVERACCESSKEY_PASSWORD
    SERVERACCESSKEY_USER and SERVERACCESSKEY_PASSWORD in <server>.conf and targets.xml
    file should match for Reports EM pages to display data correctly.
    Corresponding entries of username and password in targets.xml:
    <Property NAME="Password" VALUE="SERVERACCESSKEY_PASSWORD" ENCRYPTED="FALSE"/>
    <Property NAME="UserName" VALUE="SERVERACCESSKEY_USER" ENCRYPTED="FALSE"/>
    -->
    <identifier confidential="yes" encrypted="yes">ZgZCDkywAUaHwMnb+A6YTg0UVX12puJiKZe8PYR1NHiooqnkbstGLcLqn5sWJCnWjREALf9UVz0N/P7HpgkTrPTCwgYirXmx1oZKCWkodsu06FNAJJ8ioXQCBWAG+SeHElcR5At9pTaiZZjXv8MtUP6cEUcH//E5eI4JnO/PLfS0u0OmElFdQn9lsDYF/ETYcK7QVswlN0LAE0yUqCC7bI+mVhhSkW80XXnh5oPISEiMwb+KcNW2T2zz+m1KLJAQFDk0S3cCIMaj6NBF7yXmoJOoGRNmfQBk8HHfx7Z6+l//BZP/hswX5NojatpWa46uDU8HNtNfcLSKxSUHH64g/FaEqzoXIXbIVWuGVwUA4gRUulJ0Ew0HVtyXC5wsnUW5zD0HnUFYoKXeNssDrT6HapRoEwSYE3n2ogux3vOefUXkPy5hsPCc9I3R5tmdljjuUGxmF1QXckIv12aMw0+JGIyevbv7X33vhJc=</identifier>
    <!--pluginParam name="mailServer">%MAILSERVER_NAME%</pluginParam-->
    <!--pluginParam name="proxy" type="file">proxyinfo.xml</pluginParam-->
    <pluginParam name="xmlpds" type="file">xmlpds.conf</pluginParam>
    <pluginParam name="jdbcpds" type="file">jdbcpds.conf</pluginParam>
    <pluginParam name="textpds" type="file">textpds.conf</pluginParam>
    </server>
    If our Apps server is s-lon-w-001.homes.local, where do I make the changes in these two files to make the reports to run. You can see I have defined the reports on the C: on the server.
    Many thanks in advance!

  • Application Server : Forms and Reports Services

    Hello
    Currently I have a three tier architecture in production for a client, running an forms and reports applications called HREF
    1. client browser with Jinitiatior,webutil running 10g forms and reports app,
    2. a 10g OAS with forms and report services and infrastructure components installed
    3. a 10g Enterprise Edition Database Server running a 16gb db.
    There is a new dev environment to be made on a much smaller scale with the same HREF application but it will only be about 2GB of data at the back end.It has to be much more cost effective, so I am looking at both reducing license costs and scale throughout.
    So could I use........
    1. The same client browser with Jinitiatior,webuti running 10g forms and reports app, -- running fmx and rdf can that be free?
    2. Do I need a separate appliaction server install ? -- is OAS necessary , what is the most cost effective option (just install forms and reports services?)
    3. Can I use Oracle Express Edition 10g -- free to use
    Thanks for any help.

    For development you don't need to pay license fees, so you could use Oracle Enterprise Edition as well.
    Have a look at the OTN License agreement e.g. here:
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing, testing, prototyping and demonstrating your application, and not for any other purpose. If you use the application you develop under this license for any internal data processing or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must obtain a production release version of the program by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the programs. Program documentation, if available, may accessed online at http://www.oracle.com/technetwork/indexes/documentation/index.html.
    Install Forms & Reports and the Database on Oracle Enterprise Linux and you won't even have to pay licenses for your OS.
    cheers

  • Application server forms and reporte

    We have linux server redhat5, we installed the forms and reports 10g, now its working fine but client needs to change the with out port,
    so we want use with out port in our url: http://<hostname>/forms/frmservlet?config=webutil
    How to configure the default Port in Forms and Reports server, currently "http://ip:7777/forms/frmservlet?config=webutil" is being used,
    but it is wanted the following instead: "http://ip/forms/frmservlet?config=webutil"
    any one help me in this .
    regards
    lala

    Your question is marked as ANSWERED, so people don't want to look here..
    I don't understand why do you need this? Just link change? Does apache redirection can help you, or you want to achieve something else?

  • Oracle Application Server Forms and Reports Services 10g (9.0.4.0.1)

    I am Try to install de Forms and service y an Windows 2003 Machine but when the installer is ready for install al package the Oracle Net Configuration Assitant send me this Error...
    Environmental error detected: The current Oracle Home and the Oracle Home passed from the installer are not the same. Oracle Net Configuration Assistant cannot continue.
    It is recommended that you continue installation without completing Oracle Net configuration. Once the installation is complete run the Oracle Net Configuration Assistant separately after checking that the ORACLE_HOME environment variable is not set (preferred on Windows platforms) or that it is set to the correct Oracle Home.
    Oracle Net Services configuration failed. The exit code is 1
    And we cannot continue installing the Oracle Form And Service.
    i Hope Some one Help Me to Fix it.
    Thanks So much...

    thanks a lot, I find the enviroment variable using the set command, my problem was that I never restart the computer, because I deleted this from the system form but in the system never was removed and the command set help me to find the problem.
    I install succesfully.
    I am very grateful

  • How to email reports via SMTP server FORMS AND REPORTS 6i and databse 8i

    Dear All,
    through reports builder reports are build but i need to email reports via SMTP server is it possible in 6i are not?if yes the how please rep asap

    If it will be a scheduled report, you can create a batch file to run report with reqd parameters and generate it's pdf in a oracle directory.
    Then schedule the batch file on oracle database pc, (thru task scheduler if OS is windows),
    Then a email procedure will be required which will pick up the pdf from oracle directory, attach it and send mail.
    Even the email procedure can be scheduled thru oracle job, but the OS batch schedule time and Oracle Job time should be handled as some gap will be needed between the two.
    As for the email smtp procedure with attachments, you can find one in this forum or try googling it.
    Regards,
    Amol

  • Can't download forms and reports server

    for 2 days now i have tried to download this.
    from http://www.oracle.com/technology/software/index.html
    in the middleware section I select "Forms & Reports Services"
    then "Oracle Application Server Forms and Reports Services 10g (9.0.4.0.1) for Microsoft Windows"
    I get the license page and accept
    I click the link "OracleASFormsReportsServices10g_90401_Windows.exe"
    and get
    "We're sorry, the page you requested was not found.
    We have recorded this error (404) to help us fix the problem.
    You may wish to try again using one of the tools below. "
    Is this link rot? Is there another place to download from?

    Try a different browser.

  • 10g Forms and reports standalone - 64 bit software available?

    Hi All,
    Is oracle application server 10g forms and reports standalone softaware available in 64-bit version?
    Please provide the link to download thye same.
    Thanks,
    Anand.

    1GB of RAM seems to work better. I just upgraded to 1GB from 512MB on a new ThinkPad running XP, 10g release 2 database, and 10.1.2 Application Server (Forms and Reports version). When I had 512, something broke and I wound up resetting the factory defaults using the IBM recovery tool. When I added the extra memory, everything went well. On the other hand, a four-year-old Dell desktop with 512MB works okay. Whatever.

  • Forms and Reports Services

    Hi,
    I installed the Oracle Application Server Forms and Reports Services v9.0.4; however I would also like to have the mod_pl/sql portion. Where can I get this from? Do I need to install the EE version?
    Thanks in advance.

    OEM
    http://download-east.oracle.com/docs/cd/B13597_05/web.904/b10381/manage.htm#i1008526
    or edit the dads.conf file directly
    http://download-east.oracle.com/docs/cd/B13597_05/web.904/b10381/confmods.htm#sthref1009

  • Installation Requirements for Oracle Apps Forms and Report Services OEL

    Hi all.
    Where can i find detail information about the installation requirements for Oracle Application Server Forms and Report Services under OEL 4 (Oracle Enterprise Linux) or OEL 5?
    It seems there's only information about Oracle Application Server in general, not the reduced or partiuclar distribution, Forms and Reports Services.
    Thanks in advance ....!

    I already saw the documentation for Forms and Reports Services Installation.
    This thread is about the specific requirements, if any, for this product on OEL 5 or OEL 4.
    See, there's a note on Metalink(546174.1) regarding some specific issues about installing Oracle Application Server on OEL5, but i'm not sure if this involves Oracle Application Server Forms and Reports Services.
    The idea is to know if these issues applies to this specific distribution .
    Hope you understand my question now. Thanks in advance

  • OAS Forms and Reports Services 10g (9.0.4.0.0)  Standalone Inst for Linux !

    Hi,
    Is available Oracle Application Server Forms and Reports Services 10g (9.0.4.0.0) 'Standalone' Install Option for Linux platform ?
    If yes, where to download it.
    Regards
    Nelson

    http://www.oracle.com/technology/software/products/forms/index.html

  • 10g Forms and Reports Stand-Alone Install for Demo Purposes

    Hi,
    My boss asked me to set-up an Oracle 9i (9.2.0.0) database and OracleAS 10g (9.0.4) Forms and Reports standalone on a laptop she wants to use to demonstrate our Forms and Reports application for a potential customer.
    The laptop is P4 with 512MB RAM, running Windows 2K Pro.
    Has anyone tried this before? Any suggestions appreciated.
    TIA,
    Jim

    1GB of RAM seems to work better. I just upgraded to 1GB from 512MB on a new ThinkPad running XP, 10g release 2 database, and 10.1.2 Application Server (Forms and Reports version). When I had 512, something broke and I wound up resetting the factory defaults using the IBM recovery tool. When I added the extra memory, everything went well. On the other hand, a four-year-old Dell desktop with 512MB works okay. Whatever.

  • I need to update my knowlege about form and reports.

    I was working a couple years ago in Forms and Reports 6i. Later I was working in another enviroment until learn my english. Now, I will like to know. What is the last version of Forms ? How can I download and What is the base database free for to run ? I will like start to work in Forms and Reports again. Please Help me...

    Hi,
    Install Oracle Developer Suite 10g Release 2. It has forms and reports builder which are Integrated Development Environments(IDE) for forms and reports repectively.
    Oracle Application Server 10g Release 2 (Contains Forms and Reports 10.1.2) is a Server and is used for deploying your forms and reports.
    For database you can install Oracle 10g database Express edition.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Can you wrap an image with a link in an html email signature?

    When I cite a remotely hosted image in an html signature, and try to make that image a link, the link is ignored and the just the image is shown. e.g.: <a href="https://www.facebook.com/pages/Ubiquia/146019678805381" target="_blank"> <img style=" pos

  • Brand new iPad fails sync due to "computer no longer authorized"

    Hello all, I have a brand new iPad 64GB that I can't sync to my existing iTunes library.  Every time I try, I get an error that says, "The iPad could not be synced because this computer is no longer authorized for purchased items that are on this iPa

  • Outlook 2007 doesn't connect hub server automatically

    We have exchange 2010 installed for our organization. We have two HUB transport mail servers in our system for load balancing purpose. When we configure Microsoft outlook in a workstation then it connect with hub02 even if we select hub01 manually. w

  • Shipping Point Vs Loading Point

    A little clarity is needed btn the two...I think shipping point could be equated to a control office where all deliveries have to go through. Loading point is a physical location that deals with specialized (eg within car spare parts divison - sensor

  • Booting issues

    Hello folks, I have Windows 7 Machine, I am trying to remove the 7 from my machine and planning to make it as Linux machine. Now i installed Linux 5.4 32bit in my machine, while installing linux i selected REMOVE THE EXISTING PARTITIONS AND CREATE DE