UPK 3.1.5 player output - HTML file extention

Hello,
Does anyone know if it is possible to modifiy the HTML output in the Player deployment format? More specifically to change the filename suffix from HTML to HTM?
Thanks,
James

I believe you can edit the HTML file directly after it has been generated; however, when you re-publish, you might have a problem.

Similar Messages

  • Converting Smartforms output content into HTML File

    Hi,
    I have a requirement, Smartforms output contents needs be converted as HTML File and it should be sent as email.
    I am able to get the Smartforms output in html format but the output is shown as binary format.
    After the fm call the job_output_info parameter is holding the smartforms output content in
    job_output_info-XMLOUTPUT[]           (xsf content)
    job_output_info-XMLOUTPUT-STSHEET[]   (css content)
    job_output_info-XMLOUTPUT-TRFRESULT[] (html content)
    Help me out how to handle the job_output_info details to html format.
    Code
    DATA v_fm_name TYPE rs38l_fnam.
    DATA v_tdsfname TYPE tdsfname VALUE 'ZVR39_SF'.
    DATA output_options TYPE ssfcompop.
    DATA job_output_info TYPE ssfcrescl.
    DATA document_output_info TYPE ssfcrespd.
    DATA job_output_options TYPE ssfcresop.
    DATA w_control TYPE ssfctrlop.
    *-Finding the Smartform Layout Name
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = v_tdsfname
      IMPORTING
        fm_name            = v_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    *-Defining the output to HTML Format
    *-Activating XSF Output
    output_options-xdfcmode   = 'X'.
    output_options-xdf        = space.
    output_options-xsfcmode   = 'X'.
    output_options-xsf        = 'X'.
    output_options-xsfoutmode = 'A'. "
    output_options-xsfoutdev  = 'P863'.
    output_options-xsfformat  = 'X'.
    *-Calling the Smartform Layout
    CALL FUNCTION v_fm_name
      EXPORTING
        output_options       = output_options
        user_settings        = 'X'
      IMPORTING
        document_output_info = document_output_info
        job_output_info      = job_output_info
        job_output_options   = job_output_options
      EXCEPTIONS
        formatting_error     = 1
        internal_error       = 2
        send_error           = 3
        user_canceled        = 4
        OTHERS               = 5.
    Giri

    Hi,
    Check this link.In that,I am converting the output of smartform to PDF and then attaching it through mail.
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap code samples/smartforms/smartform in abap.pdf

  • HTML FIle Output Error thru R/3

    Hello All,
    I have a HTML file on the SAP Server SMW0 Transaction in R/3.
    The language of the HTML File is Spanish.
    When i see the output from this transaction I'm getting the same content as in the HTML File.
    But when I'm executing the file thru an ABAP Program I'm getting some junk values in the output screen.
    But, when I chk the VIEW SOURCE Option of the same output ther the content is in the correct format.
    Is this a unicode problem .
    I can see a small code where the ANSI is specified.Instead of this can we specify any UTF or any unicode formats ?
    mso-ansi-language:ES
    Request u guys to help me out.
    Regards,
    Deepu.K

    <i>>>>Which log file records this kind of error.....</i>
    You can try the default trace files located in:
    /usr/sap/<SID>/<DVEBMGS[XX]>/j2ee/cluster/server0/log
    Also, perhaps something in the 'std_server[X].out' file within the folder
    /usr/sap/<SID>/<DVEBMGS[XX]>/work
    However, this gets overwritten with each restart unless you have configured the java engine to retain old log files in the instance profile (e.g. with parameter 'jstartup/keep_old_logfiles=3').
    Regards,
    Jin

  • Execute command and save output in a HTML File

    Hello Guys,
    I have a requirement and for that i have to do following. a) read a file in an array and then execute a command for each value in that array. after that i want to store the output of command and value of array in another array.
    i am doing something like below.
    set objtextfile = objfso.opentextfile _
    ("c:\temp\aaaa.txt", forreading)
    j=0
    Do until objtextfile.atendofstream
    redim preserve arr123(j)
    arr123(j) = objtextfile.readline
    j = j+1
    Loop
    for each server in arr123
    chk_status = "command" &" "& server
    set objexecobject = objshell.exec(chk_status)
    'Here i am not sure how to proceed further to achieve what i described above.
    Next
    Can someone help me with this?
    -KAKA-

    Thank you for your response.
    So here is what i want to do.
    Query a database using odbc from my management server (odbc is configured and connection is tested) and based on the query it will result out few list of servers. then from the same management server i want to execute a command against all the resulted server
    (management server has a binary which can execute remote action). this remote action will get output back.
    then i would like to store the name of server and resulte output in a html file which should look like below.
    which i will later host on apache.
    YOu do not need to move things in and out of arrays and files.
    >>>> You are right but as i stated, i am not a core programmer and due to nature of my job i have to work on perl, shell and VB Script, apart from my actual technology so it becomes difficult to write it with perfection.
    I hope you understand.
    -KAKA-
    -KAKA-

  • Html File in SMW0 Output Error ?

    Hello All,
    I have a HTML file in the SMW0 Transaction. The content of the HTML File is in Spanish Language .
    Now when I'm using the FM CL_GUI_HTML_VIEWER in my Custom Program to display that html file content I'm getting some junk values in the output.
    I right clicked on the output and selected VIEW SOURCE Option.
    There, the content is correct but on the output the content is wrong.
    Can you guys tell me what the problem is ?
    Is it because of any unicode formats ? if yes then what shud be done ?
    Regards,
    Deepu.K

    Dear All,
    I've used the HTML Code for converting the speacial chars to unicode format and then uploaded the file to SMWO.
    Now it's working fine !
    Regards,
    Deepu.K

  • Calling html file within web.show document as a report output

    /* this is blank html file included javascript for disabling mouse right click working fine*/
    WEB.SHOW_DOCUMENT ('http://prod.artisticmilliners.com:8000/files/file.html','_blank');
    /* this is oracle report output within model frame working fine*/
    WEB.SHOW_DOCUMENT ('javascript:void(window.open("'|| URL || '","","location=no,toolbar=no,menubar=no,status=no,"));self.close()','_self');
    I want to add show report output with right mouse click disable. Pleae guide how can i do it?

    Let me start by saying that disabling the right mouse will do nothing but frustrate users. It doesn't protect the page content from anything. There are various other ways to get the content from the page copied locally. And more importantly, this does not_ offer any kind of security.
    Ok, so you have decided to do it anyway ;)
    In order to make this happen, you would need to modify the report. I will assume that when you said "report" you meant Oracle Reports. Open the report file (.rdf) and edit the report's "Before Report Value".
    The default value is:
    <html>
    <head>
    <meta http-equiv="Content-Type"  content="text/html; charset=&Encoding">
    </head>
    <body dir=&Direction bgcolor="#ffffff">Change it to this:
    <html>
    <head>
    <meta http-equiv="Content-Type"  content="text/html; charset=&Encoding">
    </head>
    <script language="javascript">
    document.onmousedown=disableclick;
    status="Right Click Disabled";
    Function disableclick(e)
      if(event.button==2)
         alert(status);
         return false;   
    </script>
    <body oncontextmenu="return false" dir=&Direction bgcolor="#ffffff">Save the changes and retest.

  • Output first 250 characters of html file

    Does anyone know how to output the first 250 characters of an
    html file.
    I am using a cfinclude to output the file but sometimes the
    html is really long and there are other things on the page. I would
    like to limit the html file to a certain amount of characters and
    give the user an option to read the rest.
    An example but this doesn't work would be <cfinclude
    template="#left(file.htm, 250)#">. I know that does not work but
    it would if the information were in a database.
    Any suggestions?
    Thanks

    <cfsavecontent variable="mytext">
    <cfinclude template="somepage.cfm">
    </cfsavecontent>
    <cfoutput>#left(mytext, 250)#</cfoutput>
    you may also want to strip all html tags out of the mytext
    var in order
    not to have cf cut it in the middle of some tag and render it
    in the output:
    <cfoutput>
    #left(trim(rereplace(mytext, "<[^>]*>", "", "all")),
    250)#
    </cfoutput>
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Flash Player Security error when publishing HTML files

    I am new to the Captivate world and am just in love with the
    features - but I have been having a very difficult time publishing
    my "movies". I have 8 files that are all called upon in one movie
    (like a table of contents). I have abandon the though of publishing
    each as an EXE file - and have decided to go the HTML route.
    However when I try to run the published HTML file I get an Adobe
    Flash Player Security error - saying "Adobe Flash Player has
    stopped a potentially unsafe operation." It then says that the
    local SWF file is trying to communicate with the Internet-enabled
    HTM file.
    Can someone please tell me what this means? We are using
    Captivate for distance learning as well as internal - so I can't
    know for sure what the end-users will be using when the files are
    used.
    Any assistance would be greatly appreciated.

    Welcome to our community, Rachel
    Where are you running your movie from? If you are planning on
    running them from a server, there should be no need to worry about
    your end user seeing those messages. However, if you are planning
    on each user copying them to their own hard drive or if you are
    running from a CD-ROM, you may need to perform some trickery to
    make them work without issue.
    The message is occurring because there are links in some of
    the files that point to internet resources and the Flash player is
    seeing that as a potential security risk. So it is blocking the
    action until you pat it on the head and assure it the world will
    not, in fact, end if it shows you the content.
    If you wish to banish the screen on your PC, take a look at
    the tutorial linked below.
    Click
    here to view a tutorial
    I'll hold off on the other bit until I'm certain what we are
    dealing with.
    Cheers... Rick

  • Output an HTML file as a printable document

    Hi,
    in my application, I generate and display an html file which
    is supposed to be printed as a single document. I don't want the
    page number, date, link, title to be shown on the print out.
    how do I control them not to be shown?
    as an example, application creates a portfolio of a person
    and displays on the screen on a new window with no file or status
    bars. it needs to be printed without any extra info such as page
    number, title...
    thanks in advance.

    Shida wrote:
    it needs to be printed without any extra info such as page
    number, title...
    You go to each and every user of your application and open
    their printer
    preferences dialog box and change the options for this. Then
    of course
    many ornery users such as myself will change them back to the
    way I want
    it to print.
    These are user controlled options in the client's system. I
    was once,
    years ago, aware of a Microsoft Active X applet that proposed
    to give
    web applications some control of these features for users of
    a Microsoft
    browser on a Microsoft operating system. Other then this
    limited use
    case, there is little that can be done.

  • Multiscreen HTML5: iPhone Output Not Built Correctly (Missing HTML Files)

    I need expert help to resolve this issue. Hopefully, this issue will sound familiar to someone, and they can provide some guidance.
    Since I started using RH10 a few months ago, I have delved into the details of Multiscreen HTML5 only as much as was needed to get the work done. I have an issue that has me flustered.
    By default, I am building my help project for all platforms (iPad, iPhone, Desktop, etc.), with iPad selected as the Default. The iPad & Desktop help both work fine, no issues.
    However, when I open the index.htm file in the iPhone folder, it opens the table_of_contents.html screen, which contains nothing but a search field. Additionally, many of the html files (that are in the iPad folder) are not being built for the iPhone folder (missing). When I look at the other folders (kindle_fire, or android_galaxy_tab for example) the files are all there and they work fine.
    When I compare the HTML for the Table_of_Contents.htm files for ipad and iphone, they are identical except the default file for iPhone is home.htm instead of table-of-contents.htm. But when I change the HTML to make them identical, I still have the same problem. When I open, it jumps to the searchresults.htm screen instead of displaying the Contents.
    When I wipe out the iPhone folder and rebuild it, the results are the same.
    So, somewhere, somehow, I have evidently unknowingly either selected or deselected something that caused the missing sections to be excluded (or not be built).
    I appreciate any help resolving this issue.
    Thank you,
    JimC

    Yes. Each device can have different content. It could be that some topics have tags and that layout has an expression that is excluding them.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • ABAP Function Module for Output File Compression of HTML file

    We would to compress a HTML file that is created during a daily batch run so that it can be sent to the concerned users by email.
    THerefore we are looking for a Function Module and code that can do this for us.
    Please help.
    You can contact me at [email protected]
    Thanks.
    Suresh Rao

    We would to compress a HTML file that is created during a daily batch run so that it can be sent to the concerned users by email.
    THerefore we are looking for a Function Module and code that can do this for us.
    Please help.
    You can contact me at [email protected]
    Thanks.
    Suresh Rao

  • Windows media player in browser asking to replace html file every time

    Hi Alll,
    I have a case in which I am running a WMP in a Browser using ActiveX container , the problem I am facing is on every run its asking me to replace the existing html file in the folder , Is there a way to get rid of that, I dnt want to click replace every time. Is there a easy way of doing this.
    Please let me know.
    Ankit
    Solved!
    Go to Solution.
    Attachments:
    wmp.JPG ‏47 KB

    Thanks, It was very helpfull
    smercurio_fc wrote:
    The dialog is being caused by the Write Characters to File VI that you are using. If the file already exists, it will ask you if you want to replace it. Instead of using those VIs, just use the Read From Text File and Write to Text File functions that are in the File I/O palette.
    Your code has another issue: your use of the Current VI Path constant. See Why Does My Executable Not Work When Using the Current VI's Path Constant?
    smercurio_fc wrote:
    The dialog is being caused by the Write Characters to File VI that you are using. If the file already exists, it will ask you if you want to replace it. Instead of using those VIs, just use the Read From Text File and Write to Text File functions that are in the File I/O palette.
    Your code has another issue: your use of the Current VI Path constant. See Why Does My Executable Not Work When Using the Current VI's Path Constant?

  • Using HTML file from Photoshop in Dreamweaver (Was: Help.....Newbie Here)

    Hi
    I'm new to dreamweaver. I know a bit of photoshop and wanted create a simple  website using photoshop and dreamweaver. I created a layout and sliced out the different parts and when saved as web, it created a set of image files and a html file.
    Now when I placed this html file in dreamweaver, everything got right just as I created in photoshop but when I tried to place an swf file on an image which was sliced out from the photoshop, the other images (sliced on photshop) get scrambled in dreamweaver. I tried everything but I can't understand how to place an object Even while placing text on an image file, the whole layout gets scrambled.
    Any help please. I want to place a swf file and also write a heading "radio player" above the swf file on an image in dreamweaver.
    Thanks

    Slicing the design from Photoshop will give you 'image' output - this is very bad practice. You're only supposed to slice design elements & use CSS to put them together within a webpage.
    I'd recommend you take some time out and go through this tutorial before continuing to work - http://net.tutsplus.com/articles/news/slice-and-dice-that-psd/
    This will give you a quick walkthrough of how you can re-create the PSD design using CSS for building a 'proper' website.

  • UPK 3.1.5 player - Localhost web publishing error

    Hello,
    I can publish and run my Player packages locally. But when I upload it to our intranet and point a URL to the player.exe file
    https://xxx.xxx.xxx/UPK/BM02/play.exe
    , it downloads and runs the player, I then get an empty browser window with the following URL:
    http://localhost:1864/
    If I copy the directory back to my PC it works fine (no filename case problems).
    Any ideas as to why this happens?
    Thanks,
    James

    It can't find the toc.html file if you try to link to the Player itself. You can also point to the kp.html file for a table of contents.

  • SWF and HTML files separate directories.

    I am generating HTML wrapper dynamically and it runs
    successfully (No JavaScript errors etc.). I right click on the page
    and it displays "Print,Settings, About Flash Player"
    Problem is that my SWF file which resides somewhere else on
    the HTTP server is not played at all. I get a blank page. The path
    to SWF was provided in HTML using an alias defined on the HTTP
    config file.
    If I run static HTML file in the same directory as SWF file
    the page is generated OK.
    Am I missing a crossdomain.xml file but everything is on the
    same domain (so ruled out).
    Please help.

    Hi zetokore, and welcome to the Community!
    You cannot separate the HTM and SWF files, so don't try.
    These files are designed to be symbiotic and must be accessed from
    the same location. Your "getaround" won't work because if you link
    to the SWF instead of theHTM, the output will be warped ... the HTM
    file contains sizing parameters for display of the SWF; so without
    proper sizing, the SWF will appear warped.
    In short - you'll have to live with it, because what you are
    seeing is Captivate's designed behavior.
    To emphasize the point: Design and record your Captivate
    projects at the size they are to be displayed to the end-user ...
    always! And - again always - link to the HTM file, never to the
    SWF.
    .

Maybe you are looking for