Read only part of a document with Stax

Hi,
I have some huge documents (~5GB) and I use Stax to read them.
My problem: I want to load only a part of the document.
I know the location that I should put the inputStream, so I skip half of the file.
Then I push data using xmlReader.hasNext(). After the first iteration though, I get the exception ->
javax.xml.stream.XMLStreamException: ParseError at [row,col]:[34,4]
Message: The markup in the document following the root element must be well-formed.
The original xml is like that:
<root>
<element id=1>
</element>
<element id=2>
</element>
<element id=3>
</element>
</root>And I pass to the xmlStreamReader
<element id=2>
</element>
<element id=3>
</element>So, I know why I get it. Because I include in the input stream only a part.
When it tries to read the element with id=3 , it says not well formed document.
which on one hand is correct, but on the other hand not important for me.
any possible solutions? How to disable the check of xmlstream reader or I don't what.
no, I cannot wrap a part of a 5Gb file to something else...That's not the point. It will be to slow...
That why I want to skip so much data in first place, to make it quick.
The problem is so annoying and a little bit stupid.
A solution would be to write my own parser, instead of using the XMLStreamReader, but then again, this is stupid, dirty, and duplicate of efforts...
-------part of the code--------
FileInputStream inputStream = new FileInputStream(filename);
inputStream.skip(skipBytes);
xmlReader = xmlif.createXMLStreamReader(filename, inputStream);
        while (xmlReader.hasNext() && parsingComplete == false) {
            xmlReader.next();
            if (xmlReader.isStartElement()) {
                parseStartElement(xmlReader);
                continue;
        }Thanks for the help and any opinions.
Andreas

Following the tip about creating a new input stream, I've create a class that extends the FileInputStream, and now it works.
Extending just the InputStream was really slow. (remember the documents are huge "string" files)
The code:
XMLInputFactory xmlif = XMLInputFactory.newInstance();
xmlif.setProperty(XMLInputFactory.IS_COALESCING, Boolean.TRUE);
RootElementAppenderFileInputStream skippedInputStream = new RootElementAppenderFileInputStream(file, skipBytes);
xmlReader = xmlif.createXMLStreamReader(file.getAbsolutePath(), skippedInputStream);
while (xmlReader.hasNext() && parsingComplete == false) {
    xmlReader.next();
    if (xmlReader.isStartElement()) {
        parseStartElement(xmlReader);
public class RootElementAppenderFileInputStream extends FileInputStream {
    private ByteArrayInputStream rootElemStreamStart;
    private boolean readingRoot = true;
    public RootElementAppenderFileInputStream(File file, long skipBytes) throws FileNotFoundException, IOException {
        super(file);
        this.rootElemStreamStart = new ByteArrayInputStream("<O>".getBytes());
        this.skip(skipBytes);
    public int read() throws IOException {
        if (readingRoot) {
            int result = rootElemStreamStart.read();
            if (result == -1) {
                readingRoot = false;
            } else {
                return result;
        return super.read();
}

Similar Messages

  • How to set only part of the document as "read-only"?

    Hi,
    I am using SharePoint 2010. I would like to set some of the columns as "read-only" while some of them are still editable. If I use Advanced Settigns>Item-Level Permissions, I can only set the whole document as "read-only".
    Is there a way I can do what I wannt?
    Thanks a lot!

    Hi,
     There is no OOTB way to set a column as read-only.  I think you want to make some of the fields as Read-Only in the EditForm.aspx. If so, then you can use the Javascript to do. 
    Add a Content editor webpart to the Editform.aspx page and place the javascript method to make a field read-only.
    You can use the _spBodyOnLoadFunctionNames.push("MakeReadOnly()") method to assocaite your method to the EditForm.
    Here are the links which will help you.
    http://dishasharepointworld.blogspot.in/2011/08/read-only-field-in-sharepoint.html
    http://nishantrana.wordpress.com/2009/01/30/read-only-field-in-sharepoint-editformaspx/
    http://www.jbmurphy.com/2010/06/01/how-to-make-a-field-in-a-sharepoint-edit-form-readonly/
    *******Don't forgot to MARK AS ANSWER / VOTE AS HELPFUL if it really helps************
    R.Mani http://rmanimaran.wordpress.com

  • SQLException while selecting only part of XML document

    Hi,
    I'm newbie in oracle XML DB. I'm trying to make an example application but I'm still getting an SQLException while selecting only part of my XML document. I'm using oracle 11g release 1.
    I have following XML document:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <CATALOG>
    <CD>
    <TITLE>Empire Burlesque</TITLE>
    <ARTIST>Bob Dylan</ARTIST>
    <COUNTRY>USA</COUNTRY>
    <COMPANY>Columbia</COMPANY>
    <PRICE>10.90</PRICE>
    <YEAR>1985</YEAR>
    </CD>
    <CD>
    <TITLE>Hide your heart</TITLE>
    <ARTIST>Bonnie Tyler</ARTIST>
    <COUNTRY>UK</COUNTRY>
    <COMPANY>CBS Records</COMPANY>
    <PRICE>9.90</PRICE>
    <YEAR>1988</YEAR>
    </CD>
    </CATALOG>
    and following java code:
    import oracle.jdbc.OraclePreparedStatement;
    import oracle.jdbc.OracleResultSet;
    import oracle.xdb.XMLType;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class Select {
    private static String SQL_1 = "SELECT OBJECT_VALUE FROM CATALOG";
    private static String SQL_2 = "SELECT extract(OBJECT_VALUE,'/CATALOG/CD/ARTIST') FROM CATALOG";
    public static void main(String[] args) throws SQLException {
    Connection conn = createConnection();
    OraclePreparedStatement stmt = (OraclePreparedStatement) conn.prepareStatement(SQL_1);
    OracleResultSet orset = (OracleResultSet)stmt.executeQuery();
    while (orset.next()) {
    // get the XMLType
    XMLType poxml = XMLType.createXML(orset.getOPAQUE(1));
    // get the XMLDocument as a string...
    System.out.println(poxml.getStringVal());
    conn.close();
    private static Connection createConnection() {
    try {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn =
    DriverManager.getConnection("jdbc:oracle:thin:@hruby.marbes.cz:1521:oracle", "hruby", "password");
    return conn;
    } catch (SQLException e) {
    e.printStackTrace();
    return null;
    While executing SQL_1 statement everything goes well and I get whole document.
    While executing SQL_2 statement I get following exception:
    Exception in thread "main" java.sql.SQLException: Only LOB or String Storage is supported in Thin XMLType
         at oracle.xdb.XMLType.processThin(XMLType.java:2817)
         at oracle.xdb.XMLType.<init>(XMLType.java:1238)
         at oracle.xdb.XMLType.createXML(XMLType.java:698)
         at oracle.xdb.XMLType.createXML(XMLType.java:676)
         at Select.main(Select.java:27)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)
    I expect to get such result:
    <ARTIST>Bob Dylan</ARTIST>
    <ARTIST>Bonnie Tyler</ARTIST>
    any suggestion???
    Thanks

    OBJECT_VALUE in this case refers to an XMLType datatype (fragment due to the use of "extract"). Convert it on "the fly" to a CLOB using getCLOBVal(). Then pick it up in java as a LOB.

  • Does anyone know how to remove read only status from html document header

    Greetings, I am trying to insert a slideshow widget inot a dreamweaver site using a dynamic web template (DWT). I get the error message unable to insert because header is read only. Any ideas of how to fix this?

    People hate it when I do this, but I'm going to get on my soap box again.
    If you are not an expert or at least highly proficient at modifying XHTML and CSS code, you should NOT be working with DWT files. Until you FULLY understand how to edit and modify nested, editable, parent and child regions, you will have nothing but trouble working with DWTs.
    I've been writing CSS, HTML and XHTML for seven years and I don't mess with DWTs because I'll admit I'm a control freak and I can't stand having any part of a web page locked up by another file.
    Use the pre-designed pages in DW, or download a layout from one of the many sites that have them, but until you are an expert at codework, stay away from templates (dwt). You'll save yourself a lot of headaches.

  • Only reseting the cleared documents with exchange rate differences in FBRA

    Hello,
    we want only reset the cleared documents . We dont want to reverse the cleard documents. But When we try to do it we get a message Exchage difference are posted do you want to reverse it. Want we want to reset are in Doc.. currency. postings for August.
    As i know when we have exchange rate difference we  dont get an option only resettng but we get reseting and reversing.
    May i know how to slove this situation.
    Thank you
    Chaithra

    HiI
    f you set this selection field then the settings in the ERD Setting column for this currency type are no longer relevant. The system calculates and posts exchange rate differences between order-related goods receipts and invoices not just for materials with standard price, but also for:
    Materials with moving average price
    Account-assigned transactions
    Planned delivery costs
    The valuation of the inventories or consumption is effectively done at the exchange rate for the goods receipt, and not at the exchange rate of the invoice. When you post the good receipts, the fixed exchange rate from the purchase order is not used, but the translation of the purchase order values to local currency is always done at the posting date of the goods receipt.
    If you are using the material ledger with actual costing, the system does not include the posted exchange rate differences at period-end closing in the actual prices of the materials.
    Regards
    Antony

  • Read,write and create word document with list data

    Hi,
    My requirement is that I have a custom list called List1 and which has a 4 (suppose XName, location, phone, email)columns and also have a Template document(.dot). If I click on save button , new document has to create from the Template document(.dot) and
    should modify the content depends on list columns.
    For that I need to read the document , find out the text where XName , location,,phone, email and replace with the list item data(user entered data). 
    Can anybody please refer links for read,write and create word document?
    Thanks in advance.

    Yes, you can using Office Open XML. I found it to be a lot more cumbersome and in the end not a money saving approach:
    https://msdn.microsoft.com/en-us/library/office/bb448854.aspx?f=255&MSPPError=-2147217396
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Reading and displaying Ms.Word document with web dynpro java

    Hi,
    I'm using NetWever developer studio 7..0.21.
    I'm developing web dynpro java application.I'm in difficulty to read and display word document with its original format in web dynpro view. Is it possible?
    If possible , is there a blog etc.?
    Thanks.

    Hello,
    You have to use the Office Integration Library. Please, follow the documentation below:
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/32853febec3c17e10000000a114084/frameset.htm
    I hope this helps you.
    Regards,
    Blanca

  • Api POI read and replace my word document with java

    Hi
    Everyone
    I�d like to know if someone has a piece of code reading a word document with api POI to send me?
    I need read replace the word document wiht java j2ee.
    Thanks

    Hello,
    You have to use the Office Integration Library. Please, follow the documentation below:
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/32853febec3c17e10000000a114084/frameset.htm
    I hope this helps you.
    Regards,
    Blanca

  • HP 576dw printer prints only part of document

    A multipage document is sent to printer, Word or PDF.  The printer prints only part of the document.  For example, in an 80 page document being printed double sided, only 56 pages actually print.
    HP print software indicates no new updates are available.

    Hello pchancel,
    Welcome to the HP Forums.
    I see that you are having some printing issues when printing documents.
    So I can better assist you, please respond with which Operating System you are running:
    Which Windows Operating System am I running?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Write me back when you have time and I will be happy to help.
    Cheers,   
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Using VDBench with read-only filesystem ?

    I wanna run a VDBench session with format, then change the fs to read only and run VDBench again with only read ops..
    Is this thing possible ?
    Right now im getting this error :
    16:41:58.797 localhost-0 : 16:41:58.797 common.failure():
    16:41:58.797 localhost-0 : java.io.FileNotFoundException: /mnt/ibox054/node-1/fs14104394011/no_dismount.txt (Read-only file system)
    16:41:58.797 localhost-0 :      at java.io.FileOutputStream.open(Native Method)
    16:41:58.798 localhost-0 :      at java.io.FileOutputStream.<init>(Unknown Source)
    16:41:58.798 localhost-0 :      at Utils.Fput.<init>(Fput.java:61)
    16:41:58.798 localhost-0 : 16:41:58.798 common.failure(): System.exit(-98)
    16:41:58.798 localhost-0 :      at Utils.Fput.<init>(Fput.java:34)
    16:41:58.798 localhost-0 :      at Vdb.InfoFromHost.checkAutoMount(InfoFromHost.java:978)
    16:41:58.798 localhost-0 :      at Vdb.InfoFromHost.getInfoForMaster(InfoFromHost.java:298)
    16:41:58.798 localhost-0 :      at Vdb.SlaveJvm.getMessagesFromMaster(SlaveJvm.java:212)
    16:41:58.799 localhost-0 :      at Vdb.SlaveJvm.main(SlaveJvm.java:383)
    So it looks like VDBench demands a writable fs to work , even if only read ops exist.

    Thank you for the SUPER fast response!
    File downloaded successfully, but :
    Is it trying to change the vdb_control.file ?
    17:20:11.534 All slaves are now connected
    17:20:12.605 localhost-0 : 17:20:12.605 common.failure():
    17:20:12.605 localhost-0 : Abort requested: java.io.FileNotFoundException /mnt/ibox054/node-1/fs14104394011/vdb_control.file (Read-on
    ly file system)
    17:20:12.606 localhost-0 : java.io.FileNotFoundException: /mnt/ibox054/node-1/fs14104394011/vdb_control.file (Read-only file system)
    17:20:12.606 localhost-0 :      at java.io.FileOutputStream.open(Native Method)
    17:20:12.606 localhost-0 :      at java.io.FileOutputStream.<init>(Unknown Source)
    17:20:12.606 localhost-0 : 17:20:12.606 common.failure(): System.exit(-98)
    17:20:12.606 localhost-0 :      at Utils.Fput.<init>(Fput.java:61)
    17:20:12.606 localhost-0 :      at Utils.Fput.<init>(Fput.java:34)
    17:20:12.607 localhost-0 :      at Vdb.ControlFile.writeControlFile(ControlFile.java:86)
    17:20:12.607 localhost-0 :      at Vdb.FileAnchor.initializeFileAnchor(FileAnchor.java:268)
    17:20:12.607 localhost-0 :      at Vdb.FwgRun.startFwg(FwgRun.java:104)
    17:20:12.607 localhost-0 :      at Vdb.SlaveWorker.doFileSystemWorkload(SlaveWorker.java:264)
    17:20:12.607 localhost-0 :      at Vdb.SlaveWorker.run(SlaveWorker.java:131)
    17:20:12.944

  • Backing up database with read-only tablespaces

    I am trying to develop a script that will dynamically build RMAN scripts for backing up
    a database with read-only tablespaces. The application running on this database creates
    new tablespaces in read-write mode on weekly basis, populates them, and then puts them in read-only mode. So I need to backup all read-write tablespaces plus take backup of all read-only tablespaces once. The problem is that the application also includes a process that puts a tablespace back into read-write mode, updates it, and puts it back into read-write mode. So I need to be able to access "a history" of the tablespace - when was it put into read-only mode - to compare it with a history of backups. While history of backups is available in RMAN views, I couldn't find any way to extract tablspaces
    history.
    There should be RMAN command to the effect
    "backup all read-write tablespaces and read-only tablespaces if they have not been backed up at least once since becoming read-only".
    Regards,
    Sev
    null

    just rsync the files to a compressed Zpool. do this using shadow migration, and you only loose access to the data for a few seconds.
    1) make new dataset with compression
    2) enable shadow migration between the new and old
    3) change the database to use the new location
    4) watch as data is automatically copied and compressed :-)
    the the down side, you need extra space to pull the off.

  • How to modify edit/read mode pop up for documents in "SP2013" to open in only read only mode

    Hi,
    When opening a document the users of my site and including me are getting a pop up asking to open it in read only or edit mode. We want to disable the edit option for end users. Those are confidential doc's. 
    We want them to open only in read only mode. How can it be achieved.
    Can we FORCE a read-only open of the document without giving anyone the option to open in edit mode? I don't have access to Central Admin. Hence kindly let me know if there is some javascript
    code that i can use to do this from browser.
    thank you !

    Hi Prajk,
    If users have edit permission on the documents in this library, even if we disable this dialog (by disabling the add-on "SharePoint OpenDocuements class" from IE browser), the users sitll could download the documents to local machine, and
    edit the documents in client Office application, then sync to library.
    If you want the users to read these confidential documents only, you can only grant the users read-only permission on the document items or on library level, then they could unable to edit these confidential docs, note to give proper users
    proper permissions.
    If you also want that the confidential docs could be opend and read-only in client Office application, you can configure the IRM (implemented by RMS) for SharePoint server, then set the document items in the library read-only for
    some users.
    https://technet.microsoft.com/en-us/library/hh545607%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
    https://support.office.com/en-in/article/Apply-Information-Rights-Management-to-a-list-or-library-6714cfe3-ef39-43b0-bb65-a887726bb63c?CorrelationId=ebcf6a01-1d3c-4b75-86ae-c11322065be6&ui=en-US&rs=en-IN&ad=IN
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Key flexfield - protecting one of the segment as NON-UPDATABLE/ READ-ONLY

    Key Flexfield setup for "People Group Flexfield" consists of seeg1,seg2,seg3,seg4.
    We would like to make Seg1 of this flexfield "READ ONLY" / "DISPLAY ONLY" / "Non-Updatable".
    Please advise possible way of making this functionality.
    I have tried, following but no luck :
    1) Limitations of Forms Personalization [ID 420518.1]
    Forms Personalization is not possible for any key flexfield structure or segments.
    This is a limitation of Forms Personalization on Flexfield. There was an enhancement request Bug 5506506 - "PERSONALIZE FLEXFIELDS BY USING FORMS PERSONALIZATION" but it was rejected the enhancement request as this is not feasible. A Flexfield is a single field in a form but then when you click into it and it opens up the flexfields window, the multiple fields you see is actually a user exit with multi segment values, not form fields. No Form Personalization events are passed to flexfield windows (user exits). No Form Personalization events are passed to segments inside the flexfield window (user exit).
    2) Key Flexfield Security Rules Enabled
    Defining security rules on any segment in key flexfield makes all segments as read only. Per Oracle Document:"Defining security rule on key flexfield combination on one or more segments allows all segments to be not updatable"

    In SSHR, I believe it is possible although I have not done it before, I have spoken to people who have.
    You need to have access to jDeveloper and be able to open up the SSHR page in question. Find the internal ID of the flex item within the SSHR page in question.
    Then you create a new item in personalization and set that new item to have the same ID as you retrieved from jDeveloper. Make that item read only and configured the 'default' flex to not show the segment in question.
    That is basically the way this can be achieved but it is not straightforward and requires a cursory understanding of OAF.
    I do not know if it is possible to do this in the PUI. Would be interested to know requirement behind essentially showing a static read only field in a professional form - can the admins not be trusted to leave it alone? One workaround would be coding a user hook or custom library to error if that field is updated. Not read only but would stop those pesky Administrators meddling with it!

  • Acrobat read-only error message

    http://forums.adobe.com/message/4117896
    Hello I am following on from a previously reported issue.
    We have a client who are using Adobe Acrobat 9 and have .PDF's saved in a Share Folder. Is the creator of the document but is still faced with the read only prompt when trying to save the document after making an edit (e.g rotating). Upgrading to Adobe Acrobat 9 isn't an option.
    Folder permissions in both Share and NTFS is okay.
    User's profile has full control of the folder it is being saved in. I've also ensured the reading pane is Windows Explorer is off when they're opening it.
    Have run a repair on Adobe Acrobat 9 and tried with other documents with the same result.
    Saving locally does not have the same issue.
    Please advise a solution for using .PDF for Adobe Acrobat 9 in a Share Folder environment.
    Server is SBS2008 and user's PC is Windows 7 Professional.
    Eagerly await a fix.

    I am having the same issue. Acrobat X was working fine for me for months, then out of the blue, it starts having this problem TODAY! (There must be something about the month of November when people have this problem with Acrobat! )
    Each time I open a PDF file in Acrobat and make an edit, (such as highlighting text or adding a link to a web page), I cannot save the file by the same name. I get the "read only" error message:
    "The document could not be saved. The file may be read-only, or another user may have it open. Please save the document with a different name or in a different folder."
    I installed the latest updates for Acrobat after this problem occurred, but the "read only" error message persists. In a previous thread, one person suggested turning off Acrobat's Protected Mode by going to Edit/Preferences/General and unchecking the Enable Protected Mode At Startup. I do not see this option in Acrobat X.
    The only work-around I've found is to save the PDF file with a temporary name, then after making the edits in Acrobat, save the file as the original name that you wanted the file to be in the first place.
    I'd rather not have to mess with work-arounds. I just want to make this problem go away. Any help or suggestions would be appreciated!
    regards,
    ChristyGTWE

  • Can I make a LOB segment tablespace 'READ ONLY' so no backup?

    Greetings
    Environment: Oracle 11.2.0.3 on Solaris 10.5
    LOB newbie here.
    I am currently supporting a database, but not the application, that is loading fairly large XML files into CLOB columns. Today I have 121 LOBSEGMENTs taking up about 1GB of space and in the same tablespace as the owner table.
    I understand that the CLOB data will not be changing that often.
    My issue is now my RMAN backup is much larger and is filling the mount point where the backup files are stored.
    I'd like to move the LOBSEGMENT objects to a different tablespace, back it up once and mark the tablespace as READ ONLY so it doesn't get backed up every time.
    I am currently doing a full database backup every day and archivelog backups every 4 hours.
    Can I use something like: ALTER TABLE 'X' MOVE LOB 'Y' STORE AS TABLESPACE 'Z' ?
    Is it then possible to alter the 'Z' tablespace to READ ONLY and not affect the user's ability to update the other parts of the table?
    Other alternatives are most welcome!!
    Thanks very much!!
    -gary

    Thanks for the quick response.
    I don't want you to give up, I'd just like some advice from your experience.
    Even though I am working in a test environment I was hesitant to execute the above commands so as not to cause the application to fail as the user is loading the XML data.
    I want the tablespace storing the LOBSEGMENTs to be READ ONLY but I wasn't sure if I could specify just the LOBSEGMENT part of a row to be READ ONLY without causing update problems for the other columns in the table.
    I realize the new LOBSEGMENT tablespace will be READ ONLY and the original tablespace with the rest of the data will remain READ WRITE.
    Also, I'm assuming if the CLOB data ever needs to change I should be able to alter the tablespace back to READ WRITE, have the user make the changes, be sure the new data is backed up and alter the tablespace back to READ ONLY.
    Is this how you would handle the situation?
    Thanks very much!
    -gary

Maybe you are looking for

  • Error While trying to run a servlet

    I am getting the below error while trying to run a servlet using tomcat.In this admin is a directory where I have a html file called admin.html which calls the servlet AdminServlet & replaces the url by /servlet/AdminServlet. HTTP Status 404 - /SPOT/

  • Can't find my overdrive audiobook on my ipad

    Hello, I'm looking for some help with a library audiobook from the Harris County Public Library.  I have an original ipad running the latest OS.  The book is WMA format, and I have it checked out until 1/27/12.  Here is what I have done so far: The m

  • PC Gamer published one review for MSI GS30 2M shadow with gaming dock

    MSI's GS30, with its Gaming Dock, is the first to actually deliver on the promise of using a normal desktop graphics card bolstering a thin 'n' light, non-gaming notebook.-Dave James Highlights: 1.You can switch between thin 'n' light laptop to gamin

  • FrameMaker and ArborText

    Can two groups within the same company, one using FrameMaker and the other using ArborText, open and edit each other's documents and then bring them back into the original program? Thanks! Lisa

  • CONFIGURATION STEPS IN U.S 401(K) SAVINGS BENEFIT PLAN

    Hi Experts, can u please let me know the configuration steps involved in 401(k) benefits plan.If you are having any docs on Benefits configuration,please send me on [email protected] Thanks in Advance. sairam