Reg:Deprecated file

Hi Experts,
I have downloaded a webdynpro java file for table UI element .When I am importing it is showing to be in deprecated status And I am getting deployment exception .
Please suggest me some solutions.
Thanks,
Khyana Prabha Mohanty

Lots of examples in the official documentation too : Generating XML Data from the Database

Similar Messages

  • Reg Archive files

    I want to know where the archive files will be stored, is it in application server, if i use the function module SUBST_GET_FILE_LIST, can i fetch the files for a particular directory, as i am able to fetch application server files, but i want to know whether i can fetch archive files.
    Thanks & regards.
    venkat.

    Venkat,
              Archived files are normally stored in External storage devises. Generally data which is old and not very frequently acessed is archived, to improve the afficiency of the SAP R/3 system.
              Yes you can retreive archived files. There are standard programs to retrieve archived files.
    For eg: RM06ER30 to retrieve archided Purchase Documents etc.
    a Basis consultant plays the significan role to manage the storage decises such as providing ACESS to the archived data in external storage devises.
    Hope this explanation of mine helps you.
    Murthy.

  • Reg: Html file download from server

    My requirement is download file from server. Am using jsp and servlet this. While downloading the file a dialog box with open, save and cancel option. When try to open html file it, open in the same window .
    Req: it should be open in seperate window (ie)
    Please advise me how to open a html file in seperate explorer
    Am using below Code for download a file:
    private void downloadFile( HttpServletResponse response, String strFileType, File file ) throws Exception
    logger.trace(Util_Client.INFO, Util_Client.getInfo(), "File download Started.");
    BufferedInputStream bufferedInputStream = null;
    try {
    String strContentType = fileExtnContentTypeMapping.get(strFileType);
    if(strContentType == null)
    strContentType = fileExtnContentTypeMapping.get(CLConstants.FILE_EXTN_OTHERS);
    response.setContentType(strContentType);
    String strHeader = "Attachment;Filename=" + file.getName();
    response.setHeader("Content-Disposition", strHeader);
    byte data[] = new byte[CLConstants.FILE_DOWNLOAD_STREAM_READ_BUFFER];
    bufferedInputStream = new BufferedInputStream( new FileInputStream( file ), CLConstants.FILE_DOWNLOAD_STREAM_READ_BUFFER );
    int count;
    while((count = bufferedInputStream.read(data, 0, CLConstants.FILE_DOWNLOAD_STREAM_READ_BUFFER)) != -1 ) {
    response.getOutputStream().write( data, 0, count );
    response.getOutputStream().close();
    }catch (ClientAbortException clientAbortException) {
    clientAbortException.printStackTrace();
    }finally{
    try {
    if( bufferedInputStream != null )
    bufferedInputStream.close();
    } catch (Exception exceptionFinally) {
    exceptionFinally.printStackTrace();
    logger.trace(Util_Client.INFO, Util_Client.getInfo(), "File download Ends.");
    Thanks in advance
    Edited by: sunRP on Oct 11, 2009 9:47 AM

    The best you can do is set the correct content type.
    Once the file reaches the client's browser it's up to the client and their browser settings to decide what to do with it.
    You can't control the client's browser from your servlet.

  • Reg. File split in XI

    Hi,
            How do we split a file in XI? I Know that we can split a file using BPM step Message split. But my scenario is like, I am getting a flat file from a customer and as soon as it picked up by the File adaptor, it should be split into two parts if the file size exceeds certain limit say 100MB. How do we handle such type of scenarios in XI?  
    Regards,
    Murthy

    Hi ,
    Check Satish Reddy's reply in the following thread
    Re: File receiver - Get file size
    Regards,
    Sushil.

  • Reg: Sender File Adapter - Picking the files serially

    Hi Folks
    I have a requirement where I require help from you with you valuable suggestions/solutions. Requirement is :
    1.  Two different folders(folder1 & Folder2) at sender system, PI has to pick the files from Folder 1 and needs to process to target.
    2. Exactly after 30min duration PI has to pick the files from the second folder i.e., from Folder 2.
    Conditions are :
    i)  Only after processing the files from Folder 1 PI should process the files from Folder2(after 30min).
    ii) We might have many files(approx 10 - 15files) in each folder, PI must poll all the file in the folder in a single poll(i.e., without any delay).
    Please suggest me what could be the best solution for this, either to create two communication channels or can we handle it using a single communication channel.
    Kindly suggest.

    Hi Suman,
    The easieiet way is to use single communication channel to pick up all the files from the first folder.  Then run a unix script in after processing column where it will check for any files to be picked by xi in folder1 and then proceed with transferring files from folder2 to target.
    By this, you are making the scenario simple and realistic.
    There are other alternatives like using two communication channels and the only hurdle will be the timing to check whether the folder1 files have been completely picked up or not.
    Regards
    Krish.

  • Reg : txt Files in Server directory (UTL_FILE)

    Hi Experts,
    Suppose, I've placed 5 +.txt+ files (procedure/table creation scripts) in a db server directory.
    Is there any way I can loop through each of the files?
    I need to pull the content of each file into oracle table using a procedure. So, I'm trying dynamically trying to use External Tables with Execute Immediate inside my proc. Will package UTL_FILE help in this?
    Please give some suggestions.
    Let me know if you have any concerns.
    Ranit B.

    As an alternative solution, have you considered using external LOB's? Using this approach could save significant overhead vs. the external tables solution because it doesn't require any schema objects for accessing the txt files (if you use an SQL script instead of a stored procedure).
    http://docs.oracle.com/cd/B14117_01/appdev.101/b10796/adlob_bf.htm#1010878
    Below is an excerpt from the link the Oracle docs above; this could be used as a starting point. (Substitute your directory name/file name for the BFILENAME arguments.)
    /* This file is installed in the following path when you install */
    /* the database: $ORACLE_HOME/rdbms/demo/lobs/plsql/fdisplay.sql */
    /* Displaying BFILE data.  */
    /* Procedure displayBFILE_proc is not part of DBMS_LOB package: */
    CREATE OR REPLACE PROCEDURE displayBFILE_proc IS
       file_loc BFILE := BFILENAME('MEDIA_DIR', 'monitor_3060.txt');
       Buffer   RAW(1024);
       Amount   BINARY_INTEGER := 200;
       Position INTEGER        := 1;
    BEGIN
       DBMS_OUTPUT.PUT_LINE('------------ BFILE DISPLAY EXAMPLE ------------');
       /* Opening the BFILE: */
       DBMS_LOB.OPEN (file_loc, DBMS_LOB.LOB_READONLY);
       LOOP
          DBMS_LOB.READ (file_loc, Amount, Position, Buffer);
          /* Display the buffer contents: */
          DBMS_OUTPUT.PUT_LINE(substr(utl_raw.cast_to_varchar2(Buffer), 1, 250));
          Position := Position + Amount;
       END LOOP;
       /* Closing the BFILE: */
       DBMS_LOB.CLOSE (file_loc);
       EXCEPTION
       WHEN NO_DATA_FOUND THEN
          DBMS_OUTPUT.PUT_LINE('End of data');
    END;
    SHOW ERRORS;

  • Reg flat file extraction

    Hi Guru's,
    I have a flat file with Sales person, City, product, quantity, amount and calyear. I created info objects for sales person, product, quantity and amount. I gave city as attribute for sales person.
    while creating infocube i can't see the city info object. In transformation how can i map city infoobject of datasource with infocube. please help me.
    Thanks,
    Sneha

    Hi Sneha
    Since you assigned city as an attribute of Sales person you
    should delete that particular column from the flat file and try to
    load it and you can load this city attribute with an sepearate
    flat file for the info object sales person alone so that u can get
    the city attribute while your running a query. You can check it
    by creating a test query on the cube ..
    Hope its clear..!
    Thanks
    P159793(K M R)
    Assigning points is the only way of saying thanks in SDN
    >
    sneha marla wrote:
    > Hi Guru's,
    >
    > I have a flat file with Sales person, City, product, quantity, amount and calyear. I created info objects for sales person, product, quantity and amount. I gave city as attribute for sales person.
    >
    > while creating infocube i can't see the city info object. In transformation how can i map city infoobject of datasource with infocube. please help me.
    >
    > Thanks,
    > Sneha

  • Reg: FVU file conversion error

    Dear All,
    While i try to validate the txt file generated from SAP by FVU utility, I'm getting the error that
    'T-FV-1000 Invalid File Header Record Length'
    The file header line of my file is below for reference
    1^FH^NS1^R^11032011^123456789^D^ABCD12345F^1^^^^^^^
    Also, I went through these threads too, but no gain.
    [Re: Generate Quarterly e-TDS File. prob|Re: Generate Quarterly e-TDS File. prob]
    [Re: REGARDING TDS|Re: REGARDING TDS]
    Regards,
    Bala

    Hi,
    Issue resolved. Problem is TAN no, MOBILE no of TDS deductor, and BSR code not been updated in text file that we generate thrugh J1INQEFILE.
    I have done manually by putting these things in text file and uploaded. I got the FUV file.
    For TAN updating, SAP told us to apply some note.
    SO, issue is NO MORE now.
    Thanks

  • Reg spool file attachment in Email

    Hi All,
    I am sending the report output to spool and I need to take this spool file and I have to send as a attachment through Email.Could some body let me know how we will do this one thing is the report program runs in back ground (because of this we can not get the spool file to the presentation server).
    Thanks&Regards
    jagan

    Please refer :
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8cd6adbb-0301-0010-39ba-938c601d5db9
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/smartformtoMailasPDF+attachment&
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/savingPDFfilefromspooling+list&
    Regards,
    Anish Thomas
    <b>Pls reward useful answers</b>

  • Reg: properties files in webdynpro

    Hi All,
            I want to develeopment webdynPro project,in which need to get environment dependent parameteres depending on Environments..as i do in java, i want to create .properties file with the WebdynPro project.
    i am unable to create  the file..Please help me out to develope a Projects independent of Environment....
    Thanks
    Nagaraju

    Hi,
    Where can i get the configuration api. Can u please provide where can i get it.
           IWDDeployableObject deployableObject = wdComponentAPI.getDeployableObjectPart().getDeployableObject();
           String configName = "test"; //This should match with the name specified in the src->configuration->test.properties
           WDConfiguration.getConfigurationByName(deployableObject, configName)
           //For 7.1 instead of the above code use
           IWDWebModule webModule = wdComponentAPI.getDeployableObjectPart().getWebModule();
           WDConfiguration.getConfigurationByName(webModule, configName);
    Regards
    Ayyapparaj

  • Reg. csv file upload

    Hi,
    In my source file i have a single product name as "a,b". But when i try to upload, it is not happening and throwing error.
    Please can anyone help me?
    Thanks,
    Madhu

    Hello,
    Take a look at the 'Optionally Enclosed By' option when you upload your file, since your text contains a comma you might want to enclose the strings by quotation marks and then use the Optionally Enclosed By to allow APEX to parse each string individually.
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd

  • REG:jdi file

    Hello Experts,
    While creating a workspace for a track imported from SLD, I found a file created with extension .jdi.
    Can you please explain me what is that or send me a supporting a link .
    Thanks,
    Khyana Prabha

    Hi,
    Please check if this links of some help for you.
    http://wiki.sdn.sap.com/wiki/display/SL/SoftwareChangeManagement
    Regards,
    Naveen.
    Edited by: Naveen Kumar on Feb 2, 2012 7:26 PM

  • Reg: XLF file

    Hi all,
    Neeed help on one my scenario in my work.Can we have .xlf file like below to handle german, french, italy and danish. I am having Single RTF file which is in en-GB format. want to translate this RTF layout to all 4 language. Please guide me.
    sample code:-
    *<?xml version = '1.0' encoding = 'utf-8'?>*
    *<xliff version="1.0">*
    *<file source-language="en-GB" target-language="fr-FR" datatype="XDO" original="orphan.xlf" product-version="orphan.xlf" product-name="">*
    *<header>*
    *<prop-group name="ora_reconstruction">*
    *<prop prop-type="TemplateCode">XX_STD_PROD</prop>*
    *<prop prop-type="extractorVersion">5.6.3_120.1</prop>*
    *</prop-group>*
    *</header>*
    *<body>*
    *<trans-unit id="2b7f43c_3" maxbytes="4000" maxwidth="23" size-unit="char" translate="yes">*
    *<source>PURCHASE ORDER NO.</source>*
    *<target>N ° de commande.</target>*
    *<note>Text located: body/table/table/table footer</note>*
    *</trans-unit>*
    *</body>*
    *</file>*
    *<file source-language="en-GB" target-language="it-IT" datatype="XDO" original="orphan.xlf" product-version="orphan.xlf" product-name="">*
    *<header>*
    *<prop-group name="ora_reconstruction">*
    *<prop prop-type="TemplateCode">XX_STD_PROD</prop>*
    *<prop prop-type="extractorVersion">5.6.3_120.1</prop>*
    *</prop-group>*
    *</header>*
    *<body>*
    *<trans-unit id="2b7f43c_3" maxbytes="4000" maxwidth="23" size-unit="char" translate="yes">*
    *<source>PURCHASE ORDER NO.<source>*
    *<target>ORDINE D'ACQUISTO NO.</target>*
    *<note>Text located: body/table/table/table footer</note>*
    *</trans-unit>*
    *</body>*
    *</file>*
    *<file source-language="en-GB" target-language="de-DE" datatype="XDO" original="orphan.xlf" product-version="orphan.xlf" product-name="">*
    *<header>*
    *<prop-group name="ora_reconstruction">*
    *<prop prop-type="TemplateCode">XX_STD_PROD</prop>*
    *<prop prop-type="extractorVersion">5.6.3_120.1</prop>*
    *</prop-group>*
    *</header>*
    *<body>*
    *<trans-unit id="2b7f43c_3" maxbytes="4000" maxwidth="23" size-unit="char" translate="yes">*
    *<source>PURCHASE ORDER NO.</source>*
    *<target>Bestell-Nr.</target>*
    *<note>Text located: body/table/table/table footer</note>*
    *</trans-unit>*
    *</body>*
    *</file>*
    *<file source-language="en-GB" target-language="da-DK" datatype="XDO" original="orphan.xlf" product-version="orphan.xlf" product-name="">*
    *<header>*
    *<prop-group name="ora_reconstruction">*
    *<prop prop-type="TemplateCode">XX_STD_PROD</prop>*
    *<prop prop-type="extractorVersion">5.6.3_120.1</prop>*
    *</prop-group>*
    *</header>*
    *<body>*
    *<trans-unit id="2b7f43c_3" maxbytes="4000" maxwidth="23" size-unit="char" translate="yes">*
    *<source>PURCHASE ORDER NO.</source>*
    *<target>INDKØBSORDRE NR.</target>*
    *<note>Text located: body/table/table/table footer</note>*
    *</trans-unit>*
    *</body>*
    *</file>*
    *</xliff>*
    Thanks in advance

    In XML Publisher follow the menu: Tools > Translate Template > Extract Text to create an xlf file. You can make 4 different xlf file for one rft file to show another languages. If you are in Oracle EBS context then you should see the translation of your rtf file when you login into the EBS with the proper language.
    Another case you should need to translate your rtf column names or other text programmaticly. Such as <?xdofx: if TheLanguage='DE' then 'DE translation' else if TheLanguage='FR' then 'FR translation' else if TheLanguage='DK' then 'DK translation' else if TheLanguage='IT' then 'IT translation' else 'English one' end if end if end if end if?>
    Regards,
    Cafer

  • Reg:COD File

    Hi all,
            Is it possible to get source code from Cod file.
    With Regards
      karthik.J

    might want to try the developement section
    http://supportforums.blackberry.com/rim?category.id=BlackBerryDevelopment

  • Reg: Region File

    Hi ,
    Am working on iSupport, I have a region file, which has been been used by 2 pages. I want to make some modifications to the region file. For that can i use that existing region or create a new region and in extends field do i need to mention the existing region name.
    Thanks

    Hi,
    You can still use the same region . But make sure that from each page , which uses this region, the region renders properly.
    Thanks
    Joseph

Maybe you are looking for

  • Export 300 dpi file from multiple apps, but it is received at 72 dpi

    Hi, I need HELP please. I am creating a print job that needs to be output at 300 dpi. I have created the file in Photoshop, Illustrator, and InDesign. Each time I set the file up as a 300 dpi file. I create the art, then I output. I have output both

  • Trying to update FCPX but it says it's already installed but it isn't

    I am trying to update FCPX on one of our MacPro Tower (not trash can / Cylinder ) computers. It is running FXP X 10.1.x. When I try to download FCPX 10.2 from the App Store it says I already have it installed... IT ISN"T. I thought well maybe I need

  • Can we create AI template that can be rendered into vectors

    Hi Everyone. Sorry if I am asking a repeated question. I am trying to create a script ( or find a third party tool ) that will convert PDF/Image to vector for engraving. Just like this page "Precision Bitmap To Vector Conversion Online- Vector Magic"

  • Purchase album without re-purchasing singles

    I want to buy an album from which I had previously purchased a single. Is there any way to avoid re-downloading the track I already purchased? I feel like I've done this before and iTunes took into account my previous purhase from the album.

  • Building an image for multiple types of Macs...

    I need to build images for iMac G3 500's, iMac G4's, eMacs, & 400 Mhz G4 Towers. My question is this... Using OS 10.3 or 10.4, can I build an image on one of these machines that will have all of the appropriate drivers, software, etc. to distribute t