How to select Defferent CLDC versions  in Eclipse

Is it the right way of creating MIDP Application with different CLDC versions.
Ie, by changing the configuration in �.
Properties>J2ME>Preverification>use specific configuration>��. here we can change the cldc version (Assuming the WTK is plugged into Eclipse).
please help me.........

In our scenario we have two production versions and also we are in MTO strategy. While creating the sales order is there any option to select the production version (i.e.) before planning for that corresponding sales order I have to choose the production versions.
If the Production version selection is based on Lot size means No problem.
If both the Production version is same lot size, system will select the first PV only in MRP
In STD SAP, we can't Give Production Version  in sale order level,
If you want after MRP run , U can assign Production version in plan order or in production order Manually

Similar Messages

  • How t use defferent handset (Emulator) with Eclipse --very IMP for u and me

    Hi all,
    I am using Eclipsewith ME + Suns WTK(2.2 , 2.5 and2.5.1 versions ) for devoleping Midlet Application.I have to teest my Midlet suite for
    a) MIDPI version 1.0 and CLDC 1.0 handsets
    b) MIDPI version 1.0 and CLDC 1.1 handsets
    But there are no Handsets with the above configuration available in these wtk versions.
    But I can change the cldc version in the Preference page of Eclipse
    (Eclipse>Windows>Preference>j2me>preverification>��..). &
    (Eclipse>Project Propertise>preverification...............................)
    Which among these Is the correct way?
    ====================================
    Also i got a url ---- http://developers.sun.com/mobility/device/device
    Here there are number of hand sets supports different CLDC and MIDP versions
    But how can i use this devise�s Emulators with Eclipse ME?
    Please give me a reply ,if anyone knows...........?
    ==================
    Many Many Thanks
    Bala M

    I am all new to Handheld development and saw that your useing Eclipse ME. Is there a way to get the j2me api into eclipse so the environment provides some insight? Right now im struggling in forward movement as I dont know any of the libraries and what the examples are doing or returning.
    Thanks for any information you can provide.

  • How to select the production versions for MTO?

    Hi PP Experts,
    In our scenario we have two production versions and also we are in MTO strategy. While creating the sales order is there any option to select the production version (i.e.) before planning for that corresponding sales order I have to choose the production versions.
    Example:
    Material u2013 A  -
    sale order u2013 666001 u2013Prod version - 0001
    Material u2013 A --- sale order u2013 666002 u2013 prod version - 0002
    How to map the above scenario?
    Thanks in advance.
    Regards,
    Vimal

    In our scenario we have two production versions and also we are in MTO strategy. While creating the sales order is there any option to select the production version (i.e.) before planning for that corresponding sales order I have to choose the production versions.
    If the Production version selection is based on Lot size means No problem.
    If both the Production version is same lot size, system will select the first PV only in MRP
    In STD SAP, we can't Give Production Version  in sale order level,
    If you want after MRP run , U can assign Production version in plan order or in production order Manually

  • How to select which language version of Windows to use?

    In Finland Toshiba Satellite L670-128 comes with pre-installed Windows 7 Home Premium and the user should be able to choose between English, Swedish, Finnish, Norwegian and Danish versions of Windows. However, when I started the computer for the very first time, it started to make some final installations and setups in Swedish. It newer asked me what language version of Windows I would like to use, so now I am having Swedish Windows in my computer. It is however English version of Windows that I would like to use, so how can I change the operation system language?

    " Has the system really lost all the other language options from the harddrive while the first installation?". To the best of my knowledge when you first start a "pre-installed win 7" system there is a scroll box that sets the language and certainly for Home Premium it states that this choice cannot be changed.
    I'm confused as to the solution you are looking for. As far as I can see your options are the free software that claims it can change the installed language or go for a re-install and hope that fixes it. I'd ensure I was ready to do a reinstall and try Vistalizator first to see if it worked.

  • Selecting the older version

    Hi
    I have 7 versions of message mappings in my IR. I want to revert back to 6th version. How to select the 6th version as my current version ??
    thanks
    kumar

    Hi,
    Double click(Open) the currect version of Message mapping and goto message mapping--History
    here select the required version of mapping and do some changes to description and save it and activate
    Regards
    Seshagiri

  • How to select a stable IOS version for switch ?

    There isn't any GD version for switch. So how did I know which version is stable ?
    thanks!

    Hi there,
    Usually the most efficient way of selecting a stable version of IOS/CatOS is to take a look through the release notes at the caveats section and verify if there are any issues that would affect your network directly. In addition, working with your local SE is a good idea, as they can offer you their design advice. Usually, a wise move is going with the latest release within a given branch is the most stable, as it includes the most bug fixes. I hope this helps.

  • How to select text from a webpage

    hi. i have firefox for my n900. i would like to know how to select some text from a webpage so i can copy and paste it. thanks for the help. i couldn't it anywhere.

    First tap where you want the selection to start. (It might help to zoom in as far as possible first. You can do this using the volume buttons in the newly-released Firefox 1.1rc1.) Then hold the Shift key while pressing the arrow keys on the N900 keyboard to select text.
    Note: We are aware that this is not a very user-friendly way to select text, and we hope to include a better design in a future version of mobile Firefox.

  • How to download a file version from office 365 using csom

    I need to download an older file version from office 365 and get the data into a byte array. I have no trouble downloading the latest version with File.OpenBinaryStream() and I have no trouble loading the previous file versions with File.Versions. But now
    I need to actually download an older version of the file and it seems the only way is to use File.OpenBinaryDirect. So I am creating a client context using my oAuth access token and providing the correct path, but I am getting a (401) Unauthorized
    error. Looking with Fiddler I can see that the call to OpenBinaryDirect is somehow trying to post to my file URL and the server is responding with 401.
    context = TokenHelper.GetClientContextWithAccessToken(SPHostUrl, AccessToken);
    FileInformation info = File.OpenBinaryDirect(context, "/" + _fileVersion.Url);  //throws 401
    //leading slash required otherwise ArgumentOutOfRangeException
    I have to be able to access the older file versions with my c# code -- I don't have a viable app without that ability -- any help urgently needed and greatly appreciated!

    Thank you SO much (Can't wait for the next release)!
    For anyone else who lands here, here's the code I ended up using:
    // VersionAccessUser and VersionAccessPassword are stored in web.config
    // web.Url is loaded via the clientContext
    // myVersion is the FileVersion I got from the file's Versions.GetById() method
    // probably a lot of ways to get hostUrl, it just needs to be https://yourdomain.sharepoint.com/
    // - I'm running my app from a subweb
    // I had trouble following the links to get the full MsOnlineClaimsHelper code
    // (the one on msdn.com was missing RequestBodyWriter, WSTrustFeb2005ContractClient,
    // and IWSTrustFeb2005Contract
    // so I've included the code I used here.
    string myVersionFullUrl = string.Format("{0}/{1}", web.Url, myVersion.Url);
    string userName = WebConfigurationManager.AppSettings.Get("VersionAccessUser");
    string strPassword = WebConfigurationManager.AppSettings.Get("VersionAccessPassword");
    string hostUrl = Regex.Replace(web.Url, "([^/]+//[^/]+/).*", "$1");
    MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper(hostUrl, userName, strPassword);
    var client = new WebClient();
    client.Headers["Accept"] = "/";
    client.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    client.Headers.Add(HttpRequestHeader.Cookie, claimsHelper.CookieContainer.GetCookieHeader(new Uri(hostUrl)));
    var document = client.DownloadString(myVersionFullUrl);
    // These classes are needed to download old versions of files (see: http://social.msdn.microsoft.com/Forums/en-US/7746d857-d351-49cc-b2f0-496663239e02/how-to-download-a-file-version-from-office-365-using-csom?forum=sharepointdevelopment)
    // I cobbled this file from http://social.technet.microsoft.com/Forums/msonline/en-US/4e304493-7ddd-4721-8f46-cb7875078f8b/problem-logging-in-to-office-365-sharepoint-online-from-webole-hosted-in-the-cloud?forum=onlineservicessharepoint
    // and http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    using Microsoft.IdentityModel.Protocols.WSTrust;
    using Microsoft.SharePoint.Client;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Security;
    using System.ServiceModel;
    using System.ServiceModel.Channels;
    using System.Text;
    using System.Web;
    using System.Xml;
    using System.Xml.Linq;
    namespace DPSiDoxAppWeb.Helpers
    /// <summary>
    /// Create a new contract to use for issue claims for the SharePoint requests
    /// </summary>
    [ServiceContract]
    public interface IWSTrustFeb2005Contract
    [OperationContract(ProtectionLevel = ProtectionLevel.EncryptAndSign,
    Action = "http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue",
    ReplyAction = "http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue",
    AsyncPattern = true)]
    IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state);
    Message EndIssue(IAsyncResult asyncResult);
    /// <summary>
    /// Implement the client contract for the new type
    /// </summary>
    public class WSTrustFeb2005ContractClient : ClientBase<IWSTrustFeb2005Contract>, IWSTrustFeb2005Contract
    public WSTrustFeb2005ContractClient(Binding binding, EndpointAddress remoteAddress)
    : base(binding, remoteAddress)
    public IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state)
    return Channel.BeginIssue(request, callback, state);
    public Message EndIssue(IAsyncResult asyncResult)
    return Channel.EndIssue(asyncResult);
    /// <summary>
    /// Create a class that will serialize the token into the request
    /// </summary>
    class RequestBodyWriter : BodyWriter
    readonly WSTrustRequestSerializer _serializer;
    readonly RequestSecurityToken _rst;
    /// <summary>
    /// Constructs the Body Writer.
    /// </summary>
    /// <param name="serializer">Serializer to use for serializing the rst.</param>
    /// <param name="rst">The RequestSecurityToken object to be serialized to the outgoing Message.</param>
    public RequestBodyWriter(WSTrustRequestSerializer serializer, RequestSecurityToken rst)
    : base(false)
    if (serializer == null)
    throw new ArgumentNullException("serializer");
    _serializer = serializer;
    _rst = rst;
    /// <summary>
    /// Override of the base class method. Serializes the rst to the outgoing stream.
    /// </summary>
    /// <param name="writer">Writer to which the rst should be written.</param>
    protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
    _serializer.WriteXml(_rst, writer, new WSTrustSerializationContext());
    public class MsOnlineClaimsHelper
    #region Properties
    readonly string _username;
    readonly string _password;
    readonly bool _useRtfa;
    readonly Uri _host;
    CookieContainer _cachedCookieContainer = null;
    DateTime _expires = DateTime.MinValue;
    #endregion
    #region Constructors
    public MsOnlineClaimsHelper(string host, string username, string password)
    : this(new Uri(host), username, password)
    public MsOnlineClaimsHelper(Uri host, string username, string password)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = true;
    public MsOnlineClaimsHelper(Uri host, string username, string password, bool useRtfa)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = useRtfa;
    #endregion
    #region Constants
    public const string office365STS = "https://login.microsoftonline.com/extSTS.srf";
    public const string office365Login = "https://login.microsoftonline.com/login.srf";
    public const string office365Metadata = "https://nexus.microsoftonline-p.com/federationmetadata/2007-06/federationmetadata.xml";
    public const string wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
    public const string wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
    private const string userAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
    #endregion
    class MsoCookies
    public string FedAuth { get; set; }
    public string rtFa { get; set; }
    public DateTime Expires { get; set; }
    public Uri Host { get; set; }
    // Method used to add cookies to CSOM
    public void clientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)
    e.WebRequestExecutor.WebRequest.CookieContainer = getCookieContainer();
    //e.WebRequestExecutor.WebRequest.UserAgent = userAgent;
    // Creates or loads cached cookie container
    CookieContainer getCookieContainer()
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    // Get the SAML tokens from SPO STS (via MSO STS) using fed auth passive approach
    MsoCookies cookies = getSamlToken();
    if (cookies != null && !string.IsNullOrEmpty(cookies.FedAuth))
    // Create cookie collection with the SAML token
    _expires = cookies.Expires;
    CookieContainer cc = new CookieContainer();
    // Set the FedAuth cookie
    Cookie samlAuth = new Cookie("FedAuth", cookies.FedAuth)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(samlAuth);
    if (_useRtfa)
    // Set the rtFA (sign-out) cookie, added march 2011
    Cookie rtFa = new Cookie("rtFA", cookies.rtFa)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(rtFa);
    _cachedCookieContainer = cc;
    return cc;
    return null;
    return _cachedCookieContainer;
    public CookieContainer CookieContainer
    get
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    return getCookieContainer();
    return _cachedCookieContainer;
    private MsoCookies getSamlToken()
    MsoCookies ret = new MsoCookies();
    try
    var sharepointSite = new
    Wctx = office365Login,
    Wreply = _host.GetLeftPart(UriPartial.Authority) + "/_forms/default.aspx?wa=wsignin1.0"
    //get token from STS
    string stsResponse = getResponse(office365STS, sharepointSite.Wreply);
    // parse the token response
    XDocument doc = XDocument.Parse(stsResponse);
    // get the security token
    var crypt = from result in doc.Descendants()
    where result.Name == XName.Get("BinarySecurityToken", wsse)
    select result;
    // get the token expiration
    var expires = from result in doc.Descendants()
    where result.Name == XName.Get("Expires", wsu)
    select result;
    ret.Expires = Convert.ToDateTime(expires.First().Value);
    HttpWebRequest request = createRequest(sharepointSite.Wreply);
    byte[] data = Encoding.UTF8.GetBytes(crypt.FirstOrDefault().Value);
    using (Stream stream = request.GetRequestStream())
    stream.Write(data, 0, data.Length);
    stream.Close();
    using (HttpWebResponse webResponse = request.GetResponse() as HttpWebResponse)
    // Handle redirect, added may 2011 for P-subscriptions
    if (webResponse.StatusCode == HttpStatusCode.MovedPermanently)
    HttpWebRequest request2 = createRequest(webResponse.Headers["Location"]);
    using (Stream stream2 = request2.GetRequestStream())
    stream2.Write(data, 0, data.Length);
    stream2.Close();
    using (HttpWebResponse webResponse2 = request2.GetResponse() as HttpWebResponse)
    ret.FedAuth = webResponse2.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse2.Cookies["rtFa"].Value;
    ret.Host = request2.RequestUri;
    else
    ret.FedAuth = webResponse.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse.Cookies["rtFa"].Value;
    ret.Host = request.RequestUri;
    catch (Exception ex)
    return null;
    return ret;
    static HttpWebRequest createRequest(string url)
    HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest;
    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";
    request.CookieContainer = new CookieContainer();
    request.AllowAutoRedirect = false; // Do NOT automatically redirect
    request.UserAgent = userAgent;
    return request;
    private string getResponse(string stsUrl, string realm)
    RequestSecurityToken rst = new RequestSecurityToken
    RequestType = WSTrustFeb2005Constants.RequestTypes.Issue,
    AppliesTo = new EndpointAddress(realm),
    KeyType = WSTrustFeb2005Constants.KeyTypes.Bearer,
    TokenType = Microsoft.IdentityModel.Tokens.SecurityTokenTypes.Saml11TokenProfile11
    WSTrustFeb2005RequestSerializer trustSerializer = new WSTrustFeb2005RequestSerializer();
    WSHttpBinding binding = new WSHttpBinding();
    binding.Security.Mode = SecurityMode.TransportWithMessageCredential;
    binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
    binding.Security.Message.EstablishSecurityContext = false;
    binding.Security.Message.NegotiateServiceCredential = false;
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    EndpointAddress address = new EndpointAddress(stsUrl);
    using (WSTrustFeb2005ContractClient trustClient = new WSTrustFeb2005ContractClient(binding, address))
    trustClient.ClientCredentials.UserName.UserName = _username;
    trustClient.ClientCredentials.UserName.Password = _password;
    Message response = trustClient.EndIssue(
    trustClient.BeginIssue(
    Message.CreateMessage(
    MessageVersion.Default,
    WSTrustFeb2005Constants.Actions.Issue,
    new RequestBodyWriter(trustSerializer, rst)
    null,
    null));
    trustClient.Close();
    using (XmlDictionaryReader reader = response.GetReaderAtBodyContents())
    return reader.ReadOuterXml();

  • How to select Internet radio stations on iPad from Music app?

    My iPad is connected to the Internet. In the Music app I how to select Internet radio stations?
    (iPad and iTunes are up-to-date versions.)

    Having searched older posts it appers I am not the only one looking for Internet radio on iOS devices; the answer is this Mac OS X iTunes feature is not in the iOS 7 Radio app or elsewhere on iOS7.  People suggested downloading TuneIn Radio (free with over 50,000 stations).

  • How to delete the many versions of the same song?

    Help please, how do I delete old versions of a song? When I add to or tweak a piece, I first save it with a new name, like song 1, then song 2, etc. so that I have a copy of every change. This takes up space when I have 50 versions each of 10 songs. Now my hard drive is down to 7.4 and I was told to keep it in the double digits. I went to Logic,
    chose the song from the next column, then in the next column filled with versions of the same song, I selected one, like old version 1, hit delete and nothing happened. I held down the apple key too and hit delete. Nothing. HELP please. I have not used this before but my 1-1 has ended since Apple won't allow renewals anymore. Also. I have all versions saved on 2 external hard drives.
    D

    Hi,
    now first you'll need the right permissions for the folder where your songs are stored. I assume that you have the read/write permissions (or supervisor permissions).
    Let's assume your songs are named "songxversiony.logic". They will reside in a main folder named "songx" containing all the "songxversiony.logic" files, and there will be subfolders called "audio files" "bounces" "Fade files" "Project File Backups" "Sampler Instruments" (maybe) and "Undo Data" and maybe one or two others.
    1st: Usually, Logic stores your songs in /(your username)/music/Logic/... , so please open your finder and look if they are there.
    2nd: You can delete all unneeded "songxversiony.logic" files from the finder. This should be possible by hitting the delete button. Otherwise check your permissions.
    3rd: Now getting rid of the Song file (xy.logic) won't delete the really big Disk-Hogs, which are the Audio Files you used in earlier versions (but don't need them anymore). They still reside in the "Audio Files" subfolder.
    4th: Fire up Logic, load your Project. Tap the "B" key to open the Bin and there you'll have all the audio files that ever were used in your project. Now many of them aren't needed anymore. So *within the bin* hit Shift-U to select all unused Audio files (or in the menu: edit -> select all unused). Hit DEL to remove them from the bin.
    5th: Now these hogs are *still there* (what the...? ) To finally get rid of them, go to Logic's Menu bar: File -> Project -> clean up. You will be asked if you really want to delete the unused files, and yes, off they go to the trash.
    You may also look inside the bounces folder if there are old bounces you don't need anymore.
    Problem solved.
    Fox

  • How to delete the project  version RELEASED.

    System is below:
    " Project 1522DJ110001 version RELEASED already exists
    Message no. CJ016
    Diagnosis
    A Version RELEASED already exists for project 1522DJ110001.
    System Response
    Processing stopped. "
        but in the system , there are no  "Project 1522DJ110001". so the user can't create the project "1522DJ110001".
        how to delete the Project 1522DJ110001 version RELEASED ?
    Please explain me all the steps to be required.
    Thanks in advance!

    Hi Harish,
    When I select Delete Project Version from Extras menu in CN41, its asking session number and version.
    In session number no serch help is avialble. I am keeping it blank and seleting RELEASED in version.
    After pressing enter I am getting an error Project Version RELEASED cannot be deleted??
    Let me the exact steps to deleted the Project Version.
    Thanks and Regards,
    Atul R. Rajmane

  • How do i find the version for my garage band software?

    How do i find the version of my Garage Band software?

    Select it in the Finder and choose Get Info from the File menu, or open it and choose About GarageBand from the GarageBand menu.
    (118047)

  • HOW to download The Demo Version of Oracle JD Edwards Enterprise One 9.0,

    Dear Friends,
    Can any one tell me how to download The Demo Version of Oracle JD Edwards Enterprise One 9.0, for Practice purpose,
    if you have any links please tell me,
    and how much capacity of hard disk need to store the same.
    I am Learning the Oracle JD Edwards ERP, so that i want to Practice it in my home.
    Is it possible to work demo version with out Internet facilities?
    regards.
    AR

    user11690597 wrote:
    Thanks for the link, but not able to find JDE demo version for download.It's not quite as simple as 'click the download' button. You gotta get the infrastructure in place.
    As recommended, go to http://edelivery.oracle.com , click on Continue, fill the legal page, select JD Edwards for your OS, and start downloading. I would probably start and stop with the Installation document, since that likely has information such 'how much of the 60GB download is really required'.
    In the Oracle world, learning and practicing starts with reading.

  • How to select the Alt BOM in the Sub-Contract PO

    Dear All,
    please tell me how to select the alternative BOM in the sub -contracting purchase order.
    for the above said requirement i have cretaed production versions and the BOMselction method also i have selcted in the material master data as "2" means BOM by produ ction version.
    so how can i select the alt BOm in theSub-contracting PO.
    Thanx in advanvce
    regards
    Srinivas

    Hi,
    SAP help says you have to write the production version in the subcontracting info record:
    http://help.sap.com/saphelp_46c/helpdata/en/b2/fa1ed4d51d11d1a69e0000e83235d4/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/35/b0e96787a62488e10000009b38f9b7/frameset.htm
    (I've checked a subcon-info record but sorrowfully I havent found a field for this...if you can find please let me know)
    BR
    Csaba

  • How to find out the versions of family pack and mini pack installed?

    There are family pack and mini pack for HRMS.
    How to find out the versions of family pack and mini pack installed
    just by a Unix command or sqlplus Select statement?
    Thanks

    you can get the Minipack version of the products by querying fnd_product_installations or ad_patchdriver_minipks, for family packs you need to query through Metalink, OR if you have u driver file which resides on $AY_TOP/discoverer, looks for the minipacks/familypack version in the driver file.

Maybe you are looking for

  • Error in saving query

    Dear All, I have installed 2007B release. I have created new database. When i am trying to save a new query in this database, an error message appears "To generate this document first define document series in administration module. Message [131-3]"

  • Show value in "customer" field of FAGLB03

    Hi Experts, we have a requirement to Show value in "customer" field of FAGLB03 for all sales related transactions. Your support is appreciated. Thanks

  • X86 Patch 124939-03 recommended for Solaris 10 SPARC

    Patch 124939-03 (SunOS 5.10_x86: JDMK 5.1 patch) was recommended today by Sun Update Manager on my Solaris 10 u3 SPARC machine. Is this normal? Doesn't look like it. Should I try to install it?

  • Event For Field Validation in Table maintenance generator

    Hi Friends, i need to validate the filed in my ztable , when the value is entered in to that field i,e if the value of that field is > 100 its should give error message. I already wrote code in the event  "Creating A New Entry" of event nor 5 as foll

  • How to password protect a Polymorphic VI

    Sir/madam,               I am working in a project which seems to have some polymorphic VI.So i need to password protect the polymorphic Vi .I need to know how to protect it. Regards Sathish Soliton Technologies Bangalore India 91(80)41208600