Please help with reading fixed-length file

I am reading a fixed-length file from a batch program and I need to read through each line, parsing out records in each, and replacing the first character in each line after I finish processing. I am using a RandomAccessFile, but I am not sure if this is best for my needs.
Here is essentially the code that I am using:
RandomAccessFile raf = new RandomAccessFile(File, "rw");
int pointer = 0;
int recordLength = 65;
int counter = 0;
string test = "X";
pointer = raf.getFilePointer();
while ((line = raf.readLine()) != null) {
//set file pointer
seek(counter * recordLength);
counter ++;
if (line.substring(0, 1).equals(test)) {
continue;
var1 = line.substring(7, 22);
var2 = line.substring(23, 41);
var3 = line.substring(42, 52);
var4 = line.substring(53, 53);
//PROCESSING
raf.writeChar(test);

Thanks for the suggestion. I think that the
BufferedReader is the way that I will go. Do you
happen to know the best way to update the 1st Char of
each line as I'm reading each line using Buffered
Writer?Hi,
To update the first char of each line, you could read each line of the file into a StringBuffer, modify the value, and then write the value back out to the file.
I had to do something similar.
eg.
StringBuffer buf = new StringBuffer();
BufferedReader in = new BufferedReader(
    // data file source
new FileReader(db_location));
String s;
// while there are still items to read
while ((s = in.readLine()) != null)
    System.out.println("reading file");
    // split into component parts so we can modify
    StringTokenizer t = new StringTokenizer(s,",");
    int id = Integer.parseInt(t.nextToken());
    String code = t.nextToken();
    int quantity = Integer.parseInt(t.nextToken());
    // copy component parts into StringBuffer
    buf.append(id+",");
    buf.append(code+",");
    buf.append("\n");
     // use StringBuffer methods here to isolate first character
     // use StringBuffer methods to replace first value of input in buffer
     // eg.
          buf.replace(index,length,","+ new_code);
// print out the StringBuffer to rewrite updated file
PrintWriter output = new PrintWriter(
    new BufferedWriter(
    new FileWriter(db_location, false)));
output.println(buf.toString());
output.close();As always, there is more than one way to skin a cat. But this is my way.
I think that JDK 1.4 has some new methods, but not 100% sure of that.
//Daniel.

Similar Messages

  • Reading fixed length file with different record types

    Hi,
    I need to read a fixed-length file with different record types, but the record identifier is in 31st position and not in 1st position.
    But if I give 31 as position in File adpater wizard, BPEL takes whole 1-31 as identifier.
    How we need to read such files.
    Thanks
    Ravdeep

    hi ,
    u cannot use the default wzard for this
    use some thing like this nxsd:lookAhead="30" nxsd:lookFor="S"have a look at the below link it has some examples
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/nfb.htm

  • Need help with reading XML using File Adapter

    I have created a simple BPEL process that uses a file adapter to read files containing XML messages of a simple xsd schema. But when reading the xml, I get the following error message:
    [2010/03/01 23:43:13] Invalid data: The value for variable "Receive_1_Read_InputVariable", part "revision-report" does not match the schema definition for this part.The invalid xml document is shown below: More...
    [2010/03/01 23:43:13] "{http://schemas.oracle.com/bpel/extension}invalidVariables" has been thrown. less
    -<invalidVariables xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="code">
    <code>
    9710
    </code>
    </part>
    -<part name="summary">
    <summary>
    Invalid xml document.
    According to the xml schemas, the xml document is invalid. The reason is: Error::cvc-complex-type.4: Attribute 'doc' must appear on element 'revision-report'.
    Error::cvc-complex-type.4: Attribute 'model' must appear on element 'revision-report'.
    Error::cvc-complex-type.4: Attribute 'pubdate' must appear on element 'revision-report'.
    Error::cvc-complex-type.2.4.b: The content of element 'revision-report' is not complete. One of '{"http://xmlns.oracle.com/xmlfile":alternategroup}' is expected.
    Please make sure that the xml document is valid against your schemas.
    </summary>
    </part>
    </invalidVariables>
    It seems that there is some issue with the namespace, but even after trying out various combinations, I am not able to resolve this.
    Here the message schema (xsd):
    <?xml version="1.0" encoding="UTF-8" ?>
    <xs:schema elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/xmlfile"
    xmlns:tns="http://xmlns.oracle.com/xmlfile"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="revision-report">
    <xs:complexType>
    <xs:sequence maxOccurs="unbounded">
    <xs:element name="alternategroup">
    <xs:complexType>
    <xs:attribute name="name" use="required" type="xs:string"/>
    <xs:attribute name="Desc" use="required" type="xs:string"/>
    </xs:complexType>
    </xs:element>
    </xs:sequence>
    <xs:attribute name="doc" use="required" type="xs:string"/>
    <xs:attribute name="model" use="required" type="xs:string"/>
    <xs:attribute name="pubdate" use="required" type="xs:string"/>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    And here is the xml file to be read by the file adapter:
    <?xml version="1.0" encoding="UTF-8" ?>
    <revision-report doc="doc2" model="model4" pubdate="pubdate5">
    <alternategroup Name="ABC" Desc="ABC-Desc">
    </alternategroup>
    <alternategroup Name="DEF" Desc="DEF-Desc">
    </alternategroup>
    <alternategroup Name="GHI" Desc="GHI-Desc">
    </alternategroup>
    </revision-report>
    Appreciate any help.
    Thanks in advance for your attention.
    Jay

    Thanks for your response.
    I am not sure if there is any easier way, but I tried out the following tool available on the net to check an xml against a xsd:
    http://tools.decisionsoft.com/schemaValidate/
    There were a few issues, that I corrected and finally had a xsd and xml that were matching and valid. I tried this out in my file reading BPEL process, but the error still remained the same!
    Here is my updated/simplified xsd and xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <xs:schema targetNamespace="http://xmlns.oracle.com/xmlfile"
    xmlns:tns="http://xmlns.oracle.com/xmlfile"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://xmlns.oracle.com/xmlfile">
    <xs:element name="revision-report">
    <xs:complexType>
    <xs:sequence>
    <xs:element maxOccurs="unbounded" ref="alternategroup"/>
    </xs:sequence>
    <xs:attribute name="doc" use="required" type="xs:string"/>
    <xs:attribute name="model" use="required" type="xs:string"/>
    <xs:attribute name="pubdate" use="required" type="xs:string"/>
    </xs:complexType>
    </xs:element>
    <xs:element name="alternategroup">
    <xs:complexType>
    <xs:attribute name="Name" use="required" type="xs:string"/>
    <xs:attribute name="Desc" use="required" type="xs:string"/>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    <?xml version="1.0" encoding="UTF-8" ?>
    <revision-report doc="doc2" model="model4" pubdate="pubdate5" xmlns="http://xmlns.oracle.com/xmlfile">
    <alternategroup Name="ABC" Desc="ABC-Desc"/>
    <alternategroup Name="DEF" Desc="DEF-Desc"/>
    <alternategroup Name="GHI" Desc="GHI-Desc"/>
    </revision-report>
    I even tried the option that is available in JDeveloper to generate a sample xml from a xsd (when in the context of a Transformation activity). The xml generated by this also seems exactly like the one above.
    So, I am not able to figure out why my BPEL process errors out with the message Invalid xml document.

  • Please help with problem in PDF file and printing

    I have created an Illustrator file with a logo on it. The logo looks fine in Illustrator (CS3 and CS5). If I use "save as" to then save the .ai file to a .pdf file, the logo looks the same as in the .ai file. However, if I use "print" to create a .pdf file, the logo sometimes loses some of the elements in it.
    Here is what the logo should look like:
    Below is what it looks like when I use "print" to generate the PDF file:
    An additional problem is that even if I used "save as" to generate the pdf file, some times, when the file is actually printed physically onto paper, the logo appears in the wrong version (although it looks right on screen).
    Can someone help me with this? I am quite desparet right now because I can't see how I can control this.
    Also, is there any way I can attached the .ai file so someone can look at it?
    The white lines that disappear are not "lines" they are a slightly larger shape placed behind the smaller black one in fonrt.
    Thanks for any help!

    Why are you "printing to pdf"? Does "Save As" yield better results?

  • Read Fixed length file

    I have a text file that has data in specific positions of the file.
    ie.
    Pos 1-20 Name
    Pos 21-30 Division
    Pos 31-38 Birthdate
    I saved the file in the DB and want to process it to read the data in the specific positions I listed above.
    I started with the code below, but not sure how to get to the specific positions in the file.
    DECLARE
    v_blob_data BLOB;
    v_blob_len NUMBER;
    v_clob_data CLOB := 'anything';
    v_clob_len NUMBER;
    dest_offset NUMBER := 1;
    src_offset NUMBER := 1;
    blob_csid NUMBER := dbms_lob.default_csid;
    lang_ctx INTEGER := dbms_lob.default_lang_ctx;
    warning INTEGER;
    BEGIN
    select blob_content into v_blob_data from wwv_flow_files;
    v_blob_len := dbms_lob.getlength(v_blob_data);
    dbms_lob.converttoclob(v_clob_data, v_blob_data, v_blob_len,dest_offset,src_offset,blob_csid,lang_ctx,warning);
    END;

    bobmagan wrote:
    Unfortunately, I have to do this inside of an APEX page using pl/sql.What is unfortunate about that!? Apex is good. PL/SQL is awesome.{noformat} :-) {noformat}
    I would not have it any other way. Seriously.
    If the file is uploaded into Apex - then you still can use external tables.
    The basic steps are:
    1. spool the uploaded file (from the Apex flow files table) to the local file system of the Oracle server using UTL_FILE
    2. alter the external table and specify the newly created file's location
    3. select from the external data to load the file contents
    Alternatively, you need to write your own CLOB parser - that can read lines from the CLOB, parse these, and output the tokens to use (e.g. token 1 is the invoice id, token 2 the invoice date, etc).
    This all is very much doable in PL/SQL. And Apex is PL/SQL - and allows you to call your own PL/SQL packages and code to process data.
    Keep in mind that the simpler a process is, the easier it is to write, maintain and debug. Doing manual parsing.. not something that should be treated lightly as that can become quite complex.
    Dealing with an external table and its easy definition of the format of the file content to load, is a lot easier and more flexible. The only downside is having to spool the CLOB to an external file in order to use the external table... However... I do recall a few months ago looking at the "cartridge" used by Oracle to load external files as an external table, and read/saw something that seemed to also support CLOBs..?
    So I'm not sure if one can now define an external table and use it to load CLOB contents - worth looking at... and even if not, also worth considering spooling a CLOB to external file for loading via the external table interface.
    Unless of course you're keen to put your regex kung fu skills to use in writing a custom CLOB parser for the file contents.

  • Please help with reading crash report?

    Hello. My macbook has unexpectivily quit twice now. I was just running paralells in the background (win xp emulator program) when a screen popped up and told me that I need to restart or hold down the power button to power down the computer. The crash report is bellow. Peraps you can tell me what might have caused the problem.
    Thank you.
    Dorian
    Crash report:
    panic(cpu 0 caller 0x001A3135): Unresolved kernel trap (CPU 0, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0x00000000, CR3: 0x0185b000, CR4: 0x000006e0
    EAX: 0x00000000, EBX: 0x00000001, ECX: 0x3a5478ee, EDX: 0x3a54ca80
    CR2: 0x00000000, EBP: 0x149dbea8, ESI: 0x03930100, EDI: 0x044d8b00
    EFL: 0x00010202, EIP: 0x3a545685, CS: 0x00000008, DS: 0x004a0010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x149dbc78 : 0x128d08 (0x3c9afc 0x149dbc9c 0x131de5 0x0)
    0x149dbcb8 : 0x1a3135 (0x3cf7b0 0x0 0xe 0x3cefe0)
    0x149dbdc8 : 0x19a904 (0x149dbde0 0x1 0x149dbde8 0x202)
    0x149dbea8 : 0x387b5e (0x3930100 0x44d8b00 0x149dbed8 0x37f0be)
    0x149dbed8 : 0x398071 (0x44d8b00 0x3930100 0x0 0x0)
    0x149dbf08 : 0x3877c6 (0x3523640 0x387af4 0x44d8b00 0x3930100)
    0x149dbf58 : 0x38b4c6 (0x0 0x0 0x0 0x0)
    0x149dbfa8 : 0x38b6a3 (0x5 0x38b682 0x5 0x4b8000)
    0x149dbfc8 : 0x19a77c (0x5 0x0 0x19d0b5 0x3b6bb8c) Backtrace terminated-invalid frame pointer 0x0
    Kernel version:
    Darwin Kernel Version 8.8.2: Thu Sep 28 20:43:26 PDT 2006; root:xnu-792.14.14.obj~1/RELEASE_I386
    Model: MacBookPro2,2, BootROM MBP22.00A5.B00, 2 processors, Intel Core 2 Duo, 2.16 GHz, 1 GB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: AirPort Extreme, 1.0.27p1
    Bluetooth: Version 1.7.11f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Host-Guest, Ethernet, en2
    Network Service: Parallels NAT, Ethernet, en3
    Serial ATA Device: Hitachi HTS541612J9SA00, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA

    Hi, Dorian.
    You are describing the following message:
    That indicates a kernel panic. Likewise, the log you posted is a panic log, not a crash log.
    The following line indicates the panic was caused by a Page Fault:
    panic(cpu 0 caller 0x001A3135): Unresolved kernel trap (CPU 0, Type 14=page fault)...
    A common fault type, a Page Fault indicates the processor could not access either data memory or the next instruction to be executed. Potential causes include RAM problems, hard disk corruption, and programming errors.
    Since there are no kernel-loadable extensions in the backtrace, the panic log offers no easily-discernable additional clues. I suggest you be sure you are running the latest version of Parallels: earlier versions were known to cause panics.
    See my "Resolving Kernel Panics" FAQ. This FAQ includes step-by-step instructions for identifying and resolving some of the most common causes of kernel panics. The FAQ is a roadmap: start at the beginning and work systematically through the end, i.e. the "If all else fails..." section.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Need help with reading a midi file!!!

    I want to be able to make a java program that can read midi files. I need to know what notes are played and when. how can i do this.
    A bit of code would be nice to to use as a resource.
    thnx

    http://java.sun.com/products/java-media/sound/
    There are links to code samples and maybe a tutorial

  • File Adapter: Fixed length file read fails when all data not present

    Hi
    We have a BPEL process that reads fixed length data files. It works fine when all the data elements are available in the file but fails with 'rejected:10002' when even a single data is missing.
    How to handle this situation in BPEL file adapter?
    Are we doing something wrong or is this a normal functionality.
    If yes, then is there any work around for this as this is a very usual business condition which may occur, where all data elements are not mandetory.
    fixedLength
    ==========
    2,3,3,2
    Data - Successful
    ============
    1234567890
    2345678901
    3456789012
    Data - Failed
    ===========
    1234567890
    2345678901
    345678901
    Thanks in advance
    Buddhadev

    Hi Naveen,
          Do check the following things,
    >>Note : I have been asked to give the Transport Protocol as "NFS" (Whether this is the problem???) I have summarized the complete details below. Please help me
           1.If your file resides on your local network/local computer give NFS(Network file system). if your file resides on a FTP location give FTP and also give the FTP log on parameters.
    Additional Parameters
    File_MT.fieldFixedLengths 10,10,5
    File_MT.fieldNames VendorNumber,VendorName,City
    File_MT.fieldSeparator
    File_MT..processFieldNames fromConfiguration 
           2.If this structure does not match with the input file structure the file adapter wont pick up the file. So check for the help document provided by SAP in the following path.
    help.sap.com  --> Documentation  --> SAPNetWeaver --> SAPNetWeaver '04 --> English --> process integration --> SAP Exchange Infrastructure --> connectivity --> Adapters --> File Adapter
           Your file contains three records
    V123456789 A123456789 Bosto
    V234567890 B123456789 Atlan
    V334587900 C123456789 Austi
    You have mentioned the fieldSeperator as space but there is no File_MT.endSeparator '/n'  which differentiates between each and every row (record).
            Parameters for Record set Structures mentioned in the sender adapter configuration does not match with the actual file structure .
            Try giving exact structures in the configuration of sender file adapter.
    regards,
    Aravindh.

  • Reading a fixed length file

    Hi All,
    I am trying to read a fixed length file with .DAT extension through an FTP Adapter. I am using a read(polling) operation.
    In the file there are three records(H,D,T). The length of all the three records is more than 100.When I am trying to build a schema for that file using native format builder, maximum position that i get is 100 and if i manually try to put the position beyond 100 say 120,while building the schema and then run the composite using the generated schema, the file is not polled from the location So if anyone could help me to clarify my doubts regarding reading of fixed length files.
    a. Can i read i fixed length file which contains records whose position is more than 100.
    b. If yes, then how do i do that?
    Any help is appreciated.
    Thanks in Advance.

    Here's one way to start. Extend this class for the particular functionality you want:import java.io.DataInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    /** Processes binary files which have embedded data records. */
    public abstract class BinaryInputFile extends File
    * Class constructor.
    * @param fileName The input file name.
    * @throws NullPointerException if the <code>pathname</code> parameter is <code>null</code>
    protected BinaryInputFile(String fileName) throws NullPointerException
       super(fileName);
    * Reads the file, one line at a time, passing each line to the subclass� process()
    * function.
    * @throws IOException if an error occurs.
    public void process() throws IOException
       DataInputStream stream = new DataInputStream(new FileInputStream(this));
       process(stream);
    * Process the file data.
    * @param stream The input stream.
    protected abstract void process(DataInputStream stream);
    }

  • Have problem with my iPAD 4. Trouble with reduce motion, after updating to ios 8.1.2 it start to lag. please help me to fix

    i dont know how to fix this. when i use my 4 fingers gestures. its not animating (fade in/fade out) just delayed for 1 or 2 seconds. my whole iPAD is affected. my msg, apps, etc are getting slower and slower. i checked for my storages its not even full.
    My games are so slow too. aghh. it kills me   please help me to fix this. PLEASE

    Hi taamarco,
    If you are having issues with your iPad's funcionality being reduced, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    Force an app to close in iOS - Apple Support
    Next, I would try restarting and if needed resetting the iPad -
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    If the issue is still present, you may want to restore the iPad to factory settings -
    Use iTunes to restore your iOS device to factory settings - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • I have problem with account that i can't make update or buy from app store There is massage appear in my payment page that i must contact with i tunes support to complete this transaction Please help me to fixe this problem as soon possible Hany hassan 00

    I have problem with account that i can't make update or buy from app store
    There is massage appear in my payment page that i must contact with i tunes support to complete this transaction
    Please help me to fixe this problem as soon possible
    Hany hassan
    0096597617317
    0096596677186
    Thank you

    You need to Contact iTunes Support...
    Apple  Support  iTunes Store  Contact Us

  • TS1463 What is the easiest way to restore my ipod back to factory specs. It has a red circle with a red x in the middle,please help me to fix my ipod, until now i can't use my ipod..i tried all the procedures in Restore ipod from disk mode but still not w

    What is the easiest way to restore my ipod back to factory specs. It has a red circle with a red x in the middle,please help me to fix my ipod, until now i can't use my ipod..i tried all the procedures in Restore ipod from disk mode but still not working, please help me...

    If you are unable to get the iPod into Disk Mode to try and restore it, it's a very good indication, as mentioned in the article, that the iPod's hard drive is damaged and in need of replacement either by Apple or a third party repair company.
    B-rock

  • XSLT Mapping : XML to Fixed Length File

    Hi,
    I have to code a XSLT mapping which converts the XML into a Fixed Length File Format. I am getting the output but it has some garbage values (Some extra spaces in front of first record and also extra blank lines before the first record)
    I am pasting my xsl sheet :
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:output method="text" indent="yes" media-type="text/plain"/>
         <xsl:template match="Employees">
              <xsl:for-each select="Employee">
                   <xsl:value-of select="Name"/>
                   <xsl:value-of select="ID"/>
                   <xsl:value-of select="ADD"/>
                   <xsl:text>&#xA;</xsl:text>
              </xsl:for-each>
         </xsl:template>
    My input XML file is as follows:
    <?xml version="1.0"?>
    <p1:Test02 xmlns:p1="http://www.infosys.com/xi/training/hyd/66289">
            <Employees>
              <Employee>
                 <Name>Anurag</Name>
                 <ID>1121</ID>
                 <ADD>Hyderabad</ADD>
             </Employee>
             <Employee>
                 <Name>Divya</Name>
                 <ID>1122</ID>
                 <ADD>Hyderabad</ADD>
             </Employee>
             <Employee>
                 <Name>Rasmi</Name>
                 <ID>1123</ID>
                 <ADD>Bangalore</ADD>
                </Employee>
         </Employees>
    </p1:Test02>
    And the output i am receiving is as follows:
        Anurag1121Hyderabad
    Divya1122Hyderabad
    Rasmi1123Bangalore
    Please do help.....

    hi,
    >>>>
    <xsl:output method="text" indent="yes" media-type="text/plain"/>
    you allow the spaces by using indent="yes"
    try with indent="no"
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Fixed length file sending to user.

    My output filxed length file contains records of length 750 chars.
      My problem is I need to emailed such file to user...so the user can download the file & if error is there then, user can  correct the values in this file and then rerun the program with this corrected fixed length file.
    I can send this fixed lenth file as an attachment also.
    How can I send, this fixed length file  to the user mail id ?
    Could you please help me with the code?
    THANKS IN ADV.

    it is possible in case of binary files not text files just read Thomas comments in the Blog.
    Sending E-Mail from ABAP - Version 610 and Higher - BCS Interface

  • Option to read fixed-length format, EXCEL or ASCII TAB delimited

    Hi Experts,
                      I have a requirement for giving an option to read fixed-length format, EXCEL or ASCII TAB delimited in the selection screen.Kindly help me how can i read the fixed length format?
    Thanks,
    Ankita

    As far as I could have understood your problem
    You have to read the file with
    Open dataset  'file path+name'  FOR INPUT in text mode encoding default.
    and move its contents to string type variable
    Transfer to 'file path+name' to v_string.
    Now as per your requirements you need to use Offsets to transfer the data into a work area.
    For example
    wa_task-year=  v_string(4).
    wa_task-month=  v_string+4(2).
    Please confirm if this is your requirement.

Maybe you are looking for

  • Resume results in blank screen after trying to install printer

    Yesterday, I tried to install a network printer (got some trouble with cups, avahi, ...). But after a successful installation, I noticed that resume from suspend doesn't work anymore. I tried to disable all services I had enabled, but to no avail. I

  • Footer becomes inaccessible in longer Page documents

    In a document of about 70 pages and 9 sections, I consistently find I cannot access the footer in the 9th or later sections. All is ok in earlier sections. Do others have this problem? Any solution?

  • Custom IDOCS and ALE config

    Hi All! I am extending a basic IDoc and adding custom segments to it.I will be using change pointers to automatically initiate the ALE process when there are changes in the Master document. Please anybody give me the process to follow.Is programming

  • BAPI that contain user IDs , passwords

    Please let me know if there is any BAPI or RFC that contains the user information like user IDs, passwords etc. I need that to use in the XI. I am using SAP system as the target system or the source system . Thanks kanan

  • Second day in a row without Email.......from Mexico

    For how long this problem is gonna last???????