Transform node parts and paste rest

Hi,
its difficult to explain what I need. Heres an example:
XML:
<DOCUMENT>
  <PAGE>
    <PAGEHEADER type="1">
    </PAGEHEADER>
    <block>Hello</block>
    <block>World</block>
    <line>This is a test</line>
    <GREETING type="2">
    </GREETING>
  </PAGE>
</DOCUMENT>Output:
<DOCUMENT>
  <PAGE>
    <PAGEHEADER type="1">
    </PAGEHEADER>
    <block>Hello</block>
    <block>World</block>
    <line>This is a test</line>
    <GREETING type="2">
    </GREETING>
  </PAGE>
</DOCUMENT>There are several standard subnodes for PAGE: PAGEHEADER, GREETING, ...
Its not a problem to transform these nodes, but I want all non standard nodes (block, line, ...) under PAGE unchanged in the output xml.
XSL:
<xsl:output method="xml"/>
<xsl:stylesheet>
  <xsl:template match="/">
    <DOCUMENT>
      <xsl:apply-templates/>
    </DOCUMENT>
  </xsl:template>
  <xsl:template match="PAGE">
    <PAGE>
      <xsl:apply-templates/>
    </PAGE>
  </xsl:template>
  <xsl:template match="PAGEHEADER">
  </xsl:template>
  <xsl:template match="GREETING">
  </xsl:template>
  <xsl:template match="?? non standard nodes ??">
  </xsl:template>
</xsl:stylesheet>Is it possible?
Thanks for reply
Attackwave
Edited by: Attackwave ORDIX on Jan 2, 2012 12:47 PM

Is it possible?Sure, that's a classic ;)
Use a stylesheet based on the identity transformation, and add specific templates to process the nodes you want :
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml"/>
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="PAGEHEADER">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <!-- add PAGEHEADER children here -->
    </xsl:copy>
  </xsl:template>
  <xsl:template match="GREETING">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <!-- add GREETING children here -->
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>For example :
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml"/>
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="PAGEHEADER">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <PAGEHEADER_CHILD></PAGEHEADER_CHILD>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="GREETING">
    <xsl:copy>
      <xsl:apply-templates select="@*"/>
      <GREETING_CHILD></GREETING_CHILD>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>will produce :
<?xml version="1.0" encoding="UTF-8"?>
<DOCUMENT>
  <PAGE>
      <PAGEHEADER type="1">
         <PAGEHEADER_CHILD/>
      </PAGEHEADER>
      <block>Hello</block>
      <block>World</block>
      <line>This is a test</line>
      <GREETING type="2">
         <GREETING_CHILD/>
      </GREETING>
  </PAGE>
</DOCUMENT>

