ISR Adobe Form Validation

hi,
In ISR Adobe Forms I have 2 textfields where the user can enter the telephone no and email id .I want to do validation.So I have given the validation pattern as '('999')' 999-9999 and A'@'A'.'AAA.But it is showing "Field Validate Failed"..
What is the reason?
Can anyone tell me the steps how to validate the fields in adobe form..
Regards,
Rheema Rahael.

Hi Rheema,
Either you can do the validation messages through the BAPI return messages fromt the BADI or through scripting by using the message box method (refer adobe life designer help). I would ssugggest to do more validations at script level or do a thorough check of the form, while pressing the review button (user command -'CHECK'.).
Regarding the validation patterns, kindly check the help doc of designer.
Hope these helps,
- anto.

Similar Messages

  • ISR Adobe forms send by email

    Hi,
    is it possible to send ISR Adobe form by email? I would need to feel the form with data and send it.
    Thanks inadvance,
    Anna

    Hi Anna,
    Have you created a form through the HCM Processes and Forms scenario?  If you have, you can send a form from one person to another with form information filled in by the form initiator, but this has to be configured using workflow, and it would only appear in their Workflow Inbox.
    This is a link to SDN eBook on e-mailing Interactive Forms.  This is not done with HCM Process and Forms, but gives you an idea on how to do it...
    [SAP Interactive Forms by Adobe for Processing with eMail (Session 4J)|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/203674f5-bdfc-2a10-3988-8aeaff041744]
    Hope this helps,
    Cheers,
    Kevin

  • Adobe form validation with Print button

    Hi All,
    I have an adobe form with field validation (javascript) already set up but I'm trying to add one more feature to the validation.
    Let me explain my initial validation first:  I have 18 required fields with their tooltip name having an '*' at the end.  Any fields not filled in with this tooltip marker will show up on an alert message when the print button is selected.
    There are two fields called IException and Amount that are required but an End User might have additional IExceptions and corresponding Amounts.  Therefore I have created 5 textboxes for each but only the first IException and Amount are absolutely required (and I use a '*' within their tooltip).  Now if an End User has an additional IExceptions ("IException2") and fills out this field, I need to make it mandatory that "Amount2" would also have to be filled in.
    Here is my code: [code]
    function validateFields()
    var flg = 0
    var n = this.numFields
    var fArr = new Array();
    for(var i = 0;i<n;i++)
    var fn = this.getNthFieldName(i);
    var f = this.getField(fn);
    var tt = f.userName
    if(tt.indexOf('*')!=-1 && f.value == f.defaultValue)
    flg++;
    fArr[fArr.length] = tt;
    if(flg>0)
    app.alert('There are '+flg+' fields that require a value\n\n'+ fArr,3)
    var IException2 = document.getElementById('IException2').value;
    var Amount2 = document.getElementById('Amount2').value;
    if ((IException2.length >0) && (Amount2.length == 0))
    app.alert('Amount is missing')
    else
    document.ExceptionForm1.print();
    validateFields();
    [/code]
    Currently when one of the require fields is NOT filled in, i receive my first alert message.  If all required fields are filled in my print button doesn't work.  Also if all required fields are filled in and IException2 is also filled in but Amount2 is not, I don't receive my second Alert message.  So my code works up to the "Var IException2 = document....." and I don't know what the issue is.
    Thank you for your help in advance. 

    One more question,  since I have 4 of these...I'm having trouble getting the button to do exactly what its suppose to based on what's filled in because i think i have my '{ }' messed up and or IF/ELSE statement is wrong...can you please take a look..
    function validateFields()
    var flg = 0
    var n = this.numFields
    var fArr = new Array();
    for(var i = 0;i<n;i++)
    var fn = this.getNthFieldName(i);
    var f = this.getField(fn);
    var tt = f.userName
    if(tt.indexOf('*')!=-1 && f.value == f.defaultValue)
    flg++;
    fArr[fArr.length] = tt;
    if(flg>0)
    app.alert('There are '+flg+' fields that require a value\n\n'+ fArr,3)
    var a = this.getField('IException2').value;
    var b= this.getField('Amount2').value;
    if ((a.length >0) && (b.length == 0))
    app.alert('Since IException 2 is filled in, Amount 2 is also required')
    var c = this.getField('IException3').value;
    var d= this.getField('Amount3').value;
    if ((c.length >0) && (d.length == 0))
    app.alert('Since IException 3 is filled in, Amount 3 is also required')
    var e = this.getField('IException4').value;
    var f= this.getField('Amount4').value;
    if ((e.length >0) && (f.length == 0))
    app.alert('Since IException 4 is filled in, Amount 4 is also required')
    var g = this.getField('IException5').value;
    var h= this.getField('Amount5').value;
    if ((g.length >0) && (h.length == 0))
    app.alert('Since IException 5 is filled in, Amount 5 is also required')
    else
    this.print();
    validateFields();

  • Attachments in ISR - Adobe forms

    Hi,
    I need to attach a doc to the pdf (isr) at the portal level and then submit it to the approvers. please suggest how to accomplish it..
    At present, we are able to trigger an event on clicking a button and get the file name...
    Kindly suggest how we can save this doc as a whole and pass it through the workflow.
    Kindly help.
    any helpful pointers or solutions will be appreciated.
    Rgds,
    Anto

    Hi,
    Is it possible to retrieve the file name from the Adobe form and store this document on the SAPR/3 side.
    The characteristics for this field will be a text field which possess the filename.
    In the user command method, we will retrieve the document from the system and store it in the r/3 side.
    Can we store the document at the archive links in SAP. or where can we store this doc?
    Kindly help.
    any pointers/ feasibility of this suggestion or any alternmative suggestion is highly appreciated.
    for(NW 2004.)
    rgds,
    Anto

  • ISR ADOBE Form Error

    HI All,
    I have created custom scenario in QISRSCENARIO and designed adobe form. I have configured everything.
    When i try to run the scenario in Portal i am getting the following error:
    The initial exception that caused the request to fail, was:
       java.lang.NoSuchMethodError: com.sap.tc.webdynpro.services.task.ITask.getWebContextAdapter()Lcom/sap/tc/webdynpro/services/sal/adapter/core/IWebContextAdapter;
        at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.setTemplateSource(FcISRProcessEvent.java:440)
        at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callRFCIsrProcessEvent(FcISRProcessEvent.java:571)
        at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEvent.callIsrProcessEvent(FcISRProcessEvent.java:317)
        at com.sap.pcui_gp.isr.isrprocessevent.wdp.InternalFcISRProcessEvent.callIsrProcessEvent(InternalFcISRProcessEvent.java:1079)
        at com.sap.pcui_gp.isr.isrprocessevent.FcISRProcessEventInterface.callIsrProcessEvent(FcISRProcessEventInterface.java:125)
    Any Input on this is highly apreciated.
    Thanks in Advance.
    Regards
    Vj

    Hi Raja,
    the basis have solved the problem and the configuration checks for ADS are succesful now.
    Now i try to create change the code of conduct application iview change the name space to
    sap.com/pcgui~isr(dont mind the spelling i have given the right component)
    application name= IsrForm
    application parmetrs = (given according to older thread messages)
    but nothing is coming up. I get the Ie message saying
    Security settings does not allow page to be displayed correctly and only a "cross" icon is appearing at the top of the page..
    Pls tell me what should i do now..
    Regards,
    ramesh

  • Authorization Profile needed for ISR Adobe Forms

    Hi,
    We have a couple of Custom ISR's and PCR's that are launched in Enterprise Portal.
    Well my Development ID had <b>SAP_ALL</b> and <b>SAP_NEW</b> Profiles attached.
    Now, when we started testing with the sample Test id's which doesnt have SAP_ALL or SAP_NEW profiles, we are getting error in ENTERPRISE PORTAL saying that... 
    "<i>You are not authorized to use the Notification Type 99</i>"
    Can anyone help me out in knowing the exact Authorization Objects for our Adobe Forms to run in EP.
    I cannot attach SAP_ALL and SAP_NEW profiles to all my users.
    Regards,
    <i><b>Raja Sekhar</b></i>

    Hi,
    Im new to the ISR framework implementation.
    We have a problem when we try testing a scenario using the adobe part, we have not done this before and we getting errors.
    We get the following errors:
    1. When using Administrator and Adsuser:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting interface controller. (Hint: Have you forgotten to create it with createComponent()? Should the lifecycle control of the component usage be "createOnDemand"?
    2. When i use my profile username:
    com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized. The requested URL was:"https://10.142.252.157:50001/AdobeDocumentServicesSec/Config?style=document:50000/AdobeDocumentServices/Config?style=document"
    Can anyone advise me on what i should configure so that this can work properly...
    Is it an issue with the authorisation, because the ADS tests are all working.
    Thanks
    Joseph Tshwene

  • ISR adobe form unable to display the drop down

    Hi,
    I need to create a F4 help for a field in adobe form created using ISR.
    I have used the ISR text edit - Value help , But when i run the adobe form using the SFP tcode the
    F4 help is not displayed.
    Please suggest the way to populate the the input field with the domain F4 value.
    What are the prerequiste to run a ISR ?
    Thanks,
    Deeplata

    Can i run the ISR form directly form SFP tcode?

  • Drop Downs in ISR Adobe forms

    Hi,
    Pease respond to my qns regarding drop-downs.
    1. Is it not possible to provide a blank value in the drop list at index 1.
    when i tried to provide in the ADD_values method, due to the standard scripting for drop down, it gets removed. I tried changing the loop index in the standard script for the drop down. but it dumps.
    kindly help me on it..
    2. Is it posible to have column headers in the drop down.
    i divide it into columns by providing space/hyphens in the additional values for the respective field.
    3. Can we have some options which will provide search helps that looks anything like the one in R/3. i feel it is highly required when we have to select some values which are depended on a set of values. (so that the user can select the right one judiciously )
    Any pointers or alternative suggestions are highly appreciated.
    Rgds,
    Anto.

    Hi Anto,
    What release and support pack are you on for your ECC system? This is critical to what you can do.  See SAP notes 741821 and 852235 and 952693 for release limitations.
    Also please make sure you have the ISR Controls library - see SAP Note 947633 and 741381 - this give you a bunch of custom objects that you can add to your form including drop downs with and without preselected values.
    It is possible to build something like a value help by using your own user commands - which you respond to in the QISR1 BADI implementation - and some additional characteristics to hold search criteria. The ISR controls will give you the script for the buttons.
    Scenario is something like this:
    1. Search criteria fields are initially hidden.
    2. Button (custom user command) to "open up search criteria"

  • Dropdown Not Working on  ISR Adobe Form ...

    I am trying to create Dropdown for The Positiones in the ISR Form through Transaction SFP.
    I have Taken The UI Element <b>"ISR DDL 1 st Selected"</b> ie. from ISR <b>Native Library as my Form is of Layout type 'ZCI'.</b> I have also written the Logic for Populating ADDITIONAL_DATA Table .
    But, Problem is this Dropdown is Only working for Characteristic "PERNR" from the scenario. For any other chracteristic with the same process only one value is getting populated not rest.
    That Dropdown only working for characteristic "PERNR" & not for any other characteristics ??
    awaiting reply !!!
    Thanks,
    Smita

    Hi Anto,
    I have created One Scenario ZREQ & For the same i have created my<b> own BADI
    ZQISR1_ZREQ which is not copied from the standard BADI Implementation</b>, hence no question of copying the standard Functionality for PERNR.
    I have debugged my BADI code & additional Data Table getting populated exactly similar for Characterisic "PERNR" & "PLANS" , but still PERNR Dropdown is working & "PLANS " Dropdown is not.
    I am taking DD from ISR Library because its proposed that ISR Form with "ZCI" layout type should use "ISR Natiove Library" as Scenario for HR Forms & processes we create in QISRSCENARIO are defaulted to form with this Layout type.
    thanks
    smita

  • ISR -Adobe forms

    Hi, Is it posible for the initiator/processor of a form to save the data entered in the form, without submitting and later come back and submit. if so.. is there any existing functionality or do we have to provide seperate the business logic for it.

    Hi Sekhar,
    Thank you very much for your suggestion, kindly detail it, if you can, on how to call a BAdi from a script (Formcalc preferred) or any documents to guide. There is an option of calling BAdi from the script through the "click" event of a button, but i dont need a button to be displayed in a form.
    Eventhough, i feel, the button can be made hidden in the display miode, it would be great if we have more simple solutions.
    please send me any docs regarding the scripting events provided in the designer.
    I appreciate more suggestions from all gurus
    Thanks in advance,
    Anto
    Message was edited by: antony john isacc
    Message was edited by: antony john isacc

  • Adobe form as a webdynpto component

    Hi all,
    I am working on cprojects.
    The requirement is to add a new tab in the cproject screen, which has been done.
    when we press the new tab, one layout should be displayed in Pdf format, where some fields should be editable to enter values by the user. All the data entered by the user should be stored in a ztable.
    For which, I've created a layout using Adobe form, which has to be attached in that tab page. How to attach the form interface as webdynpro component in cproject.
    Its Urgent,
    Expecting Reply....

    Hi
    t.code SFP.
    definition:
    Interactive Forms based on Adobe software is SAP's new solution for forms development. Its first release has the focus on interactive use of forms. High-volume printing is supported in principle, but - being a new solution - the performance has not yet reached the same level as Smart Forms or SAPscript, two established solutions that had years to grow. Interactive Forms is the only solution that will continue to be enhanced with new features, while SAPscript and Smart Forms will be supported without limitations.
    When (or if) to move to Interactive Forms depends on your requirements. For interactive forms usage, i.e. the new functions, you have no choice, as the existing solutions don't support it. High-volume print scenarios need to be carefully analyzed to see whether your concrete requirements can be met at this point.
    However, it is possible to move to Smart Forms and design your forms in such a way that a migration at any point in the future would be but a small step. Smart Forms offers from Web AS 6.40 a migration wizard to Interactive Forms. Technically, everything can be migrated, but we recommend against things like ABAP program nodes, for example.
    You are not forced to ever go to Interactive Forms if you don't want to. It really depends on whether your client needs any of the new features in Interactive Forms. Also, if they are currently working with JetForms, they could enquire with Adobe directly what migration path they offer to the joint solution.
    go thru this links
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/4a94696de6429cada345c12098b009/frameset.htm
    example
    To get an overview idea about Adobe forms ,
    Using SFP , first you need to create a interface . in interface you can declare the import and export parameters and also the declaration part, coding etc : This is nothing but similar to Function module interface.
    And now we have to create the Form which is interactive. Create the form and enter the interface name which you have created in first step, so that the parameters , declarations of fields etc : will be copied and available in the form layout. So that you can drag and drop these declared fields ( dclared fields of interface ) to the layout.
    Create the context and layout in the form.
    The layout generated can be previewed and saved as PDF output.
    Now we need to integrate the driver program and the PDF form to get the final output as per the requirement.
    On activating and executing the form you will get a function module name just similar to smartforms.
    The driver program needs to call this FM.
    Refer to the below sample code :
    DATA : is_customer TYPE scustom.
    DATA : it_bookings TYPE ty_bookings.
    DATA : iv_image_url TYPE string.
    DATA : iv_sending_country TYPE adrc-country.
    DATA : it_sums TYPE TABLE OF flprice_t.
    DATA : docparams TYPE sfpdocparams.
    DATA : formoutput TYPE fpformoutput.
    DATA : outputparams TYPE sfpoutputparams.
    PARAMETERS : pa_cusid TYPE scustom-id.
    SELECT SINGLE * FROM scustom INTO is_customer
    WHERE id = pa_cusid.
    SELECT * FROM sbook
    INTO CORRESPONDING FIELDS OF TABLE it_bookings
    WHERE customid = pa_cusid.
    outputparams-nodialog = 'X'.
    outputparams-getpdf = 'X'.
    *outputparams-adstrlevel = '02'.
    CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
    ie_outputparams = outputparams
    EXCEPTIONS
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    OTHERS = 5.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    docparams-langu = 'E'.
    docparams-country = 'US'.
    docparams-fillable = 'X'.
    CALL FUNCTION '/1BCDWB/SM00000043'
    EXPORTING
    /1bcdwb/docparams = docparams
    is_customer = is_customer
    it_bookings = it_bookings
    * IV_IMAGE_URL =
    iv_sending_country = 'US'
    * IT_SUMS =
    IMPORTING
    /1bcdwb/formoutput = formoutput
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'FP_JOB_CLOSE'
    * IMPORTING
    * E_RESULT =
    EXCEPTIONS
    usage_error = 1
    system_error = 2
    internal_error = 3
    OTHERS = 4
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    see these links..
    https://www.sdn.sap.com/irj/sdn/interactiveforms-elearning
    /people/thomas.jung3/blog/2005/07/13/lessons-learned-from-adobe-forms-development
    /people/community.user/blog/2006/11/20/search-help-in-isr-adobe-forms
    /people/franklin.herbas/blog/2005/12/13/2d-barcode-pdf-forms-with-sap-netweaver
    /people/vani.krishnamoorthy/blog/2006/05/17/fillable-adobe-forms-using-abap
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/849b3482206353e10000000a11466f/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/82538c0c4458bbe10000000a422035/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/46/55c841d202c317e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/6d/bd2d828aa04eeb9451aad0d02ae9a0/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/dd/60694fddb74ad88cdb7d2a094f3dd2/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d4fe7fca-0b01-0010-569a-9a9c1ddf4132
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/7c3bc67e-0c01-0010-dbb3-908315896909 [original link is broken] [original link is broken]
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/7c3bc67e-0c01-0010-dbb3-908315896909 [original link is broken] [original link is broken]
    /people/vani.krishnamoorthy/blog/2006/05/17/fillable-adobe-forms-using-abap
    https://www.sdn.sap.com/irj/sdn/interactiveforms
    http://www.sap.com/company/press/press.epx?pressID=2785
    http://www.adobe.com/enterprise/partners/sap.html
    http://www.adobe.com/enterprise/partners/pdfs/sap_datasheet.pdf
    Reward all helpfull answers
    Regards
    Pavan

  • Adobe Form Custom Value Not Displayed

    Hi,
    In ISR Adobe Form , When I review the form , the values custom values are displayed.But When I click on display form, The blank original form is displayed.How can I populate the custom values in the display form...
    Please help...
    Regards,
    Rheema Raheal

    hi,
    I have designed an isr adobe form, I am able to enter the values in the form.When I choose send , I am able to get the notification number.
    When I use the notification no in the transaction iqs2, All the cahracteristics in the form are blank.I want the values of the form to be stored.
    Please help me getting the values in the adobe form after creating the notification
    Regards,
    Rheema Rahael.

  • ISR/Adobe possible on Acrobat version lower then 7.0.x

    Dear forum,
    Working with ISR/Adobe forms I know it is common sense to use the latest Acrobat reader version, or at least 7.0.1. At a customer site we face serious compatibility problems with other software when using versions from 7.0.X . So it seems we are stuck on 6.0.x. Maybe you mind that 6.0.2 is mentioned in the ISR cookbook as the first possible release of Acrobat reader.
    Unfortunately, however 6.0.2 does not seem to work properly. My question is: does anybody have ISR/adobe running with a Acrobat reader 6.x? In other words, if anyone had experience with modifying the ISR scripts to get it work on a release lower then 7.0.x?
    I’am looking forward to your answer,
    Hans GM

    Hi Hans,
    could you let me in on the incompatibilities (software, release, etc.) at your customer's site (directly if you prefer). This is quite crucial for SAP. If one customer runs into issues, others are bound to as well. (So far, luckily, we haven't heard of this yet, so it would be important to analyze whether the issue really is around Reader.)
    Some background on the topic of Reader: With continuing development on both Adobe and SAP side, new requirements and features came up and into the product over time (including a new PDF spec, 1.6 instead of 1.5). Some features also required work on the Reader. If anyone has attempted to adapt the scripts to Reader 6, they probably had a difficult time. SAP also recommends to go the latest Reader release instead of sticking with 6.0.X. Apart from the annyoing Update available pop-ups in Reader...
    Thanks in advance,
    Markus Meisl
    SAP NetWeaver Product Management

  • Adobe forms in ISR

    Hi,
    I have a scenario to create an invoice in a backend SAP system using Adobe forms.
    I have developed the form using the QISRSCEANRIO trasaction. But when I execute the form, it creates a Notification and displayes the new Notification number created.
    My need is that instead of Notification, it should directly create the invoice and show that "Invoice XXXX has been posted/parked".
    I can call the Invoice creation function module i the Proces user command method of the BADI definition QISR1. But I couldn't find a way to display the message "Invoice XXXX has been posted/parked". Everytime I submit the Form, invoice gets posted but only message appers is that "Notification created".
    Is there a way to get the message "Invoice XXXX has been posted/parked" displayed once I submit the Form.
    Thanks,
    Prasanna

    Hi,
    These ISR's have been defined in such a way that A NOTIFICATION gets created whenever an ISR Form is submitted.
    So you can cannot change the message that comes out of the standard ISR Application i.e. Notification XXX is created.
    Well,can you let us know if the Invoice is getting created properly from the BADI Implementation?
    Can you let us how you are taking care of VALIDATIONS?
    There are lot of validations which are needed to be done during Invoice creation? Can you let us know, how we can do that?
    Regards,
    <i><b>Raja Sekhar</b></i>

  • PCR Adobe Forms & ISR

    Hi,
    I have MSS implemented in portal EP 6.0 & PCR. Now i have designed one Adobe Form for displaying some data in <b>ISR Customization</b> but i dont know how i integrate this form to PCR in portal ?
    How to include it in portal MSS->PCR workset or page so as to make it visible in MSS?
    Also i would like to ask can i integrate this adobe for in webdynpro & if yes how ?
    So that i can create an iview in portal refering to the application in webdynpro for this form.
    Waiting for reply!
    Thanks in advance!
    Smita

    Hi James,
    I'm a bit new also relating ISR/PCR customizations, and in fact I need a help to get some heads up on how to start a validation(such as which BAPi should I choose, how to fill settings and so on).
    I read the bellow presentation, but I'm looking for someting more technical(such as a "how to" about creating a validation).
    Do you have any further info about it?
    Thanks,
    André

Maybe you are looking for

  • Can no longer update my apps :(

    Hi. I'm new here and well I had to change my apple Id. I had to change the the email I was using and the password I was using. Well every since I did that I can no longer update my older apps. I find It ridiculous that it wants me to use my old passw

  • I want to unmute my macbook pro

    I am not hearing any sound on my mac and I am not able to turn the volume up or down. Please help

  • Dazzle Hollywood DV

    How do I use the Dazzle Hollywood DV analog to digital converter on my iMovie 06 and my iBook G4?

  • How to tell Windows to open photos in Lightroom?

    I have Lightroom and Elements 12 on my computer (Windows Vista Home Premium). The computer automatically opens every photo in Elements 12.  However, I want to open my photos in Lightroom.  How can I change this setting?  Thank you.  June E.

  • Pxi: embedded application doesn't launch at boot up

    I selected the "Launch application at boot-up" in the "Network options/RT Target:Miscellaneous" menu before creating my application but it still doesn't launch before I open the application on a local machine (the application in the PXI seems to "wak