Attaching WT to few WT's

Hi All,
I have a requirement to create/copy a WT which will be attached to 2 more existing WT's - one a Debit WT & one a credit WT.  How is this configured? It is urgent.  Pls guide
Thanks in advance
Lakshmi

Are you saying increase the diameter of the circle and see if that works?

Similar Messages

  • Problem in Sending mail with attachment (Excel sheet)

    Hi
    Iam using this FM   SO_NEW_DOCUMENT_ATT_SEND_API1  for sending mail with an attachment (excel sheet).
    the application is running fine , mail is going to other system .   but the excel sheet attachment contain only few rows  not all.
    and the body of the mail is not displaying . 
    Can any one help me. Thanks in advance.

    Hi,
    you can use cl_bcs classes for the same. I am using below code for same thng
      CONSTANTS:c_tab  TYPE c VALUE cl_bcs_convert=>gc_tab.
      CONSTANTS:c_crlf TYPE c VALUE cl_bcs_convert=>gc_crlf.
      DATA o_send_request   TYPE REF TO cl_bcs.
      DATA o_document       TYPE REF TO cl_document_bcs.
      DATA o_recipient      TYPE REF TO if_recipient_bcs.
      DATA o_bcs_exception  TYPE REF TO cx_bcs.
      TRY.
        o_document = cl_document_bcs=>create_document(
          i_type    = 'RAW'
          i_text    = is_mail_text
          i_subject = text-005 ).
      ENDTRY.
    *create file header
    CONCATENATE
                    text-h00 c_tab text-h01 c_tab text-h02 c_tab text-h03 c_tab text-h04 c_tab
                    text-h52 c_tab text-h05 c_tab text-h06 c_tab text-h07 c_tab text-h08 c_tab text-h09 c_tab
                   c_crlf INTO w_data_string.
    Loop at itab which contains data to be send as attachment
    concatenate field1 field2 field3 c_crlf into your_string separated by  c_tab
    conatenate final string your_string into final_string.
    endloop.
    *Convert data into suitable excel format
      TRY.
          CALL METHOD cl_bcs_convert=>string_to_solix
            EXPORTING
              iv_string   = w_data_string
              iv_codepage = '4103'
              iv_add_bom  = 'X'
            IMPORTING
              et_solix    = w_binary_content.
        CATCH cx_bcs INTO o_bcs_exception.
          IF o_bcs_exception IS NOT INITIAL.
            w_exec_txt = o_bcs_exception->get_text( ).
            MESSAGE w_exec_txt TYPE 'S'.
          ENDIF.
      ENDTRY.
        add the spread sheet as attachment to document object
      CONCATENATE text-006 sy-datum INTO w_attach_name SEPARATED BY space.
      o_document->add_attachment(
        i_attachment_type    = 'xls'
        i_attachment_subject = w_attach_name
        i_att_content_hex    = w_binary_content ).
    *create persistent send request
      o_send_request = cl_bcs=>create_persistent( ).
        add document object to send request
      o_send_request->set_document( o_document ).
        create recipient object for external mail id
      w_mlrec = iw_recipent.
      TRY.
          o_recipient = cl_distributionlist_bcs=>getu_persistent(
              i_dliname = w_mlrec
              i_private = space ).
        CATCH cx_bcs INTO o_bcs_exception.
          IF o_bcs_exception IS NOT INITIAL.
            w_exec_txt = o_bcs_exception->get_text( ).
            MESSAGE w_exec_txt TYPE 'S'.
          ENDIF.
      ENDTRY.
        add recipient object to send request
      o_send_request->add_recipient( o_recipient ).
        ---------- send document ---------------------------------------
      w_sent_to_all = o_send_request->send( i_with_error_screen = 'X' ).
      IF w_sent_to_all EQ abap_true.
        COMMIT WORK.
      ENDIF.

  • Can no longer attach files to yahoo email

    Everything was fine until yesterday. Now when I try to attach a file it indicates that it is doing so but never actually finishes. I have waited for over 10 minutes for a small WORD document that previously had attached in a few seconds. I'm using yahoo and when I get there via MSN explorer 8 it does work, but not with firefox.

    Please create a screenshot of the problem you're seeing by following the guide mentioned at [[How do I create a screenshot of my problem?]].
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Using Nightly to access web-based email - Won't allow me to send an attachment - Please Help

    I sometimes need to access my email through a browser. When using nightly I have, on several, been unable to send a file attachment. A few minutes ago I got a pop-up that said that nightly was blocking all attachments for security reasons. - The popup disappeared before I was able to read it fully. The attachment was an innocuous document from a standard word processor with no macros or other potentially hazardous content. I do, from time to time, need to send attachments to colleagues using a web-based email interface. How can I get Nightly allow this?
    Thanx in advance.

    HI CosmicWolf,
    In about:settings please check the list of pop up exceptions under Content. It is also possible to click on the icon next to the url and look at "Page Info". From this menu under Permissions see is pop ups are blocked.
    Its a bit hidden, but it can be changed. [[Pop-up blocker settings, exceptions and troubleshooting]]

  • Problem with DRL Attachment

    Hi, I have a problem with DRL Attachment.
    In GSM Spec, when I try to attach a file (few Kb) in Supporting Document Section, upload works fine. But when I try to download attached file returns this error:
    Server Error in '/drl' Application.
    Microsoft.Web.Services2.Security.SecurityFault: The security token could not be authenticated or authorized ---> System.Exception: WSE565: The password provided the SecurityTokenManager does not match the one on the incoming token.
    at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyPlainTextPassword(UsernameToken token, String authenticatedPassword)
    at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyPassword(UsernameToken token, String authenticatedPassword)
    at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyToken(SecurityToken securityToken)
    at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.LoadXmlSecurityToken(XmlElement element)
    --- End of inner exception stack trace ---
    at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.LoadXmlSecurityToken(XmlElement element)
    at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.GetTokenFromXml(XmlElement element)
    at Microsoft.Web.Services2.Security.Security.LoadToken(XmlElement element, SecurityConfiguration configuration, Int32& tokenCount)
    at Microsoft.Web.Services2.Security.Security.LoadXml(XmlElement element)
    at Microsoft.Web.Services2.Security.SecurityInputFilter.ProcessMessage(SoapEnvelope envelope)
    at Microsoft.Web.Services2.Pipeline.ProcessInputMessage(SoapEnvelope envelope)
    at Microsoft.Web.Services2.WebServicesExtension.BeforeDeserializeServer(SoapServerMessage message)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Web.Services.Protocols.SoapHeaderException: Microsoft.Web.Services2.Security.SecurityFault: The security token could not be authenticated or authorized ---> System.Exception: WSE565: The password provided the SecurityTokenManager does not match the one on the incoming token.
    at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyPlainTextPassword(UsernameToken token, String authenticatedPassword)
    at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyPassword(UsernameToken token, String authenticatedPassword)
    at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyToken(SecurityToken securityToken)
    at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.LoadXmlSecurityToken(XmlElement element)
    --- End of inner exception stack trace ---
    at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.LoadXmlSecurityToken(XmlElement element)
    at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.GetTokenFromXml(XmlElement element)
    at Microsoft.Web.Services2.Security.Security.LoadToken(XmlElement element, SecurityConfiguration configuration, Int32& tokenCount)
    at Microsoft.Web.Services2.Security.Security.LoadXml(XmlElement element)
    at Microsoft.Web.Services2.Security.SecurityInputFilter.ProcessMessage(SoapEnvelope envelope)
    at Microsoft.Web.Services2.Pipeline.ProcessInputMessage(SoapEnvelope envelope)
    at Microsoft.Web.Services2.WebServicesExtension.BeforeDeserializeServer(SoapServerMessage message)
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    *[SoapHeaderException: Microsoft.Web.Services2.Security.SecurityFault: The security token could not be authenticated or authorized ---> System.Exception: WSE565: The password provided the SecurityTokenManager does not match the one on the incoming token.*
       *at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyPlainTextPassword(UsernameToken token, String authenticatedPassword)*
       *at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyPassword(UsernameToken token, String authenticatedPassword)*
       *at Microsoft.Web.Services2.Security.Tokens.UsernameTokenManager.VerifyToken(SecurityToken securityToken)*
       *at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.LoadXmlSecurityToken(XmlElement element)*
       *--- End of inner exception stack trace ---*
       *at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.LoadXmlSecurityToken(XmlElement element)*
       *at Microsoft.Web.Services2.Security.Tokens.SecurityTokenManager.GetTokenFromXml(XmlElement element)*
       *at Microsoft.Web.Services2.Security.Security.LoadToken(XmlElement element, SecurityConfiguration configuration, Int32& tokenCount)*
       *at Microsoft.Web.Services2.Security.Security.LoadXml(XmlElement element)*
       *at Microsoft.Web.Services2.Security.SecurityInputFilter.ProcessMessage(SoapEnvelope envelope)*
       *at Microsoft.Web.Services2.Pipeline.ProcessInputMessage(SoapEnvelope envelope)*
       *at Microsoft.Web.Services2.WebServicesExtension.BeforeDeserializeServer(SoapServerMessage message)]*
    System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) +431714
    System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +204
    Xeno.Prodika.XenoDoc.Handlers.DRL.DrlService.GetAttachment(tIdentifier Identifier) +50
    Xeno.Prodika.XenoDoc.Handlers.DRL.DrlWebServiceLifecycleHandler.Load(IXDocument xdoc, String pkid) +151
    Xeno.Prodika.XenoDoc.BaseLibraryManager.LoadDocumentPhaseII(IXLibraryConfiguration libConfig, IXDocument xdoc, String pkid) +42
    Xeno.Prodika.XenoDoc.BaseLibraryManager.LoadDocument(String pkid) +18
    Xeno.Prodika.XenoDoc.XDocumentSystem.LoadDocument(String library, String pkid) +39
    Xeno.Prodika.XenoDoc.XDocService.LoadDocument(String library, String pkid) +24
    Xeno.Web.UI.Common.Controls.Popups.DRL.DrlAttachmentViewerPopup.OnLoad(EventArgs e) +320
    System.Web.UI.Control.LoadRecursive() +50
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    this problem happened to anyone?
    Thanks.

    You didnt say whether this is 6.1 or 6.0, but if 6.1, make sure the domain user you have set in SetupAssistant for DRL Service has access and is using the correct password to the file share where the files are stored.
    If 6.0 the user and password are in the environmentvaribales.config file.
    Hope that helps.
    --Trey                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Attachements showing up as winmail.dat

    I just moved from a Windows XP machine to a MAC and I'm having problems receiving attachements.
    I'm using Entourage as my mail client.
    I've sent some emails containing attachments to myself recently from my Windows machine using Outlook 2003 and to other people with our company.
    When look at the email on my MAC their is no attachment but a winmail.dat file.
    If I look at the email back on my windows machine it is corrrect (Both Outlook and Entourage are configured to check the same account). I quized the other people within our company as they are also using MACs and they stated the attachments came thru fine.
    Any idea why the problem seems to be unique to my new MAC?
    Regards,
    Mike
      Mac OS X (10.4.6)  
      Mac OS X (10.4.6)  

    The above answers are absolutely correct. And to give a little more information on this problem, I am quoting this almost verbatim from John Rizzo's recent article in MacWorld magazine:
    =================
    It's bound to happen. Occasionally, you'll receive an un-openable email attachment named winmail.dat from one of your Windows friends, and he or she will insist that the attachment was a Microsoft Word file or some other type of a file.
    First things first: DON'T BLAME YOUR MAC!! The fault lies on the Windows side, in Exchange Server & Outlook for Windows. When Outlook sends an email message in Rich Text Format over the Internet, Exchange Server sometimes creates an attachment called Winmail.dat, containing the message and some encoding data.
    One quick fix is to download and install the utility "TNEF's Enough" on your Mac:
    http://www.joshjacob.com/macdev/tnef/index.html
    This utility can extract a Mac-usable file from a Winmail.dat attachment in a few seconds.
    But running that utility all the time will get old pretty quickly if your friends are sending you lots of attachments and they're all winmail.dat files. If you're getting lots of attachments like this, an even better fix is to ask your Windows friends to turn off RTF in Outlook for Windows. They would choose Tools->Options, select the "Mail Format" tab, and then specify "Plain Text" in the "Send In This Message Format" list, and then click on OK. Once they do that, you will not receive those winmail.dat files in the future.
    OR, the best of all fix would be for them to point their network administrators to the Microsoft Knowledge Base article "How to Prevent the winmail.dat file from being sent to Internet Users" at http://support.microsoft.com/kb/q138053/
    Power Mac G4 QuickSilver Dual 800 MHz   Mac OS X (10.4.4)  

  • Email Notification Problem

    Hi,
    We are currently having a few issues with the email activity. We can send email successfully, but at present only with the email body text as an html attachment.
    The few queries we have are:
    1 ) Does the email body have to be sent as an attachment (i.e. is this the functionality of the email activity?)
    2 ) The multipart message setting doesn't always retain the value entered. For example, if i was to set the value to 0, Jdeveloper would reset it to 1. At present i am assuming this is because of the email body being sent as an attachment. Does Jdeveloper have rules governing value settings?
    3 ) When setting an attachment such as a pdf, copy rules are created automatically by the email activity according to the multipart message setting. The problem we are having is that when editing each rule we get the message:
    "XML schema type 'anyType' and xml schema elements 'any' and 'anyAttribute' are not supported in the UI, but it is supported in the server. You can still try to type in XPath in the text area below."
    This means that we have to manually enter the multipart message path in the XPath textbox to set an attachment. Is there a better way than this?
    Thanks in advance,
    Gull

    Hi Gull ,
    When you add an email activity to your process,by default it sets the email body as multi part.In case you want to send a plain text email ,you can try out a work around i applied (Though i have not applied any patch).Go to the source .bpel file of your process and comment the section in the main sequence where the mixed message content is stated.
    1.Comment or remove that particular section.
    <!-- <copy>
    <from>
    <Content xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">multipart/mixed</MimeType>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MultiPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    </BodyPart>
    <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    </BodyPart>
    </MultiPart>
    </ContentBody>
    </Content>
    </from>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[1]/ns1:MimeType"/>
    </copy>
    <copy>
    <from expression="string('NotificationAttachment1.html')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[1]/ns1:BodyPartName"/>
    </copy>
    <copy>
    <from expression="string('Hello')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[1]/ns1:ContentBody"/>
    </copy>-->
    2.And add the following..
    <copy>
    <from expression="string('Hello.Any message you want enter')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody"/>
    </copy>
    or you can go back to the daigram tab,click on the email activity enter your message.Just remember to uncheck the Multipart Message option(coz by deafult it gets checked).And Apply .
    See if this helps..Cant say if the current patch solves this problem completely.
    Regards,
    Priyanka

  • Cisco 7941G phones will not boot up after factory reset.

    Cisco 7941G phones will not boot up after factory reset.
    The following happens.
    1. Speaker light lit (Green)
    2. Phone displays a firmware upgrade page (see attachment) for a few minutes. (Doesn't seems to be upgrading, but it "saids" upgrading)
    3. Saw Cisco logo with a Java Powered page.
    4. The whole thing loops again and again...
    I think the reason why the phone isn't booting up is because the phone needs to know where to find the configuration/firmware files from a tftp server. I do have a TFTP server, but normally I need to go in settings to change the alternative tftp server, but the thing is that now I can't even press the settings button...
    Please help.

    How many phones were reset and upgrading at one time? What is the setting of the TFTP Maximum Serving Count (Advanced TFTP Service Parm) on each of the TFTP servers?
    Sounds like too many devices trying to use TFTP at once.

  • This is the regular status of the memory of my macbook pro. Do you think I need a RAM upgrade?

    Hi there,
    I'm hoping to seek the expert views of the community here.
    I have a MacBook Pro, Late 2011, 17 inch. Running latest version of Mavericks. Speed seems to have slowed somewhat, perhaps since I upgraded to Mavericks, but not certain about that. Based on my research of the Apple communities, I suspect that I may benefit from a RAM upgrade.
    Attached are a few screen shots to assist:
    Based on what I have researched in the community, the fact that I have used 3.99GB of 4.00GB, and have used 5.63GB of Virtual memory, seems to suggest to me that I have well and truly maxed out my RAM. Also there is a high number of read ins/outs (but it had been a wheile since I last did a restart on the MBP (if that has any effect on these numbers here).
    I have also read that my model of MacBook Pro is upgradeable to 16GB of RAM (2 x 8GB).
    Thoughts and views from the community would be greatly appreciated. Will additional RAM help the speed and performance of my MacBook Pro?
    Many thanks.

    More RAM is always a Prudent move...
    Kerrod wrote:
    Will additional RAM help the speed and performance of my MacBook Pro?
    It will certainly help with Performance.
    Macs can be very Fussy about RAM...
    You can use these Links to check which RAM is suitable for your Mac...
    http://eshop.macsales.com/shop/apple/memory/
    http://www.crucial.com
    It is Important to get the Correct and Matching RAM
    Those sites also have videos on how to Install RAM should you need it....

  • I have received an email from The iWork Team 15912319 Is this to be trusted

    I received this message. Is this to be trusted
    Hello there,
        We have heard about your issue from the discussion thread below:
    https://discussions.apple.com/thread/5829899?tstart=0
    We would like to know if you would be able to provide the following:
    1. Which version of Keynote?
    2. An example document that illustrates the problem (preferrably the 5.3 version of the document before the import).
    3. A system profile.
    4. Any console or crash logs.
    5. Where is the document being stored while being edited (i.e. local hard disk, iCloud, DropBox, GDrive, network share, etc).
    6. Was the document duplicated or stored using a backup program or file synchronization program (e.g. Synchronize Plus)?
    Apple System Report
    1. Click on the Apple icon on the upper left corner
    2. Select 'About This Mac'
    3. Click on the 'More Info…' button
    4. Click 'System Report' button
    5. Select File>Save
    6. Send this back to us
    Console logs:
    1.  Launch Console app from your Applications/Utilities folder
    2.  Click the Clear Display icon on the Tool Bar
    3.  Launch your app and your steps to reproduce your issue
    4.  Copy the log on the right pane
    5.  Email this back to us
    Crashlogs:
    OSX
    Crashlogs:
    Location of Crash logs can be found in the following directory for Lion:
    Users/Library/Logs/CrashReporter
    Here's a shortcut.
    1.  In Finder, Select the Go>Go to Folder
    2.  Enter the following:
        ~/Library/Logs/DiagnosticReports
    3. Look for the specific log for the app that crashed.
    4. Copy the log and email it back to us.
    iOS
    Crashlogs:
    1. Sync your device to iTunes
    2. The crash logs will be located here:
    Mac OS X : ~/Library/Logs/CrashReporter/MobileDevice/DEVICE
    Windows XP: C:\Documents and Settings\<USERNAME>\Application Data\Apple computer\Logs\CrashReporter/<DEVICE_NAME>
    Windows Vista, 7 & 8: C:\Users\<USERNAME>\AppData\Roaming\Apple computer\Logs\CrashReporter/MobileDevice/<DEVICE_NAME>
    3. Reply to this email and attach the latest few files for <App name>.
    Thank you,
    The iWork Team
    15912319

    Yes, Apple need every support we can give them to sort out all the Keynote problems.
    Just check that the return email has an Apple.com address.

  • Memory Overflow cDAQ 9174

    I running into an error (-200361) when I run my state diagram using a cDAQ 9174 chassis.  I have a 9214 is slot 1, a 9237 in slot 2 and, 9207 in slot 4.  I have tried a couple of workarounds to get this VI to work, but I have not yet been able to figure it out.  I have a hard time believing this is hardware related and am thoroughly convinced it is because of the way I have wired this VI together.  I have looked at all the links provided in all of the responses I could find to similar problems without resolution.  What data is being written so fast that the processor is unable to keep up?  See the attached VI.
    Solved!
    Go to Solution.

    I made the above mentioned changes, cleaned up some unecessary/repeated functions and am now faced with lossy data.  You can see in the attached picture, every few seconds or so the data reports zero.  What is happening that is causing this?
    Attachments:
    LossyData.jpg ‏356 KB
    ThermistorStateMachine.vi ‏129 KB

  • Graph stalls when front panel is adjusted

    So I am trying to debug a code that someone previously wrote. I am a bit familiar with the code but as I mentioned did not write it myself. The deal is that when Im in running the front panel and the graph is graphing time vs any other parameter, if you press any button on the front panel or if a sub-vi gets called the graph will stall and one has to manually reset the graph. I am not too sure why this is going on. Attached are a few screen shots of where this section of the code lives. There is a stacked sequence with two subdiagrams and it is also being called in the event structure inside one of those subdiagrams. I could also upload the whole code if needed.
    Thanks for the help guys
    Attachments:
    Graphing front panel.doc ‏456 KB

    OK, I was able to get to the code by selective unzipping.
    As a first step, you should eliminate all these value property nodes and replace them with plain local variables instead. The code os causing excessive thread switching and spends way too much time in the UI thread.
    Overall, there is way too much code. For example you have in the "graphed parameter" event the same property node in every single case of the inner case structures. These property nodes belong after the case structure, only once instance each needed!
    (Sorry, I have to do some other things now. Will look at it a little more later.....)
    LabVIEW Champion . Do more with less code and in less time .

  • On my Mac, why do websites display differently with FireFox than Safari.

    I have been using FireFox on my Mac and prefer it over Safari, BUT recently, some, not all, websites are not displaying correctly! When I use Safari all the content is there and the websites display as they are supposed to. (I tried to insert a screen shot but unable to do so) I have the most current FF version installed, unless FireFox is not happy with my older MAC OS ??

    Thank you for the info!! Attached are a few screenshots to show the problem - I now know how to do a screen shot! thx.... anyway note on the Ancestry shot Safari shows a male or female head whereas Firefox show a simple symbol for male/female. I spoke with Ancestry and it is supposed to be the male/female head icons that are displayed. In the Yahoo shot Safair displays the icons and names for reply, delete etc but Firefox has some icon that only if you hover over it will it then display the name or what it is. this is very perplexing as I really prefer Firefox over Safari... any help will be appreciated! thank you

  • Using Tags in a JSP

    Hi,
    I have an insert form based on
    a table called EXIT_APP, in which I have
    an LOV return the employee number to a field. When I do the committing though, I need to find the ID for the employee
    based on his employee number.
    I keep getting the NullPointerException
    error though.
    I have included the code from my Submit Insert form :
    <%@ page language="java" contentType="text/html;charset=WINDOWS-1252" %>
    <html xmlns:jbo="foo">
    <body>
    <center>
    <br>
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <br>
    <jbo:ApplicationModule id="package3.Package3Module" configname="package3.Package3Module.Package3ModuleLocal" username="ems_dba" password="dba"/>
    <br>
    <jbo:DataSource id="ds" appid="package3.Package3Module" viewobject="ExitApplicationsView"/>
    <jbo:DataSource id="hremp" appid="package3.Package3Module" viewobject="HrEmployeesView" ></jbo:DataSource>
    <%
    String pno = request.getParameter("Persal_No");
    oracle.jbo.ViewObject view = hremp.getRowSet().getViewObject();
    view.setWhereClause("Persal_No = " + pno);
    view.executeQuery();
    Number Eid = (Number)hremp.getRowSet().getCurrentRow().getAttribute("id");
    %>
    <jbo:Row id="exitrow" datasource="ds" action="Create" >
    <jbo:SetAttribute dataitem="*"/>
    <jbo:SetAttribute dataitem="EmplId" value="<% Eid %>" />
    </jbo:Row>
    <%
    try
    %>
    <jbo:PostChanges appid="package3.Package3Module"/>
    <jbo:Commit appid="package3.Package3Module"/>
    <p>Items Inserted Successfully!</p>
    <%
    catch(Exception exc)
    out.println("<pre>");
    exc.printStackTrace(new java.io.PrintWriter(out));
    out.println("</pre>");
    %>
    <br>
    Click here to return
    </center>
    </body>
    <jbo:ReleasePageResources releasemode="Stateless"/>
    </html>
    Any help would be appreciated.

    Hi Simon,
    I have tried the declaration previously but
    Jdeveloper says that a quoted value is needed.
    I have attached the first few lines of the error message below :
    java.lang.NullPointerException
    void myproject3_html.ExitApplicationsView_InsertSubmit._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void oracle.jsp.app.JspApplication.dispatchRequest(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.JspServlet.doDispatch(oracle.jsp.app.JspRequestContext)
    void oracle.jsp.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void oracle.jsp.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
    void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
    void oracle.lite.web.JupServlet.service(oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
    void oracle.lite.web.MimeServletHandler.handle(oracle.lite.web.JupApplication, java.lang.String, int, oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
    void oracle.lite.web.JupApplication.service(oracle.lite.web.JupRequest, oracle.lite.web.JupResponse)
    Hope it makes sense to you!
    Regards
    null

  • Read Unicode text file convert to ANSI text file

    I am new to Java. I am trying to read from, ReadUnicodeEncodedPlainTextDocument.txt, a plain text file encoded
    in Unicode, then select four particular lines, and then write those plain text lines to, WriteANSIencodedPlainTextSelectedFields.txt,
    another file encoded in ANSI.
    Using my code ConvertEncodedText.java:
    import java.io.*;
    import java.util.Scanner;
    public class ConvertEncodedText
         public static void main(String[] args) throws Exception
              File f = new File("ReadUnicodeEncodedPlainTextDocument.txt");
              Scanner scan = new Scanner(f);
              String peek1, peek2, peek3, peek4;
              boolean pk1 = false, pk2 = false, pk3 = false;
              int count = 0;
              while(scan.hasNext())     // begin search
                   peek1  = scan.nextLine();
                   if (peek1.startsWith("From"))
                        pk1 = true;
                        peek2  = scan.nextLine();
                        if(pk1 && peek2.startsWith("Date"))
                             pk2 =true;
                             peek3  = scan.nextLine();
                             if(pk1 && pk2 && peek3.startsWith("To"))
                                  pk3 = true;
                                  peek4 = scan.nextLine();
                                  if(pk1 && pk2 && pk3 && peek4.startsWith("Subject"))
                                       System.out.println("\n" + peek1 + "\n" + peek2 + "\n" + peek3 + "\n" + peek4);
                                       count++;
                                       pk1 = false;
                                       pk2 = false;
                                       pk3 = false;                                   
                                  }//if pk1 && pk2 && pk3 && peek4.startsWith("Subject")), print, begin new search
                                  else
                                       pk1 = false;
                                       pk2 = false;
                                       pk3 = false;                                   
                                  }//else begin  new search                              
                             }//if(pk1 && pk2 && peek3.startsWith("To"))
                             else
                                  pk1 = false;
                                  pk2 = false;
                                  pk3 = false;
                             }//else begin new search
                        }//if(pk1 && peek2.startsWith("Date"))
                        else
                             pk1 = false;
                             pk2 = false;
                             pk3 = false;
                        }//else begin new search
                   }//if (peek1.startsWith("From"))
              }//while hasNext
              System.out.println("\ncount = " + count);
    }As shown below, I would like to write to the following text file encoded in ANSI, WriteANSIencodedPlainTextSelectedFields.txt:
    From: "Mark E Smith" <[email protected]>
    Date: April 9, 2007 11:28:19 AM PST
    To: <[email protected]>
    Subject: FW: RFI Research Topic Up-date
    From: "Mark E Smith" <[email protected]>
    Date: May 26, 2007 11:14:12 AM PST
    To: <[email protected]>
    Subject: Batting Practice Sportsphere
    From: "Mark E Smith" <[email protected]>
    Date: May 30, 2007 11:53:45 PM PST
    To: <[email protected]>
    Subject: 3p meeting
    From: "Mark E Smith" <[email protected]>
    Date: June 20, 2007 4:09:10 PM PST
    To: <[email protected]>
    Subject: Question
    count = 4
    In order to produce the above text file,
    I would like to read the following text file encoded in Unicode, ReadUnicodeEncodedPlainTextDocument.txt:
    From: "Mark E Smith" <[email protected]>
    Date: April 9, 2007 11:28:19 AM PST
    To: <[email protected]>
    Subject: FW: RFI Research Topic Up-date
    Hi, Dr. Ulrich.? Are there any authors and titles of JME that you could recommend for my reading??
    Thanks.? Mark
    From: Joe Greene [mailto:[email protected]]
    Sent: Sat 4/7/2007 4:10 PM
    To: Mark E Smith
    Subject: RE: RFI Research Topic Up-date
    Hi Mark,
    Thanks for the update. I have met Dr. Ulrich on several occasions ? he is a great guy!
    Dr. Hammer and I also have the same advisor from graduate school. He did his Masters with my PhD advisor at Poly-Tech. We have also met many times in the past. I think you will be in good hands down there.
    It seems clear that you need to start learning JME and can perhaps forget about Windows Mobile. JME represents a smaller footprint for Java that contains support for various APIs for mobile functionality. I do not own any JME books, but a search on Amazon.com turned up what looks like several good ones.
    Best wishes
    Joe
    ----------------------------------------------------&#8232;Joe Greene, Ph.D.&#8232;DCSIT&#8232;it.sdu.com&#8232;[email protected]&#8232;http://www.greene.org
    From: Mark E Smith [mailto:[email protected]] &#8232;Sent: Saturday, April 07, 2007 9:30 AM&#8232;To: [email protected]&#8232;Subject: RFI Research Topic Up-date
    Welcome to the conversation, Dr.Greene.? This is where we are so far.? I would appreciate your thoughts.
    Thanks.? Mark
    From: "Mark E Smith" <[email protected]>
    Date: May 26, 2007 11:14:12 AM PST
    To: <>
    Subject: Batting Practice Sportsphere
    Saturday, May 26, 2007
    Hi, Dr. Ulrich.? This read-sensitive run-recognition pitching distribution is perhaps a commercial problem in a less sophisticated framework.? Could we build a simple commercial application and then customize the solution for the Ballpark functions and framework?? Thanks.? Mark
    From: "Mark E Smith" <[email protected]>
    Date: May 30, 2007 11:53:45 PM PST
    To: <[email protected]>
    Subject: 3p meeting
    Hi, Dr. Ulrich.? Attached are a few notes from my research of the project docs that you sent me.? I am looking forward to our 3p meeting.??Thanks.? Mark?
    From: "Mark E Smith" <[email protected]>
    Date: June 20, 2007 4:09:10 PM PST
    To: <[email protected]>
    Subject: Question
    Hi, Dr. Ulrich.? Pine-tar.? What do you think?? Would you please show me how to pitch sliders and splitters into this so I can study the features in detail?? Thanks.? Mark
    P.S.
    As you can see, my code reads the particular sequence of 4 selected fields, From, Date, To, and Subject,
    out of an email that contains that specific sequence of 4 fields then I would like to place them in a text file
    called WriteANSIencodedPlainTextSelectedFields.txt, and then print the number of emails in the document.
    Instead of the desired output I would like to write to the file WriteANSIencodedPlainTextSelectedFields.txt; I am only getting this:
    Count = 0
    What is my problem???
    Thanks,
    Mike

    What is my problem???Obviously one of your conditions not being true...
    What does your question have to do with the thread's subject, btw?

Maybe you are looking for

  • TX needs to be reset to boot up most of the time

    Approx 75% of the time my TX has to be reset to turn on successfully. What's up with that? Post relates to: Palm TX

  • Bug in replace all. escape characters are not working.

    Hi, My requirement is that whenever i see ":" (Colon) in the string then i want to replace it with (\:). So i tried String escapedTitle = "title:the world is not enough".replace(":", "\\:") and to my surprise, when i printed escapedTitle i got title\

  • Viewing Podcast Meta Data?

    On my old 30Gb iPod, when I downloaded a podcast (In particular Xbox Live's Major Nelson), I used to be able to click the wheel 3 times and it would show his comments about the podcast. Such as his interviews, and information about what the podcast c

  • Using File Object in JavaFX 2.2 to set home directory

    Am I going bongers or what? Or is there a bug? Has anyone had this problem with the following line: File dir = new File(getClass().getResource(".").getFile()); <-- this line is the culprit Choose.setInitialDirectory(dir); causing your programme to cr

  • When jobs are not posting it show error?

    Hi All, We have requirement, when particular jobs are not posting(E-recruitment), it should give a warning message. Is it possible. If yes, Could you please advise. Regards BTM