Similar Messages

  • JTree cut and paste multiple child and ancestor nodes not function correct

    Hello i'm creating a filebrowser for multimedia files (SDK 1.22) such as .jpg .gif .au .wav. (using Swing, JTree, DefaultMutableTreeNode)
    The problem is I want to cut and paste single and multiple nodes (from current node til the last child "top-down") which partly functions:
    single nodes and multiple nodes with only one folder per hierarchy level;
    Not function:
    - multiple folders in the same level -> the former order gets lost
    - if there is a file (MMed. document) between folders (or after them) in the same level this file is put inside one of those
    I tried much easier functions to cope with this problem but every time I solve one the "steps" the next problem appears...
    The thing I don't want to do, is something like a LinkedList, Hashtable (to store the nodes)... because the MMed. filebrowser would need to much resources while browsing through a media library with (e.g.) thousands of files!
    If someone has any idea to solve this problem I would be very pleased!
    Thank you anyway by reading this ;)
    // part of the code, if you want more detailed info
    // @mail: [email protected]
    import java.util.Enumeration;
    import javax.swing.*;
    import javax.swing.tree.*;
    // var declaration
    static Enumeration en;
    static DefaultMutableTreeNode jTreeModel, lastCopiedNode, dmt, insert, insertParent, insertSameFolder;
    static String varCut;
    static int index= 0;
    static int counter = 0;
    /* cut function */
    if (actionCommand.equals ("cut"))
         // get the selected node (DefaultMutableTreeNode)
         lastCopiedNode = (DefaultMutableTreeNode)  selPath.getLastPathComponent ();
         // get the nodes in an Enumeration array (in top- down order)
         en = dmt.preorderEnumeration();
         // the way to make sure if it is a cut or a copied node
         varCut = "cut";
    /* paste function */
    if (actionCommand.equals ("paste"))
    // node is cut
    if (varCut == "cut")
    // is necessary for first time same folder case
    insertParent = dmt;
    // getting the nodes out of the array
    while(en.hasMoreElements())
         // cast the Object to DefaultMutableTreeNode
         // and get stored (next) node
         insert = (DefaultMutableTreeNode) en.nextElement();
    // check if the node is a catalogue when getRepresentation()
    // is a function of my node creating class (to know if it is
    // a folder or a file)
    if (insert.getRepresentation().equals("catalogue"))
         // check if a "folder" node is inserted
         if (index == 1)
              counter = 0;
              index = 0;
         System.out.println ("***index and counter reset***");
         // the node is in the same folder
         // check if the folder is in the same hierarchy level
         // -> in this case the insertParent has to remain
         if (insert.getLevel() == insertParent.getLevel())
              // this is necessary to get right parent folder
              insertSameFolder = (Knoten) insert.getParent();
              jTreeModel.insertNodeInto (insert, insertSameFolder, index);
    System.out.println (">>>sameFolderCASE- insert"+counter+"> " + String.valueOf(insert) +
              "\ninsertTest -> " + String.valueOf(insertTest)
              // set insertParent folder to the new createded one
              insertParent = insert;
              index ++;
         else // the node is a subfolder
              // insertNode
              jTreeModel.insertNodeInto (insert, insertParent, index);
              // set insertParent folder to the new createded one
              insertParent = insert;
    System.out.println (">>>subFolderCASE- insertParent"+counter+"> " + String.valueOf(insertParent) +
              "\ninsertParent -> " + String.valueOf(insertParent)
              index ++;
    else // the node is a file
         // insertNode
         jTreeModel.insertNodeInto (insert, insertParent, counter);
         System.out.println (">>>fileCASE insert "+counter+"> " + String.valueOf(insert) +
         "\ninsertParent -> " + String.valueOf(insertParent)
    counter ++;
    // reset index and counter for the next loop
    index = 0;
    counter = 0;
    // reset cut var
    varCut = null;
    // remove the node (automatically deletes subfolders and files)
    dmt.removeNodeFromParent (lastCopiedNode);
    // if node is a copied one
    if varCut == null)
         // insert copied node the same way as for cut one's
         // to make it possible to copy more than one node
    }

    You need to use a recursive copy method to do this. Here's a simple example of the copy. To do a cut you need to do a copy and then delete the source.
    import java.io.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.awt.BorderLayout;
    import java.awt.Container;
    import java.awt.event.*;
    import java.util.*;
    public class CopyTree extends JFrame
         Container cp;
         JTree cTree;
         JScrollPane spTree;
         DefaultTreeModel cModel;
         CNode cRoot;
         JMenuBar menuBar = new JMenuBar();
         JMenu editMenu = new JMenu("Edit");
         JMenuItem copyItem = new JMenuItem("Copy");
         JMenuItem pasteItem = new JMenuItem("Paste");
         TreePath [] sourcePaths;
         TreePath [] destPaths;
         // =====================================================================
         // constructors and public methods
         CopyTree()
              super("Copy Tree Example");
              addWindowListener(new WindowAdapter()
              {public void windowClosing(WindowEvent evt){System.exit(0);}});
              // edit menu
              copyItem.addActionListener(new ActionListener()
              {public void actionPerformed(ActionEvent e){mnuCopy();}});
              editMenu.add(copyItem);
              pasteItem.addActionListener(new ActionListener()
              {public void actionPerformed(ActionEvent e){mnuPaste();}});
              editMenu.add(pasteItem);
              menuBar.add(editMenu);
              setJMenuBar(menuBar);
              buildModel();
              cp = getContentPane();
              cTree = new JTree(cModel);
              spTree = new JScrollPane(cTree);
              cp.add(spTree, BorderLayout.CENTER);
              pack();
         static public void main(String [] args)
              new CopyTree().show();
         // =====================================================================
         // private methods - User Interface
         private void mnuCopy()
              sourcePaths = cTree.getSelectionPaths();
         private void mnuPaste()
              TreePath sp, dp;
              CNode sn,dn;
              int i;
              destPaths = cTree.getSelectionPaths();
              if(1 == destPaths.length)
                   dp = destPaths[0];
                   for(i=0; i< sourcePaths.length;i++)
                        sp = sourcePaths;
                        if(sp.isDescendant(dp) || dp.isDescendant(sp))
                             JOptionPane.showMessageDialog
                                  (null, "source and destinations overlap","Paste", JOptionPane.ERROR_MESSAGE);
                             return;
                   dn = (CNode)dp.getLastPathComponent(); // the node we will append our source to
                   for(i=0; i< sourcePaths.length;i++)
                        sn = (CNode)sourcePaths[i].getLastPathComponent();
                        copyNode(sn,dn);
              else
                   JOptionPane.showMessageDialog
                        (null, "multiple destinations not allowed","Paste", JOptionPane.ERROR_MESSAGE);
         // recursive copy method
         private void copyNode(CNode sn, CNode dn)
              int i;
              CNode scn = new CNode(sn);      // make a copy of the node
              // insert it into the model
              cModel.insertNodeInto(scn,dn,dn.getChildCount());
              // copy its children
              for(i = 0; i<sn.getChildCount();i++)
                   copyNode((CNode)sn.getChildAt(i),scn);
         // ===================================================================
         // private methods - just a sample tree
         private void buildModel()
              int k = 0;
              cRoot = new CNode("root");
              cModel = new DefaultTreeModel(cRoot);
              CNode n1a = new CNode("n1a");
              cModel.insertNodeInto(n1a,cRoot,k++);
              CNode n1b = new CNode("n1b");
              cModel.insertNodeInto(n1b,cRoot,k++);
              CNode n1c = new CNode("n1c");
              cModel.insertNodeInto(n1c,cRoot,k++);
              CNode n1d = new CNode("n1d");
              cModel.insertNodeInto(n1d,cRoot,k++);
              k = 0;
              CNode n1a1 = new CNode("n1a1");
              cModel.insertNodeInto(n1a1,n1a,k++);
              CNode n1a2 = new CNode("n1a2");
              cModel.insertNodeInto(n1a2,n1a,k++);
              CNode n1a3 = new CNode("n1a3");
              cModel.insertNodeInto(n1a3,n1a,k++);
              CNode n1a4 = new CNode("n1a4");
              cModel.insertNodeInto(n1a4,n1a,k++);
              k = 0;
              CNode n1c1 = new CNode("n1c1");
              cModel.insertNodeInto(n1c1,n1c,k++);
              CNode n1c2 = new CNode("n1c2");
              cModel.insertNodeInto(n1c2,n1c,k++);
         // simple tree node with copy constructor
         class CNode extends DefaultMutableTreeNode
              private String name = "";
              // default constructor
              CNode(){this("");}
              // new constructor
              CNode(String n){super(n);}
              // copy constructor
              CNode(CNode c)
                   super(c.getName());
              public String getName(){return (String)getUserObject();}
              public String toString(){return  getName();}

  • I am trying to copy and paste a story from a blog.  I can only view the first page on the Pages app.  How do I see the rest of the pages?

    I am trying to copy and paste a story from a blog.  I can only view the first page on the Pages app.  How do I see the rest of the pages?

    Thank you.  That helped in the first step.  I was able to copy text onto multiple pages.
    Now I can't get the pictures to copy.  How do I get my pictures to copy?
    Also once the blog page is on pages, how do i make changes to it?
    This my story and the page I am trying to copy.
    http://www.city-data.com/forum/tennessee/359683-going-off-grid-east-tennessee.ht ml
    Thanks so much
    Lisa(writing) and Mike trying to get it right.

  • How to cut, copy and paste a tree node in JTree?????

    Hi, Java GUI guru. Thank you for your help in advance.
    I am working on a File Explorer project with JTree. There are cut, copy and paste item menus in my menu bar. I need three EventAction methods or classes to implements the three tasks. I tried to use Clipboard to copy and paste tree node. But I can not copy any tree node from my tree.
    Are there any body has sample source code about cut, copy, and paste for tree? If possible, would you mind send me your sample source code to [email protected]
    I would appreciate you very very much for your help!!!!
    X.G.

    Hi, Paul Clapham:
    Thank you for your quick answer.
    I store the node in a DefaultMutableTreeNode variable, and assign it to another DefaultMutableTreeNode variable. I set up two classes (CopyNode and PasteNode). Here they are as follows:
    //CopyNode class
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class CopyNode implements ActionListener{
    private TreeList jtree;
    String treeNodeName;
    TreePath currentSelection;
    DefaultMutableTreeNode currentNode;
    public CopyNode(TreeList t){
    jtree = t;
    public void actionPerformed(ActionEvent e){
    currentSelection = jtree.tree.getSelectionPath();
    if(currentSelection != null){
    currentNode = (DefaultMutableTreeNode)(currentSelection.getLastPathComponent());
    treeNodeName = currentNode.toString();
    //PasteNode class
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class PasteNode extends DefaultMutableTreeNode{
    private TreeList jtree;
    CopyNode copyNode;
    public PasteNode(TreeList t){
    jtree = t;
    copyNode = new CopyNode(t);
    public DefaultMutableTreeNode addObject(Object child){
    DefaultMutableTreeNode parentNode = null;
    TreePath parentPath = jtree.tree.getSelectionPath();
    if(parentPath == null){
    parentNode = jtree.root;
    else{
    parentNode = (DefaultMutableTreeNode)parentPath.getLastPathComponent();
    return addObject(parentNode, child, true);
    public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent, Object child, boolean shouldBeVisible){
    DefaultMutableTreeNode childNode = copyNode.currentNode;
    if(parent == null){
    parent = jtree.root;
    jtree.treemodel.insertNodeInto(childNode, parent, parent.getChildCount());
    if(shouldBeVisible){
    jtree.tree.scrollPathToVisible(new TreePath(childNode.getPath()));
    return childNode;
    I used these two classes objects in "actionPerformed(ActionEvent e)" methods in my tree:
    //invoke copyNode
    copyItem = new JMenuItem("Copy");
    copyItem.addActionListener(copyNode);
    //invoke pasteNode
    pasteItem = new JMenuItem("Paste");
    pasteItem.addActionListener(
    new ActionListener(){
    public void actionPerformed(ActionEvent e){
    pasteName.addObject(copyName.treeNodeName);
    When I run the drive code, making a copy some node from my tree list, I got bunch of error messages.
    Can you figour out what is wrong in my two classes? If you have sample code, would you mind mail me for reference.
    Thank you very much in advance.
    X.G.

  • How can I copy a part of the picture and paste this piece on top of another part of the same picture? ta

    How can I copy a part of the picture and paste this piece on top of another part of the same picture? ta

    select the section you want to copy (marquee tool or lasso tool) and either go to edit copy or use control c create a new layer in layers (top menu bar) or Control shift N and paste using control V;  or edit > paste.

  • Before, when reading PDF files, I was able to copy and paste part of the book. Now it is not possible. I can copy but when pasting gets nothing.  Antes, quando lia arquivos PDF, eu conseguia copiar e colar parte do livro. Agora isso não é possível.

    Before, when reading PDF files, I was able to copy and paste part of the book. Now it is not possible. I can copy but when pasting gets nothing.
    Antes, quando lia arquivos PDF, eu conseguia copiar e colar parte do livro. Agora isso não é possível. Eu consigo copiar, mas quando vou colar o texto, não cola nada.

    Caro Fabiano,
    Obrigado por ter contactado as Comunidades de Suporte Apple.
    Na origem do seu problema podem estar várias causas. Nomeadamente:
    O ficheiro (arquivo) que está a ler pode não ser texto, ou seja, pode ser texto transformado em imagem e exportado como PDF.
    A aplicação de destino (onde está a tentar colar o texto copiado) pode não aceitar a colagem de texto formatado.
    A aplicação que está a utilizar para abrir os ficheiros PDF pode não ser indicada para certo tipo de documentos. Experimente o iBooks, o Dropbox ou até mesmo o seu e-mail.
    No caso de nenhuma destas causas estar na origem do seu problema, forneça, por favor, mais informações sobre a origem do ficheiro (descarga pelo Safari, Mail ou outro) bem como o destino (documento Pages, Keynote ou Numbers ou outra aplicação que não o iWork).
    Atentamente,
    Gonçalo Matos
    Estou aqui para ajudar. Clique no botão "Reply" no caso de ter outra questão ou necessitar de outro esclarecimento para que eu possa ajudar da melhor forma que conseguir.

  • If i cut and paste in email, while on firefox, as i try to paste, the rest of page goes into blue and if i go ahead and past, it erases rest of page that goes blue thx

    when cutting and pasting in yahoo email, as i push paste, the rest of the page goes into and is replaced by what i paste, instead of bein added to

    The ChromEdit Plus extension automatically creates a '''user.js''' ''(and the other 2 "user" files)'' upon installation, and it provides an interface within Firefox for editing those "user" files.
    http://webdesigns.ms11.net/chromeditp.html
    It makes it so you don't have to go hunting around for your Profile folder whenever you want to edit those "user" files by allowing you to access those files from within Firefox while it is running.
    FYI, this support article might be a little more helpful for doing the user.js file manually than what you cited as having read. <br />
    http://kb.mozillazine.org/User.js_file

  • What product do I need to easily cut and paste parts of a photo?

    What product do I need to EASILY cut and paste parts of a photo

    Hi there
    Try going through this step-by-step guide on how to select and move parts of an image: http://forums.adobe.com/docs/DOC-2781

  • The control click and external mouse right click no longer works when copying and pasting album art within itunes. Ex. Hit get info for one song to paste to the rest, copying the artwork wont work when it used to.

    The control click and external mouse right click no longer works when copying and pasting album art within itunes. Ex. Hit get info for one song to paste to the rest, copying the artwork wont work when it used to.

    Hello there, Teworsham90.
    The following Knowledge Base article reviews the process of adding artwork to content in your iTunes Library:
    iTunes: How to add artwork to songs and videos in your library
    http://support.apple.com/kb/HT1409
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • I have an audio book in itunes.  I would like to "Cut" part of a chapter and "paste" it as an audio file. Can I do that?

    I have an audio book in itunes.  I would like to "Cut" part of a chapter and "paste" it as an audio file. Can I do that?

    The file extension is .au  but the logo looks like a soundtrack pro file.
    Yes, they are labeled in order b001au to  b00410.au
    The great majority are 1.1 Mb but some are smaller. There are 410 files and I took a sampling here and there.
    When I go to info it tells me that it is a neXT sound file.
    Thanks, John

  • Is there any way to crop part of  a screen shot and paste into Pages?

    Instead of importing an entire photo into Pages, I am trying to:
    -take a screen shot of iPad documentation
    - open in photo roll and crop a section out of it
    - paste into Pages
    Is there an App that might crop and paste into Pages?
    Thanks for any help.
    Prea

    You can do that with PhotoPad. You take a screen shot, crop it in PhotoPad and it is saved to Saved Phototos. Then you just go the Media section and import the croped photo.

  • I have an image that i want to crop/use some parts and copy and paste as a title/overlay. how do i do this

    This is a jpeg file but i also have it in illustrator. I friend of mine made this for me as i am not very proficient.
    I want to crop/copy and paste the individual features of the panda and place it on top of a visual clip as a title, just like as if i was writing a heading.
    I originally thought i could just copy and paste this from illustrator but this didn't work.
    Then i thought if i get a backgroundless copy this would be able to work but that didn't either.
    I have been learning premiere pro cc (my version) for the last week or so but I'm still new to video editing.
    Ultimately i want the shapes of this panda to overlay a visual clip premiere pro cc
    Is anyone able to help?

    To change the opacity/transparency of the panda, double click it on the timeline, then go to the "Effects Controls" tab, twirl down the 'Opacity' setting, and adjust as needed.
    Separating the panda:
    Method 1: The easiest way would be to bring the panda into your project as 6 separate files exported from illustrator.
    Method 2: If you would prefer to however cut it up manually inside of Premiere, then go to the 'Effects' tab, search for "matte" and select the "Eight-point garbage matte" effect.  You can use this to isolate a feature of the panda.
    Either way, you will need to stack multiple layers on top of each other in the timeline to piece together the panda again.

  • How can I 'cut and paste' a part of one image to another?

    I have this program the creates great syfi looking planets and some other cool stuff. I creates them
    on a solid black background. I'm hoping there is a way to cut out just that planet and paste it onto
    the sky of another picture. I don't want the black background just the planet. I can go in and make
    the edges look nice after it's done. But I don't know how to do it :-(
    Thank You.

    1. use the selection tool(s) of your choice to select the planet. It helps to give the selection a one or two pixel feather to avoid a cutout look (Select>Feather).
    2. Copy it (ctrl+C in windows, command+C on a mac)
    3. Paste it (ctrl+v in windows, command+v on a mac)
    You will get better results if both images have the same ppi before you start (image>resize>image size. If you need to make a change for one image, make sure Resample Image is OFF.) You can use the Move tool to arrange/resize the object once it's in the destination photo.

  • Copy part of an image and paste it onto another?

    I'm trying to take some writing from one image and paste it onto another photo. Is that possible?
    Thanks!

    In Photoshop yes, in Lightroom no...

  • Recording and pasting sounds in OSX, a better way?

    I have not tried doing this before but another poster wants to add audio notes in Pages.
    When I researched this, in itself a painful task, it seems the only way to record is via QuickTime Pro and to export it and massage it into shape before going a round about route to bring it into Pages.
    I can't believe it is this bad!
    I also noted a few GUI gaffes along the way.
    Please tell me the whole process of simply recording and pasting a sound has not completely gone backwards since Mac OS9?

    orangekay.
    None of what you are saying advances the issue at all. All you are doing is denying that it is useful or saying that you personally wouldn't use it.
    The original O.P. is a Professor who uses audio comments because it is fast and personal. Which is his choice.
    It should not be a Pages function to record and place the audio, that should be a system one. The first part was already better managed and obvious over a decade and a half ago.
    I sourced him a range of 3rd party software that could do the recording for him, only one of which would add it into the location (I'm not sure how cleanly). Only one of these was free, the rest were pricey.
    I was personally astonished, even though I have encountered other such kludges in OSX, that Apple has made the simple act of recording audio so awkward and concealed. It is yet another example of how unfamiliar the OSX programmers are with elementary good user design. Also that despite many features are thrown into the system, they are unfinished and essentially useless.
    In the process of testing a method of achieving the end result in Pages, I tested a recording by playing it in the media browser. The play button doesn't even toggle to a stop button. Doesn't anyone at Apple look at how it is done anywhere else in the System?

Maybe you are looking for

  • Error-BOM is not valid

    Hi all, i am creating a BOM with item & sub item . i am getting the error like BOM is not valid. i am giving my coding below.plz suggest where i am doing mistake. it's urgent. can u plz give some sample coding where sub-item will be there in that BOM

  • G/l accounts in import process

    hi sap gurus,                     Pl tell me which accounts are generated while doing miro for cvd, customs duty & clearing. also while doing migo and miro for the actual vendor. PL .TELL ME WHERE DO WE CUSTOMIZE THESE G/L ACCOUNTS. Regards. Sandeep

  • Open system form and select a row number on matrix by click on button

    Hi experts, I have to open the purchase order form and select a specific row number from the matrix by clicking a button on sales order form. is it possible ? can anyone help me to achieve it? Thanks in advance. Best regards Andrea

  • Import a csv file into demand history

    Hi SAP Friends, we are sitting here for hours and just don´t get any further... Our problem is, we have written a csv file according to this example: Executing Loc. Type CHAR 4 CRMELOCTYP - 1002 Cus-Facing Loc. Type CHAR 4 CRMFLOCTYP - 1002 Type 1st

  • JcsSession.executeObjectQuery

    Hello All, I try to create a jcsSession.executeObjectQuery and need a hint. The statment should query Job with a special JobDefinition. My problem ist the where-Clause. I want to do something like this: select * from Job where Job.JobDefinition = <Jo