Language export othe format than .EPA?

Hi,
Is it possible to make an language transport package in another format than .epa ?  Or open the epa file in some readable way. The people which are going to translate do not have acess to the portal.

Hi Ingvild,
> EPA is not a normal zip'ed simialr file is it?
It's not "zip'ed similar", it is a ZIP. Just with another postfix than "ZIP".
> Atleast WinRar does not support the fil format.
It does. Rename ".EPA" to ".ZIP", and WinRAR will be lucky to help you (just tested it again, to be sure).
The same holds for the .ept files within the .epa file.
> now way to export all the names in english in a lits,
> xml, exel or somthing so that a translater can
> translate it? and then imort it again.
For sure in theory you can take the EPA and change it manually, but you have to understand the EPA structure and the logic inside. And that's something which isn't trivial at all. In addition, if you'll have a look at the i18n'ed files, you'll see that the property names are all but clear text.
> To use the translation worklist which I have created
> the translater have to do the translation within the
> portal?
Yes.
> And if that is the only way is there any otherway to
> export in a list, xml, excel file including alle the
> portal object names?
At least I don't know any. And you won't find any if searching for "translation" on help.sap.com. Both facts together mean that it will be somewhat unlikely that there is a third way...
Hope it helps nevertheless
Detlev

Similar Messages

  • Export to mora than one excel sheet.

    Hello Marvel team,
    I am looking to do something related to the export of data to an excel file and I am asking if one of you has do something like the following :
    I need, on a click on a button export some data to more than one sheet in the same excel file.
    I looked to what askTom propose, with the sylk format:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:728625409049
    and this can resolve my problem in part, with sylk I can have what I want but only in one sheet and for me it's very important that I can export to more than one sheet in the same excel file.
    Thanks for any help!
    Jina.

    Using POI, you can create a native Excel Workbook with more than one Worksheet.
    For a first step using POI follow the steps posted under:
    "Export to Microsoft Excel from PLSQL Procedure"
    Re: Export to Microsoft Excel from PLSQL Procedure
    The following examples creates an excel with more than one sheet (and does a little bit of formating).
    Load this as described above to your 10g Database and build a pl/sql wrapper function around it:
    -- bof --
    import java.io.*;
    import org.apache.poi.hssf.usermodel.*;
    import org.apache.poi.hssf.util.*;
    public class HelloExcel {
    public static void main(String[] args) {
    HelloExcel d = new HelloExcel();
    d.write(null);
    public static String write(String text) {
    String result = "successful";
    HSSFWorkbook wb = new HSSFWorkbook();
    HSSFSheet sheet1 = wb.createSheet("first sheet");
    HSSFSheet sheet2 = wb.createSheet("second sheet");
    // style
    HSSFCellStyle style = wb.createCellStyle();
    style.setFillForegroundColor(HSSFColor.LIME.index);
    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
    HSSFFont font = wb.createFont();
    font.setColor(HSSFColor.RED.index);
    style.setFont(font);
    HSSFRow row = null;
    HSSFCell cell = null;
    // Create a row and put some cells in it. Rows are 0 based.
    row = sheet1.createRow((short)0);
    // Create a cell and put a value in it.
    cell = row.createCell((short)0);
    cell.setCellValue(1);
    cell.setCellStyle(style);
    // Or do it on one line.
    row.createCell((short)1).setCellValue(1.1);
    row.createCell((short)2).setCellValue("This is a string 1");
    row.createCell((short)3).setCellValue(true);
    // Create a row and put some cells in it. Rows are 0 based.
    row = sheet2.createRow((short)0);
    // Create a cell and put a value in it.
    cell = row.createCell((short)0);
    cell.setCellValue(1);
    // Or do it on one line.
    row.createCell((short)1).setCellValue(1.2);
    row.createCell((short)2).setCellValue("This is a string 2");
    row.createCell((short)3).setCellValue(false);
    // Write the output to a file
    try {
    FileOutputStream fileOut = new FileOutputStream("c:\\temp\\HelloExcel.xls");
    wb.write(fileOut);
    fileOut.close();
    } catch(Exception ex) {
    result = ex.getMessage();
    return result;
    -- eof --
    hope that helps,
    Willi

  • Please see this post : Export to more than one excel sheet.

    Hello Marvel team,
    I have already post this question, but no answer :
    I am looking to do something related to the export of data to an excel file and I am asking if one of you has do something like the following :
    I need, on a click on a button export some data to more than one sheet in the same excel file.
    I looked to what askTom propose, with the sylk format:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:728625409049
    and this can resolve my problem in part, with sylk I can have what I want but only in one sheet and for me it's very important that I can export to more than one sheet in the same excel file.
    Thanks for any help!
    Jina.

    XML may be what you need.
    <?xml version="1.0"?>
    <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
    xmlns:html="http://www.w3.org/TR/REC-html40">
    <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
    <WindowHeight>8580</WindowHeight>
    <WindowWidth>15180</WindowWidth>
    <WindowTopX>120</WindowTopX>
    <WindowTopY>45</WindowTopY>
    <ProtectStructure>False</ProtectStructure>
    <ProtectWindows>False</ProtectWindows>
    </ExcelWorkbook>
    <Styles>
    <Style ss:ID="Default" ss:Name="Normal">
    <Alignment ss:Vertical="Bottom"/>
    <Borders/>
    <Font/>
    <Interior/>
    <NumberFormat/>
    <Protection/>
    </Style>
    </Styles>
    <Worksheet ss:Name="sheet1">
    <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="3" x:FullColumns="1"
    x:FullRows="1">
    <Row>
    <Cell><Data ss:Type="String">This is on sheet 1</Data></Cell>
    </Row>
    <Row>
    <Cell><Data ss:Type="String">sheet1</Data></Cell>
    <Cell><Data ss:Type="String">col 2</Data></Cell>
    </Row>
    <Row>
    <Cell><Data ss:Type="String">row3</Data></Cell>
    <Cell><Data ss:Type="String">3,2</Data></Cell>
    </Row>
    </Table>
    <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
    <Selected/>
    <Panes>
    <Pane>
    <Number>3</Number>
    <ActiveRow>19</ActiveRow>
    <ActiveCol>8</ActiveCol>
    </Pane>
    </Panes>
    <ProtectObjects>False</ProtectObjects>
    <ProtectScenarios>False</ProtectScenarios>
    </WorksheetOptions>
    </Worksheet>
    <Worksheet ss:Name="Sheet2">
    <Table ss:ExpandedColumnCount="2" ss:ExpandedRowCount="3" x:FullColumns="1"
    x:FullRows="1">
    <Row>
    <Cell><Data ss:Type="String">This is on sheet 2</Data></Cell>
    </Row>
    <Row>
    <Cell><Data ss:Type="String">sheet2</Data></Cell>
    <Cell><Data ss:Type="String">row2</Data></Cell>
    </Row>
    <Row>
    <Cell><Data ss:Type="String">col1</Data></Cell>
    <Cell><Data ss:Type="String">col2row3</Data></Cell>
    </Row>
    </Table>
    <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
    <Panes>
    <Pane>
    <Number>3</Number>
    <ActiveRow>3</ActiveRow>
    <ActiveCol>1</ActiveCol>
    </Pane>
    </Panes>
    <ProtectObjects>False</ProtectObjects>
    <ProtectScenarios>False</ProtectScenarios>
    </WorksheetOptions>
    </Worksheet>
    </Workbook>

  • C# winform + crystalreportviewer to export HTML format  ?

    Hi,guys.
      I create a winform app with a crystalreportViewer[cr dev for vs 2012], and i found CR can export many formats,like pdf,word,excel.
      But I can't find "HTML" format. Although I know we can export HTML in the editor environment's preview mode, but my winform app can't export.
      What should I do?Many thanks!
    Message was edited by: Ludek Uher

    What you want to do is load a strongly typed report. This method of loading a report uses the ReportDocument component from the Components tab of the ToolBox.  When this component is added to the form, a dialogue box appears and prompts the Developer as to which type of Component to add to the form -> Crystal Report.
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            crReportDocument = New test
            CrystalReportViewer1.ReportSource = crReportDocument
        End Sub
    Remeber that a strongly typed report is compiled into the app exe. E.g.; use with care as the exe size will grow by leaps and bounds...
    - Ludek  
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Illustrator CS3 Import and Export File Format list?

    Hello,
    Has anyone typed up an updated supported import and export file format list for CS3? I used to reference a support knowledgebase document, 1001741, (no longer on Adobe's site) that showed the majority of file formats and versions that Illustrator was able to import. I searched all over and couldn't find one, then called support and they confirmed they no longer had a list like that available--they had split the import options into separate lists--like what versions of Photoshop files, what versions of .eps files, .tiff files etc. Illustrator CS3 could open.
    The reason I was looking because I wanted to see what version Corel file CS3 could open after I was not able to open a customer's v.12 .cdr file.
    Thanks,
    Rick H.

    I am pretty sure that the last supported version of Corel that AI can open is version 10.
    :) Mordy

  • Export file format

    Hi All,
    I want to export data in column format using calculation script. Currently Account, Period and scenario is dense and others are sparse in my essbase database. I am exporting data for actual scenario, multiple accounts and level zero periods. In the export file essbase automatically setting level zero period (Week 1 to week 53) in column header and other 2 dimension in row. I want to change the export file format using calculation. I want scenario to be column header and other all dimension to be in row. Is there any way I can specify the export file format. I used all the export setting but nothing is working.
    Your response will be appreciated.
    Thanks,

    If scenario is dense and you are using the DATAEXPORT calc command try
    SET DATAEXPORTOPTIONS {DATAEXPORTCOLHEADER Scenario;};
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Export window format changed, don't know why

    You know aperture is a love/hate relationship. What do I love? I became an advanced user fast, it's intuitive, but the bugs are just maddening and apple has never responded even once to my countless bug and crash reports. Apple has strayed so far from computing as it's central focus... the impression I get is they just don't care about my bug problems or if I stay an apple customer after owning that little baby Duo laptop, PowerPC, ibook and now MacBook Pro. I think that's sad. Just keep pushing the phones and ipods- Steve, and don't worry about me. I'll eventually just go away. That said, the format of the export window changed to first line: export preset, 2nd line: Subfolder Format, 3rd: "Grayed out" customer subfolder name, 4th: Name Format, 5th: Custom Name, 6th: File Name Example. To my knowledge, this new export window format changed without any action on my part. I don't like it because I can no longer just export it to the desk top without it being automatically put in a folder. The old export window format just had an option for tiff, jpg, psd and a name to type in and where it was heading. How do you get back this old export window format? This is baffling like the disappearing library in the trial version every time you shut down and restarted.

    Addressing your final remarks, I don’t see any problem. First: have your current Preset -> Image Export set to what you want in terms of JPEG or PSD etc. Second select the image(s) you want to Export. Select something like File -> Export -> Versions (or whatever you want). The Export panel defaults to the Desktop, and the images will be placed there - no folder is required.
    Maybe I’ve missed your point, but I don’t see any problem.

  • Export table format SQL loader using spool

    Hi
    In enviroment I only access for to do SELECT , then I want to export some tables using SELECT using spool of data
    But I wanted export in format Sql Loader for to import other environment
    Is possible to do It ?

    Depends where the NULL is.
    SQL> SELECT * FROM t ORDER BY 1;
            ID DESCR      DT
             1 One
             2            30-MAY-2007
             4 Four       30-MAY-2007
               Three      30-MAY-2007
    SQL> SELECT id||',"'||descr||'",'||TO_CHAR(dt,'dd-mon-yyyy') output
      2  FROM t
      3  ORDER BY 1;
    OUTPUT
    ,"Three",30-may-2007
    1,"One",
    2,"",30-may-2007
    4,"Four",30-may-2007John

  • After installing iTunes, Flash no longer exports .MOV format...

    Hi -
    I have been using Flash 8 to do animated titling for my podcasts.
    But after installing iTunes 7, Flash 8 will no longer export .MOV format. It tells me a Quicktime compenent cannot be found.
    Also, QuickTime Pro will not actually play Flash .SWF files. Not sure if this worked before, I never tried it. But it seems to be a QuickTime feature that doesn't work on my machine.
    Flash 8
    iTunes 7.0.0.70
    QuickTime Pro 7.1.3
    Any suggestiones or explanations?
    I really need to export my Flash animations to .MOV format. It's part of my work scheme. Workarounds cause loss of quality.
    Thanks,
    Dave Ferreira
    ([email protected])

    Recent security issues has had QuickTime 7.1.3 Player set Flash (inside .mov files) to "disabled".
    Any user can re-enable Flash inside .mov files by checking a box in the QuickTime Control Panel (PC) or System Preferences (Mac).
    QuickTime Player uses a much older version of Flash and only allows those "published" as version 5, or lower, be used.
    The security issues are real. The solution for those of us that use Flash (.swf) inside our QuickTime content is more complex.
    If a solution isn't reached between Apple and Adobe about a more modern use of Flash inside QuickTime files I plan on adding a text description (on my Web pages) for the steps to re-enable Flash functionality in my QuickTime files that use Flash.

  • Re: Encode THAI Language into BASE64 Format

    Hi  Guru's,
            Have a requirement  to encode particular IDOC text fields which are in  THAI language to BASE64 format . We are able to encode the same for english but not able to do the same for Thai language so can any one help with the coding to create custom UDF  which can convert.
    Regards
    Sathish Kumar K.C

    Hi ,
       Please find below my code...
    public class Base64a {
    //     Mapping table from 6-bit nibbles to Base64 characters.
    private static char[]    map1 = new char[64];
         static {
            int i=0;
            for (char c='A'; c<='Z'; c+) map1[i+] = c;
            for (char c='a'; c<='z'; c+) map1[i+] = c;
            for (char c='0'; c<='9'; c+) map1[i+] = c;
            map1[i+] = ''; map1[i++] = '/'; }
    //     Mapping table from Base64 characters to 6-bit nibbles.
    private static byte[]    map2 = new byte[128];
         static {
            for (int i=0; i<map2.length; i++) map2<i> = -1;
            for (int i=0; i<64; i++) map2[map1<i>] = (byte)i; }
    Encodes a string into Base64 format.
    No blanks or line breaks are inserted.
    @param s  a String to be encoded.
    @return   A String with the Base64 encoded data.
    public static String encode (String s) {
         return new String(encode(s.getBytes())); }
    Encodes a byte array into Base64 format.
    No blanks or line breaks are inserted.
    @param in  an array containing the data bytes to be encoded.
    @return    A character array with the Base64 encoded data.
    public static char[] encode (byte[] in) {
         int iLen = in.length;
         int oDataLen = (iLen*4+2)/3;       // output length without padding
         int oLen = ((iLen+2)/3)*4;         // output length including padding
         char[] out = new char[oLen];
         int ip = 0;
         int op = 0;
         while (ip < iLen) {
            int i0 = in[ip++] & 0xff;
            int i1 = ip < iLen ? in[ip++] & 0xff : 0;
            int i2 = ip < iLen ? in[ip++] & 0xff : 0;
            int o0 = i0 >>> 2;
            int o1 = ((i0 &   3) << 4) | (i1 >>> 4);
            int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6);
            int o3 = i2 & 0x3F;
            out[op++] = map1[o0];
            out[op++] = map1[o1];
            out[op] = op < oDataLen ? map1[o2] : '='; op++;
            out[op] = op < oDataLen ? map1[o3] : '='; op++; }
         return out; }
    Regards
    Sathish Kumar

  • Should JPEG 2000 be an Exportable File Format Option?

    I have been keeping up with the Library of Congress' efforts in the "Sustainability of Digital Formats Planning for Library of Congress Collections." In essence, TIFF is their first choice, with JPEG 2000 a close second. Here is the link to a short summary of their recommendations.
    I like JPEG 2000, but like everybody else I never use it. When I burn a DVD to share with someone, I make a "hi-res" folder of TIFFs, and a "lo-res" folder of JPEGs. It isn't difficult to add JPEG 2000 as an exportable file format, as it is an ISO standard if I understand the spec correctly. In any event, if JPEG 2000 is a close second on the list at the Library of Congress, then we shouldn't take this lightly as they are the largest library in the world, in addition to being the single most important entity for handing our digital imaging rights which should be in the interest of all Aperture users.
    Given this information, would you support adding JPEG 2000 as an exportable file format in Aperture 3?

    Click on the word Aperture in the menubar, and choose Provide Aperture Feedback.
    Ernie
    Btw, quoting from Wiki, which leaves me uncertain as to why I would ever use, even from Photoshop:
    "While there is a modest increase in compression performance of JPEG 2000 compared to JPEG, the main advantage offered by JPEG 2000 is the significant flexibility of the codestream. The codestream obtained after compression of an image with JPEG 2000 is scalable in nature, meaning that it can be decoded in a number of ways; for instance, by truncating the codestream at any point, one may obtain a representation of the image at a lower resolution, or signal-to-noise ratio – see scalable compression. By ordering the codestream in various ways, applications can achieve significant performance increases. However, as a consequence of this flexibility, JPEG 2000 requires encoders/decoders that are complex and computationally demanding. Another difference, in comparison with JPEG, is in terms of visual artifacts: JPEG 2000 produces ringing artifacts, manifested as blur and rings near edges in the image, while JPEG produces ringing artifacts and 'blocking' artifacts, due to its 8×8 blocks."
    Message was edited by: Ernie Stamper

  • Exported DDL different than the SQL tab

    Hi,
    I found that the DDL generated by performing Tools->export is different than what is shown in the SQL tab on RHS window for any table.
    Is there any reason, since the SQL tab's display is not useful to recreate the table, as the sequence of constraints/indexes is incorrect.
    The tools->export generates DDL properly.
    Can someone fix this issue?

    The Tools - Export reads DBMS Metadata, the SQL Tab does not. This is intentional. However I have logged a bug about the sequence of the constraints/indexes to track that issue.
    Regards
    Sue

  • Can I export (burn) more than one slide show to the same DVD

    Can I export (burn) more than one slide show I created in iPhoto to the same DVD, and if yes, how?

    Yes.  If you're using iDVD export the slideshow out of iPhoto at 480p size and drag it into an open iDVD menu window, being careful to avoid any drop zones.  iDVD can handle up to 120 minutes of playing time (movies plus menus) on a single layer DVD disk.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • Punjabi (Indian Language) Export to PDF

    Hello All,
    We have a report which is reading the data from SQL server. The data is stored in Punjabi langauge (an indian langugage) and we are able to see the reports perfectly fine in the report viewer. (Report viewer on the .ASPX page).
    But when we export the report to PDF for taking the print out, we are seeing the empty boxes for the punjabi data. The data which is in english is getting exported perfectly fine.
    Any clue on how to get the data exported to PDF?
    Thank you,
    HK

    Please do not cross post. See the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]
    As this query is being handled on this thread:
    Punjabi (Indian Language) Export to PDF
    I am closing and locking this thread.
    Ludek

  • Lyx: No information for exporting the format PDF (pdflatex)

    After lyx installation the system prompts me:
    Optional dependencies for lyx
        texlive-latex3: pdf export
    So I did install this package, but even then I couldn't find a way to export to pdf.
    But not only pdf. PS and DVI is the same:
    "No information for exporting the format DVI"
    "No information for exporting the format Postscript"
    Does anyone have any idea about what's wrong here, how to workaround or better, to fix this?
    Thanks!

    LyX works well (I'm using it every day right now), so there is a solution somewhere. Perhaps there is a missing dependency in the package.
    Does LaTeX work by itself? i.e. Can you produce a simple DVI file from a minimal LaTeX file?
    Start LyX from a terminal command line. Then click on Tools->Reconfigure. Does the output show anything really suspicious missing? You will see a lot of "no"s, but that is okay. You will definitely want to see a "yes" for latex, xdvi, and dvips. If you have never started LyX before, you pretty much have to do this the first time to set up your configuration before anything will work.
    Try that much, then post again.
    Mike

Maybe you are looking for

  • How to edit the T9 word suggestion list

    HI all, I hope someone can help here..  I'm using the N97 with original firmware (no update available yet). When I'm using T9 text input from the dialpad and type 86 which should give 'to' I get 'vo' instead which is not even a word as far as I know,

  • How to programmatically handle valueChangeEvent.

    Hi , I am using jdeveloper version 11.1.1.6.0. I have an select one choice which is loaded with the list of values from the bean as follows:                   <af:selectOneChoice                                 value="#{bindings.AfCmnLovMasterListVO.

  • Best Practices for Unlinked Assets in Custom Catalogs

    Hello, Is it a best practice to have unlinked categories, products, skus in the product catalog? How do folks typically deal with assets that are no longer active? thanks! J

  • After completing workflow execution, it was disappeared

    Hi Experts, I am using MDM 7.1.02.115 Version , I have problem with workflow, I have created workflow and i have lanuched it after workflow executed it completed all the steps. afte completing all the steps I am not able to see the status of it as co

  • IE troubleshooting live site

    Thanks to the folks here I got the development issues fixed, now I have IE problems.  please see the live site:  http://www.hitecsolar.com The IE bugs I've noticed so far are: The flash animation on the "How it Works" page plays fine everywhere else,