Why runstate.sequencefile.data.seq.mysequence.mystep.result.numeric doesent contain a measurement value when i use this in a post uut callback?

Hello
I want to write a csv file witch contains all measurement values and limits from my machine. So i try to give the values in post uut callback to a vi. The limits are working and the csv contains all my limit values but the measurement values are all 0. I used runstate.sequencefile.data.seq.mysequence.mystep.result.numeric
I would not like to do it with FileGlobals because they are much values.
Thanks for any advices for this problem.
Solved!
Go to Solution.

There's probably a better way to accomplish what you want.  But to make your life easier I'll give you the hacky solution:
Use: Runstate.ProcessModelClient.Data.Seq.MyStep.Result.Numeric
The funny thing is the report should contain all the information you want. I would just create an engine to convert it to your csv look.  If you are using 2012 then this seems like a perfect candidate for a plugin.
Hope this helps,
jigg
CTA, CLA
teststandhelp.com
~Will work for kudos and/or BBQ~

Similar Messages

  • Can I use RunState.ProcessModelClient.Data.Seq[0].Locals.MyVariable in batch model to set variables in a client sequence?

    I have used RunState.ProcessModelClient.Data.Seq["MainSequence"].Locals.MyVariable to set Locals variables in client sequences running in a sequential model but it doesn't seem to work with the batch model. Using a breakpoint I found that RunState.ProcessModelClient.Data.Seq is a container listing all of the sequences in the client sequence with the Main Sequence being index 0.
    I tried using RunState.ProcessModelClient.Data.Seq[0].Locals.MyVariable to set the variables in my client sequence and it worked fine.
    My question: is this method reliable or am I doing something that might cause problems down the road?
    Thanks,
    Steve

    A few issues from doing it this way-
    1- You should try an make your process model such that it can handle almost any sequence file thrown at it.  MainSequence may not a) contain that local variable and b) be at array element 0.  Unless you do some serious error checking then using your process model elsewhere will be a problem because it will throw errors.
    2- It all depends on where you are changing that variable at.  Remember with the Batch Model that you are dealing with multiple copies of your client sequence.  If you change a Locals in the process model which threads does it actually affect?
    3- Locals is to be used for the sole purpose of the sequence it resides in.  Just like in text based programming where you have a function call:
    MyFunc(int x, int y){
    string foo;
    foo is local and really shouldn't be changed outside of MyFunc.  x and y are parameters and should be how data is shared among different sequences in TestStand.  There are variables for bigger scopes as well (i.e. StationGlobals, FileGlobals). 
    I recommend using either a StationGlobal or passing the data as a parameter. 
    In the end you are the engineer and the flexibility that TestStand gives you makes it so you can do things however you want. 
    My 2 Cents,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Why is Acrobat cloud sooooooooo slooooooooooooow - it's quicker to file, retrieve and photocopy paper than use this rubbish!!!!!!!!!!!!!!!!!!!!!!!!!!!

    And why is it so difficult to find out how it should work - trying it out is so slow
    and there appear to be no manuals or user guides
    One day somebody will invent PAPER!
    I used to be an Acrobat fan, but it's getting slower to run any of the applications and the cloud storage is about as responsive as clouds in the Gobi Desert
    Please get a Grip Adobe!
    Matt

    OK, I like it when I understand that.  What is this LIITETIEDOSTO, I do not
    in English. I am game assistant and I play practical games, in the Euro
    Palace.
    Abraded ID send it. This was number 1135-4568-998-1
    Word Press.
    I deposit in the 2000, I trye witchery, there are free $ 500, I have to got
    my own deposit and same my  win.
    Can you send those Players to you, I write it some think.
    If you can be help to that in the play panel. I have to play here and
    write own things, now I have got my money,  as possible as soon as.
    kindly
    Mervi Korhonen
    2014-09-21 2:51 GMT+03:00 Mervi Korhonen <[email protected]>:
    olen samaa mieltä kanssasi, osa toimintaan käy abroven toiminnat hyvin,
    mutta tavallisessa kirjoituksesta en saa itse aina selvää. mikä vietävän
    liite tiedosto. hävitin tuon abroden takia taas rahani, kyllä tämä "fani"
    puuha on
    minun puolestani mainospilaa , josta otetaan joka kuukausi maksu, kun
    muuten ei saa selvää tekstistä. Missä on taas pelattu 500 free, voitto Euro
    Palace, suuret rahat pitäisi  olla, mutta en löytänyt nostotilejä lainkaan.
    2014-09-21 2:05 GMT+03:00 mattdurcan <[email protected]>:
    >>     why is Acrobat cloud sooooooooo slooooooooooooow - it's quicker to
    >> file, retrieve and photocopy paper than use this
    >> rubbish!!!!!!!!!!!!!!!!!!!!!!!!!!!  created by mattdurcan
    >> <https://forums.adobe.com/people/mattdurcan> in *Adobe acrobat.com
    >> <http://acrobat.com> services* - View the full discussion
    >> <https://forums.adobe.com/message/6748371#6748371>
    >>

  • Constant dates gets different values when instantiated using different cale

    Hi,
    I have a package that's like this:
    CREATE OR REPLACE PACKAGE DATABASE_SYS IS
    first_julian_day_ CONSTANT NUMBER := 2378211;
    last_julian_day_ CONSTANT NUMBER := 2545125;
    first_calendar_date_ CONSTANT DATE := to_date(first_julian_day_, 'J');
    last_calendar_date_ CONSTANT DATE := to_date(last_julian_day_, 'J');
    FUNCTION Get_First_Calendar_Date RETURN DATE DETERMINISTIC;
    PRAGMA restrict_references(Get_First_Calendar_Date, WNDS);
    FUNCTION Get_Last_Calendar_Date RETURN DATE DETERMINISTIC;
    PRAGMA restrict_references(Get_Last_Calendar_Date, WNDS);
    END DATABASE_SYS;
    CREATE OR REPLACE PACKAGE BODY DATABASE_SYS IS
    FUNCTION Get_First_Calendar_Date RETURN DATE DETERMINISTIC
    IS
    BEGIN
    RETURN first_calendar_date_;
    END Get_First_Calendar_Date;
    FUNCTION Get_Last_Calendar_Date RETURN DATE DETERMINISTIC
    IS
    BEGIN
    RETURN last_calendar_date_;
    END Get_Last_Calendar_Date;
    END DATABASE_SYS;
    If using two different SQLPlus sessions:
    First session
    SQL> ALTER SESSION SET nls_calendar='PERSIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date, 'YYYY-MM-DD') FROM dual
    2 /
    TO_CHAR(DA
    1799-03-21
    SQL>
    SQL> ALTER SESSION SET nls_calendar='GREGORIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date, 'YYYY-MM-DD') FROM dual
    2 /
    TO_CHAR(DA
    2420-06-10
    SQL>
    SQL> ALTER SESSION SET nls_calendar='PERSIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date, 'YYYY-MM-DD') FROM dual
    2 /
    TO_CHAR(DA
    1799-03-21
    SQL>
    SQL> ALTER SESSION SET nls_calendar='GREGORIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date, 'YYYY-MM-DD') FROM dual
    2 /
    TO_CHAR(DA
    2420-06-10
    SQL>
    Second session:
    SQL> ALTER SESSION SET nls_calendar='GREGORIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date,'YYYY-MM-DD') FROM dual
    2 /
    TO_CHAR(DA
    1799-03-21
    SQL>
    SQL> ALTER SESSION SET nls_calendar='PERSIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date, 'YYYY-MM-DD') FROM dua
    l
    2 /
    TO_CHAR(DA
    1178-01-01
    SQL>
    SQL> ALTER SESSION SET nls_calendar='GREGORIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date,'YYYY-MM-DD') FROM dual
    2 /
    TO_CHAR(DA
    1799-03-21
    SQL>
    SQL> ALTER SESSION SET nls_calendar='PERSIAN'
    2 /
    Session õr õndrad.
    SQL> SELECT to_char(database_sys.Get_First_Calendar_Date, 'YYYY-MM-DD') FROM dua
    l
    2 /
    TO_CHAR(DA
    1178-01-01
    SQL>
    Why does the dates differ?
    Should not the dates be the same?
    Should not Julian dates always be the same regardless of my session parameters?
    What am I missing here?
    Regards
    Håkan

    The problem seems to be with Julian date conversion code being sensitive to the user calendar, while it should not be:
    SQL> alter session set nls_date_format='YYYY-MM-DD';
    Session altered.
    SQL> select to_date('2378211','J','NLS_CALENDAR=GREGORIAN') from dual;
    TO_DATE('2
    1799-03-21
    SQL> select to_date('2378211','J','NLS_CALENDAR=PERSIAN') from dual;
    TO_DATE('2
    2420-06-10
    I have logged bug #5386942. If you want to follow this bug, you have to contact Oracle Support.
    As a workaround, specify explicit third parameter 'NLS_CALENDAR=GREGORIAN' in your TO_DATE() calls.
    -- Sergiusz

  • HT201269 Why aren't all of my pictures on my iPhone transferring to my PC when I use iCloud?

    I have paid for extra storage space on iCloud so that I can have all 600 of my photos on my iPhone 4 backed up.  However, only 12 of my photos are showing up on my PC when I open up my photo stream.  Why isn't iCloud automatically uploading all of my photos to the photo stream?

    It isn't clear from your question if you had Photo Stream turned on before you took all 600 of the photos. Per the "When do Photos upload to My Photo Stream" section of http://support.apple.com/kb/HT4486 only new photos taken after you turned it on will upload.
    If you have older photos that you want to transfer to your computer, you may need to do it by importing using a cable as described in http://support.apple.com/kb/HT4083

  • HT3275 This is the message I get when My Time Capsule tells me why it can't perform the back up.  How do I figure out what is using this file, and stop it

    The backup disk image “/Volumes/Leslie Iversen's Time Capsu/Iversens' iMac.sparsebundle” is already in use.  Thanks.

    See Time Machine -- Troubleshooting by forum expert Pondini:
    http://pondini.org/TM/Troubleshooting.html
    #C12 is the item that you need to try to correct a bug in the Lion and Mountain Lion operating system.

  • Why do I have a dead line about an inch wide in my screen when I use Firefox?

    Any thing i click on in that line will not come up.The line runs across where the compose mail is.

    Recently both the Yahoo! Toolbar extension and the Babylon extension have been reported to cause an issue like that. Disable or uninstall those add-ons.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • RunState.Sequence.Main vs RunState.SequenceFile??? When using Deployed Software??

    RunState.Sequence.Main vs RunState.SequenceFile???  When using Deployed Software??
    Can someone explain to me why when I use something like->
    RunState.SequenceFile.Data.Seq["Test Seq"].Main["Test Step"].Result.Status
    the status will never be updated if I am configured for LabVIEW Run-Time Engine (but will work for Development System).
    Also why does->
    RunState.Sequence.Main["Test Step"].Result.Status
    update for both LabVIEW Run-Time Engine and Development?
    I fixed my problem by using RunState.Sequence.Main["Test Step"].Result.Status but I still am curious why the other way doesn't work???  Can someone please give me a sanity check?
    Thank you very much!
    Solved!
    Go to Solution.

    RunState.SequenceFile.Data.Seq contains the edit time copy of the sequences. These copies are not used at all at runtime. At runtime a separate copy is made (and is accessible from RunState.Sequence) and only that runtime copy is updated. These runtime copies are made for several reasons such as the following:
    1) To make it so that modifications made to the sequence at runtime, do not affect the original edit time version of the file (you don't want modifying the status to be an edit to the sequence file right?).
    2) To support recursion, recursive calls into the same sequence each have their own copy of the sequence so that the state for a call isn't overwritten by a recursively made call to the same sequence.
    There are probably other reasons as well, but these are probably the biggest ones.
    -Doug

  • Why does displayed data flicker?

    I am acquiring temperature from three RTDs and I want to display the real-time temperature on the front panel.  If i use the DAQ Express I have no problem doing so. However, I am trying to avoid using the DAQ Express and use DAQmx instead. On my front panel I have a numeric indicator for each RTD, but when I use the DAQmx to read in the 3 RTDs, the data flickers between 0 and the correct temperature measurent.  I've adjusted the sampling frequency and the number of samples to see if that affected it, which it didn't.  How can I display the real time data without it flickering between 0 and the correct measurment?
    Thanks!
    Attachments:
    Acquire RTD and Analog Voltage.vi ‏18 KB

    Hi guys,
    I agree with voodoo_ that the issue is that you are calling DAQmx Read when there are no samples available.  In this case, DAQmx Read will return a null array (since you have not specified the number of samples to read).  Since it looks like you are only interested in a software timed update, I would recommend modifying your code to the following:
    While inserting a wait into the while loop would likely also remedy the problem, I don't see the need for a continuous acquisition in this example.  If you do need continuous acquisition, you can connect the Number of Samples to Read Per Channel input of DAQmx Read which will delay the loop according to how many samples you want to acquire per iteration.
    -John
    John Passiak
    Attachments:
    Code_Revised.PNG ‏16 KB

  • I have Old Firefox Data folder before i formated my laptop . but i just cant find how to use this folder for my new firefox to regain all the bookmarks i had.

    I had some issue with my Firefox (it crashes when i starts), so i format my laptop to factory setting and now i got new Firefox installed and left with this Old Firefox Data folder.
    my question is :
    Ii understand the profile in my Old Firefox Data contains my Bookmarks and information i previously had before i formatted, i just do not know how to apply this Old Firefox Data to my new Firefox to get what i need.
    How do i use Old Firefox Data to restore all my bookmarks and information?

    You can move some files from the "Old Firefox Data" folder to the current Firefox profile folder.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    It is best to only copy what you need and avoid copying the full profile content.

  • Custom BW Report by using this two data soucre

    Hi All,
               I am working on CRM 5.0 & BI 7.0
    1. I am having Data source( 0BPARTNER_ATTR & InfoObject : 0BPARTNER )
        this data source have all my custom fields & one more data source(0CRM_BPSALESCL_ATTR) it is having some fields
    2. This two data source are giving data in RSA3
    2 . I have to create custom BW Report by using this two data soucre
        i am new one to BW 
       so plz kindly help me step wise
    i ll Reward for helpful ans
    Thanks & Regards
    Ganes R

    Ganesh!!
    Build a logic between the two objects 0BPaRtner and 0crm_pssalescl, how are they related and find if you can link them. If that is the case then you can build infoset or MP between the two objects and create a report against the Provider. If the two objects are completely independent, then you can create APD and feed the transactional ods from two reports  from each Object and write a report from the transactional odb. The only disadvantage with this is you have to load the data frequently.
    Hope that guides you to the right direction.
    thanks.
    Wond

  • The conversion of a varchar data type to a datetime data type resulted in an out-of-range value

    I am trying to insert records into a temporary table with date values concatenated with other string values  into one large string value.I am getting the following error:
    Msg 242, Level 16, State 3, Line 12
    The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
    Msg 241, Level 16, State 1, Line 28
    Conversion failed when converting date and/or time from character string.
    -My code below
    Declare
           @hdrLOCAL char(255),                                                       
        @CR char(255),                                                             
        @BLDCHKDT DATETIME,                                                         
        @BLDCHTIME DATETIME,                                                         
        @hdrline int
        SELECT @hdrLOCAL = DDLINE FROM DD40400 WHERE INDXLONG =1
        SELECT @CR = DDLINE FROM DD40400 WHERE INDXLONG =2
        SELECT @hdrline =1
        SELECT
                @BLDCHKDT = CONVERT(varchar(20),T756.PAYDATE,105) ,
                -- convert(varchar,getdate(),15)
                @BLDCHTIME= CONVERT(varchar(20),T756.PAYDATE,105)
                FROM STATS.dbo.DD10500 T762
                LEFT OUTER JOIN STATS.dbo.DD10400 T756 ON (
                        T762.INDXLONG = T756.INDXLONG
                        AND T756.INCLPYMT = 1
                WHERE (T756.INCLPYMT = 1)
                    AND (T762.DDAMTDLR <> 0)
      Create TABLE [dbo].[##DD10200B](
        [INDXLONG] [int] NOT NULL,
        [DDLINE] [varchar](8000) NOT NULL,
        [DEX_ROW_ID] [int] IDENTITY(1,1) NOT NULL,
    BEGIN
    INSERT INTO ##DD10200B (INDXLONG,DDLINE)
            VALUES (1,@hdrLOCAL +',' + @CR +','+ @BLDCHKDT +',' + @BLDCHTIME )
    END
    Msg 242, Level 16, State 3, Line 12
    The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
    Msg 241, Level 16, State 1, Line 28
    Conversion failed when converting date and/or time from character string.
    The Best thing in Life is Life

    Since the Variable
    BLDCHKDT and BLDCHTIME are of type date time why are you trying to assign it a value
    of type varchar
    and the format 105 gives you dd-mm-yyyy but SQL server takes the default format as mm-dd-yyyy so the error occurs for all dates that
    are greater than 12
    try the below code
    Declare
    @hdrLOCAL char(255),
    @CR char(255),
    @BLDCHKDT Varchar(50),
    @BLDCHTIME Varchar(50),
    @hdrline int
    SELECT @hdrLOCAL = DDLINE FROM DD40400 WHERE INDXLONG =1
    SELECT @CR = DDLINE FROM DD40400 WHERE INDXLONG =2
    SELECT @hdrline =1
    SELECT
    @BLDCHKDT = CONVERT(varchar(20),T756.PAYDATE,105) ,
    -- convert(varchar,getdate(),15)
    @BLDCHTIME= CONVERT(varchar(20),T756.PAYDATE,105)
    FROM STATS.dbo.DD10500 T762
    LEFT OUTER JOIN STATS.dbo.DD10400 T756 ON (
    T762.INDXLONG = T756.INDXLONG
    AND T756.INCLPYMT = 1
    WHERE (T756.INCLPYMT = 1)
    AND (T762.DDAMTDLR <> 0)
    Create TABLE [dbo].[##DD10200B](
    [INDXLONG] [int] NOT NULL,
    [DDLINE] [varchar](8000) NOT NULL,
    [DEX_ROW_ID] [int] IDENTITY(1,1) NOT NULL,
    BEGIN
    INSERT INTO ##DD10200B (INDXLONG,DDLINE)
    VALUES (1,@hdrLOCAL +',' + @CR +','+ @BLDCHKDT +',' + @BLDCHTIME )
    END
    the only change done is 
    @BLDCHKDT Varchar(50),
    @BLDCHTIME Varchar(50),
    Surender Singh Bhadauria
    My Blog

  • Why between for date is not returning data for this query ?

    Hello,
    i have a table with this structure and i am writing this query for fetching some rows based on some condition , but this query is not returning any data . Can you please tell why ?
    ID     DT
    003     11/8/2011
    002     10/8/2011
    001     9/8/2011
    And the query is :
    SELECT * FROM TABLE_NAME WHERE DT BETWEEN TO_DATE('08/08/2011','dd/mm/yyyy') AND TO_DATE('12/08/2011','dd/mm/yyyy');
    Edited by: bootstrap on Aug 13, 2011 7:10 AM

    >
    >
    but what is the problem with that, why that date is not matched when i am providing the date format ?Which part don't you understand? You did not use TO_DATE while inserting data and default date format was mm/dd/yyyy, right? Same default date format is used if you issue:
    SELECT * FROM TABLE_NAME Your original post states the above select returns:
    ID     DT
    003     11/8/2011
    002     10/8/2011
    001     9/8/2011So dates you inserted are November 8, 2011, October 8 2011 and September 8 2011. Now TO_DATE('08/08/2011','dd/mm/yyyy') is August 8 2011 and TO_DATE('12/08/2011','dd/mm/yyyy') is August 12 2011. So obviously:
    SELECT * FROM TABLE_NAME WHERE DT BETWEEN TO_DATE('08/08/2011','dd/mm/yyyy') AND TO_DATE('12/08/2011','dd/mm/yyyy');will not return any rows. Bottome line - never write code that uses implicit date conversions since your code becomes client NLS settings dependent and might work for one client and fail or produce wrong results for other client.
    SY.

  • The conversion of a nvarchar data type to a datetime data type resulted in an out-of-range value.

    Below select statement results in "The conversion of a nvarchar data type to a datetime data type resulted in an out of range value"   error. By the way Terms
    field's data type is nvarchar
     SELECT * from INVOICE
    where convert(datetime,Terms) 
    BETWEEN
    '01/01/14'
    and
    '01/30/15' 

    If you can't use TRY_CONVERT (It's only available in 2012+) You should be able to validate the data with something like this (based on your example date formats):
    DECLARE @notDate TABLE (Terms NVARCHAR(10))
    INSERT INTO @notDate (Terms) VALUES
    ('01/01/14'),('02/29/14'),('01/32/15'),('13/13/14'),('13/3/14'),('13-13/14'),('02/29/12'),('02/29/13')
    SELECT *,
    CASE WHEN (LEN(Terms) - 2) <> LEN(REPLACE(Terms,'/','')) OR LEN(Terms) <> 8 THEN 'Bad Form'
    WHEN LEFT(Terms,2) > 12 THEN 'Bad Month'
    WHEN LEFT(Terms,2) IN (9,4,6,11) AND LEFT(RIGHT(Terms,5),2) > '30' THEN 'Bad Day'
    WHEN LEFT(Terms,2) = 2 AND LEFT(RIGHT(Terms,5),2) > (28 + CASE WHEN (2000+RIGHT(Terms,2)) % 400 = 0 THEN 1 WHEN (2000+RIGHT(Terms,2)) % 100 = 0 THEN 0 WHEN (2000+RIGHT(Terms,2)) % 4 = 0 THEN 1 ELSE 0 END) THEN 'Bad Day'
    WHEN LEFT(Terms,2) NOT IN (2,9,4,6,11) AND LEFT(RIGHT(Terms,5),2) > '31' THEN 'Bad Day'
    END
    FROM @notDate
    Don't forget to mark helpful posts, and answers. It helps others to find relevant posts to the same question.

  • Why Generator doesn't resize correctly (blurry result)?

    I'm trying to use generator to create icons but the results are unusable. Generator creates blurry pictures as soon as they are resized. The original PSD file is 60x60 and I want to export to 44x44.
    Here is what I get with generator (the circle is blurry):
    And what I get when I use "Save for web" (perfect result):
    Here is the original PSD file:
    http://www.chelly.pro/tmp/location.psd
    Does any one know why results are not the same?
    Fabio

    I don't know if this is related, but I just spent a couple of hours on something extremely frustrating.<br />
    Check out these three images:
    http://www.fine-art.com/bg.jpg
    http://www.fine-art.com/bg2.jpg
    http://www.fine-art.com/bg3.jpg
    Notice the blue in the middle of each image. It is #0d92d7 when I create the images. However, if you look at them through the browser the *last two* change. Copy and paste them into photoshop and they are now #408dd7?!? If you right-click and download the files they are the same, but if you copy and past (or look at them in the browser or screen cut), the last two become different. I've tried using .png and .gif and had the same issue. I could live with it if it changed all the images, buy why only the last two? They are fine in IE.
    Any ideas?

Maybe you are looking for

  • My 4S Bluetooth stopped pairing to my Ford Explorer after i updated to ios 8.0.2

    I have a 4S, it has been able to talk to my ford explorer no problem until i updated to ios 8.0.2 Now when i pair it, i get "in Privacy" on my ford sync screen and a timer is running. This is as if i was in a private call on my phone ( ie not using t

  • Word 2003 to PDF Not Exporting Page Numbers, Other Data

    I'm having a weird problem with converting Word 2003 docs to PDF. After the conversion, my PDF does not display page numbers. It shows them as {PAGE}, like the formula or macro for page numbering is not working. I've seen a similar problem with inser

  • Problems installing Java EE5 Beta on Fedora Core 5 x86_64

    Everytime I try to install teh beta download I get an error message about a bad "ELF" format in stdlibc++.so.5. Is there a 64 bit compatible beta download of the Java EE 5 platform for Linux?

  • Access local shared folder through Sharepoint 2013

    Before we installed Sharepoint 2013 everyone within the company was sharing files and folders through a shared drive that is mapped to all the workstations. This shared folder on the server is very large, roughly 250gb in size.  I created a Sharepoin

  • Sybase ASE 15.7.0 in suspect status

    Hi Gurus, We have a problem when we try to connect to a SyBase DB (Adaptive Server Enterprise/15.7.0/EBF 20953 SMP ESD#4.2), the database is in suspect mode. We ran the following commands after rebooting but the same error appears: server>isql -X -Us