OracleTuxedo 11g present SVCTIMEOUT Block to call package in Oracle 9i

Good Afternoon
It shows me an error SVCTIMEOUT calling a stored procedure contained in a package. Stop the Tuxedo process and the service does not continue to work, killing the process.
Running the package in SQLPlus working properly
Annex the error
160707.tuxfyc01!Pre_Activacion_PSP.22567.1.0: gtrid x0 x4fa19ab1 x1: sCMercado [1], sCHomeArea [1010], sCMarca [CELSA], sCModelo [NTT3], shTipoServicio [1], sCTipoCentral [2], sCTecnologia [GSMTP], sCSerial [355772047009936] , sCUsuario [PSP]
160801.tuxfyc01!BBL.22554.1.0: LIBTUX_CAT:541: WARN: Server g_pspcc01/408 terminated
160801.tuxfyc01!BBL.22554.1.0: LIBTUX_CAT:557: INFO: Server g_pspcc01/408 being restarted
160801.tuxfyc01!Pre_Activacion_PSP.22577.1.0: 05-02-2012: Tuxedo Version 11.1.1.2.0, 64-bit
160801.tuxfyc01!Pre_Activacion_PSP.22577.1.0: LIBTUX_CAT:262: INFO: Standard main starting
160801.tuxfyc01!Pre_Activacion_PSP.22577.1.0: LIBTUX_CAT:476: WARN: Server 201/408: client process 22572: lost message
160801.tuxfyc01!Pre_Activacion_PSP.22577.1.0: LIBTUX_CAT:477: WARN: SERVICE=ST_A_PreActPSP MSG_ID=0 REASON=server died
Added Parameters UBBCONFIG
IPCKEY 150000
DOMAINID domain_tuxedo_fyc
MASTER FYC_PSP
MAXACCESSERS 1000
MAXSERVERS 210
MAXSERVICES 1300
MODEL MP
#OPTIONS LAN
#UID 174
#GID 101
CMTRET COMPLETE
PERM 0600
MAXACLGROUPS 20
MAXGTT 1000
MAXGROUPS 100
MAXNETGROUPS 8
MAXMACHINES 256
MAXQUEUES 200
MAXCONV 1
LDBAL N
MAXBUFTYPE 16
MAXBUFSTYPE 32
SCANUNIT 10
SANITYSCAN 12
DBBLWAIT 9
BBLQUERY 24
BLOCKTIME 150
SYSTEM_ACCESS FASTPATH
Thanks in advance for all the help I can provide
Luis Mayora
Caracas - Venezuela
FYC Soluciones Integrales C.A.

Hi Todd
Thanks for the attention given to this case
For TUXEDO 11 64 bits, I am working with Oracle precompiler Pro * C version 11g accessing an Oracle 9i database
The call to service via the WSL am doing through a TUXEDO client program made in Microsoft Visual C++
WSL SRVGRP="WSLGRP1"          SRVID=501
CLOPT="-A -t -- -n //10.162.14.97:20000 -m 1 -M 10 -x 10 -p 20000 -P 20010"
RQPERM=0666     REPLYQ=N     RPPERM=0666     MIN=1     MAX=10     CONV=N
MAXGEN=60     GRACE=3600     RESTART=Y
The SVCTIMEOUT is located at 120 but just call the Oracle 9i package compiled in Pro * C and then TUXEDO service crashes
Annex code to call a Oracle 9i Package from TUXEDO service ST_A_PreActPSP
userlog(" Obtuvo datos del FML ***************> ");
userlog(" sCMercado [%s], sCHomeArea [%s], sCMarca [%s], sCModelo [%s], shTipoServicio [%d], sCTipoCentral [%s], sCTecnologia [%s], sCSerial [%s] , sCUsuario [%s] ", sCMercado, sCHomeArea, sCMarca, sCModelo, shTipoServicio, sCTipoCentral, sCTecnologia, sCSerial, sCUsuario);
EXEC SQL WHENEVER SQLERROR GOTO ERR;
EXEC SQL EXECUTE
BEGIN
prepago_cies.obtnumerodisp(:sCMercado,:sCHomeArea,:sCMarca,:sCModelo,to_char(:shTipoServicio),:sCTipoCentral,:sCTecnologia,:sCSerial,:sCUsuario,:nmovil);
END;
END-EXEC;
Also Annex of the UBBCONFIG where I place
*SERVICES
DEFAULT: AUTOTRAN=Y TRANTIME=90 SVCTIMEOUT=120
ST_A_PreActPSP
Platform
Intel Pentium 4 HT 64 Bits
Oracle Solaris 11 64 bits
Tuxedo 11 Intel 64 bits
Oracle 11g for Solaris 64 bits Intel without database
Oracle 9i database in another server
Memory RAM 2 GB
In advance thank you for attending the event and appreciate all the help I can provide
Luis Mayora
Caracas - Venezuela
FYC Soluciones Integrales C.A.
Edited by: lmayora on 03-may-2012 7:18
Edited by: lmayora on 03-may-2012 7:52

