Fill fields with actual date / timestamp with button

Hello,
I did not find an answer for my following problem.
I want to put a button my adobe form that fills automactically three fields with data from the PC which are:
actual time (of the PC and of course timezone info), date and username, so the User has to press one button to fill all these data for convenience. 
So I think it is necessary to program this in JavaScript as an "on-click" action. Since I'am not too much familiar with this, it would be great if someone can post a little sample coding for this (or has some other tipp).
regards and happy xmas
Jörg

you must have target fields for your Date, Time and Username, for example you have a structure in your data view called "ZINFO" with the fields "EDATE", "ETIME","ENAME"
in your layout you need a button where you click on
in the click event you can fill your fields (formcalc)
xfa.resolveNode("xfa.record.ZINFO.EDATE").value = Num2Date(Date(), "DD/MM/YYYY");  
xfa.resolveNode("xfa.record.ZINFO.ETIME").value = Num2Time(Time(), "HH:MM:SS", "de_DE");
so you always get time/date when clicking
but how do you know who has opened the form?? did you realize some password protection??
br norbert

Similar Messages

  • Title parameter: replacing sysdate with actual date

    i have 2 parameters:say,
    from_date = 10/OCT/2006 , to_date = SYSDATE
    and what i'm trying to acheive is to print the parameters in the report TITLE.
    when i use '&parameters' i see for to_date = SYSDATE instead i want to see the actual date the when the report was run.
    is there a way i can do it...?

    Michael brings up a fun little point.
    Years ago, I used to extoll to users that parameters, calculations, etc. had to follow a standard (ie: calculations were labelled like: calc_today_date, calc_gl_code_fixed, etc., and parameters were labelled such as: parm_plant_code or parm_employee_name, etc.).
    I then started teaching that as you don't see the parameter, you could label it however you like: ie: i_hate_my_job, my_boss_is_stupid, etc.
    Boy was it fun when I discovered that if you chose to display the parameters in the title, you'd get the parameter label as well!
    Suffice it to say, I do what Michael suggests. Create a parameter name with something that let's you display it - where the name says what it is (ie: from date, gl code, etc.).
    Maybe at some point in the future, Oracle will add the concept of what's in the EUL for item properties, wherein you have a parameter id (where you could put in text what it really is) and a parameter label (how you want it displayed).
    Russ

  • SQL Tracing in TimesTen with actual data visible

    Hi,
    We're having some issues with our TimesTen-based application where under some circumstances (it appears to increase under load) the results appear to get 'mixed up', i.e. a query appears to not have received the right result set from the database. I know the result set is wrong because we're doing performance testing where each query should actually return exactly the same.
    I also say 'appears' because I think the problem is on the client side, where multiple threads access the database simultaneously and somehow things get mixed up. This happens so deep in the application that increasing the logging on client side didn't tell me what I need to know thus far.. And before I look further, I want to exclude the possibility that the database is mixing up results from queries processed in parallel.
    To accomplish that I would like to enable a TimesTen trace in ttTraceMon where the actual data returned as a result set to the client is visible. Is this possible? There are a lot of components you can trace, I haven't tried them all but at least the SQL component does not show this information, not even at the highest trace level.
    Is there any way to get a view of the actual result set that is being returned to a client, before that client's driver or the application (we use JDBC) actually interprets the results?
    Any clues are greatly appreciated! Thanks in advance.
    We use TimesTen 11.2.2.
    Kind regards,
    Pieter van Wijngaarden

    The answer sadly is no. There is not currently any trace level that will show data values.
    If you really need to share database connections between application threads then it should be done very carefully. Some rules to observe are:
    1. When a thread is using a connection it should have exclusive use of it. Do not allow multiple threads to make concurrent use of the same connection; TimesTen has internal mutex protection to avoid this causing problems for the database but due to the nature of the ODBC and JDBC APIs it is very hard at an application level to ensure correctness with this approach.
    2. Many objects (statements, result sets etc.) are closely associated with a specific connection. When a thread has 'relinquished control' of a connection it should not then manipulate any object associated with that connection in any way whatsoever.
    For example:
    1. Thread 1 'reserves' connection 1.
    2. Thread 1 issues a query on connection 1 and obtains a result set.
    3. Thread 1 'releases' connection 1.
    4. Thread 2 'reserves' connection 1 and starts to do some work.
    5. Thread 1 starts to process values from the result set obtained in step 2.
    At this point you have two threads working concurrently on connection 1 and all bets are off (and certainly you will see problems).
    Code that violates these rules may seem to work okay with some databases but not with others. That is not the fault of the database but just a happy coincidence. This code pattern is just incorrect.
    Also please note that, unlike Oracle DB, in TimesTen a commit or rollback operation on a connection closes / invalidates all result sets associated with that connection so again if you share connections in a way similar to the above this can also cause you problems.
    Good luck with your debugging.
    Chris
    Edited by: ChrisJenkins on Jan 30, 2013 10:03 AM

  • Update row with more data - JTable with Abstracttablemodel

    Hello!
    I got some problems with my program, im using jtable with abstracttablemodel.
    First I include content into the jtable by pressing ”New Content”, then it will pop up a dialog which I fill with information as you can see in the picture.
    http://img42.imageshack.us/img42/6969/jtable.jpg
    But when its done, I want to borrow it and update that row with more information as you can see if its loaned, if it is their shall be a checkbox, name and phone there. I don’t really know how to do this. Suppose I should do a similar metodh as when I’m adding and removing content. The question is how do I do that? I’ve been looking at some tips and hints on google. It seems to me that should use “fireTableRowsUpdated” but not really sure if its right and how to. When I’m borrowing the specific row I guess I need to check which row is clicked before borrowing and then fill in the information and update the table.The borrow button will also pop up a dialog with 3 fields to fill. Here is the code I wrote for adding and removing. I’ve tried with the update but its not right which I’m going to use when borrowing objects from the database. Please help!
    Code from the abstracttablemodel
    private ArrayList<Objects> obj = new ArrayList<Objects>();
         public void add(Objects o) {
              obj.add(o);
              fireTableRowsInserted(obj.size()-1, obj.size()-1);
         public void remove(int o) {
              int index = obj.indexOf(o);
              obj.remove(o);
              fireTableRowsDeleted(index, index);
         public void update (Objects o){
              // Not sure how to do here
              //int index = obj.indexOf(o);
              //fireTableRowsUpdated(index,index);
         }Code for the button in the main program.
    if (arg.getSource() == borrow) {
    // How should I do here? I need to implement the BorrowDialog, check if a row is pressed then update? How do I do that?
                   BorrowDialog newLoan = new BorrowDialog(frame);
                   if(table.getSelectedRow() == -1)
                        JOptionPane.showMessageDialog(frame,"Select the row before loan");
                   else
                        dir.update(newLoan.getLoan());
                        table.repaint();
              }Code for BorrowDialog
    public class BorrowDialog extends JDialog implements ActionListener {
            //implements JTextFields, Buttons,Labels and Panels.
         public BorrowDialog(JFrame parent) {
         //Setting buttons to panels and such
         public Objects getLoan(){
              return loan;
         public void setLoan()
                    // Not sure if this is right, as I leave some fields empty, will it be empty when its updating aswell?
                    // I tried with add data then it just will be a new row, when I will update a specific row
                    loan = new Objects("", "" , "" , "" , "" ,"", loanField.getText(),nameField.getText(), phoneField.getText());
         public void actionPerformed(ActionEvent arg) {
              if (arg.getActionCommand().equals("Save")) {
                   System.out.println("save");
                   setLoan();
                   dispose();
    }All help is appreciated!
    Edited by: iTech34 on Feb 22, 2010 3:27 AM
    Edited by: iTech34 on Feb 22, 2010 3:31 AM
    Edited by: iTech34 on Feb 22, 2010 3:58 AM

    Look up for the rest of the code!
    I explained everything on the first post, so please read there so you know the problem I got.
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class Database implements ActionListener {
         private final int WIDTH = 800;
         private final int HEIGHT = 800;
         private JTable table = new JTable();
         private JFrame frame = new JFrame("Database");
         private JButton addContent = new JButton("New content");
         private JButton borrow = new JButton("Borrow");
         private JButton returnObject = new JButton("Return");
         private JButton remove = new JButton("Remove");
         private JButton save = new JButton("Save");
         private JButton load = new JButton("Load");
         private JButton exit = new JButton("Exit");
         private Directory dir = new Directory();
         private JPanel buttonPanel = new JPanel();
         private JPanel mainPanel = new JPanel();
         public Database() {
              // BUTTONS
              buttonPanel.add(addContent);
              buttonPanel.add(remove);
              buttonPanel.add(borrow);
              buttonPanel.add(returnObject);
              buttonPanel.add(save);
              buttonPanel.add(load);
              buttonPanel.add(exit);
              // ACTION LISTENERS
              addContent.addActionListener(this);
              remove.addActionListener(this);
              borrow.addActionListener(this);
              returnObject.addActionListener(this);
              save.addActionListener(this);
              load.addActionListener(this);
              exit.addActionListener(this);
              // JTABLE
              table = new JTable(dir);
              table.setAutoCreateRowSorter(true);
              table.setRowHeight(25);
              JScrollPane JScroll = new JScrollPane(table);
              // PANELS
              mainPanel.setLayout(new BorderLayout());
              mainPanel.add("North", buttonPanel);
              mainPanel.add("Center", JScroll);
              // FRAME
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setSize(WIDTH, HEIGHT);
              frame.getContentPane().add(mainPanel);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         public void actionPerformed(ActionEvent arg) {
              if (arg.getSource() == addContent) {
                   Dialog newDialog = new Dialog(frame);
                   dir.add(newDialog.getItem());
              if (arg.getSource() == remove) {
                   if (table.getSelectedRow() == -1)
                        JOptionPane.showMessageDialog(frame,"Select the row before remove");
                   else
                        dir.remove(table.getSelectedRow());
              if (arg.getSource() == borrow) {
                   // Not sure how to do here! I need to check which row I've clicked and take that row into BorrowDialog as argument i suppose.. please explain
                   BorrowDialog newLoan = new BorrowDialog(frame);
                   if(table.getSelectedRow() == -1)
                        JOptionPane.showMessageDialog(frame,"Select the row before loan");
                   else
                        dir.update(newLoan.getLoan());
                        table.repaint();
              if (arg.getSource() == returnObject) {
              if (arg.getSource() == save) {
                   dir.writeFile();
              if (arg.getSource() == load) {
                   Objects[] tempObject = dir.readFile("info.txt");
                   for (int i = 0; tempObject[i] != null; i++)
                             dir.add(tempObject);
              if (arg.getSource() == exit){
                   frame.dispose();
         public static void main(String[] argv) {
              new Database();
    }import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class BorrowDialog extends JDialog implements ActionListener {
         private final int WIDTH = 300;
         private final int HEIGHT = 400;
         private JButton exitDialog = new JButton("Exit");
         private JButton saveDialog = new JButton("Save");
         private JTextField loanField = new JTextField();
         private JTextField nameField = new JTextField();
         private JTextField phoneField = new JTextField();
         private JLabel loanLabel = new JLabel("Loan");
         private JLabel nameLabel = new JLabel("Name");
         private JLabel phoneLabel = new JLabel("Phone");
         private JPanel eastPanel = new JPanel();
         private JPanel southPanel = new JPanel();
         private JPanel westPanel = new JPanel();
         private GridLayout layout = new GridLayout(3, 1);
         private Objects loan;
         public BorrowDialog(JFrame parent) {
              super(parent, "Borrow", true);
              southPanel.add(saveDialog);
              southPanel.add(exitDialog);
              westPanel.add(loanLabel);
              eastPanel.add(loanField);
              westPanel.add(nameLabel);
              eastPanel.add(nameField);
              westPanel.add(phoneLabel);
              eastPanel.add(phoneField);
              westPanel.setLayout(layout);
              eastPanel.setLayout(layout);
              add("West", westPanel);
              add("Center", eastPanel);
              add("South", southPanel);
              saveDialog.addActionListener(this);
              exitDialog.addActionListener(this);
              setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
              setResizable(false);
              setSize(WIDTH, HEIGHT);
              getContentPane();
              setVisible(true);
         public Objects getLoan(){
              return loan;
         public void setLoan()
              // Can I really do like this? Will the the specific row I've chosen be overwriten entirly with blank elements in the six columns as I left empty(see below, when I send the arguments into the constructor)?
              loan = new Objects("", "" , "" , "" , "" ,"", loanField.getText(),nameField.getText(), phoneField.getText());
         public void actionPerformed(ActionEvent arg) {
              if (arg.getActionCommand().equals("Save")) {
                   System.out.println("save");
                   setLoan();
                   dispose();
              if (arg.getSource() == exitDialog) {
                   dispose();
    Edited by: iTech34 on Feb 22, 2010 11:19 AM
    Edited by: iTech34 on Feb 22, 2010 11:20 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Create XML format file in bulk insert with a data file with out delimiter

    Hello
    I have a date file with no delimiter like bellow
    0080970393102312072981103378000004329392643958
    0080970393102312072981103378000004329392643958
    I just know 5 first number in a line is for example "ID of bank"
    or 6th and 7th number in a line is for example "ID of employee"
    Could you help me how can I create a XML format file?
    thanks alot

    This is a fixed file format. We need to know the length of each field before creating the format file. Say you have said the first 5 characters are Bank ID and 6th to 7th as Employee ID ... then the XML should look like,
    <?xml version="1.0"?>
    <BCPFORMAT xmlns="http://schemas.microsoft.com/sqlserver/2004/bulkload/format"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RECORD>
      <FIELD ID="1"xsi:type="CharFixed"LENGTH="5"/>
      <FIELD ID="2"xsi:type="CharFixed"LENGTH="2"/>
      <FIELD ID="3" xsi:type="CharFixed" LENGTH="8"/>
      <FIELD ID="4" xsi:type="CharFixed" LENGTH="14"/>
      <FIELD ID="5" xsi:type="CharFixed" LENGTH="14"/>
      <FIELD ID="6" xsi:type="CharFixed" LENGTH="1"/>
    </RECORD>
    <ROW>
      <COLUMNSOURCE="1"NAME="c1"xsi:type="SQLNCHAR"/>
      <COLUMNSOURCE="2"NAME="c2"xsi:type="SQLNCHAR"/>
      <COLUMN SOURCE="3" NAME="c3" xsi:type="SQLCHAR"/>
      <COLUMN SOURCE="4" NAME="c4" xsi:type="SQLINT"
    />
      <COLUMN SOURCE="5" NAME="c5" xsi:type="SQLINT"
    />
    </ROW>
    </BCPFORMAT>
    Note: Similarly you need to specify the other length as well.
    http://stackoverflow.com/questions/10708985/bulk-insert-from-fixed-format-text-file-ignores-rowterminator
    Regards, RSingh

  • Project Scheduling aligment with Actual Date

    Hi,
    I have Scheduled a Project in Planning Board and my first Activity (Architecture Design) was scheduled to finish at 30.06.2014.
    While the the next dependant activity was scheduled to start the next day 01.07.2014.
    Now my first Activity (Architecture Design) is finalised & confirmed (see actual in yellow) earlier than planned.
    Please can you tip, what shall I do to reschedule the project so that next activity is also planned to start earler (the next day after first).
    Or where do I set up this logic "if the activity on critical path is finished earlier, reschedule the whole project to as early as possible".
    I understand I can;t chage "Basic Dates", but the forecast dates shall reflect the state of actuals - right?  
    Cheers,
    Daria

    Hi Daria,
    Kindly ensure that the automatic log indicator is ticked on as well and send us the screenshot of the log that you are getting while rescheduling the network. (Using scheduling types Forward/Backward/Free Scheduling)
    Regards
    Varun

  • Do Cubes exist with actual data as from BW305 etc

    Hello Gurus,
    I would like to practice from the SAP Training material i.e. BW305 etc. I wish to know whether all those cubes mentioned actually exist somehwere in SAP Demo Infoarea? If not, how can I proceed furthur? Thanks.
    SD

    No they may not be available. while taking the training they will provide system. there only i believe you can practice, since that is IDES system.
    regards,
    vsn

  • Is there anyone else having a major probblem with excessive data usage with the iPhone 5??

    My wife and I are on a shared 4GB data plan, she has the Galaxy Note 2 and I have the iPhone 5, she's on her phone way more than I am, but I am using waaay more data than she is, double to be exact. She sends pictures all the time and all of that, I do not, but yet I am still using more data. I have cut off everything from using my cellular data except, facebook, twitter, instagram, and Onavo Count, I have deleted iClouds from my phone, my location is turned off, but yet I am still using a lot of data.. I was wondering, is this issue because of Verizon, or is it because of the iPhone 5? My boss has a iPhone 5 through AT&T and she's not using as much data as I am either and I am pretty sure she's on her phone more than I am as well and do not have half of everything I got not using cellular data cut off.. I been with Verizon since Feb. 2012 and I have always had this problem with data while my wife is using barely 1G a month, I am using almost 2G every month. I am not complaining, I just want to know if anyone else is experiencing the same thing and if so what kind of solutions have you found? Thanks in advance! I hope I hear from someone... preferably a Verizon representative.  

    Thank you for your response. I do not stream music or videos, I do not
    FaceTime, my apps are not automatically updating when using wifi, I
    manually update them so they do not use cellular date either. Yes I have
    been able to view my data sessions, and honestly its not adding up. This
    morning it said my phone used over 90,000 kilobytes and I do not know how.
    I am positive my wife uses her phone more than I do but yet I am using more
    data.. I've been to the Verizon store and they have not be able to help me
    at all, I really like the coverage I get from Verizon but my confusion on
    why my phone is using so much data may cause me to switch providers and I
    really do not want to, I just really want to get to the bottom of this
    situation. I can't even enjoy my phone because I have cut mainly everything
    off. Location is cut off, I've deleted iTunes off my phone, I got mainly
    all my applications to only be accessed through wife for when I get home. I
    cut off my cellular data as soon as I get home because I am under wife when
    I am home. My wife do not have to do anything of what I've just mentioned
    but yet I am still using more data than she. Is my phone defected,
    something has to be wrong here. Please I will really appreciate it if you
    or anyone can help me figure what is going on. Please, thank you!
    Sent from my iPhone
    On Nov 8, 2013, at 12:55 PM, Verizon Wireless Customer Support <

  • Logical fact table with fragmented data sources with different dimensions

    Hello.
    I have a logical fact table with four logical table sources. Three of the LTS's share the same dimensions, but the fourth LTS has one dimension (called Dim_A) less. In the physical layer the dimension Dim_A is joined to the first three physical fact tables, but not to the fourth fact table (since it doesn't have that dimensionality). In the BMM layer the logical fact table is joines to the logical dimansion Dim_A.
    When I run an analysis on this RPD the measures from the logical fact is aggregated correctly (union of all four table sources) as long as I doesn't include Dim_A, but as soon as I include dimension Dim_A I get the error message:
    +State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14052] Internal Error: Logical column Dim_A.Column_X has no physical sources that can be joined to the physical fact table source [Logical table sources (Priority=0): Fact_B.Fact_Y]. (HY000)+
    I would like a solution where the analysis returns correctly aggregated measures also for the LTS with the "missing" dimension, but with a dimension value NULL for this LTS. Or something like this.
    Is there a way to set this up in the RPD.
    Thanks,
    Henning Eriksen

    The SQL could look something like this.
    SELECT dim_a.col_1, fact_a.measure_1
    FROM db.dim_a
    JOIN
    db.fact_a
    ON fact_a.col_2 = dim_a.col_2
    WHERE fact_a.date = '28-nov-2012'
    UNION ALL
    SELECT dim_a.col_1, SUM (fact_b.measure_1)
    FROM db.dim_a
    JOIN
    db.fact_b
    ON fact_b.col_2 = dim_a.col_2
    WHERE fact_b.date = '28-nov-2012'
    UNION ALL
    SELECT dim_a.col_1, SUM (fact_c.measure_1)
    FROM db.dim_a
    JOIN
    db.fact_c
    ON fact_c.col_2 = dim_a.col_2
    WHERE fact_c.date = '28-nov-2012'
    UNION ALL
    SELECT NULL, SUM (fact_d.measure_1)
    FROM    db.fact_d
    WHERE fact_d.date = '28-nov-2012'
    I would appreciate if you could give me some hints for the RPD.
    Thanks,
    Henning

  • Problem with Activity Data Collector with web dynpro

    Hi Gurus,
    We try to use the Activity Data Collector to create portal statistics. We activate the service, define the file formats, and files generates successfully. After that, we load those files into BI, and create some query. Analyze queries look the following problem:
    There is a web dynpro application which in portal (in web dynpro iview), and the log files non contains every hit.
    For example, 2000 users used this application, but the log files contains only 13 users.
    Can yout help me, what is the problem?
    Thanks

    Dwa-
    Did you create activity reporting service similar to below link.
    http://help.sap.com/saphelp_nw70/helpdata/en/45/74eeda9ba26975e10000000a114a6b/frameset.htm 
    If you have used it. Activity reporting service which you created will not record the Webdynpro activity.  I think the above one is more of KM reporting service.
    Try creating activity report with below link. But portal version required is EHP1.
    Portal Activity Data Collector using Solution Manager
    Thanks,
    Sharath.

  • If I were to buy an ipad with retina display but did not purchase the ipad with the data plan with a carrier at the time would it be possible to add that feature later on or is it a certain ipad that goes only with that feature?

    Please answer

    Data plans for the iPad in every country I know of are month-to-month or pay-as-you go. No contract is necessary or in general even offered; you sign up and discontinue as you please.
    Regards.

  • Filling bc travel data model with test data

    Hey i read somewhere that there is a app to fill the bc travel data model with test data.I been searching but havent found one in the preview version.Please help me if anyone knows how to get it done.Filling it manually is taking a whole lot of time.

    Go to the ABAP Editor (SE38) and execute the SAPBC_DATA_GENERATOR program. This program generates suitable sample data in the tables of the flight data application.

  • PA_CONTRACT_XSLFO: How to invoke a RTF-template with related data template

    Dear Reader,
    actually I want to extend the standard Document Type Layout for a Purchase Agreement Contract with additional data from approved supplier list (ASL).
    Therefor I have created a RTF-template and a data template with the needed sql-statement. For testing I put this in a standalone concurrent programm and it works fine (result was a blue table with all data rows).
    Next step for me was to invoke the RTF-template into the PA_CONTRACT_XSLFO template for extending the Document Type Layout for my Purchase Agreement Contract. So I put the neede invoke-statements
    <xsl:import href="xdo://XXOC.XX_RTF_TEMPLATE.de.00/"/>
    and
    <xsl:call-template name="XX_RTF_TEMPLATE"/>
    into the XSLFO-template. Also I extend the RTF-template with the define template statement
    <?template:XX_RTF_TEMPLATE?>
    So all seems to be fine.
    As result I get the standard document for Purchase Agreement Contract with the additional blue table from RTF-template BUT WITHOUT DATA !
    From my point of view there is no execution of the sql-statement in data template. But I dont know why.
    Do Oracle support a combination of XSLFO-template with data template?
    [XSLFO-template] with related [XSD-data definition]
    calls [RTF-template] with related [data template (with included sql-statement)]
    Thanks for your help.
    Best regards
    Mario.

    How to call a rtf template from another rtf template by passing a value try in main template create hyperlink of url with parameters for another template
    http://bipconsulting.blogspot.ru/2010/02/drill-down-to-detail-or-another-report.html
    When user pull a quote report from siebel this new rtf template should attach to the quote at the end.it'll be only another report
    IMHO you can not attach it to main. it'll be second independent report
    you can try subtemplate but it's not about rtf from rtf by click
    it's about call automatically rtf subtemplate from main rtf based on some conditions
    for example, main template contain some data and if some condition is true then call subtemplate and place it instead of its condition

  • TREX - Configuring Distributed Slave with Decentralized Data Storage

    I am creating a distributed TREX environment with decentralized data storage with 3 hosts.  The environment is running TREX 7.10 Rev 14 on Windows 2003 x64.  These are the hosts:
    Server 01p: 1st Master NameServer, Master Index Server, Master Queue Server
    Server 02p: 2nd Master NameServer, Slave Index Server
    Server 03p: Slave NameServer, Slave Index Server (GOAL; Not there yet)
    The first and second hosts are properly set up, with the first host creating the index and replicating the snapshot to the slave index server for searching.  The third host is added to the landscape.  When I attempt to change the role of the third host to be a slave for the Master IS and run a check on the landscape, I receive the following errors:
    check...
    wsaphptd03p: file error on 'wsaphptd03p:e:\usr\sap\HPT\TRX00\_test_file_wsaphptd02p_: The system cannot find the file specified'
    wsaphptd02p: file error on 'wsaphptd02p:e:\usr\sap\HPT\TRX00\_test_file_wsaphptd03p_: The system cannot find the file specified'
    slaves: select 'Use Central Storage' for shared slaves on central storage or change base path to non shared location
    The installs were all performed in the same with, with storage on the "E:" drive using a local install on the stand-alone installation as described in the TREX71InstallMultipleHosts and TREX71INstallSingleHosts guides provided.
    Does anybody know what I should try to do to resolve this issue to add the third host to my TREX distributed landscape?  There really weren't any documents that gave more information besides the install documents.
    Thanks for any help.

    A ticket was opened with SAP customer support.  The response to that ticket is below:
    Many thanks for the connection. We found out, that the error message is wrong. It can be ignored, if you press 'Shift' and button 'Deploy' (TREXAdmin tool -> Landscape Configuration).  We will fix this error in the next Revision (Revision 25) for TREX 7.1.

  • Publish book - print sheets with no data

    hi all,
    i would like to use the option to print sheets in a book with no data but with printing to pdf. i have tried to select the option when printing to an actual printer, but then selected also the option to print to pdf, but this does not work.
    is there a possibiliy at all to print sheets from a book with no data to pdf?
    thank you for your help.
    best regards,
    melanie

    I traced the NetStream info under case "NetGroup.Neighbor.Connect":
    this time it has data "NetStream info: currentBytesPerSecond=102558.79345603273 byteCount=2456888 maxBytesPerSecond=116816.66032712058 audioBytesPerSecond=0 audioByteCount=0 videoBytesPerSecond=102558.79345603273 videoByteCount=2456888 dataBytesPerSecond=0 dataByteCount=0 playbackBytesPerSecond=0 droppedFrames=0 audioBufferLength=0 videoBufferLength=0 dataBufferLength=0 audioBufferByteLength=0 videoBufferByteLength=0 dataBufferByteLength=0 srtt=0 audioLossRate=0 videoLossRate=0 metaData=null xmpData=null uri=rtmfp://218.199.102.119/multicast resourceName=null isLive=true".
    but 2nd client still results with:
    NetStream.Connect.Success P2P连接成功,启动播放...
    NetStream.Play.Reset
    NetStream.Play.Start
    NetStream.Connect.Success P2P连接成功,启动播放...
    NetStream.Play.Reset
    NetStream.Play.Start
    NetStream.MulticastStream.Rese
    Twice "NetStream.Connect.Success" and "NetStream.Play.Reset" ,and the video still can't play .....Help......

Maybe you are looking for