Bursting with template control

Hi there,
I am using the xml publisher in PeopleSoft and my requirement is as follows.
Every year there are 500 odd staff who receive a pay rise and each staff member receives a letter detailing this payrise. Additionally there are 8 different types of letter that any staff member could have.
What I want to do is burst by the staff members department ID and control the template by which letter I want to use. I've generated my xsd file and my program generates the xml and publishes the process.
My problem is that although the bursting works, and the correct template is chosen, only the first page is printed for each department. I have looked around and saw that you can place page breaks on a template but because I won't necessarily use the same template for the next page I wasn't sure that this is the answer.
I don't have any for-each statement in the template as there is no looping in any page. If I have 500 rows then I want 500 pages.
Do I need to have something within the xsd file (and attribute??) that the publisher can interpret so that a new page is generated (and correct template chosen) for each row in the xml file??
Thanks,
Andrew

Hi Dave,
My xml file looks similar to this (other than there would be more rows):
<?xml version='1.0'?>
<Start>
<BIS_SAL_LTR_XML>
<BIS_DEPTID_GRP>505210</BIS_DEPTID_GRP>
<BIS_SALRVW_LTR_NBR>4A</BIS_SALRVW_LTR_NBR>
<BUDGET_YEAR>2008</BUDGET_YEAR>
<TITLE1>1 July 2008</TITLE1>
<TITLE2>Malcolm D Knight</TITLE2>
<TITLE3> Peter Dittus</TITLE3>
<TITLE4>Secretary General</TITLE4>
<TITLE5> Jozef Van &apos;t dack</TITLE5>
<TITLE6>Head of Human Resources</TITLE6>
<DESCRSHORT>Mr</DESCRSHORT>
<FIRST_NAME>Andrew</FIRST_NAME>
<LAST_NAME>Casey</LAST_NAME>
<BIS_INCR_AMT_STR>5,000.00</BIS_INCR_AMT_STR>
<BIS_INCR_PCT_STR>3.85</BIS_INCR_PCT_STR>
<BIS_INCR_SAMT_STR>0.00</BIS_INCR_SAMT_STR>
<BIS_EXPAT_AMT>23400.00</BIS_EXPAT_AMT>
<BIS_SALARY>153400.00</BIS_SALARY>
<ANNUAL_RT>130000.200</ANNUAL_RT>
<COMP_RATECD>18</COMP_RATECD>
<DESCR1>lower third</DESCR1>
<DESCR40>Expatriation allowance 18%</DESCR40>
</BIS_SAL_LTR_XML>
</Start>
My xsd file is like this:
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Start">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="BIS_SAL_LTR_XML">
<xs:complexType>
<xs:sequence>
<xs:element name="BIS_DEPTID_GRP" type="xs:string" />
<xs:element name="BIS_SALRVW_LTR_NBR" type="xs:string" />
<xs:element name="BUDGET_YEAR" type="xs:unsignedByte" />
<xs:element name="TITLE1" type="xs:string" />
<xs:element name="TITLE2" type="xs:string" />
<xs:element name="TITLE3" type="xs:string" />
<xs:element name="TITLE4" type="xs:string" />
<xs:element name="TITLE5" type="xs:string" />
<xs:element name="TITLE6" type="xs:string" />
<xs:element name="DESCRSHORT" type="xs:string" />
<xs:element name="FIRST_NAME" type="xs:string" />
<xs:element name="BIS_INCR_AMT_STR" type="xs:string" />
<xs:element name="BIS_INCR_PCT_STR" type="xs:string" />
<xs:element name="BIS_INCR_SAMT_STR" type="xs:string" />
<xs:element name="BIS_EXPAT_AMT" type="xs:decimal" />
<xs:element name="BIS_SALARY" type="xs:decimal" />
<xs:element name="ANNUAL_RT" type="xs:decimal" />
<xs:element name="COMP_RATECD" type="xs:string" />
<xs:element name="DESCR1" type="xs:string" />
<xs:element name="DESCR40" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
Thanks,
Andrew

