ALM - UFT integration, how we can upload logs and screenshots at ALM while UFT execution

Summary - ALM - UFT integration, how we can upload logs and screenshots at ALM while UFT execution.
1) ALM And UFT both are inetgrated successfully, all resource files(datatable,fucntion library,OR etc) are already saved in ALM. Test scripts are running and getting passed without any issue.
2) But our requirement is little more - we want to attach screnshots with test scripts with each run at while execution.
    and second thing is logs , we want logs to be generated at run time and gets attached with every run 
please find attach screenshots , it is to show attchment and logs for each run,
Will it require expertise in OTA(open test architecture).
please suggest any path forward or any clue which can lead to proper solution.
Regards
Santosh

Hi DST
This is a great effort and gesture. thank you on behalf of all the newbies.
PJ

Similar Messages

  • TS3195 I can upload photos and smaller size videos but when a video is 24 minutes long for instance, it doesn't upload at all from my iPhone to the PC. How do I upload these videos that are longer in length?

    I can upload photos and smaller size videos but when a video is 24 minutes long for instance, it doesn't upload at all from my iPhone to the PC. How do I upload these videos that are longer in length?

    Are you using any software to import videos? Did you tried Picasa or you just open your iPhone from My Computer?

  • How i can upload my text messages to icloud

    how i can upload my text messages to icloud

    An iCloud backup includes text messages iCloud: iCloud storage and backup overview
    How to: iOS: Back up and restore your iOS device with iCloud or iTunes
    Note that you will not be able to see the text messages on iCloud -- the backup is only there for use in restoring in the event of a problem.
    There is no way to transfer text messages to iCloud and have them viewable on iCloud.com

  • How we can upload the data through BDC for transaction J1ID

    Hi guru
    How w can upload the data for Transaction J1ID.In this we want to upload the data for Customer Excise details. I want to upload the data on behalf of Customer (KUNNR) becasue customer is a primary KEY. Table name: J_1IMOCUST
    Fields. 11 Fields.plz provide some code logic.
    KUNNR     J_1IEXCD     J_1IEXRN     J_1IEXRG     J_1IEXDI     J_1IEXCO     J_1ICSTNO     J_1ILSTNO     J_1IPANNO     J_1IEXCICU     J_1ISERN

    Hi,
    I dont see any difficulties in doing BDC upload for J1ID, You have to record by giving the New Entries button and then enter all the details of customers using table control technique.
    SEARCH SCN for Table Control in BDC
    Regards
    Karthik D

  • How i can access log file in servlet?

    How i can access log file in servlet then display it to browser.
              Can i have peice of codes...
              Thanks in advance.!
              

    This is not something that can be answered easily. There is quite alot of code involved....
    To get started I suggest you read up on the built-in package 'DBMS_LOB' from Oracle . Most of what you need you should find there.
    regards Dave.

  • How i can upload my photo in SDN Business card ?

    How i can upload my photo in SDN Business card ? its asking htttp... there is no option for browse my system , and select and upload photo
    pls advice

    You will need firefox to complete following steps.
    1. Upload your pic on www.pixhost.org.
    2. When page with your pic is shown, right click on your pic and copy the location. Remember the link given under 'show to friend' will not work.
    3. Edit your pic on business card and paste the URL. Click preview to see the photo.
    4. At last click save to update your photo on your business card.
    I hope this will work for you.

  • How I can upload all my music CDs from my laptop's itunes to the iCloud? I want to free up space on my laptop.

    How I can upload all my music CDs from my laptop's itunes to the iCloud? I want to free up space on my laptop and thought the iCloud was a storage site.

    It's a syncing service, not a storage site.  You can access your CD music from iCloud you have to subscribe to iTiunes Match: http://www.apple.com/itunes/itunes-match/.

  • My I pad 1 sometimes while watching working switches off and go back to home page ... Why ? Also I need to know how I can upload my photos and pictures from laptop to my I pad.  I tried thru I tunes but not work.

    My I pad 1 sometimes while watching working switches off and go back to home page ... Why ? Also I need to know how I can upload my photos and pictures from laptop to my I pad.  I tried thru I tunes but not work.

    Satmar wrote:
    My I pad 1 sometimes while watching working switches off and go back to home page ...
    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    Note:
    Also consider Deleting any Apps you have Purchased / Downloaded but you now never use...
    Satmar wrote:
    Also I need to know how I can upload my photos and pictures from laptop to my I pad.
    See Syncing photos to devices
    Here  >  http://support.apple.com/kb/HT4236

  • How do I upload contacts and calanders from Outlook to iCloud

    How do I upload contacts and calanders from Outlook to iCloud

    Music is not stored in the iCloud. Past purchases can be reloaded from the cloud, and iTunes Match provides this function to non-purchased music.

  • My MacBook Air won't stay off. I turn it off and it will wait anywhere from a few seconds to a few hours and turn itself back on. You can see how that can get annoying and I can't seem to solve the problem.

    I turn it off and it will wait anywhere from a few seconds to a few hours and turn itself back on. You can see how that can get annoying and I can't seem to solve the problem.

    There's a slight chance this might help:
    Intel-based Macs: Resetting the System Management Controller (SMC)
    Otherwise it needs to be repaired.

  • How I can internatiolization OK and Cancel buttons confirmDialog?

    private void clickButton() {
              int response = JOptionPane.showConfirmDialog(this, resBundle.getString("Confirmation_text_itroduction"),
    resBundle.getString("Confirmation_title"), JOptionPane.OK_CANCEL_OPTION,
                        JOptionPane.QUESTION_MESSAGE);
    if (response == JOptionPane.OK_OPTION) {
                   System.out.println("OK button clicked");
              } else if (response == JOptionPane.CANCEL_OPTION) {
                   System.out.println("Cancel button clicked");
    As you can see I internatiolization the title of confirm dialog and text (use object resBundle). OK!
    But how I can internatiolization OK and Cancel buttons is this confitm dialog?

    OK, I can internatiolization buttons "OK" and "Cancel" in confirm dialog:
    private void clickTestKindButton(String message) {
              Object[] options = { resBundle.getString("OK"),
                        resBundle.getString("Cancel") };
              int response = JOptionPane.showOptionDialog(this, message, resBundle
                        .getString("Confirmation_title"), JOptionPane.OK_CANCEL_OPTION,
                        JOptionPane.QUESTION_MESSAGE, null, options, options[0]);
              if (response == JOptionPane.OK_OPTION) {
                   new IntroductionTest();
              } else if (response == JOptionPane.CANCEL_OPTION) {
                   System.out.println("Cancel button clicked");
         }It's work OK!
    But how I can internatiolization buttons "OK" and "Cancel" in the input dialog ?

  • How I can allow always and for all sites full-screen mode?

    How I can allow always and for all sites full-screen mode?
    And I want choose anywhere option "never show notification about full-screen mode" (screenshot attached)
    RUS
    Как я могу всегда разрешить и для всех сайтов полноэкранный режим?
    И я хочу выбрать где-нибудь опцию "никогда не показывать уведомление о полноэкранном режиме" (скриншот приложен)

    There is a preference setting on the <b>about:config</b> page that is meant for developers and testers to make this possible, but it is not meant for normal users.
    *full-screen-api.approval-required = false
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • How i can transfer photos and videos from pc to i phone

    how i can transfer photos and videos from pc to i phone

    1. Click here and follow the instructions.
    2. Import them into an iTunes library, converting them to MPEG-4 if needed, and then sync the iPhone with that library.
    (113603)

  • Hi guru's in SMART FORMS how i  can get subtotals , and page totals

    hi guru's in SMART FORMS how i  can get subtotals , and page totals plz help me

    Hi
    check this
    Subtotals - Check the link...
    <b>Re: Subtotal with Table Node in smartforms can use the PROGRAM LINES node to calculate the page totals in Table node.
    Table Node has three sections:
    Header: (Triggered once in the beginning of a page)
    Create a Program lines node to reset the value of TOTAL to 0.
    Main Area (For each row of internal table)
    Create a Program lines node to add the Value to TOTAL
    Footer (Triggered once in the End of a page)
    Display the TOTAL
    Note: 1) You can declare the TOTAL variable in the GLOBAL Definitions under GLOBAL DATA.
    2) In the PROGRAM lines always pass the TOTAL in both INPUT and OUTPUT parameters
    Regards
    Anji

  • On my iCloud Total Storage 55.0 GB Available 52.3 GB  if there is no way to fix that , how i can erase that and do it again

    On my iCloud ( [email protected] )
    Total Storage 55.0 GB Available 52.3 GB 
    If there is no way to fix that , how I can erase that and do it again.

    What is it you want to fix? That says you have used 2.7GB of the 55GB on your account and have 52.3 left ("available"). If you are wondering how you used 2.7GB, them davidmenzel's recommendation is spot on.

Maybe you are looking for