Similar Messages

  • Calling Report from Oracle form 11g

    I am new to Forms 11g, trying to call report from Oracle forms 11g .
    I want to call report from oracle forms, but its giving error.
    Below is the code
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('empreport'); -- report node in forms builder
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, BATCH);
    set_report_object_property ( repid, report_filename, 'empreport.rdf' ); -- report name
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'RptSvr'); -- report server name
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    if
    rep_status = 'FINISHED'
    then
    WEB.SHOW_DOCUMENT('http://inorasrv-pc:7001/reports/dtd/rwservlet/getjobid='||v_rep||'?server='||'RptSvr','_blank');
    else
    message ( 'error while running reports-object ' || error_text );
    message ( ' ' );
    clear_message;
    end if;
    end;
    Above code giving following error :
    Unable to connect to report server RptSvr
    I think my report servername is wrong
    Where to find report server name in 11g.
    I am Using weblogic server, so can i give weblogic server name
    Thanks in advance.
    Edited by: parapr on Aug 17, 2012 1:52 AM
    Edited by: parapr on Aug 17, 2012 3:21 AM

    Hi,
    You have to have the report server
    a. Installed and configured
    b. Running.
    See
    http://docs.oracle.com/cd/E21764_01/bi.1111/b32121/pbr_strt001.htm
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_verify004.htm
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_conf003.htm#i1007341
    If you are using rwservlet then you will find the name from the Configuration file referred to in the last link.
    Cheers,

  • Use Chains, or PL/SQL Block of calls.

    I currently have a half dozen cron jobs that kick off different batches of processing. Originally, these were generally a sequence of C programs that did different operations (fetch student info from student record system and load into IdM system, process directory changes, etc). Over the years, most of the program logic has been rewritten as PL/SQL packages and the cron jobs basically drop into SQL*PLUS and do things like:
    prompt "Do Spbpers delta"
    execute simon.employee_maint.Spbpers_Delta;
    commit;
    prompt "Do People.Update_From_Employees"
    execute simon.People_Maint.Update_From_Employees;
    commit;
    prompt "Do SGBSTDN_Full"
    execute Simon.Bstudent_Maint.Sgbstdn_Full;
    commit;
    prompt "Do SPRIDEN_Full (Student)"
    execute Simon.Bstudent_Maint.Spriden_Full;
    These procedures generally connect to other Oracle databases and get or push data around, and are hitting a number of different databases. The biggest of these scripts has 45 execute statements in it. (This script started in 1992.....)
    Anyway, we are getting some issues with and it is time to clean things up. This is my first foray into Scheduler and I am hoping to get some philosophical guidance on how best I should restructure things. One obvious thing, is to break up the big script into a couple of smaller ones. In some cases, order matters and in other, it doesn't - although I would prefer not to have several jobs hitting the admin system at the same time.
    I have been playing a bit with the scheduler, mostly via the EM web interface, and have come up with a few questions - some pretty specific, others more stylistic.
    1) Procedures as jobs - it seemed to want stand alone procedures, and NOT procedures that were part of a package. True?
    2) How fine grained should I make the steps in a chain? For example, I call 5 procedures in the same package (student_maint), each to to some specific aspect of the processing (each represents a different source table). Should I create 5 programs, and make them 5 steps in the chain, or just have 5 calls in a PL/SQL block in one program?
    3) I don't care what order these 5 run in, but I don't want more than one running at once - thoughts on approaches to this?
    4) I will on occasion want to turn off sets of these tasks (like when the remote system is going to be down for an upgrade) - how best to structure things to make this easy to do (and how do I do this?)
    The Scheduler system seems to be a very rich and flexible environment, with a lot more options and features than I need, but I feel I should do more than just scheduling a single program with 45 procedure calls in it....

    Hi,
    I can try to answer some of these questions
    1) Procedures as jobs - it seemed to want stand alone procedures, and NOT procedures that were part of a package. True?
    False. The EM interface does have this restriction, but if you use dbms_scheduler directly there is no such restrisction. Even in the EM interface you can workaround this by using a PL/SQL block which calls the package procedure (although argument handling is a little less flexible this way).
    2) How fine grained should I make the steps in a chain? For example, I call 5 procedures in the same package (student_maint), each to to some specific aspect of the processing (each represents a different source table). Should I create 5 programs, and make them 5 steps in the chain, or just have 5 calls in a PL/SQL block in one program?
    The answer to this depends on what you are doing. If the 5 steps run serially one after the other, using one pl/sql block may be easier. If you want some pieces to run in parallel, then creating a simple chain is better. A bit more effort spent setting up the chain will result in much faster execution times if you can run pieces in parallel.
    3) I don't care what order these 5 run in, but I don't want more than one running at once - thoughts on approaches to this?
    This has come up on the forum a few times and there are basically two different approaches. One is to use dbms_lock to ensure that only one runs at a time. This is the easiest way and the way that I recommend.
    The other way is to set up a job class with a resource consumer group and put into effect a resource consumer plan that specifies that only one session from that resource consumer group can run at a time. This is easily extensible to cases where you want 2 or more running at a time from a certain job class (which dbms_lock doesn't support).
    Code on how to set this up and more discussion is located here
    Run Jobs One After Another
    4) I will on occasion want to turn off sets of these tasks (like when the remote system is going to be down for an upgrade) - how best to structure things to make this easy to do (and how do I do this?)
    Jobs and programs can be disabled. But if a job or chain tries to run a disabled program it will result in a failure (though it will be retried if you say that the job can be restarted).
    [ 5) ] The Scheduler system seems to be a very rich and flexible environment, with a lot more options and features than I need, but I feel I should do more than just scheduling a single program with 45 procedure calls in it....
    The Scheduler was intended to accommodate a wide range of usage from simple one-off background tasks to complex sequences of interrelated tasks. As with any other software development you should use it in the simplest way possible that does what you need it to do.
    Hope this helps. Feel free to post any further questions.
    -Ravi

  • Non-blocking J2EE calls

    We wish to connect fat clients (in our case Powerbuilder) to a J2EE environment (Weblogic). We also need to make some of the calls from the fat client non-blocking (asynchronous). With many clients, JMS was rejected as a mechanism.
    Our first solution, which works as a prototype, was to package a Java bean as an OLE object and deploy it to the client. This bean could make the calls non-blocking. However there are registry issues (the packaging implies a pre-defined directory structure), we need a JRE on every client and 15Mb of weblogic jars (aaargh), so it only really works as a prototype.
    The next (current) solution is a C dll that can be called from Powerbuilder and uses a socket to talk to a Java J2EE Gateway on the server. This Gateway makes the system non-blocking and calls the EJBs. This is clearly easier in terms of configuring the client.
    Ideally we would like to drop the Gateway by finding a non-blocking way to get into J2EE from the C dll but the only methods we have thought of:
    - simulating an HTTP servlet call
    - SOAP
    are synchronous (or appear to be, my knowledge of SOAP is limited).
    Has anyone come across other ways of getting non-blocking communications with J2EE?

    CORBA, this is what it was designed to do, but it is not not a light weight solution.

  • Re: Unlimited anytime call package?

    I've recently upgraded to unlimited anytime plan as part of my broadband and calls bundle.
    However in 'My BT' there is an inconsistency.
    It says I am on Unlimited Anytime plan and the bullets suggest that I am only on unlimited weekends. See below.
    I'm now confused.
    My understanding was that all calls from my main landline phone would be free.
    Is this correct?
    Unlimited Anytime Plan
    Part of your Broadband and Calls bundle
    Your call plan 
    Unlimited calls to UK landlines from midnight Friday to midnight Sunday, for up to an hour
    Inclusive calls to 0845 and 0870 numbers at weekends
    Get BT privacy, BT answer 1571, and BT 1471 calling features at no extra cost
    24/7 help and support for your home phone line
    Learn more

    Hi there Donh and welcome to the forums. 
    The bullets you mention and show are unlimited anytime calls, if it was weekends unlimited only Sat & Sund  would be blocked out.
    Don't forget free!! for up to an hour, redial after 55 minutes.  01 02 03 and 0845 0870 only and not channel islands.
    Patty-L
    EDIT   Ohhhh   I must have misread I see what you mean now there must be a mistake.
    You could try online chat, find the link at the top left of the bills and call packages board.

  • I am recieving calls from a solicitor. Show up as no caller Id. I want to block all calls that do not show caller Id. Can I do that? I am on the do not call list

    How do I block all in coming calls that do not show on my caller Id. Phone says "no caller id" This particular call is from a place selling septic tank cleaner. They leave an automated voice mail. They are calling me over and over. I am on the national do not call list but that's no help. Because the caller id doesn't show anything I can't even report them.
    I remember in the past calling a number and before my call would go thru I would have to enter my phone number so the party I was calling knew who was calling them. That is what I want to do. I want to block all calls from "no caller id" "number unavailable" Just FYI my phone is an IPHONE 5 and I am on Verizon.
    Any help would be appreciated.
    Thanks

        itbitybob, good day!
    Thank you for taking the time to reach out to us today. I know how frustrating it can be getting phone calls from "no caller id" numbers. We do have an option that is called Family Base that will allow you to block unknown numbers, private numbers, or caller id. This link will provide you with the full details of this option. http://vz.to/1gIklla I hope this is able to answer your question. If you have further questions please feel free to reach back out to us at any time.
    KevinR_VZW
    Please follow us on Twitter @VZWSupport 

  • How can I block 'no caller id' calls from contacting me?

    Over the last couple of days someone has got a hold of my number, and has been calling me with a private number. I want to know if there is a way I can block all calls on my phone that come from a private 'no caller ID' number, and only allow ones that have a caller ID through. I have tried contacting my service provider Telstra which they said the most they can do is put me on the do not call register (which doesn't help my situation at all, as the person isn't a telemarketer). Does anyone have any ideas about how to fix my problem?
    Thanks.
    (I have an iPhone 5 iOS 7.1.1 and my service provider is Telstra Australia)

    There is no Third Party App you can load onto an iPhone that will be allowed to take over your iPhone's Phone without jailbreaking your device (which cannot be discussed here nor would I ever recommend doing it).
    One feature you can use is the Do Not Disturb feature.  You can set it to allow calls from your Favorites then add all of your people to your favorites, but that is not quite what you are asking for.

  • How to call a package in Oracle

    I'm trying to call a package in oracle
    (this is the oracle way of calling it :
    begin pck$xl.get_year_low_high_to_date(:compid, 20010801 , 20020108 ",:year_low,:year_high,:year_average,:low_date,:high_date); end;)
    but i can't get it right.
    I'm new to package calling in Oracle from Java, till now i only worked with SQL statements without parameters of that kind, can someone help me with this?
    ps the ":compid" is a parameter i have to fill in and provide...
    thank you very much

    ok here is a test i do...
    but still doesn't work something about the bindvariables (check errorlog). I know a bit jdbc and i understant what you mean, but the problem is i don't know how this should go :(
    please advise
    import java.sql.*;
    import java.util.*;
    import java.text.*;
    import java.io.*;
    * @author  U97488
    public class test {
        public static void main(String[] args) {
            try{
                ConnectionSherpa cs = ConnectionSherpa.getInstance("ConnectionSherpa");
                Connection conn = cs.getConnObj();
                String sSQL = "begin?; pck$xl.get_year_low_high_to_date(?, 20010801, 20020801 ,:year_low,:year_high,:year_average,:low_date,:high_date); end;";
                CallableStatement stmt = conn.prepareCall(sSQL);
                stmt.setString(1, "BRU10");
                System.out.println(stmt.toString());
                if(stmt.execute(sSQL)){
                    System.out.println(stmt.getString(2));
            }catch (Exception e){
                e.printStackTrace();
    }StackTrace:
    java.sql.SQLException: ORA-06550: Regel 1, kolom 6:
    PLS-00110: Bindvariabele '1' is niet toegestaan in deze context..
            at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
            at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:208)
            at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
            at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1451)
            at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:862)
            at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:1839)
            at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1764)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2354)
            at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java:909)
            at com.kbcsecurities.taminoupdate.servlets.test.main(test.java:28)

  • How call procedure or package from Oracle BI Publisher 10.1.3.2.1

    Hi Gurus,
    I need to call a procedure or package from Oracle BI Publisher 10.1.3.2.1 by passing parameters, I do it because it would be easier to fill a table as the report that asks for is too complex (8 breaks, 5 dblinks, 20 tables, etc).
    I'm not using the Oracle XML. Review include the following solutions:
    Re: Stored procedures and dynamic columns
    Re: Is it possible to use Stored Procedures in BI Publisher GUI?
    Re: PL/SQL Stored Procedure w/ XML Template?
    But none of them useful for me was the level of complexity.
    Best regards.

    Hi Vetsrini,
    I write the sentence as it showed in the previous thread
    select from whc_kk_v2.whc_p_kk_publisher (pv_msgerror =>: msgerror,*
    pv_pro1 =>: prov_1,
    pv_pro2 =>: prov_2)
    run when I get the error BIP
    ORA-00933: SQL command not properly ended
    Show me I'm doing wrong, or who may be causing the error. I tried everything but does not leave, please your help.
    Best regards

  • Issue in OBIEE 11g Presentation service.

    Hi All,
    I found a problem in OBIEE 11g Presentation service, i.e., When i created an analysis with few columns in the criteria, it showed proper result, but when i deleted one column and then again add the same column in the criteria, result did not show the added column.
    Anyone else find this issue?
    Please share your views..
    Regards.

    On the left hand corner you will see list of views in the report, on a basic analysis you will see title and table view. Select the table view and click on edit ( pencil symbol ). A new page opens up, scroll down a little and you will see the columns included and columns excluded sections. Make sure the column that you are trying to add to the report is not present in the excluded list. If it is, drag and drop it above.
    Answer points if question is answered.
    Thanks,
    -Amith.

  • Blocking ole call

    Is there a way to do a "blocking ole call", i.e. making the calling code stop until the ole-application has exited? I start Word and load a document and then do stuff the file after the user has exited.
    I tried using a blocking host command with callback on the document but it had an annoying cmd windows always visible and I would like to avoid digging into the registry to find the word executable.
    BTW: what is the difference between OLE2 and CLIENT_OLE2?

    client_ole is the implementation of OLE interaction
    in WebUtil. When moving your apps the Web, all
    previous client-server ole calls would occur on the
    server. With attaching WebUtil and a simple search
    and replace action you can make it work on the Web
    then. I am misunderstanding something or aren't the 9i/10g OLE2 calls already happening on the client? At least the stuff I have tried with OLE2 pops up the application on the client and not on the AS-machine.
    From teh top of my head, I think that the host
    command in WebUtil allows you to do host command
    calls on the client without popping up a DOS window.Yes, but the problem is that i need the window (I run the filename and let windows take care of the rest through extension association), but I would just like to make it more invisible to the user.
    -Nik

  • Strange download size of on calling packaged stored procedure in VB6

    Hi,
    I tried to use VB6 to call oracle stored procedure with ref cursor as output parameter under a package in 10g database (10.1.03). Oracle client uses windows 9.2 / 10.1.02 (Oracle OLEDB Provider) . I found that when the package size increases(> 1000 lines codes), the data size transfer from database to VB client also increases. I try to trap the binary data flow between VB6 and database when calling packaged stored procedure. I found that VB6(or oracle client ??) will first download package spec then execute the requested stored procedure. This may explain the cause of increasing size.
    However, this large download size for calling only one of the procedure will make my application run slowly when my application uses the package much. How can I solve this problem ? Does this relate to oracle client(p.s. this problem disappear when using Microsoft OLEDB Provider)?
    Thanks
    Steven

    You can use a wrapper to get compiled code and if it's 10g you can do even more by putting it in a library.
    OLEDB from VB6 still using Oracle 'Client' as you call Oracle NET.

  • IPhone Safari block all calls

    iPhone Safari block all calls
    When i goin to internet in Safari or AppStore at iPhone, people dont colled me..
    Internet(1) + phone talk(2) = only (1) or (2)!
    I buy iphone becose i ned internet and i must every minute talkin by phone, when people call to me
    But iphone dont work as telephone when i use Internet!
    I`m from russia, my mobile operator MTS
    Letter from MTS operator:
    You may use your iphone only for internet surfing or only use as phone at one time
    iPhone is innovation device of Class B, becouse calls and internet you may use only as 1 and 2... but no 1+2 at once time
    iPhone not device of Class A, and its problem of Apple, who create iPhone,
    sorry but we dont help you.
    People! please help me! =) Pleese>>>
    Say.. When you in Safari, you recieve calls?
    Its really problem of iphone or its problem of my mobile operator? (russia, MTS)
    Thanks

    Thanks for info.. =)
    In russia 3G is comin, in my region 3G and EDGE coming soon.. after NewYear =)
    Now in my region work only gprs... =)
    but 3g is coming..
    SO my operator say, that iphone is a B class phone and its work only with voice only with internet... and dont say about 3g work graet with voice and internet..
    thanks very much =)
    Message was edited by: stek

  • Block Unknown Call / SMS

    Everything that I have read suggests the you cannot block individual 'spam' calls or text .. is this is the case, it's not acceptable.
    I have a Blackberry Z30 .. there MUST be a way to block individual calls or text. You can on other makes of phones so why not a Blackerry Z30. You can block all calls, but that's a little overkill.
    I have been a loyal user of Blackberry phones over the past 6 years, if this cannot be resolved soon, when my current contract is up, I will be switching to another make ..
    Please advise ..
    Thanks

    In your  BlackBerry World, check out Call Blocker Pro
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is there an app for blocking cell calls

    Is there an app for blocking cell calls?

    There is not.  Look to your right under "More Like This" for related discussions.

Maybe you are looking for

  • BSI Tax Factory 10.0

    I have completely installed BSI TF10.0.d and have begun testing in my development system attempting to use the 'Switch Concept' as outlined in SAP note 1519016. Up until this version, it has always worked fine. Now, the only version referenced in the

  • Printing to pdf from arcmap

    When I print to pdf from ArcMap the file save as a pdf on my computer, but if I try to view the files from another computer on the network the files show up as .tmp files.  Any suggestions? Is this an adobe issue or an arcmap issue? Thanks, Sam

  • WO basic start date - requirement date

    Good morning folks, Would anyone be able to shed some light on any config that would be suitable for the following: The materials are assigned to a task list that is then assigned to a plan.  That plan is then scheduled and the work orders are genera

  • At sea trying to move photos from laptop to desktop

    I have two copies of LR 1.41. The desktop runs Vista Home Premium SP1 and the laptop runs XP SP3. Please, someone give me a straighforward way to move these files so that the edits show up in the desktop. I have tried exporting, exporting as a catalo

  • Apple telling me I have 5 devices when I don't how do I fix this

    I changed my password and trying to log into ITunes and I get the message I already have 5 devices and have to remove one.  I've not added any devices