Similar Messages

  • "Sorry, you don't have access to this page" when creating a sub site. I am in the owners group with full control access

    cannot provisioning a SharePoint 2013 site with full control access, I get the page with the "Sorry, you don’t have access to this page”. Any help will be greatly appreciated.

    Hi,
    Which template did you use for the parent site?
    Please check whether the site collection administrator could create a subsite.
    Please grant permissions on the Device Channels list
    http://sitecollection_URL/DeviceChannels/AllItems.aspx -> List -> List Settings -> Permissions for this list -> granted Read rights for the Everyone group, compare the result as
    it.
    Please navigated to the hidden list "TaxonomyHiddenList" on the site collection i.e.
    http://somdnetsp/lists/TaxonomyHiddenList/AllItems.aspx and check permissions on this list. Check whether the list has unique permissions and there were no users added to the list. If yes,
    add "authenticated users" in the list permissions.
    Then, try to create sub site, compare the result.
    If this issue still exists, please check the log file to find whether there are some message about this issue.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback
    for TechNet Subscriber Support, contact [email protected]
    Wendy Li
    TechNet Community Support

  • Events not getting fired for templated controls.

    Hi,
    I have an asp.net custom server control, in which I have given template support. The template controls render fine. But, the events of template controls are not getting fired. For example, If I added an asp dropdownlist as a template in my custom control
    and select any item from dropdownlist and raised the postback, the selected item did not get updated in dropdownlist ( i.e selectedIndex, selectedText of the control remains the same as like initial rendering.), also I am not able to trigger the SelectedIndexChanged
    server side event of dropdownlist.
    I have used NamingContainer for rendering the template controls. The codes are as follows,
    <code>
    This is my source:
         private
    ITemplate fileTemplate =
    null;
     [TemplateContainer(typeof(ContentContainer)),
    PersistenceMode(PersistenceMode.InnerProperty),
    DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
    TemplateInstance(TemplateInstance.Single)]
    public ITemplate FileTemplate
    get
       return fileTemplate;
    set
    fileTemplate = value;
    public class
    ContentContainer :
    WebControl, INamingContainer
    internal ContentContainer()
    protected override
    void CreateChildControls()
    this.Controls.Clear();
    ContentContainer container =
    new ContentContainer();
    this.FileTemplate.InstantiateIn(container);
    this.Controls.Add(container);
    base.CreateChildControls();
          public
    override ControlCollection Controls
    get
    this.EnsureChildControls();
           return
    base.Controls;
    Whereas in my application, I have rendered the custom control with template as below,
    [ASPX]
    <mycustom control>
    <FileTemplate>
    <asp:DropDownList
    ID="ddc1"
    runat="server"
    AutoPostBack="true"
    OnSelectedIndexChanged="ddc1_SelectedIndexChanged"
    >
    <asp:ListItem
    Text="Item1"
    Value="one"></asp:ListItem>
    <asp:ListItem
    Text="Item2"
    Value="two"></asp:ListItem>
    <asp:ListItem
    Text="Item3"
    Value="three"></asp:ListItem>
    <asp:ListItem
    Text="Item4"
    Value="four"></asp:ListItem>
    </asp:DropDownList>
    </FileTemplate>
    </mycustom control>
    [Code Behind]
    This event is not getting raised.
    protected
    void ddc1_SelectedIndexChanged(object sender,
    EventArgs e)
     I can get the template control's details here using "FindControl("templateID")". But not able to get the updated details.
    protected void btn_Click1(object sender,
    EventArgs e)
    var template= this.CustomControl.Controls[0].FindControl("ddc1");
    </code>
    Where I am going wrong? Kindly help me on this.
    Thanks in advance.
    Regards,
    Meena

    This is a Windows Phone forum, not a web development forum. Please ask this question at the forums at
    http://asp.net.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • How to mak use of the Error Template Control

    With applogies in advace for a apex 101 guestion. I actually have tried to read the Customizing Templates chapter of the Users Guide. According to that guide, the folowing substitution strinrgs are supported in the the Error Template Control section of page templates.
    #MESSAGE# and #ADDITIONAL_INFO# - Places the error message.
    #TECHNICAL_INFO# - Displays detailed internal error information which will just be visible for developers.
    #BACK_LINK# - Displays a link back to the previous page.
    #OK# and #RETURN_TO_APPLICATION# - Returns to translated text strings.
    However, if I enter the follow code
    <p> message: &nbsp   #MESSAGE# </p>
    <p> additional info: &nbsp #ADDITIONAL_INFO# </p>
    <p> techie stuff: &nbsp   #TECHNICAL_INFO# </p>
    <p> back link:  &nbsp  #BACK_LINK# </p>
    <p> ok: &nbsp #OK# </p>
    <p> return to application: &nbsp #RETURN_TO_APPLICATION# </p>I get the following output:
    message: ORA-02290: check constraint (WSFO_DATA.CC_OU_INTERNET_ACCESSIBILITY) violated
    additional info:
    techie stuff:
    back link: javascript:window.history.go(-1)
    ok: OK
    return to application: Return to application.
    It appears that only the first substitution string is doing anything. Would someone kindly (please be kind) what is going on here? I'm especially interested in additional info and technical info. The back_link just looks like an html snippet, not sure why I would use a substitution string for this. I imagine the last two could facilitate site translation, but that doesn't help much if there is no machinery for translating error messages thenselves.
    Thanks,
    Steve

    Hi Steve,
    1) #TECHNICAL_INFO# is intended for developers and only populated if you run your application from the Builder.
    2) #ADDITIONAL_INFO# is used by some APEX generated messages to provide additional information, but most of the times it's just a "Get in contact with your admin" like message. If you raise your own errors with the APEX_ERROR pl/sql API you can set that value to what every you want to. See http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_error.htm#CABCGJFD
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How Stop Pop-Up Window: Allow Fullscreen With Keyboard Controls?

    How can I cause the cessation of the pop-up window that asks me, "Allow fullscreen with keyboard controls?" 
    In the last month or two (January- February of 2013), this black, semi-transparent pop-up has appeared every time I go to full screen in the game Battle Pirates on facebook.
    After numerous iterations, this confirmation request has become completely unneccessary and nothing more than an unwelcome annoyance.

    Tom,
    Moderators have the authority and privilege to mark answers as correct, in addition to the original posters. ANY moderator here could have marked it that way.
    The Bug report/Feature Request link is not a "vote" page per say, but a place to submit a request for a feature you'd like to see added or dropped from Flash Player. It's the best way to voice a concern or "wish" for a feature, since the development team reads the reports/requests. Management who'd make the decision to add or remove something won't read about it here. They WILL hear about it from development.

  • Problems with remote control and user accounts - error 1759?

    We're running:
    -XP Pro SP2 clients with Zen SP1 IR3a agent, 4.91 SP2 Netware client.
    -We are NOT running Middle Tier.
    -Novell servers are running Netware 6.5 SP7, E-directory 8.7.3.10b or 8.8.
    -Zen server is also SP1 IR3a.
    We have no problem using remote control on workstation objects. We are having intermittent issues with remote controlling user objects. When the issue occurs, we receive the following error, "Error 1759: The selected user is not logged in on any workstations" even though the user is in fact logged in. After some more research, it appears that the "networkAddress" attribute of the user object is blank so we feel that this is the root cause. My question is what would cause the networkAddress attribute to randomly not update? For instance we had a user (verified his login) who we could not remote via the user object (workstation object worked). We checked his networkAddress attribute and found that it was empty. User rebooted and logged in again and his networkAddress attribute populated, and then we could remote control him via the user object. Now this isn't always the case after a reboot. There doesn't appear to be any pattern to when the networkAddress attribute does or does not update. In fact, this particular user has a laptop so he boots it up fresh every morning yet he was not showing a network address when he logged in initially today.
    We've followed the troubleshooting steps in Novell Documentation without any success. Is there anything else that we might be missing, especially with respect to getting the networkAddress attribute to update? We ran a DSreport on that attribute and found about 500 out of a total of 1500 users had no networkAddress. Some of those are sure to be legitimate but that number is much too high for the number of people that should be in the office.
    I've read some older threads on the subject but none of them really provide a firm solution. Also most of the older threads reference Middle Tier which we are not using.
    Thanks in advance.

    > 4.91 SP2 Netware client.
    You could try this TID:
    "A user will no longer have an entry in their "Network Address" attribute
    even though they are logged into the eDirectory Tree."
    http://www.novell.com/support/viewCo...1262&sliceId=1
    "Resolution"
    "This was fixed in the 4.91 SP3 client. NWFS.SYS was modified so that it
    will check the monitor connection on a reconnect and if it is not connected
    close the connection and try and get a new monitor connection to the tree.
    Prior to the 4.91 SP3 client, the solution is to have the user login again
    so that it issues the NDS Finish Login request again that will populate
    Network Address again."
    Regards
    Rolf Lidvall
    Swedish Radio (Ltd)

  • Error when opening document with ECL control: INVALID_DATA

    Hi Gurus,
    I've tried to search the net for this problem but could not find anything and I'm stuck now.
    Description:
    we're using ECL to view attached documents (to POs etc.) which are stored through ArchiveLink on the content repository.
    when we try to open this document, time-to-time we get following error:
    Error when opening document with ECL control: INVALID_DATA
    Message no. SDV004
    by time-to-time I mean that when we try to open same attachment again it opens successfully (sometimes we need to re-open it 3-4 times to get it)
    what we've tried is to enlarge timeout for HTTP protocol (tx SMICM, from former 30 to actual 60) but only effect we got is that we're waiting for the error longer time
    It will be really great if anybody of you guys can give me an advice where the problem can be or where should I look and what to check
    Thanks,
    David

    Hi Christoph,
    thanks for tip, unfortunately this was already flagged, currently settings are:
    for Display Settings:
    yes - include ECL control
    use HTML control
    empty - maximum viewer wait time
    (do you think that setting some value for this could help)
    yes - deactivate generic object services in viewer
    no - doc display as dialog box
    yes - deactivate data provider cache
    Storage Settings:
    yes - always copy document class from document type
    yes - permit multiple assignment
    Thanks,
    David

  • Moving average price calculation logic of material with Price Control "S"

    Dear Gurus,
    As you know that there is a Moving price and standard price icon in the material master.
    I want to understand the calculation logic of the moving average price of the materials having price control "S"
    How the system calculates the MAP for standard price materials? The receipt from the process order I suppose is valuated at the process order cost after settlement, but if the issue has hapened for the material does the system recalculate the issue price also?
    Below is the sample process order receipt and issue scenario:
    Receipt from process order 161000000223
    300 kg and GR at standard cost value is Rs 5892
    Issue to process order 162000000294
    250 kg and GI at standard cost value is Rs 4910.
    Thus the balance at period end is 50 kg and balance at standard cost value is Rs 982.
    Here in process order 161000000223 the actual cost is 10 Rs. Then how will the system calculate the MAP?
    Thanking You,
    Amit Dhanurdhari

    Hi
    Try the following calculations,
    One of them will work depending upon your version and support pack
    Expected MAP calculation ( As with price control V)
    = ((Qty before transaction*MAP + Transaction Qty * transaction
    Price)) / quantity after transaction
    New Method ( when price control is S)
    = Old MAP + (Price Variance w.r.t Standard Price/Qty after transaction)
    Also go through the following notes,
    Note 1225167
    1253944
    518485 FAQ: Valuation of goods movements
    212286 Overview note: Valuation during goods movements
    209864 Moving average price is disproportionately large
    202166 Collective note: Statistical moving average price
    185961 Moving Average Price Calculation
    I have done extensive research on this, let me know if you need to know something specific.

  • Creation of Custom IDoc with Message control for sales Order

    Hi all,
    I am trying to create custom Outbound IDoc with message control.
    I wrote the code in a function module and i want to register that function module. (as in inbound registration of function module as in BD51).I am not knowing if that registration is necessary for outbound Idoc, if so in which transacition?
    Please list me the steps to create a custom IDoc for Message control.
    Thanks in advance,
    Regards,
    John.

    Hi,
    You need to use FM : MASTER_IDOC_DISTRIBUTE to create outbound idoc.fill the data in the tables EDIDC,EDIDD and generate the IDOC.
    check this link:
    Re: Master_IDoc_Distribute
    and use transaction : WEDI for IDOC configurations.
    here you will have all the transactions(step by step) to set the outbound IDOC configurations.
    Regards
    Appana

  • Actual Cost of Product with Price control "S"

    Dear Gurus,
    Is there any report available where we can know the Actual Costs of Materials with Price Control "S".
    In the material master field the actual cost in the "Moving Price Tab" of the material with Price Control "S" is available, but is there any report available for plant level?
    Thanks & Regards,
    Amit Dhanurdhari.

    Hi Amit,
    -- Under Standard Costing, you value your inventory at Standard Costs and any variances in Production Process will be settled to Price Difference Account. You will not be able to find out actual cost per unit. In Multi-level BOM scenario under Standard Costing (CO-PC), variances don't get rolled-up to the next level, only costs get rolled-up.
    -- Under Actual Costing - Material Ledger, You will be able to find out the Actual Cost per Unit. Variances get rolled-up to the next level.
    To explain difference between Standard Costing in CO-PC and Material Ledger briefly....
    You have given Price Indicator as "S" in the material master of "X" material (semi finisher or finished) and you are doing Standard Cost Estimate for arriving at Standard Cost per tonne. Let's say, the Standard Cost per tonne is Rs.1000/-
    Now, when you created production order for 10 tonnes and received output of 10 tonnes (GR). But the total cost incurred on that production order is Rs.1100/-. In this situation, actual cost per tonne is Rs.110.
    But, because you are following Standard Costing, When you post GR against this Production Order, inventory will be posted at Standard cost only, i.e., Rs.1000/-. and the balance of Rs.100 will be posted to Price Difference Account. (and parallally the variance of Rs.100/-) will flow to COPA.
    So, it is clear that, though, at Production Order level you can see the actual cost, at "material" level, you will not be able to see the actual cost per tonne.(as long as you are using only Product Costing and Standard Costing)
    Alternatively, if you maintain Price Indicator as "V", you will able to get the Actual Cost per tonne at material level, but there will be no scope for establishing standard cost and comparison with actual thereof.
    But, the same is possible if you are using Material Ledger (CO-ML). If Material Ledger is active, you will be maintaining "S" in the material master, still, the variances will be settled inventory and you will be able to get the actual cost per tonne. (bothe Standard cost estimate, actual cost per tonne will be possible).
    Pls revert back for further explanation
    Srikanth Munnaluri

  • Issue with copy control of Delivery document to Billing document

    Hi All,
    I am having some issue with copy control of Delivery document to Billing document.
    I am having two line items in Delivery documetn, one is for item to be delivered to customer and other which is created due to batch determination.
    Now , when I create billing document (VF01) with reference to this delivery document , I want only one line item (for the one which needs to be delivered to customer).
    I have used following things in  copy contro from ZLF to ZF2:
    Copying requirements: 004 ( Deliv-related item)
    Data VBRK/VBRP: 007 "(Inv.Split (Rec/Div))
    Is it correct or shall I use something else, so I have only one line item in Billing document.
    Regards
    Nidhi

    Pls. search the forum.
    Pls. refer the below link -
    Line with 0 quantity for main item with batch split
    Thanks

  • Strange issue with table control in dialog programming! Please help!

    Hello everyone:
                I have a table control on screen painter and I have atleast 10 rows on display when user calls the screen. If I have 15 columns then ofcourse user has to scroll down to see extra rows. I have line selection set to "single" for table control so that user can select only one row at a time. This works fine when user does not have to scroll to see extra rows. It is tough for me to explain i.e., if the table control displays 10 rows when the screen opens up then they can only select single row at a time (rows 1 -10). For example user selected row 7 and now they scroll down to see extra rows (for example 13) then it lets them select row 13 also even though I set line selection to "single" in the properties for table control! They should be able to select only one row at a time. Is this some limitation with table control in SAP? Please give me any information you have.
    Thanks.
    Mithun

    Hi,
    As you suspected, this is a limitation in the table control.  You need to take care of the single-selection functionality yourself except for the rows that are actually being displayed.  See [Note 588284|https://service.sap.com/sap/support/notes/588284] for the official SAP explanation.
    Regards,
    Jamie

  • Use of business partner functionality in combination with dual control

    Is there a generally agreed upon procedure to use the business partner functionality in combination with dual control? The problem is that when you block a business partner, the customer/ vendor master data aren't blocked automatically. You can then still use them in transactions, which leads to problems.
    So is there a way to make this work or a procedure to do this?
    Niels Vanwingh

    Thanks Masa,
    I did notice the 'Add external supplier from' in create supplier or bidder option. However there is a small catch and your experience may help.
    Let me explain the requirement and scenario here in SRM 7.
    We are implementing the Registration of Supplier scenario; both ROS and SRM are in same client. When a potential supplier registers themselves in the registration system, a BP number is created (an Internal number range is defined for this). After accepting the potential supplier in pre-select screen the purchaser has two options to transfer the potential supplier from the ROS system to SRM
    Option 1: He can select the accepted potential supplier from the supplier directory option and transfer the business partner to SRM. In this case the business partner number of the potential supplier is retained in SRM and a business partner with supplier and bidder tag is created. However the purchaser does not have any option to select which type of business partner he would like to create like supplier or bidder.
    Option 2: Purchase can go to create supplier or bidder option and choose the u2018Add external supplier formu2019 from the ROS system and create the business partner. The ROS business partner details are copied to the create supplier screen, but the purchaser have to provide an external business partner number for the supplier. This is because we have defined external number range for business partner for the vendors that are replicated from ERP to SRM.
    Objective is the ROS business partner should be retained in SRM with option to create as supplier and bidder and then manually create ERP supplier with same SRM BP number and map against SRM supplier.
    Is there any way we can achieve this?
    In SRM 5.5 with Manage business partner functionality we could achieve as system give us the option which business partner type we would like to create as well as retains the ROS BP number in SRM.
    Regards
    Sandeep

  • How do i reset my mac completely? I have parental controls and cant seem to get to time machine cause i bought the computer with parental controls on it and they did not have the password. How do i completely reset my macbook pro?

    how do i reset my mac completely? I have parental controls and cant seem to get to time machine cause i bought the computer with parental controls on it and they did not have the password. How do i completely reset my macbook pro?

    If you have a rescue email address (which is not the same thing as an alternate email address) on your account then the steps on this page will give you a reset link on your account : http://support.apple.com/kb/HT6170
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620
    Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • Word report with template

    Hello,
    i want to create a word report with template in my vi. I have made a word .dot with bookmarks and my customer should modify it. It look like this:
    Test number: [bookmark/Test number]
    User: [bookmark/User]
    Serial number: [bookmark/Serial number]
    Error: [bookmark/Error]
    Comment: [bookmark/Comment]
    Date: [bookmark/Date]
    Greetings XY
    How can I get this result?
    Test number: 12345
    User: XY
    Serial number: 1
    Error: No
    Comment: First
    Serial number: 2
    Error: Yes
    Comment: Second
    Serial number: 5
    Error: No
    Comment: Third
    Serial number: 9
    Error: Yes
    Comment: Fourth
    Date: 01.01.2006
    Greetings XY
    The data is in tables and strings. The beginning and end of the word report is quiet easy. The difficulty is the middle part it can be consist of different numbers of items.
    How can I made this?
    thankyou
    schwede

    That is ok, but if I do so the result would look like this:
    Test number: 12345
    User: XY
    Serial number: 1
    2
    5
    9
    Error: No
    Yes
    No
    Yes
    Comment: First
    Second
    Third
    Fourth
    Date: 01.01.2006
    Greetings XY
    Do You know what I mean?
    Message Edited by Schwede on 04-03-2006 12:22 AM

Maybe you are looking for