Server based sequential number

Hello!
I have this form on which I need to place a sequence number for control reasons.
How can I create this field?
As PDFs can't write or read txt files, let alone over networks, I suppose I must call a webservice to read the sequence number somewhere, increment it and retrieve this number to be filled in a field in the form, correct?
Possible?
Thank you for any ideas!
Marcos

Hi Paul,
No errors, apparently.
If this helps, I found this listed in Service Management interface:
getSequenceNumber: 1.0 - State: running - Component Id: com.adobe.idp.workflow.dsc.service.WorkflowDSC - Component version: 9.0.0.2.20100902.2.246889
More info:
As for the version, as follows (this is my local machine server):
Adobe LiveCycle ES2
Adobe LiveCycle Administrative Framework
Version: 9.0.0.0, GM
Patch Version: SP2
Service Pack Version: 9.0.0.2.20100902.2.246889
Adobe LiveCycle Workbench ES2
Version: 9.5.0.0.20100908.1.247189
Thank you!
Marcos

Similar Messages

  • Oracle - SQL - update sequential number based on order by clause

    I have a procedure that inserts records in to a temporary table. After procedure execution, I want to update a field in the temp table (recno) with sequential number ordered by a field audit date which is a time stamp field
    For example, after updating the recno field, if I give a query like below,
    Select recno,audit_timestamp,<other fields> from audit_details
    order by audit_timestamp
    the output should display recno in the sequential order. Can any one guide me on how to achieve this using a SQL query?

    The audittime field is a timestamp field.
    If I give the below query, rownum is not in the sequential order, see below few records..
    SELECT rownum,to_char(audit_time_stamp,'dd-mon-yyyy HH24:MI:SS.FF') from audit_details ORDER BY audit_time_stamp
    ROWNUM     to_char(audit_time_stamp,'dd-mon-yyyy HH24:MI:SS.FF')
    16     18-apr-2007 14:30:52.551010
    17     18-apr-2007 16:33:21.900305
    18     18-apr-2007 17:49:44.061420
    19     18-apr-2007 17:49:44.134804
    20     19-apr-2007 16:40:15.775235
    21     22-apr-2007 23:31:01.818784
    ROWNUM     To_char(audit_time_stamp,'dd-mon-yyyy HH24:MI:SS.FF')
    1     01-may-2007 19:17:46.880342
    2     01-may-2007 19:24:04.952571
    3     01-may-2007 19:24:32.182110
    4     01-may-2007 19:25:49.464260
    5     01-may-2007 19:25:52.127018
    6     01-may-2007 19:27:34.099095
    7     01-may-2007 19:30:34.763481
    8     01-may-2007 19:31:06.226955
    9     01-may-2007 19:32:36.727196
    10     01-may-2007 19:40:44.061941

  • How to add 16 bit message sequential number to the byte array

    hi
    iam trying to implement socket programming over UDP. Iam writing for the server side now.I need to send an image file from server to a client via a gateway so basically ive to do hand-shaking with the gateway first and then ive to send image data in a sequence of small messages with a payload of 1 KB.The data message should also include a header of 16 bit sequential number and a bit to indicate end of file.
    Iam able to complete registration process(Iam not sure yet).I dnt know how to include sequential number and a bit to indicate end of file.
    I would like to have your valuable ideas about how to proceed further
    package udp;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class Sender  {
        protected BufferedReader in = null;
        protected FileInputStream image=null;
        protected static boolean end_of_file=true;
    /** pass arguments hostname,port,filename
    * @param args
    * @throws IOException
       public static void main(String[] args) throws IOException{
            DatagramSocket socket = new DatagramSocket(Integer.parseInt(args[1]));
            boolean more_messages = true;
              String str1=null;
                * gateway registration
                try{
                     //send string to emulator
                    String str="%%%GatewayRegistration SENDER test delay 10 drop 0 dupl 0 bandwidth 1000000";
                    byte[] buff=str.getBytes();
                    InetAddress emulator_address = InetAddress.getByName(args[0]);
                    DatagramPacket packet = new DatagramPacket(buff, buff.length,emulator_address,Integer.parseInt(args[0]));
                    socket.send(packet);
                        // figure out response
                    byte[] buf = new byte[1024];
                    DatagramPacket recpack=new DatagramPacket(buf,buf.length);
                    socket.receive(recpack);
                   // socket.setSoTimeout(10000);
                    String str2=str1.valueOf(new String(recpack.getData()));
                    if(socket.equals(null))
                         System.out.println("no acknowledgement from the emulator");
                        socket.close();
                    else if(str2=="%%%GatewayConfirmation")
                    //     String str1=null;
                         System.out.println("rec message"+str2);
                    else
                         System.out.println("not a valid message from emulator");
                         socket.close();
                catch (IOException e) {
                    e.printStackTrace();
                      end_of_file = false;
         /**create a packet with a payload of 1     KB and header of 16 bit sequential number and a bit to indicate end of file
      while(end_of_file!=false)
          String ack="y";
          String seqnum=
           File file = new File(args[2]);                               
                    InputStream is = new FileInputStream(file);                 
            socket.close();
      private byte[] byteArray(InputStream in) throws IOException {
             byte[] readBytes = new byte[1024]; // make a byte array with a length equal to the number of bytes in the stream
          try{
             in.read(readBytes);  // dump all the bytes in the stream into the array
            catch(IOException e)
                 e.printStackTrace();
            return readBytes;
      

    HI Rolf.k.
    Thank you for the small program it was helpfull.
    You got right about that proberly there  will be conflict with some spurios data, I can already detect that when writing the data to a spreadsheet file.
    I writes the data in such a way, that in each line there will be a date, a timestamp, a tab and a timestamp at the end. That means two columns.
    When i set given samplerate up, that controls the rate of the data outflow from the device, (1,56 Hz - 200 Hz),   the data file that i write to , looks unorderet.
     i get more than one timestamp and severel datavalues in every line and so on down the spreadsheet file.
    Now the question is: Could it be that the function that writes the data to the file,  can't handle the speed of the dataflow in such a way that the time stamp cant follow with the data flowspeed. so i'm trying to set the timestamp to be  with fractions of the seconds by adding the unit (<digit>) in the timestamp icon but its not working. Meaby when i take the fractions off a second within the timestamp i can get every timestamp with its right data value. Am i in deeb water or what do You mean!??
    AAttached Pics part of program and a logfile over data written to file
    regards
    Zamzam
    HFZ
    Attachments:
    DataFlowWR.JPG ‏159 KB
    Datalogfile.JPG ‏386 KB

  • Sequentially number layer sets

    Great, apparently if I add Tags it wipes out my question and just posts the tags as the message body. Brilliant. Re-typing...
    I have a large and growing PSD with many layer sets (folders of layers.) I need to sequentially number the layer sets, but preserve their existing names. For example, layer set named "foo" should be renamed "001 foo",  the next layer set "bar" should be renamed "002 bar" and so on.
    Doing this manually would take a long time, but more importantly, as I add new layer sets and reorder them I don't want to have to do it all over again.
    I am not a programmer so I don't know where to begin writing this script. Google helped me find a few scripts that do something similar, but not exactly what I want. Most of the scripts I found will rename layers, but I need to rename the layer sets (folders.)
    If it helps, I'll explain what I'm ultimately trying to do. I want to export each of my layer sets to an image, and have those images numbered sequentially based on the order of the layer sets. I already found a script that will export all of my layer sets to JPG images, so if I can find the script described above, I should be able to do this in two steps (1. rename layer sets, 2. export images.) If there is an easier or better approach, let me know.
    I have Photoshop CS5 on Mac OSX Lion.
    Any help is appreciated! Thanks!

    Could you try this?
    // add sequential three places number to beginning of layersets’ names or change existing three places number;
    // 2012, use at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var theSets = collectLayerSets(myDocument);
    for (var m = 0; m < theSets.length; m++) {
              var thisSet = theSets[m];
              var myRegExp = /^\d{3}/;
              var theNumber = theSets.length - m;
              if (thisSet.name.match(myRegExp) == null) {thisSet.name = bufferNumberWithZeros(theNumber, 3) + " " + thisSet.name}
              else {thisSet.name = thisSet.name.replace(myRegExp, bufferNumberWithZeros(theNumber, 3))}
    ////// function collect all layersets //////
    function collectLayerSets (theParent) {
              if (!allLayerSets) {var allLayerSets = new Array}
              else {};
              for (var m = theParent.layers.length - 1; m >= 0;m--) {
                        var theLayer = theParent.layers[m];
    // apply the function to layersets;
                        if (theLayer.typename == "LayerSet") {
                                  allLayerSets = allLayerSets.concat(collectLayerSets(theLayer))
                                  allLayerSets = allLayerSets.concat(theLayer);
              return allLayerSets
    ////// buffer number with zeros //////
    function bufferNumberWithZeros (number, places) {
              var theNumberString = String(number);
              for (var o = 0; o < (places - String(number).length); o++) {
                        theNumberString = String("0" + theNumberString)
              return theNumberString

  • Create a Sequential number of RF menu

    Hi,
    where can I create a Sequential number of RF menu.
    I need it to define the menu management.
    thank.
    Dede

    Hi,
    If you see, the menu management, in mobile data entry.
    Copy the main menu option from that, there u can see the serial numbers also based on the no. of menu options
    Thanks
    Aktar

  • Sequential Number SharePoint List

    Hi
    We are attempting to create a custom number that will automatically increment and decrement depending on the position of a new list item.
    For example, if I have a custom column named Sequence No. and I create a new item number 3, then all items from number 3 onwards should be automatically +1. The user should be able to capture the sequence number and have this value recalculated
    for other list items.
    The ID of the item cannot be used because there may be a situation where a user deletes an item. We have used this URL{SiteUrl}/_layouts/Reorder.aspx?List={ListId} for the reordering of items and we made the hidden order column
    available however if we change the position the order number is not always consistent - 200,250,275,300,400,450.
    We assume that an additional list to contain the numbering maybe a solution. Any suggestions for workflow and Jquery would be greatly appreciated.
    Thanks
    Mark

    Try below:
    https://www.nothingbutsharepoint.com/sites/eusp/pages/sharepoint-how-to-create-an-auto-incrementing-number-field-for-use-in-a-custom-id-part-1.aspx
    Or
    try below Script
    http://sharepoint.stackexchange.com/questions/88340/how-to-auto-populate-a-list-column-with-a-sequential-number
    ​<script src="/Shared%20Documents/jquery-1.10.2.min.js"></script>
    <script src="/Shared%20Documents/sputility.min.js"></script>
    <script>
    // Get the current Site
    var siteUrl = '/';
    function retrieveListItems() {
    var clientContext = new SP.ClientContext(siteUrl);
    // Get the liste instance
    var oList = clientContext.get_web().get_lists().getByTitle('sequential number');
    var camlQuery = new SP.CamlQuery();
    // Get only the last element
    camlQuery.set_viewXml('<Query><OrderBy><FieldRef Name=\'ID\' Ascending=\'False\' /></OrderBy></Query><RowLimit>1</RowLimit></View>');
    this.collListItem = oList.getItems(camlQuery);
    clientContext.load(collListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    function onQuerySucceeded(sender, args) {
    var listItemInfo = '';
    var listItemEnumerator = collListItem.getEnumerator();
    while (listItemEnumerator.moveNext()) {
    var oListItem = listItemEnumerator.get_current();
    var listItemInfovalue = oListItem.get_item('Occurrence_x0020__x0023_');
    // Based in you request the id is : 14-00001
    // Split the first
    var res = listItemInfovalue.split("-");
    console.log(res[1]);
    // increment the index
    var newId = parseInt(res[1])+1;
    // create the new id
    SPUtility.GetSPField('Occurrence #').SetValue(res[0] + '-' + pad(newId, 5) );
    console.log(listItemInfo.toString());
    function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    // Create new id with fixed size :
    // exp : 00001, 00001
    // num : is the number
    // size : is the number size
    function pad(num, size) {
    var s = num+"";
    while (s.length < size) s = "0" + s;
    return s;
    $(document).ready(function(){
    ExecuteOrDelayUntilScriptLoaded(retrieveListItems, "sp.js");
    </script>
    If this helped you resolve your issue, please mark it Answered

  • Cisco QM/Calabrio - server based recording - how many NICs?

    I'm looking to replace a Verint system that is doing server-based recording with Call Mgr 4.1.3. We are going to upgrade to 7.1.x soon.
    My customer is a CCX CAD/Citrix environment. I see that QM/Calabrio also supports server-based recording.
    We have a number of subnets that we need to SPAN. I have a couple of questions:
    1) How many recording NICs can be in one QM recording server? Verint can do 4 plus a management NIC.
    2) How many recording servers can be supported? We also have a remote WAN location that needs a recording server.
    3) Does QM require an MCS server to run, or will it install on general server hardware (we are an IBM shop and have the servers.)
    Thanks.

    Questions about Cisco Call recording and Quality Management or Workforce management should be posted
    under the Contact Center Applications at https://www.myciscocommunity.com/community/partner/collaboration/contactcenter/apps
    I am checking some of the details for question 1 & 2  and will respond to your questions in a few hours
    for 3 The QM application can be deployed on MCS or MCS equivelent servers as determined by the partner/customer

  • Referencing a "locally installed" Java applet from a server-based HTML page

    How does one reference a "locally installed" Java applet from a server-based HTML page (i.e. via the applet, object, or embed tags)? I have seen references in documentation that this is possible, but I have not seen any examples. I have tried a few things, but nothing seems to be working.
    Some background...
    I'm working on a web site that aggregates Internet video. For many users, I would like the site to work "without" requiring Java to be installed (or any prompts, etc.). This version of the site allows users to stream videos directly over the Internet and does not require any sort of access to the local system.
    However, in addition, I have a download manager that can be installed on the local system. Currently, it's a Windows-based "service" that is always running in the background, downloading files, etc. (with plans to later support other OSes).
    My dilemma is trying to communicate between my web site running in the local browser (executing JavaScript code) and the download manager. I call this component the "gateway". I need the gateway to be able to do the following:
    1) Pass user credentials from the web browser UI to the download manager (so it can communicate with my servers).
    2) Check the status of downloaded videos
    3) Launch a local media player (such as Windows Media, QuickTime, etc.) (or perhaps tell the download manager to launch the media player).
    Under Windows XP, I have an ActiveX control that can do these things. It communicates with the download manager via reading/writing to a shared XML configuration file.
    Unfortunately, under Vista and IE7 Protected Mode, ActiveX controls have become very restricted and my gateway no longer works. As such, I am looking at using Java for the gateway (also giving me the additional benefits of supporting additional browsers and OSes).
    From my understanding, I believe I can created a "face-less" Java applet, whose methods can be called from JavaScript. Ideally, I'm thinking I could install the applet onto the local system at the same time the download manager is installed. This would give the applet the security permissions it needs to communicate with the download manager.
    Thanks for any help and suggestions!

    Hi,
    Put the .jar file and the .class file in the path mentioned in one of the aliases in the plsql.conf file like /images or create
    a seperate directory and create an alias like /applets "path" in the plsql.conf file.
    <html>
    <body>
    <applet code=com.chartapplet.chart.BarChartApplet
    codebase=/applets/
    archive=/applets/chart.jar width=300 height=200>
    <param name=background value="white">
    </body>
    </html>
    Hope this helps.
    Thanks,
    Sharmila

  • Creating server based folder on mac/me IMAP- Problem!!!

    I'm having a problem creating an IMAP server based folder to sync with my iphone.
    I can create one for my personal domain email account, which, when sync via itunes appears in my mail app on the iphone.
    But when I try to create one for my .mac/.me account, it does not appear in my Mail app on my computer, let alone on my iphone.
    I click the '+' at the bottom of the left hand pane, click 'new mailbox' and then using location 'mac', with the nice picture of the cloud, enter the name I'd like it to have.
    Can anyone tell me what I'm doing wrong, or do I have a bug?
    Thanks
    Al

    http://www.biscade.com/2010/09/bootable-macpro-raid/

  • How do I share server based Ical calendars to external users on google calendar

    I need to share some server based calendars with google calendar.  I know how to export but how do I keep the connection live so that when I put a new event into iCal on the server it automatically updates to google calendar?  I was looking for a way to publish my server calendar to a hosting server but I can not even work out how to do that.
    Any help would be appreciated.

    Why not ask in the iCal forum area? - https://discussions.apple.com/community/applications/ical

  • Jdeveloper Version for MSCA development with MWA server based programming

    Any one Please provide the Oracle Jdeveloper version for Mobile Supply Chain Applications with MWA server based programming. This application basically runs on Whse mgmt responsibility. Any body who is developing this type application, please provide the Oracle Jdeveloper VERSION using for programming.
    Thanks,
    Deepak

    my issue is resolved. i'm getting this problem when i add just java class file to the project. but when i also add the business componets and page component and generate controller class to the project , i can see that import is recognized by the java class file. So i guess i have to delete all the unwanted business components that i have created at the end.
    Thanks
    Sunny
    Edited by: user13369509 on Mar 16, 2011 12:44 PM

  • Tax report for Spain - Sequential Number

    The layout that I have prepared for the Tax report (RFUMSV00, Tx: S_ALR_87100833) shows the column "Sequential number." Thus, I have a relationship without jumping straight to the numbering of all invoices with VAT.
    The system assigns a "Sequential number" for SAP document number. The "problem" arises when there is a bill, a SAP document, with more than one tax indicator of VAT. Then some lines appear in the Declaration of VAT with the Sequential number field in blank and that is because the number of the document (this bill) is already listed in the Declaration in another line with its own Sequential number .
    How do you work with it? Can I somehow avoid that remove this Sequential number blank?

    Hi (again)
    After reading the SAP note number 1628714 ( https://websmp107.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1628714&_NLANG=E ), I think that there isn't an SAP-standard solution.
    Best regards.
    Paco M

  • Save As.. and Server Based Homes

    Hi there
    I'm setting up a new Client/Server system with OSX 10.6.2 on both sides.
    There is one "problem" in using server based homes:
    When you have a document opend (QXP7, QXP8, IDD CS3, IDD CS4....) from the server, and you choose "Save as" from the menu, you allways end up in the "Documents" folder of you home directory. This also happens when you want to place pictures in the mentioned applications.
    Local accounts don't show this issue.
    Is there any cure for this problem?
    best regards
    OH

    I'm confused by your post. What do you mean by "logged on locally"? When you're using RDC from a Mac to a Windows workstation or server you're logging on remotely.
    If you're attempting to log in to the server via RDC (remotely) and on the server itself (locally) then you will be forced to select one logon and the other will be locked or disconnected. This is expected.
    Can you clarify how and where you're logging in?
    bill
    1 GHz Powerbook G4   Mac OS X (10.4.8)  

  • Pdf's freeze using Reader in server based Mac 10.6 or 10.5

    I support several hundred iMac's for a school district. We have a site license for Adobe CS4 (and CS3). The user's accounts are server based. The programs are installed on the local computer. If I create a local account and log into that local account all functions normally. However, if I or anyone else for that matter logs in using the server based account, pdf's freeze. Also, when logged into the server, if you try to install a new version of Reader it errors looking for a disk. What the program is really looking for is the users' local account which of course doesn't exist locally because I am logged into the server. I've had Apple out to look at the server and local iMacs. They say all is functioning normally and this is a known Adobe problem. Apparently the program can't find the users account on the server. I have used a workaround with Preview and Word but that's not a solution. Any ideas?

    Thanks for the thought, Barbara B. Not sure if this counts, but emailed the file to myself [different email account, same computer] but it would not play as an email attachment. Any suggestions for a web upload where I can test your suggestion? Seems like there should be a different save option other than IMAGES ONLY but that is the only option I'm given.

  • Server-based output

    I've been working on a help system but have not published it
    yet. In my RH experience I haven't dealt with system issues. Now my
    current project needs to be published, and I'm afraid my version of
    RH is insufficient. It's Robohelp HTML X5, and it apparently does
    not create server-based help. Is that correct? (This will be much
    easier if I'm wrong.) The software being documented is .NET-based,
    so it appears I need Robohelp Pro for .NET. I spoke with Adobe and
    there is NO migration path from Robohelp HTML X5 to Robohelp Pro
    for .NET. Meaning I have to spend the full $2000 for it. This in
    turn creates a problem for me persuading the development group
    about this.
    So, is there any way for Robohelp HTML X5 to create
    server-based help? Can anyone suggest a migration path from what I
    have that does not cost $2000?

    Chris
    It is entirely wrong to think that RH HTML X5 does not
    produce server based help. It is the webhelp output and on my site
    you will see many links to RH demos which are running on the same
    server as my site. Professionally most of the help I produce is
    webhelp running on servers.
    .NET is a different issue but I believe webhelp will run
    there but there may be extra features the .NET version gives.
    However, if you don't need them...
    I am sure some with .NET knowledge will come in on that.

Maybe you are looking for

  • Issue with game on FB

    I am having a problem with a game I play on FB.  It's called "Treasure Isle'.  The game takes forever to load and when it does it is very slow.  As soon as I right click to get the Adobe player settings panel to come up it freezes the who le browser.

  • Is this a bug in mx:ComboBox ?

    Hi All, I'm using a mx:ComboBox control in my extension project for InDesign CS5/CS55.5/CS6 using Extension Builder 2.1, Flash Builder 4.6 and Extension Builder 3.4 SDK. Problem: When I click my ComboBox control(the text part excluding the down arrow

  • How to find query/program/rdf behind EBS default XML reports

    There is a report in Purchsing Module "Standard Purchase Order " its data group name is "Standard Purchase Order Data Source" and Code is "PO_STANDARD_PO". i couldn't find its concurrent program. I am looking for query behind this report. how can i f

  • Why is it impossible to buy the LR6 upgrade for the LR5 that I have bought one year ago?

    Hello, I have spent about four hours trying to get the LR6 upgrade for the perfectly legally bought LR5. Nothing is possible. The CC contract does not apply where I live. It is the only choice I have in France. The ID I got from Adobe when I last upd

  • Help with building nav bar in DW cs3

    Is it possible to turn text into linkable buttons in DW cs3? I have built a nav panel by inserting a table. I then typed in my menu options. Can i now turn these into links that can be used to navigate my site? Any help would be greatly appreciated.