Logging use of FM RH_SUBSTITUTES_LIST

Hi'
I have made a little tool that uses RH_SUBSTITUTES_LIST to maintain workflow substitutes from a central point. My problem is, that I want to log, what the user do in the subsequent dialog. I.E. which user is set as substitute, in what interval.
Kind regards
Mikkel Iversen

Hi,
It seems, that no changedocs are recorded, and the dbtablog is deactivated on the system.
Kind regards
Mikkel
Message was edited by: Mikkel Iversen

Similar Messages

  • [32282.000367] firefox:2114 freeing invalid memtype c02f2000-c0302000 I get this from system log using latest version of Firefox: What kind of problem is this?

    I get this from system log using latest version of Firefox:
    [32282.000367] firefox:2114 freeing invalid memtype c02f2000-c0302000
    What kind of problem is this?
    Anyway Firefox seem to be working correct. I would like to be sure that it'snt a security problem.

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • Logging using Log4J

    Hi,
    I want to use Log4J to write to the sap log using a Log4J appender. I followed the tutorial from https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/36085e78-0801-0010-678d-8b4e89ddff3c
    but i doesnt work for me. When i check the ear which is deployed to the server, i cant find my log4j.properties file anywhere...i guess that is the problem. I put it in the src folder...i thought it was the correct place, but it doesnt show up in the ear...can anyone help me out?
    Much thanks,
    Hugo Hendriks

    Please don't crosspost. It cuts down on the effectiveness of responses, leads to people wasting their time answering what others have already answered, makes for difficult discussion, and is generally just annoying and bad form.

  • Ho to decrypt snmp log using Snmp4j

    Hi all
    I have problem with decoding snmp log using my own listener.
    From the sample inside the snmp4j source code, what i can see here is we have to use their listener.
    Because of this, the snmp4j listener cannot bind the port 162 because my program has bound it.
    What is another way for me to get the the real snmp log(not encrypted).
    Below are the code of my snmparser that has problem to bind the port
    public class SnmpParser extends Parser implements CommandResponder {
    private String[] data = (String[]) COLUMN_DEFAULT_VALUE.clone();
    private String strLog = "";
    private String strIP = "";
    private MultiThreadedMessageDispatcher dispatcher;
    private Snmp snmp = null;
    private Address listenAddress;
    private ThreadPool threadPool;
    private int n = 0;
    private long start = -1;
    private ByteBuffer bis = null;
    private TransportMapping transport = null;
    public SnmpParser(String strIP, String strRawlog) {
    this.strIP = strIP;
    strLog = strRawlog;
    private void init() throws UnknownHostException, IOException {
    threadPool = ThreadPool.create("Trap", 2);
    dispatcher =
    new MultiThreadedMessageDispatcher(threadPool,
    new MessageDispatcherImpl());
    listenAddress =
    GenericAddress.parse(System.getProperty("snmp4j.listenAddress",
    "udp:192.168.2.55/162")); //This 162 port caused proggram terminated because cannot bind
    if (listenAddress instanceof UdpAddress) {
    transport = new DefaultUdpTransportMapping((UdpAddress)listenAddress);
    else {
    transport = new DefaultTcpTransportMapping((TcpAddress)listenAddress);
    snmp = new Snmp(dispatcher,transport);
    snmp.getMessageDispatcher().addMessageProcessingModel(new MPv1());
    snmp.getMessageDispatcher().addMessageProcessingModel(new MPv2c());
    snmp.getMessageDispatcher().addMessageProcessingModel(new MPv3());
    USM usm = new USM(SecurityProtocols.getInstance(),
    new OctetString(MPv3.createLocalEngineID()), 0);
    SecurityModels.getInstance().addSecurityModel(usm);
    // snmp.listen();
    public void doConvert() {
    System.out.println("Rawlog : " strLog);
    +//System.out.println("Rawlog(hex) : "+ new OctetString(strLog).toHexString());
    try {
    init();
    snmp.addCommandResponder(this);
    } catch (UnknownHostException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    //fire ProcessMessage
    bis = ByteBuffer.wrap(strLog.getBytes());
    try {
    if(transport!=null) {
    ((DefaultUdpTransportMapping)transport).fireProcessMessage(new UdpAddress(InetAddress.getByName("192.168.2.55"),
    162), bis);
    System.out.println("Firing");
    } else {
    System.out.println("Not firing");
    } catch (UnknownHostException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    public void processPdu(CommandResponderEvent event) {
    System.out.println(event.getPDU());
    System.out.println(event.getPDU().getVariableBindings());
    System.out.println(event.getPDU().getType());
    Below is just my listener code
    public final class UDPListener extends Listener {
    private int iUDPPort = 0;
    private boolean bStop = false;
    private byte[] buffer = null;
    private DatagramSocket dSocket = null;
    private DatagramPacket dPacket = null;
    public UDPListener(int piUDPPort) {
    this.iUDPPort = piUDPPort;
    this.buffer = new byte[1024];
    private boolean exceptionCaught = false;
    public UDPListener(int piUPDPort, int piBufferSize) {
    this.iUDPPort = piUPDPort;
    this.buffer = new byte[piBufferSize];
    public void run() {
    // if UDP listener initialized successfully, proceed with listening
    // or else exit this thread
    if (initUDPListener()) {
    Indefinite loop while bStop remains false. bStop is only set in 2 places.
    1. when stopListener method is called
    *2. when an exception is encountered in the block*
    while (!bStop) {
    try {
    dSocket.receive(dPacket);
    extractLog();
    } catch (Exception e) {
    Signifying exception is caught. Ending loop
    Logger.getLogger(UDPListener.class).error("Error while listening to UDP port: " + iUDPPort, e);
    exceptionCaught = true;
    bStop = true;
    try {
    if (dSocket != null)
    dSocket.close();
    } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } finally {
    if (exceptionCaught)
    ListenerThreadReviver.getInstance().reinitListener("UDP", iUDPPort);
    Logger.getLogger(UDPListener.class).debug("UDPListener exiting gracefully");
    private void extractLog() {
    String strLog = "";
    String strDeviceIP = "";
    strLog = new String(dPacket.getData(), 0, dPacket.getLength());
    strDeviceIP = dPacket.getAddress().toString().replace("/", "");
    processLog(strLog, strDeviceIP);
    dPacket.setLength(buffer.length);
    private boolean initUDPListener() {
    try {
    // constructs a datagram socket and binds it to the specified port on the local host machine
    dSocket = new DatagramSocket(iUDPPort);
    // constructs a new datagram packet for receiving packets
    dPacket = new DatagramPacket(buffer, buffer.length);
    catch (SocketException e)
    // if the socket could not be opened, or the socket could not bind to the specified local port.
    e.printStackTrace();
    // attempts to close dSocket if it is open
    if (dSocket != null && !dSocket.isClosed()) {
    dSocket.close();
    // returns false to indicate initialization failure
    return false;
    return true;
    public synchronized void stopListener() {
    bStop = true;
    dSocket.close();
    -----

    instead of using  SNMPv2-SMI::mib-2.16.19.12.0  use the actual OID.
    i believe you can set it like this ipRouteNextHop.0.0.0.0 a X.X.X.X
    http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?objectInput=.1.3.6.1.2.1.4.21.1.7+&translate=Translate&submitValue=SUBMIT

  • Acquire, analyze and data log using statemachine technique

    I am learning state machine technique to develop code for data acquisitoin and logging. I think I have written the correct code for this purpose but I couldn't get the following done:
    All warning values(>0) should be displayed on 1d array on front panel. The code is writing only the first value.
    All values should be logged using write to spreadsheet pallete and be written on excel sheet. Code is only writing first value.
    I wonder what's the mistake. The code I've created is attached, I'd appreciate if anyone correct the code and post in reply.
    Many thanks in advance for help
    Cheers
    Solved!
    Go to Solution.
    Attachments:
    full project with acquire,analyse and logging states.vi ‏94 KB

    Hi kwaris,
    "what's the mistake": Well, you use a lot of unneccessary conversions. Really a lot of...
    Why do you convert a scalar to dynamic, then convert to array, then index an element of the array? Why do you convert to dynamic when all you needis a simple "build array" node?
    Ok, I included a shift register to store your array. It's only a simple "how to", but not the best solution for all cases. But it should give you a hint...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    full project with acquire,analyse and logging states.vi ‏12 KB

  • Unable to Generate Logs using Log4j

    Hi All,
    I have a task where i have configure weblogic to generate the logs using log4j instead of the default jdk,
    I changed the logging level implementation in admin server from jdk to log4j
    Then i created a log4j.xml and placed it in the root folder of the domain.
    But the adminserver.log file still shows the logs from default jdk the log4j changes tht i did had no effect on the logs.
    Kindly Help
    Thanks
    Mukul

    Hi ,
    I dont have any log4j.properties defined . Should i define a custom log4j.properties.
    This is how my log4j.xml is :
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration>
    <appender name="FILE" class="org.apache.log4j.FileAppender">
    <param name="File" value="myApp.log"/>
    <param name="Append" value="true"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d{ISO8601} %t %-5p %c{2} - %m%n"/>
    </layout>
    </appender>
    <logger name="org.apache">
    <level value="WARN"/>
    </logger>
    <logger name="org.springframework">
    <level value="WARN"/>
    </logger>
    <root>
    <level value="DEBUG"/>
    <appender-ref ref="FILE"/>
    </root>
    </log4j:configuration>
    But this is generating a custom log4j log file but we want the weblogic generated adminserver.log to be generated using the log4j instead of jdk

  • How to access sharepoint logs using Java?

    Is there a way to access Sharepoint logs using Java from a remote machine? 
    Any help / pointers would be appreciated. Thanks.

    Hello,
    I am not aware about any client modal class for log but if you create your own service and host in SP server then you can call this web service in JAVA. (i am not sure whether JAVA supports .NET web service or not).
    You can refer this for web service:
    http://www.arboundy.com/2010/12/centalised-view-of-sharepoint-uls-log-files/
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Concurrent HOST program calling a proc to log using fnd_file.put_line

    Hello all,
    I have a concurrent HOST program that does 3 main things
    1. Calls a sqlplus program to do some initializing. This program is a proc in a package.
    2. Runs sqlldr to load data to custom tables.
    3. Calls a sqlplus program to do manipulate the data. This program is a proc in a package.
    In step 3 of above, the package procedue does a "submit_request" to call the "Supplier Open Interface Import". This
    request actually fires. However my problem is the subsequent call to fnd_file.put_line(fnd_file.log, 'Test message'), does not get logged
    to the log file of the HOST program, nor to the log file of the "Supplier Open Interfface Import" log file. A check
    of $APPLPTMP (or /usr/tmp) shows that a file of say " l0023761.tmp" contains my 'Test message' text.
    I believe the problem is that the put_line() call has no association with the HOST or the "Supplier Open Interface Import. How
    do I associate the logging to either program? Is it even possible? I want the logging, so as to see the progress
    of the HOST program.
    The sniippet of proc code is:
    PROCEDURE abc() IS
    BEGIN
    request_id:= FND_REQUEST.SUBMIT_REQUEST
    (Application => 'SQLAP'
    ,Program => 'APXSUIMP'
    ,Description => NULL
    ,Start_time => SYSDATE
    ,Sub_Request => FALSE
    ,Argument1 => 'ALL'
    ,Argument2 => 1000
    ,Argument3 => 'N'
    ,Argument4 => 'N'
    ,Argument5 => 'N'
    fnd_file.put_line (fnd_file.log,'Test message');
    COMMIT;
    END abc;
    Alex.

    Shell scripts are very hard to develop and maintain. Many things that developers previously had to do in shell scripts, developers can now do in PL/SQL. Hence, I recommend that you avoid shell scripts as much as possible.
    As well, SQL*Loader is an old, inflexible tool. Instead, define your OS file as an external table, and then extract from the external table using a normal select statement. http://www.orafaq.com/node/848 I recommend that you avoid SQL*Loader and use external tables instead.
    Using PL/SQL and external tables - and avoiding the shell script and SQL*Loader - a much better way to accomplish the same thing all inside one packaged procedure that is registered as a concurrent program:
    - initialize
    - select from the external table
    - manipulate the data

  • How do I log use two apple ID's on the same I mac with two user accounts

    I cant seem to find a thread to answer this question.
    I have have one I mac, both my wife and I have a user account each, we both have our own apple ID's is there away they can be used at the same time?
    As so far I can't find a way of doing this. It seems one user account can only use its apple ID for a period of 90days, If I need to use the other apple ID I have to wait.. as I get this messsage
    "You can download past purchases on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 61 days. "
    Is there a way around this?

    Oh...How about one APPLE account, but two different users on the computer- one being administrator, and allow admin privileges if you want, or one be admin, the other a user.
    Or- what you can do, is have the second apple account, but only log in to it without involving the computer.
    Or break down and get a second computer. On hers, you be guest user and on yours she be guest- then if one breaks, you can still each use in turn.
    Or alternately, go to applestore or contact apple to ask...

  • [MFC] Error Importing logs using SCP - "Error while downloading file. The remote host has terminated the connection"

    Background: 
    In order to transfer logs to MFC, we had to use an intermediate logging server in our OOB network.  When this logging server crashed we had to rebuild the server with new hardware and SCP no longer worked.
    Issue: 
    The host key changed on the new server and had to be manually updated.  We suspected it was related to the hosts key but had difficulty finding where the known hosts info was stored.
    Solution: 
    Go to your install location of MFC and remove the known_hosts file.  In our case the file was located at:  "D:\Program Files\IronPort Systems\Mail Flow Central\mailFC\tmp\known_hosts".  Instead of removing the file, we renamed it to known_hosts.old and restarted the MFC service.  Afterwards we could see all the old logs importing.
    The issue itself was not difficult to resolve, it just took more time than expected for something that would seem straightforward.  To complicate things, we even raised a query to customercare who came back saying that they do not support the server on which MFC is running.  But clearly the source of the issue was related to the application rather than the server itself.

    Thanks for your comment qetzacoatl, however I don't this this will work for me, I am on a team, and we need to be able to check-in/out files and make sure we don't override eachothers work. I also don't want to have to use 2 programs to accomplish the task one should be able to do. Its now 3 weeks going and I can't get any work done, it seems like its getting worse. Nobody from Adobe seems to want to comment on my thread at all....So maybe I should just find a completely new solution and get rid of DW all together, Aptana is looking VERY nice right about now.

  • Error logging using DBMS_ERRLOG package

    Hi All,
    We have following tables, which are growing day-by-day and giving performance problems.
    There are total 25 tables (1 parent and 24 child tables, with different structures).
    Here i gave some Samples, NOT actual table structures.
    Actually we don't require all the data for our regular activities.
    So we thought of moving part of the data into Other (Archive) tables, on daily basis.
    Using SOME criteria, we are finding eligible records to be moved into Archive tables.
    All child records follows the Parent.
    Original Tables
    ==================
    create table customer (c_id number(5), c_name varchar2(10),c_address varchar2(10));
    create table orders (o_id number(5),c_id number(5),o_info clob);
    create table personal_info (p_id number(5),c_id number(5), age number(3), e_mail varchar2(25), zip_code varchar2(10)):
    Archive Tables
    ==============
    create table customer_arch (c_id number(5), c_name varchar2(10),c_address varchar2(10));
    create table orders_arch (o_id number(5),c_id number(5),o_info varchar2(100));
    create table personal_info_arch (p_id number(5),c_id number(5), age number(3), e_mail varchar2(25), zip_code varchar2(10)):
    Temp table
    ==========
    create table C_temp (rnum number(5), ids number(5));
    Sample Code
    ============
    PROCEDURE payment_arch
    IS
         l_range_records NUMBER (4) := 2000;
         l_total_count NUMBER(10) := 0;
         l_prev_count NUMBER(10) := 0;
         l_next_count NUMBER(10) := 0;
    BEGIN
    --Finding eligible records to be moved into Archive tables.
    INSERT INTO C_TEMP
         SELECT ROWNUM,c_id FROM customer;
    SELECT NVL(MAX(ID),0) INTO l_total_count FROM OPP_PAYMENT_ID_TEMP;
    IF l_total_count > 0 -- Start Count check
    THEN
         LOOP     -- Insert Single payments
              IF ((l_total_count - l_prev_count) >= l_next_count )
              THEN
                   l_next_count := l_prev_count + l_range_records;
              ELSE
                   l_next_count := l_total_count;
              END IF;
              l_prev_count := l_prev_count ;
              INSERT INTO customer_ARCH
              SELECT * FROM customer a
              WHERE c_id in (SELECT c_id
              FROM C_TEMP b WHERE rnum BETWEEN l_prev_count AND l_next_count);
              INSERT INTO orders_ARCH
              SELECT * FROM orders a
              WHERE c_id in (SELECT c_id
              FROM C_TEMP b WHERE rnum BETWEEN l_prev_count AND l_next_count);
              INSERT INTO personal_info_ARCH
              SELECT * FROM personal_info a
              WHERE c_id in (SELECT c_id
              FROM C_TEMP b WHERE rnum BETWEEN l_prev_count AND l_next_count);
              --     Delete Archived Single Payments
              DELETE customer a
              WHERE c_id in (SELECT c_id
              FROM C_TEMP b WHERE ID BETWEEN l_prev_count AND l_next_count);
              COMMIT;
              IF l_next_count = l_total_count
              THEN
              EXIT;
              else
              l_prev_count := l_next_count;
              END IF;
         END LOOP;     -- Insert Single payments
    END IF; -- End Count check
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    WHEN OTHERS
    THEN
    RAISE_APPLICATION_ERROR('-20002','payment_arch: ' || SQLCODE ||': ' || SQLERRM);
    END Payment_Arch;
    In production, we may require to archive 25000 Parent records and 25000*4*3 child records per day.
    Now the problem is:
    By any chance, if record fails, We want to know the Exact record ,just "c_id" for the particular table
    where the error raised and Error message.
    We thought of using DBMS_ERRLOG package, but we CAN NOT log errors of Different tables into SINGLE error log table.
    In the above case It require 3 Different tables and it logs all columns from the original table.
    It's a un-necessary burden on the database.
    We would be very glad, if anyone can help us with some good thought.
    Thanks in advance.
    srinivas

    duplicate post
    Insufficient privilege error when executing DBMS_ERRLOG through PLSQL

  • How is java.util.logging used to log to unix syslog?

    I'm trying to log out to syslog using the java.util.logging that is now in 1.4. I've read all I can find on this topic (not much) and have solicited the used of some syslog free ware (protomatter) but still can't get this to work. I feel like I'm missing something simple here, any help would be appreciated....
    Here is my latest attempt:
    import java.util.logging.*;
    import java.util.*;
    import java.io.*;
    import com.protomatter.syslog.SyslogHandler;
    public class SyslogTest
    public static void main(String argv[]){
    Logger logger2 = Logger.getLogger("local3");
    SyslogHandler ch = new SyslogHandler();
    ch.setLevel(Level.WARNING);
    logger2.addHandler(ch);
    logger2.warning("this is a log message");
    if (logger2.isLoggable(Level.WARNING)) {
    System.out.println("Is LOGGABLE");
    else {
    System.out.println("Is not loggable");
    When this is run nothing is printed to any of the local3 facilities. I've verified that syslog is running fine from the command line using unix logger, so the problem seems to be isolated to my java.
    Thanks.

    Hi,
    What is in your logging.properties file? Can you also include the contents of this file?
    Cheers,
    Craig.

  • Error in Logging using log4j When deployed in weblogic server

    I have deployed an SOAP based web service application as an war file and used log4j propertiers to do application logging .When i tested the application through a JAVA client the log4j log file has all the application log information but when i deployed it in the weblogic server 10.3.3 and tested it through SOAP UI it gives me just "Run time error exception" in the log4j log file(which is returned in the SOAP response) as against the application logs which i need. I have also added <wls:package-name>org.apache.log4j.*</wls:package-name> in the weblogic.xml and also changwed the logging to the log4j logging in the server ( which was perviously JDK logging) .But still it is not returning the complete application error stack trace in the log4j log file(and also in the weblogic command console) I need to get the application error stack trace in the log4j log file ( and also in the console) so it would be easy to debug the code.
    Please help me out in doing the same.
    thanks in advance

    Noman,
    have you checked that the folder D:\OracleJeveloper\Middleware\jdk160_14_R27.6.5-32 contains the jre?
    Timo

  • How to view router/switch logs using LMS 3.2?

    Of course I can log into each of my 100 routers and switches and peforms "sh loggin" to look for problems, but how do I use LMS 3.2 to consolidate all those logs into one location?  Can I set up something so I can see those logs in more or less real time?
    Thanks in advance.

    >> Does LMS go get syslog messages periodically or does the device send a copy to LMS whenever it generates a new message?
    The latter.
    If for some reason, the devices cannot log directly to LMS, there're a few options: 1) Devices log to a central syslog server, which in turn exposes the syslogs to LMS' Syslog Analyzer, either via the Cisco-supplied Remote Syslog Collector or some unsupported methods such as NFS mount, or 2) Install Syslog-ng on the central syslog server, relay the logs to LMS, as described in this whitepaper: http://www.cisco.com/en/US/prod/collateral/netmgtsw/ps6504/ps6528/ps2425/white_paper_c11-571038.html
    >> What's the benefit of scheduling a report to run automatically?  Is it saved somewhere that is easier/quicker to get to?
    It's the usual benefits of automation. Scheduled syslog reports apparently write outputs to /var/adm/CSCOpx/files/rme/cri/archives/syslog/reports/output/[jobID_runID], on Solaris, for example. The structure inside is rather muddy. So it might be easier to have something like a VBscript to screen-scrape the LMS web GUI for the report outputs instead.
    >> Can new syslog messages from devices be posted to an RSS feed?
    That's a novel idea. Though obviously not from the devices directly, it most likely coud be done through some "syslog2rss" relay residing on the syslog server. I think the potential volumes of logs could be too much for RSS, unless careful filtering/deduplication takes place on the relay before posting to a feed.

  • How to write a log using abap mapping

    Hi all.
    in PI 7.1 environment I need to use abap mapping and I wish to write some XML data into a table that I created for logging the data.
    I know that using the abap mapping I can parse an XML file. My question is how to write this table defining a specific method, if it is necessary.
    Any help or suggestion is well appreciated.
    Many thanks in advance for your kind cooperation.
    Regards,
      Giovanni

    hi,
    >> My question is how to write this table defining a specific method, if it is necessary.
    just like to normal table (insert statement)
    parse XML and get the data you need and just insert into the DB table
    there are many tutorials showing how to parse xml file inside abap mapping
    so just do a little search on sdn
    Regards,
    Michal Krawczyk

Maybe you are looking for

  • How to get KB/s

    so I'm making a file transfer program (one computer to another) and I want the transfer speed to show up in KB/s. I'm using an ObjectOutputStream that sends a byte array, then an ObjectInputStream reads one byte at a time... It would probably work to

  • Multiple channels in.......multiple channels out

    Hello All I have attached a zip file which containe some vi's. The vi's are downloadable from a manufacturers webiste to aid in the use of their products. see here:  http://www.phidgets.com/products.php?category=0&product_id=1018_2 The vi(s) are used

  • Cut and paste text on path not printing

    Hi all, i just tried to cut an object with text on a path from one Indesign Document and paste it into another. On screen everything looked fine but once I tried to print the file the text was not present. The same happens when I try to export to PDF

  • On/off slider button not work

    My Zen Micro slider button is not working, has anyone ever experienced this problem or know if the issue can be solved without buying a new unit's Everything works fine as far as functionality (sounds like I am lucky on this part so far) but I cannot

  • Comment activé mon iphone

    commenter actifs iphone mon?