Error with FBRA - Resetting Doc

Dear All
I want to reverse the cleared document,for the same i m using
FBRA transaction but at the time of saving i m getting the
error System lock error: inform system administrator.
Message no. F5288
I have deleted all the lock entries and tried with different
user ids and at different time but getting the same error
with same msg number.
Thanks in advance.

Dear,
Have a look at the below thread, as this may be helpful.
FBRA: System lock error  inform system administrator
System Lock error

Similar Messages

  • Problem with FBRA reset

    Hi All,
    When accounting documents are reset through FBRA, only few items of accounting document are reset properly.
    A document is reset through FBRA. Only one item of document is reset (clearing document is set to initial; i.e., In BSEG table AUGBL field is set to initial for only one item). The other item still having clearing document in BSEG.
    Due to this, when reversing this document throug FB08, an error is coming as 'Document includes already cleared items - reversal not possible'.
    What could be the reason for this partial reset.
    Thak you,
    Rajesh.

    When we manually clear any document via F-44 or F-32, system generate a document number which is of AB type. In order to reverse the document which is manually cleared, we need to reset or reverse the AB document also otherwise the system will throw error message.
    So, In your case, you need to reverse or reset the AB document also via FBRA in order to reverse the main document via FB08.
    Regards
    Sandeep Chandak

  • PDF printing errors with InDesign CS4 docs

    I've discovered somewhat belatedly that since upgrading from CS3 to CS4, every pdf I have created in InDesign (a dozen or more) won't print. After a general error message, "the document could not be printed," I get one or both of these messages: "there were no pages selected to print" or "a drawing error occurred." I have variously tried every page selection option to no avail. I have also tried recreating the pdfs from the original ID files with different export settings, again with no success. PDFs exported from other programs are not a problem, nor is printing from InDesign. I'm on a Mac. Any thoughts?

    My (admittedly Clonescript) HP prints this without error messages but prints in Courier anything done in Optima ExtraBlack, which claims to be embedded, but seems not to be. My PCL printer prints this without errors or problems.
    If I bring this back into CS4 and export back to PDF, it prints properly in Optima ExtraBlack.
    If I edit it in Acrobat 7, I can change Optima Extrablack (not on system) to Optima Extrablack (on system) and it prints properly.
    I would want to look into your Optima Extrablack font. First try substituting different fonts, something generic like Helvetica (not as a solution, just as a test). If that fixes it, try substituting something generic only for Optima Extrablack (the "A House of BRIC" head and the drop folio). If that fixes it, make a document that uses only Optima Extrablack. If that fails, look into uninstalling and reinstalling Optima Black.
    BTW, you don't have Reader 8 and Acrobat Pro 9 installed on the same machine, do you? This is not recommended, although I don't know what particular problems it causes.
    There's quite a bit about the drawing error if you google it. In particular, this might be relevant (while somewhat off-color): http://groups.google.com/group/adobe.acrobat.windows/msg/8dc9a7dfea59a57d?hl=en&
    Ken

  • Exception Error With Device Reset (0XAC)

    Hi,
    I'm using 2 PXI-4472 cards (MXI-4, Ni-Daq 7.0.0f8, Labview 7.0).
    Before configuring those cards, I reset them by running the Device Reset.vi (Ni Daq).
    It works well, but sometimes, an exception error occured and I don't know why.
    The problem is always when calling the Device Reset.vi (dialog box exception 0XAC).
    Please find attached the capture of the dialog box.
    Anyone know this problem or ideas ????????
    Thanks
    Eddy DUCHENE
    12 F Chemin de Boutary
    69300 CALUIRE ET CUIRE
    [email protected]
    Attachments:
    Erreur.bmp ‏166 KB

    Hello Educhene,
    To answer your request, I need to have more information :
    1 - OS?
    2 - Do you have the same behavior using MAX (Measurement and Automation eXplorer)?
    3 - You use the function "Device Reset.vi" in complete LV application or just alone?
    4 - Have you tried to install the last version of NI-DAQ 7.3?
    You can download it for free on the link below :
    http://digital.ni.com/softlib.nsf/websearch/BEC182021CEB566C86256EEE00696562?opendocument&node=132060_US
    If yes, have you the same behavior using DAQmx?
    Waiting for your answer.
    Sanaa TAZI
    National Instruments France
    Sanaa T.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> http://www.nidays.fr/images/081110_ban_nidays09_468X60.gif

  • Error with - addStylesToDocument(doc); please help

    Hello, this is my unfinished code for a simple program I am writing. Basically I have a menu and buttons, and am looking to add a JTextPane. I think I have all the code there, except when compiling I am having an error with line addStylesToDocument(doc); if I comment this out then nothing happens but the program runs as normal (before I added the JTextPane code) the error I am getting is "non-static method addStylesToDocument(javax.swing.text.StyledDocument) cannot be referenced from a static context" this makes a little sence to me but not enough to be able to correct it as I am pretty much a beginner...
    If anyone has any suggestions to fix this I would appreciate your input.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class ShoppingCart extends JPanel
                            implements ActionListener {
        protected JButton bapple, borange, bbanana, bstrawberry, blemon, bgrape, b7, b8, b9, b10;
        public JMenuBar createMenuBar() {
         JMenuBar menuBar;
         JMenu menu, submenu;
         JMenuItem menuItem;
         JRadioButtonMenuItem rbMenuItem;
         JCheckBoxMenuItem cbMenuItem;
    menuBar = new JMenuBar();
    menuBar.setBackground(Color.white);
          menu = new JMenu("A Menu");
          menu.setBackground(Color.white);
            menu.setMnemonic(KeyEvent.VK_A);
            menu.getAccessibleContext().setAccessibleDescription(
                    "The only menu in this program that has menu items");
            menuBar.add(menu);
          //a group of JMenuItems
          menuItem = new JMenuItem("A text-only menu item",
                                     KeyEvent.VK_T);
            //menuItem.setMnemonic(KeyEvent.VK_T); //used constructor instead
             menuItem.setBackground(Color.white);
             menuItem.setAccelerator(KeyStroke.getKeyStroke(
                KeyEvent.VK_1, ActionEvent.ALT_MASK));
           menuItem.getAccessibleContext().setAccessibleDescription(
           "This doesn't really do anything");
            menu.add(menuItem);
            ImageIcon icon = createImageIcon("/orange.gif");
            menuItem = new JMenuItem ("Both text and icon", icon);
            menuItem.setMnemonic(KeyEvent.VK_B);
            menuItem.setBackground(Color.white);
          menu.add(menuItem);
          menuItem = new JMenuItem(icon);
          menuItem.setMnemonic(KeyEvent.VK_D);
          menuItem.setBackground(Color.white);
          menu.add(menuItem);
          //a group of radio button menu items
          menu.addSeparator();
          ButtonGroup group = new ButtonGroup();
          rbMenuItem = new JRadioButtonMenuItem("A radio button menu item");
          rbMenuItem.setSelected(true);
          rbMenuItem.setMnemonic(KeyEvent.VK_R);
          rbMenuItem.setBackground(Color.white);
          group.add(rbMenuItem);
          menu.add(rbMenuItem);
          //a group if check box menu items
          menu.addSeparator();
          cbMenuItem = new JCheckBoxMenuItem("A check box menu item");
          cbMenuItem.setMnemonic(KeyEvent.VK_C);
          cbMenuItem.setBackground(Color.white);
          menu.add(cbMenuItem);
          cbMenuItem = new JCheckBoxMenuItem("Another one");
          cbMenuItem.setMnemonic(KeyEvent.VK_H);
          cbMenuItem.setBackground(Color.white);
          menu.add(cbMenuItem);
          //a submenu
          menu.addSeparator();
          submenu = new JMenu("A submenu");
          submenu.setBackground(Color.white);
          submenu.setMnemonic(KeyEvent.VK_S);
          menuItem = new JMenuItem("An  item in the submenu");
          menuItem.setAccelerator(KeyStroke.getKeyStroke(
          KeyEvent.VK_2, ActionEvent.ALT_MASK));
          menuItem.setBackground(Color.white);
          submenu.add(menuItem);
          menuItem = new JMenuItem("Another item");
          menuItem.setBackground(Color.white);
          submenu.add(menuItem);
          menu.add(submenu);
          //Build second menu in the menu bar
          menu = new JMenu("Another Menu");
          menu.setBackground(Color.white);
          menu.setMnemonic(KeyEvent.VK_N);
          menu.getAccessibleContext().setAccessibleDescription(
          "This menu does nothing");
          menuBar.add(menu); 
    return menuBar;
        public ShoppingCart() {
            ImageIcon appleButtonIcon = createImageIcon("/apple.gif");
            ImageIcon orangeButtonIcon = createImageIcon("/orange.gif");
            ImageIcon bananaButtonIcon = createImageIcon("/banana.gif");
            ImageIcon strawberryButtonIcon = createImageIcon("/strawberry.gif");
            ImageIcon lemonButtonIcon = createImageIcon("/lemon.gif");
            ImageIcon grapeButtonIcon = createImageIcon("/grape.gif");
            bapple = new JButton(null,  appleButtonIcon);
            bapple.setVerticalTextPosition(AbstractButton.CENTER);
            bapple.setBackground(Color.white);
            bapple.setHorizontalTextPosition(AbstractButton.LEADING);
            bapple.setMnemonic(KeyEvent.VK_D);
            bapple.setActionCommand("apple");
            borange = new JButton(null, orangeButtonIcon);
            borange.setVerticalTextPosition(AbstractButton.BOTTOM);
            borange.setBackground(Color.white);
            borange.setHorizontalTextPosition(AbstractButton.CENTER);
            borange.setMnemonic(KeyEvent.VK_M);
            borange.setActionCommand("orange");
            bbanana = new JButton(null, bananaButtonIcon);
            bbanana.setBackground(Color.white);
            bbanana.setMnemonic(KeyEvent.VK_E);
            bbanana.setActionCommand("banana");
            bstrawberry = new JButton(null,  strawberryButtonIcon);
            bstrawberry.setVerticalTextPosition(AbstractButton.CENTER);
            bstrawberry.setBackground(Color.white);
            bstrawberry.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            bstrawberry.setActionCommand("strawberry");
            blemon = new JButton(null,  lemonButtonIcon);
            blemon.setBackground(Color.white);
            blemon.setVerticalTextPosition(AbstractButton.CENTER);
            blemon.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            blemon.setActionCommand("lemon");
            bgrape = new JButton(null,  grapeButtonIcon);
            bgrape.setBackground(Color.white);
            bgrape.setVerticalTextPosition(AbstractButton.CENTER);
            bgrape.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            bgrape.setActionCommand("grape");
            /*b7 = new JButton(null,  leftButtonIcon);
            b7.setVerticalTextPosition(AbstractButton.CENTER);
            b7.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            b8 = new JButton(null,  leftButtonIcon);
            b8.setVerticalTextPosition(AbstractButton.CENTER);
            b8.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            b9 = new JButton(null,  leftButtonIcon);
            b9.setVerticalTextPosition(AbstractButton.CENTER);
            b9.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            b10 = new JButton(null,  leftButtonIcon);
            b10.setVerticalTextPosition(AbstractButton.CENTER);
            b10.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            //Listen for actions on buttons
            bapple.addActionListener(this);
            borange.addActionListener(this);
            bbanana.addActionListener(this);
            bstrawberry.addActionListener(this);
            blemon.addActionListener(this);
            bgrape.addActionListener(this);
            bapple.setToolTipText("Apple.");
            borange.setToolTipText("Orange.");
            bbanana.setToolTipText("Banana.");
            bstrawberry.setToolTipText("Strawberry.");
            blemon.setToolTipText("Lemon.");
            bgrape.setToolTipText("Grape.");
           /* b7.setToolTipText("7");
            b8.setToolTipText("8");
            b9.setToolTipText("9");
            b10.setToolTipText("10");
            //Add Components to this container, using the default FlowLayout.
            add(bapple);
            add(borange);
            add(bbanana);
            add(bstrawberry);
            add(blemon);
            add(bgrape);
           /* add(b7);
            add(b8);
            add(b9);
            add(b10);*/
        public void actionPerformed(ActionEvent e) {
            if ("apple".equals(e.getActionCommand())) {
           String  input1 =  JOptionPane.showInputDialog( "How many apples would you like to purchase?" );
            int  number1 = Integer.parseInt( input1 );
             if ("orange".equals(e.getActionCommand())) {
           String  input2 =  JOptionPane.showInputDialog( "How many oranges would you like to purchase?" );
           int  number2 = Integer.parseInt( input2 );
               if ("banana".equals(e.getActionCommand())) {
           String  input3 =  JOptionPane.showInputDialog( "How many bananas would you like to purchase?" );
           int  number3 = Integer.parseInt( input3 );
             if ("strawberry".equals(e.getActionCommand())) {
           String  input4 =  JOptionPane.showInputDialog( "Enter weight of strawberries : " );
           int  number4 = Integer.parseInt( input4 );
             if ("lemon".equals(e.getActionCommand())) {
           String  input5 =  JOptionPane.showInputDialog( "How many lemons would you like to purchase?" );
           int  number5 = Integer.parseInt( input5 );
             if ("grape".equals(e.getActionCommand())) {
           String  input6 =  JOptionPane.showInputDialog( "Enter weight of grapes : " );
           int  number6 = Integer.parseInt( input6 );
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path) {
            java.net.URL imgURL = ShoppingCart.class.getResource(path);
            if (imgURL != null) {
                return new ImageIcon(imgURL);
            } else {
                System.err.println("Couldn't find file: " + path);
                return null;
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
    //Create and set up the window.
            JFrame frame = new JFrame("Shopping Cart");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            ShoppingCart newContentPane = new ShoppingCart();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            newContentPane.setBackground(Color.white);
           frame.setJMenuBar(newContentPane.createMenuBar());
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            String[] initString =
            { /* ...  fill array with initial text  ... */ };
            String[] initStyles =
            { /* ...  fill array with names of styles  ... */ };
            JTextPane textPane = new JTextPane();
            StyledDocument doc = textPane.getStyledDocument();
            addStylesToDocument(doc);
            //Load the text pane with styled text.
            try {
            for (int i=0; i < initString.length; i++) {
            doc.insertString(doc.getLength(), initString,
    doc.getStyle(initStyles[i]));
    } catch (BadLocationException ble) {
    System.err.println("Couldn't insert initial text into text pane.");
    }protected void addStylesToDocument (StyledDocument doc) {
    Style def=new StyleContext ().getStyle (StyleContext.DEFAULT_STYLE);
    Style heading = doc.addStyle ("bold", null);
    StyleConstants.setFontFamily (heading, "SansSerif");
    StyleConstants.setBold (heading, true);
    StyleConstants.setFontSize (heading,30);
    // * The next 3 don't work if that line is commented out
    StyleConstants.setAlignment (heading, StyleConstants.ALIGN_CENTER);
    StyleConstants.setSpaceAbove (heading, 10);
    StyleConstants.setSpaceBelow (heading, 10);
    public static void main() {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();

    CPie wrote:
    o..k.
    I see that you have run out of helpfulness for this session, What the ....? I just told you to add your jtextfield to a jpanel or some other visible component to be seen.
    it is getting late here I will take my business elsewhere tomorrow rather than waiting up for a response which shows you realllly need to find something better to do! And thanks for the help earlier. That was actually useful whereas this wasn't, I'm sure you knew that already,You know that we are all volunteers here. Any time spent here helping you is time away from our friends and families. A little more appreciation is definitely in order or go somewhere else and pay for your help.

  • Problems with FBRA, Error Code F5538

    Hi
    When I was trying to reset a advance payment to vendor with FBRA tx  (which was created with tx F-47, doc type AB),
    I got the error message F5538 Clearing cannot be reversed (contract number),  I can't change the content of this camp with txn FB02.
    What should i do?
    Thanks and Regards
    Alfredo

    If you want to cancel an invoice that is already paid, i assume the cheque/payment is not received by the Vendor and that also need to be canceled. Following the below steps,
    i) Cancel payment and Void the cheque (transaction FCH8)
    This would bring the invoice back to Open status from Cleared status
    Since payment belongs to September (closed month), use the reversal reason code '01' (reversal in current period) and give today's posting date.
    ii) You can also reverse down payment requests manually at any time, without posting a down payment. To do this, proceed as follows:
    1. From the Accounts Receivable or Accounts Payable menu, choose Document -- Reverse.
    2. Enter the document number of the down payment request, the company code, and the fiscal year.
    3. On the same screen, enter the posting date and posting period of the reversing document.
    4. To post the reversing document, select Document -- Post.
    The system displays a message that the line items have been reversed and records the clearing data in the line items.
    Regards,
    Ganesh

  • In which case we use FBRA (Reset Cleared Item)

    Hi,
    Hello experts i am very confused about this transaction can any budy please make me cleare that In which case we use FBRA (Reset Cleared Item).
    Quick reply will be really very helpfull .
    Thanks In advance.

    Hi,
    When we maintain GL accounts/sub ledgers with open item management, we clear docuemnts when the debit and the credit match. This clearing also creates a clearing document. Clearing documents cannot be reversed using F.08. For reversing clearing we need to first reset the documents as open items and then reverse it.
    For example I have an invoice no 1234. This invoice will remain open till i receive a payment. When I receive a payment a new document is created (no. 5678) when i enter the receipt and this document also becomes the clearing document. Now due to some error, when we have to reverse this payment document, we use FBRA. When we use this, the system will first reset the documents 1234 and 5678 as open items and then reverse the document 5678.
    hope this helps.
    thanks and regards,
    anit

  • Holding down "shift" during startup causes an "address error" with a prompt

    while booting from a dedicated OS 9.2.2 drive,...
    holding down "shift" during startup causes an "address error" with a prompt to restart holding the shift button,...
    an ideas,....?
    it otherwise starts up fine normally,....
    with spacebar depressed everything good too,.... into extensions manager...
    but booting with extensions off causes that address error crash just before desktop is to appear,...
    hmmm,.... ideas,....?
    thanx

    Well, address error means it's getting an odd addy somehow, and if it's with Extensions off, then maybe a PRAM or NVRAM reset would cure it...
    Have you done a PRAM reset...
    http://docs.info.apple.com/article.html?artnum=2238

  • Error with G4; Disk cannot be read from or written to regarding iPod

    I get this error after about 5.76 GB of songs are copied. This is a 60 GB iPOd. I had the same problem with a 30 GB ipod.
    the help desk directed me to a document no. 301267, and i believe it is useless.
    I have tried updater a few times with the latest version. I got a USB 2.0 card. I got the same error with that new card.
    I like my iPods. I would really appreciate some help. My older iPod used to copy on around 15 GB.

    Did you try to fix your disk like mentioned as in: http://docs.info.apple.com/article.html?artnum=106214

  • "ink system failure" error with code oxc19e0023 on a HP Photosmart Premium All-in-One Printer - C309

    "ink system failure" error with code oxc19e0023 on have a HP Photosmart Premium All-in-One Printer - C309g  - Have done all the resets and reseated the ink also tried replacing ink with new HP carts..getting frustrated please help
    This question was solved.
    View Solution.

    Have you tried the steps outlined in this article:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03081973&cc=us&dlc=en&lc=en
    If not give the steps a try and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Error with iPhone app download, now can't find or open app

    I recently tried to download an app on my iPhone 4S.  There was an error with my phone mid-download.  After a restart, the app is nowhere to be found on my phone, but I cannot re-download the app, as the app store thinks it is already on my phone.  When I go to the store to re-download, the "Open" button is present (instead of the "Download" button), but when clicked, nothing happens.  Syncing iPhone to a computer with iTunes also does not solve the problem, as the app doesn't appear in iTunes either.
    I've tried restarting, hard resets, etc. to no avail.  Suggestions? 

    When you launch iPhoto with the option key depressed you'll get this window:
    Click to view full size
    All libraries on your hard drive (and on external drives) will be listed and the currently used library will be listed as (default).
    OT

  • No signal error with mac mini to acer monitor

    I bought an Acer monitor and a Mac mini back 11/11 and it has worked fine.  I recently moved the computer to a new room and when I set everything up I got a no signal error with the monitor and went to sleep mode.  I have tried another monitor (viewsonic) and a new VGA cable and a new VGA to dvi converter to no avail.......any suggestiins....frustrating thing is both monitor and computer are working.

    Try resetting the SMC andNVRAM
    Intel-based Macs: Resetting the System Management Controller (SMC)
      About NVRAM and PRAM
    Next call Apple since yo have 90 days of free telephone support
    Complimentary Support (USA)

  • Can't sign in due to server error with icloud, windows 8 laptop

    I cannot sign in to icloud on my windows 8 laptop due to server error.

    With as many people that have this same issue, I am very surprised that support is still sleeping at the wheel.  Some of the suggestions border on the absolute absurd (e.g. create new user account, check the system clock, etc.).  I've tried them all, including exclusion from AVAST, resetting router, etc etc etc.  iCloud status shows all green.
    As the owner of a software development company, I find it hard to believe Apple, of all support, has been unable to get this issue resolved once and for all.  It would certainly make sense, as well, to collate this issue into a single thread instead of bouncing users off the moon and back.
    I spent 1/2 day on the phone with Apple support trying to get iTunes to backup and was promised a call back from the next tier of support.  That was 4 months ago and I still haven't been able to backup my iphone 4S.  I've never seen software that is more kludgy and unreliable with every passing upgrade (sorry, but it's the truth)!
    After two years of not being able to back up my phone, I am considering going to a more reliable platform.  After 6 years on the Apple bus, maybe it's time to get off.
    Mike Maurer, [email protected]

  • Could not initialize Photoshop because of a program error" with PS CC 2014

    I get "Could not initialize Photoshop because of a program error" with PS CC 2014 on a 2099 Macbook Pro running Mavericks. Then the program closes. Can anyone help?

    Could be corrupt preferences, a problem with the OS font cache, or some other problem with the OS.
    First, try resetting the preferences.

  • Getting error with selectSingleNode in XML DOM

    I have some pages that utilitize the following in XML DOM:
    loadXML
    selectSingleNode
    getElementsByTagName
    I am using JavaScript. I am getting "undefined" errors. Anyone know the proper syntax/capitalization for these methods when using Safari. I had a similiar error with IE 7.0 and posting via an xmlHTTPPost. The problem there was capitalization of one of the methods.
    Thanks.
    Peter

    Hi,
    See below examples..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/01a57f0b-0501-0010-3ca9-d2ea3bb983c1
    http://www.troobloo.com/tech/xslt.toc.shtml
    http://www.w3schools.com/xsl/
    http://www.w3.org/TR/xslt
    http://help.sap.com/saphelp_nw04/helpdata/en/73/f61eea1741453eb8f794e150067930/frameset.htm
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/xi/xi-code-samples/generic%20xslt%20mapping%20in%20sap%20xi%2c%20part%20i.pdf
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
    Required XSLT Mapping tips!
    Regards
    Chilla..

Maybe you are looking for

  • How to create a "Custom Color" for highlighting? (Acrobat XI)

    March 10, 2014 How to create a "Custom Color" for highlighting? (Acrobat XI) The numbers in the RGB and other fields change as various numbers are changed. I wanted to create a pale orange: Hue               13      Red      255 Saturation   240     

  • How Do I Share iTunes with 2 Macs?

    Here is my setup: iMac G5 & Macbook AEBSn with a 500GB LaCie drive hooked up I have always had my iTunes on my iMac, but now that I have a Macbook I would like to share the library between the two. Basically making the library editable by both comput

  • ALV grid report - Download total to excel

    Hi, In ALV report I am calculating Gross profit%. *Gross profit%  = ( (NetValue- Cost value) * 100 )/ CostValue.* Report strcture is as below. Region     Article             Netvalue      CostValue    Grossprofit%     A       1        100          80

  • Java Restful Web service client

    Hello, I need to know a piece of informations:- requirement is - there will 2 applications, typically, 2 war files - 1 war will be Restful web service producer and 2nd war will be the consumer. My producer is working fine, so how can I make consumer

  • Random numbers with leading zeros

    Hi, I want to generate random numbers with leading zeros. My code so far: import java.util.Random;   Random r = new Random();   int randInt = r.nextInt(100);My aimed output is something like: 0012 or 0123 ... Thanks Jonny