FSE3 to create an html file in background

I would like to publish our account hierarchy to our intranet by sending the accounting structure from FSE3 to a Html file that run nightly in the background.  We have created a BDC to use FSE3.  Runs great in foreground but fails in background due to Enjoy controls.  Is there a standard SAP report that would produce the same hierarchy?
Thanks,
Susan

Hi Stephen,
Use Open dataset, Transfer, Close dataset to create file on Application server.
Use FM Z_CONV_ITAB_TO_TAB_DELIMITED to convert your lines in TAB delimited format. you can download file from your application server to presentation server using T Code CG3Y and give extension as .xls ...
As you data is Tab delimited it will automatically get formatted in columns in your EXCEL file.
Regards,
Mohaiyuddin

Similar Messages

  • URGENT-CREATE A HTML FILE WITH AN STRING INPUT FROM THE RUNNING JSP

    I am designing a web page where the user enters a page after entering his/her login and password.The User should now be provided with a display page containing the servers that he has permissions for access.The servers that he has permissions are maintained in a database(a normal text file in UNIX).
    Till now the program has been complete for displaying the servers that are available to him.
    I need to create a HTML form containing these servers names in a check box so that when the user clicks thcheck box against the server name it should go to the server and get the password for the required server.
    THe intention from me is to create a HTML file that dynamically takes values from the running JSP means the server names as a string value to its input and then i can continue
    Please guide me in creating a HTML form based on the string output from the running JSP
    FileInputStream fs = new FileInputStream("/root/Auth_Application/User_Access_List");
    DataInputStream in1 = new DataInputStream(fs);
    int fl=0;
    while (in1.available() !=0)
    String str1=in1.readLine();
    StringTokenizer st1 = new StringTokenizer(str1);
    String usernam=st1.nextToken();
    if (usernam.equals(uname))
    String ip=st1.nextToken();
    String host=st1.nextToken();
    fl=1;
    out.println("<tr><td>                                                                                              "+ host + "</td><td> " + ip +"</td></tr>");
    if (fl == 0)
    out.println("YOU HAVE NO SEVRER IN YOUR PROFILE !");
    in1.close();
    The host string here is the server name
    the ip is the ip address of the server
    Need to input these values to another HTML page that contains the check box list of the servers .
    once these are clicked i think i can pass on this to another JSP and retreive passwords
    Please guide me in this

    FileInputStream fs = new FileInputStream("/root/Auth_Application/User_Access_List");
                                    DataInputStream in1 = new DataInputStream(fs);
                                    int fl=0;
                                    while (in1.available() !=0)
                                    String str1=in1.readLine();
                                    StringTokenizer st1 = new StringTokenizer(str1);
                                    String usernam=st1.nextToken();
                                    if (usernam.equals(uname))
                                    String ip=st1.nextToken();
                                    String host=st1.nextToken();
                                    fl=1;
                                    out.println("<tr><td>                                                                                              "+ host + "</td><td>          " + ip +"</td></tr>");
                                    if (fl == 0)
                                    out.println("YOU HAVE NO SERVER IN YOUR PROFILE !");
                                    in1.close();I feel sorry for the inconvenience that is caused as i am new to using these forums.
    I have here used a simple program to retreive the names of the servers that the users have acess to..
    I have here read the servername and server ip stored from a file in UNIX in the running JSP.Now i need to pass these string variables to HTML file and display it in a Check box format.the strings host and ip have to be passed to the input of the HTML file so that they can further be processed once they are clicked using another JSP.
    Can anybody please help me in Passing these strings from the running JSP and display it in a check box format

  • "Export to html" creates ALL html-files

    Hello,
    a few weeks ago Muse suddenly created ALL html-files even if I didn't change a thing on some of those.
    Muse only creates new css-files for those pages I've changed something on.
    What can I do?
    Thanks,
    Ylva

    Hello,
    In case you change the location then it exports all the files.
    Did you change the Export location or the .muse file location?
    Thanks & Regards,
    Sachin

  • Create a html-file from a JTextPane

    i want to create a html-file and i want to use a JTextPane for the input of information.the text can be bold, italic, underlined and so on. i want to set the html-tags for this text-style in the html-file.
    any ideas.
    thanks for help.

                        try {
                             BufferedWriter bw = new BufferedWriter(
                                                      new FileWriter(fileName) );
                             bw.write(myTextPane.getText() );
                             bw.close();                    
                        catch (IOException exc) {
                             exc.printStackTrace();

  • Creating initial HTML file

    I'm doing the tutorial, and the video shows a dialog box popping up where you can create the HTML file, but no such dialog box pops up. How should I proceed? It's quite frustrating to be stuck on the second step of a long process.

    Hi there,
    Are you referring to the Welcome Screen for Dreamweaver that shows sections like Open Recent Item, Create New and Top Features? If so, you can do 1 of the following:
    1. Select File > New > HTML and click the Create button to create a new HTML page.
    2. Open the Preferences screen by selecting the Dreamweaver menu, then Preferences. Then, you can click the Show Welcome Screen checkbox to show the Welcome Screen highlighted in the video.
    I hope this helps, if I've missed your point, please let me know.
    Cheers,
    Maile

  • Using a HTML file as background ...

    How can I use a html-file to act as my background in a Java application ?

    see http://forum.java.sun.com/thread.jsp?forum=57&thread=152264

  • Creating a HTML file in a java class

    Hi everybody,
    I want to create,configure and open a html file all that in a java class so can you help me please

    floulou_01 wrote:
    Hi everybody,
    I want to create,configure and open a html file all that in a java class so can you help me please
    Prune pointless queries
    Resist the temptation to close your request for help with semantically-null questions like "Can anyone help me?" or "Is there an answer?" First: if you've written your problem description halfway competently, such tacked-on questions are at best superfluous. Second: because they are superfluous, Forum regulars find them annoying - and are likely to return logically impeccable but dismissive answers like "Yes, you can be helped" and "No, there is no help for you."
    --Paraphrased from [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html] by Eric Steven Raymond
    So, the answer is yes. Your first step would be to post your actual question.
    ~

  • Create an Excel File in background

    Ladies and Gentlemen,
    I have a requirement to create an Excel file in a program that will only be executed in background mode.  This automatically rules out GUI_DOWNLOAD or any download funtion that presents the file on the presentation server.
    I think that the 'Open Dataset...' command will work to create the file on the Application server, but this seems a bit archaic to me.  Is there another way of creating the excel file on the application server in background?  I am working on a 4.7 system at the moment, but this is scheduled for a upgrade to ECC6 sometime in the next 12 months, so I'm after a process that will be valid both before and after the upgrade.
    Cheers,
    Steve

    Hi Stephen,
    Use Open dataset, Transfer, Close dataset to create file on Application server.
    Use FM Z_CONV_ITAB_TO_TAB_DELIMITED to convert your lines in TAB delimited format. you can download file from your application server to presentation server using T Code CG3Y and give extension as .xls ...
    As you data is Tab delimited it will automatically get formatted in columns in your EXCEL file.
    Regards,
    Mohaiyuddin

  • Creating an Excel File in Background

    Hi Guys,
    Is there a function or Bapi that allows the creation of an Excel file in a background process?, because the WS_EXCEL function doesn't allow it.
    Regards,
    Eric

    Hi,
    If you want to create a file in Background then you have to use OPEN DATASET statement only. WS_EXCEL function module will work only in foreground.
    use below statement to open a file in background and use Transfer statement to move a record into this opened file and at last close the dataset using Close statement.
    OPEN DATASET p_outfile FOR APPENDING IN TEXT MODE ENCODING DEFAULT.
    thanks,
    sksingh

  • Was it GoLive or Dreamweaver...tool for laying out site that then creates the html files?

    I can't remember if it was Dreamweaver or Golive...
    I remember a tool that allowed me to layout a web
    site...graphically....I could create a index.html file...then
    about.html, contact.html, services.html....link the structure of
    the files together....such as all files are subordinate to
    index.html...then push OK somewhere and all the files would be
    created. Also you could print out the layout/structure of the
    website.
    Is there such a capability in CS3 DW? I am using Leopard on a
    MAC.
    Thanks, --bill

    > Is there such a capability in CS3 DW?
    No.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "bdaul" <[email protected]> wrote in message
    news:fgce2u$p2s$[email protected]..
    >I can't remember if it was Dreamweaver or Golive...
    >
    > I remember a tool that allowed me to layout a web
    site...graphically....I
    > could create a index.html file...then about.html,
    contact.html,
    > services.html....link the structure of the files
    together....such as all
    > files
    > are subordinate to index.html...then push OK somewhere
    and all the files
    > would
    > be created. Also you could print out the
    layout/structure of the website.
    >
    > Is there such a capability in CS3 DW? I am using Leopard
    on a MAC.
    >
    > Thanks, --bill
    >

  • Creating an html file in XI using an xsl stylesheet  -- two error types

    Hi
    I am working on mapping an xml invoice to an html-file using a stylesheet  (xsl-file)  in the message mapping in XI 3.0.
    Thus the inbound message is an xCBL Invoice and the output message is to be an html file. I name the output file "%supplierid%_%invoiceid%.html using the variable substitution functionality in the communication channel.
    I have two problems:
    1) the <br/> tags in the stylesheet are changed to "<br>" in the resulting html file causing problems in the output file, as this is not valid XML.
    2) I would like to insert the current date and time in the output file and I am using this code, but the date and time is not picked up:
    <B>
          Received:
          <xsl select="xs:string(fn:current-dateTime())"></xsl>
    </B>
    How do I solve these two problems?
    BR
    MIkael

    please note, that it is the tag "br/" that is changed to "br" in the html file.

  • Exporting document as jpeg using kAIExportDocumentAction creating html file also

    hi,
    I used this action (kAIExportDocumentAction) to export the document as jpeg.And it is  creating a html file aslo.
    And also it not prompt the "JPEG Option" dialogbox. When I set the kDialogOff to kDialogON it shows first the" Export Dialog" .
    is there any way to get only "Jpeg Option" dialog box while exporting through this action?
    plz Help!!!
    here are the code ....
    ai::FilePath filePath(ai::UnicodeString("C:\\Documents and Settings\\rudreshp\\Desktop\\Export\\rudresh\\hi.jpeg"));
    AIActionParamValueRef actionParam;
    //create a new action param value.
    sAIActionManager->AINewActionParamValue(&actionParam);
    //include the path where to save
    error = sAIActionManager->AIActionSetStringUS(actionParam, kAIExportDocumentNameKey, filePath.GetFullPath() );
    error = sAIActionManager->AIActionSetString(actionParam, kAIExportDocumentFormatKey, "JPEG file format");
    error = sAIActionManager->AIActionSetString(actionParam, kAIExportDocumentExtensionKey, "jpg");
    error = sAIActionManager->AIActionSetBoolean(actionParam, kAIExportDocumentSaveMultipleArtboardsKey, false);
    error = sAIActionManager->PlayActionEvent(kAIExportDocumentAction,  kDialogOff,  actionParam);
    //delete the actionParam
    error = sAIActionManager->AIDeleteActionParamValue(actionParam);

    The export document action is an action for exporting the doument as you have seen, it is not a Export Jpeg action.
    So, no it is not possible with the export action.

  • I am trying to export "bookmarks.html" for another browser but No HTML file is created! How can I fix this?

    Bookmarks> Organize bookmarks> ★ Export HTML > "export bookmarks file" window appears. Save as "Bookmarks.HTML" Desktop> NO FILE IS PRODUCED!

    Does Firefox create an HTML file (bookmarks.html in the profile folder) on exit if you set the pref [http://kb.mozillazine.org/browser.bookmarks.autoExportHTML browser.bookmarks.autoExportHTML] to true on the about:config page ?
    See also http://kb.mozillazine.org/Export_bookmarks

  • How to upload html file to email

    Hi,
    I have absolutely no html background but was able to come up with a single page layout with graphics, texts and links with the help of online tutorials using Adobe Go Live which I can open the file now in Dreamweaver.
    My goal is not to come up with a webpage in cyberspace but to create an html file with images and links to specific websites that can be emailed to people. The file must be part of the email body that people can readily view the images, texts and click the links right away and not to be as an attachment.
    Would appreciate it very much if someone can help me out.
    Thanks.
    Newbie

    The simplest way to handle this would be to Upload the  page and files to a  remote server space and send your email buddies a link to the site.   Barring that....
    How to Code HTML Emails
    http://www.sitepoint.com/article/code-html-email-newsletters/
    Use  inline CSS styles for fonts and background colors.  Use Tables to hold your  page elements.  Use absolute URLs to images hosted on your web server because attached images may not get through. Give  people who can't see your HTML page in their email client a link to the HTML  page on your web server.
    Download some HTML Email Templates from the links below  to help you get started.
    Mail Chimp
    http://www.mailchimp.com/resources/html_email_templates/
    Constant  Contact
    http://www.constantcontact.com/email-marketing/html-email-templates/index.jsp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Relative path for HTML file

    Hi ,
    This is my requirement. In the ESS Personal information overview page, I can add a HTML file to the additional information section.
    I have created a HTML file by creating a web module and enterprise application and deployed the same through NWDI.
    I declare a resource wher ei mention the path. Here i specifed the complete path of the html file ... like
    http://hostname:portname/addinfo/addinfo.html.  Which i know is a wrong thing to do since when i move the html filel to the production system it will still be accessing the html file in the dev system.
    How do i give the relative path here so that the html file accessed is from the production system when we  go-live.
    Please suggest.
    regards
    sam

    Hi,
    One simpler solution is to use an AppIntegrator iView, as explained in the weblog <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2786">Integrating your Web Front-ends into the SAP Enterprise Portal using the Application Integrator</a>. It worked well for us.
    You can remove the user authentication part in the portalapp.xml if you don't need it.
    Regards,
    Martin

Maybe you are looking for

  • Error when mounting IDisk on my PC

    I downloaded the iDisk Utility for XP, ran the install, opened the Utlity, it asked for iDisk account and password, I entered both. The process started, about half way through it paused......and then, boom, a descriptive error message stating that "i

  • PPDS purchase requisitions are not updated

    Hi, I have one Production plant and DC. When i run the PPDS heuristics in production plant and DC for a finished product,system is creating Stocktransport purchase requisition in DC to Plant and a planned order in production plant. Stocktransport pur

  • Dashcode DataSource Computed Properties/Bindings

    Hi guys. I've been working with Dashcode widgets for a while now, but since moving to 3.0 and being introduced to the Data Source/Binding model, I'm still unconvinced that it can do what I need it to. I've read through the documentation but it does n

  • Subset of JTable?

    Hi there, I am trying to print a JTable. Because it doesn't fit on the page I would like to get a subset of the JTable (e.g. coloms 2 .. 3 and rows 15 .. 35). I know all the data is in the tablemodel, but i really would like a subset of the table sin

  • Pre requisite for Modification

    Hi All, Is there any specific pre requisites for Modification adjustments after prepare mode from abap prespective ? We need to check these before we do an upgrade on the system from ABAP prespective. Cheers, Reddy