Unique ID or reference number?

How do I create or enable a form to generate a unique ID or reference number when submitted?
The person that receives a copy of his form should see the number as well as the author.

Hi,
Auto-generated field filling is not something we support currently.
I suggest you to add or vote on feature ideas:
http://forums.adobe.com/community/formscentral?view=idea
If you need to add a new idea click "Create an idea" under "Actions" in the top right.
Thanks,
Pengpeng

Similar Messages

  • How to change the unique reference number of a EUL in Discoverer 4i

    Hi,
    My Discoverer version is 4i which comes default with EBS 11i.
    Now i have created a New Custom EUL Using Database Exp and Imp.
    According "http://docs.oracle.com/cd/B25016_08/doc/dl/bi/B13916_04/maintain_eul.htm#i1008612"
    "if you use the database export and import utilities to copy an EUL, the new EUL (including its reference number) will be identical to the original EUL"
    I have to change the Reference Number of New EUL.
    This can be done by
    start d:\<ORACLE_ HOME>\discoverer\util\eul5_id.sql
    But i could not find this sql in 4i Discoverer Home.
    /8.0.6/discwb4/util
    Can any one help me in finding this.
    Thanks in Advance
    Krishna

    Hi Krishna
    The file is not called EUL5_ID.SQL in Discoverer 4i, I believe it is called EUL_ID.SQL.
    Oracle only introduced the EUL5 notation when Discoverer 10g was released. This has continued on into 11g.
    Why not go straight to 11g? Discoverer 4 is old and no longer supported.
    Best wishes
    Michael

  • How do I link and be able to go to a reference number in the body of the text to the references I am wishing to go to?

    Example:
    Obstructive sleep apnea (OSA) is associated with increased
    reduced slow wave sleep.1
    to:
    1. Ng AK, Guan C. Impact of obstructive sleep apnea on sleep-wake stage ratio.
    Conf Proc IEEE Eng Med Biol Soc 2012;2012:4660-3.
    Thank you,
    David A Walker, DO

    Hi David,
    Since your post is in the Standards & Accessibility (tagged PDF) discussion area, I am guessing that your objective is to tag the reference and footnote or endnote to ensure accessibility by assistive technology users. A good practice is to nest the reference number in a Reference tag, and the footnote or endnote in a Note tag, then position the Note as close as practical to the Reference in the tag structure without disrupting the reading order. In this case the tags would look something like this:
    <P>
    ...Obstructive sleep apnea (OSA) is associated with increased reduced slow wave sleep.
    ...<Reference>
    ......1
    ...<Note>
    ......1. Ng AK, Guan C. Impact of obstructive sleep apnea on sleep-wake stage ratio.
    The current version of the Matterhorn Protocol requires the Note tag to have a unique ID in the Object Properties. The ID is not used for anything though, and the requirement will reportedly be removed from future versions.
    Hope this helps.
    a 'C' student

  • How can I get a Visa Reference Number on a Spectrum Analyzer?

    I have a GPIB Address of 18 on a 8593 EM Spectrum Analyzer. How can I get a VISA reference Number for my VI program

    You must have a pretty old version of LabVIEW if you need a session ID instead of just a VISA Resource. If that's the case, you need to first use an VISA Open function in which you specify a resource name of GPIB::18. The open function will return a unique ID that you wire to either VISA Write/Read or a subVI in a driver.

  • Alternate way of finding the Windows Reference Number

    Hello,
    I am using some of the Windows Utilities VIs and I have run into a snag. In my application I lauch multiple template VIs and hence have many Windows that have the same name. This causes a bit of confusion when using a VI like "Flash Title Bar" which takes in a window's name to determine it's reference number. MY question is, is there an alternative method of finding out a window's reference number without having to supply the window's name? Something that determines each window's unique number. I checked various Application and VI Properties without much luck. Perhaps is there some way of converting VI reference to Windows Reference. I dunno. Any ideas???
    Thanks fellow LabVIEWers,
    Glen D.

    AstroMed Glen wrote:
    > Hello,
    >
    > I am using some of the Windows Utilities VIs and I have run into
    > a snag. In my application I lauch multiple template VIs and hence have
    > many Windows that have the same name. This causes a bit of confusion
    > when using a VI like "Flash Title Bar" which takes in a window's name
    > to determine it's reference number. MY question is, is there an
    > alternative method of finding out a window's reference number without
    > having to supply the window's name? Something that determines each
    > window's unique number. I checked various Application and VI
    > Properties without much luck. Perhaps is there some way of converting
    > VI reference to Windows Reference. I dunno. Any ideas???
    Hmm, try attached VI. LabVIEW 7.0 and higher only!
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions
    Attachments:
    WIN_Get_Front_Panel_Refnum.vi ‏31 KB

  • Auto reference number

    How do I display a reference number, ie the primary key value
    of a particular record on a page? I have a form on the first page
    and after submitting and being entered into the database, the next
    page should show the unique primary key for that record from the
    database. I assume I must use a session variable but am not too
    sure on how to do this. Thanks very much.

    This is a little complicated, but explainable.
    First, the primary key isn’t generated until after the
    form is submitted and the record is inserted and the user is
    already redirected to the next page. So here’s what
    I’ve done.
    1. On the form page, generate a random name. The only way I
    know of is to use the server object to generate a temporary file
    name with the GetTempName method.
    BTW: I think this bastardizes the purpose of the GetTempName
    method. If anybody has a “proper” way to generate a
    random value, please add your ideas.
    2. Assign that random value to a session variable.
    3. Assign the same session variable to a hidden field on the
    form. It will be inserted into a field in the database to a field
    called “randomtemp” or something like that.
    4. Let Dreamweaver create the code to submit the form and
    insert the record into the database and redirect to the second
    page.
    5. On the second page, pull up the record using the random
    value session variable from the previous page.
    Here’s the code and explanation.
    RANDOM NAME ON FORM PAGE
    <%
    ' create a random session variable
    DIM objRandomName
    Set objRandomName =
    Server.CreateObject("Scripting.FileSystemObject")
    Session("sesRandomName") = Replace(CStr(Date),"/","") &
    mid(objRandomName.GetTempName, 4, 4)
    Session("sesRandomName") = Session("sesRandomName") &
    "ID" & (rsUserInfo.Fields.Item("id").Value)
    Set objRandomName = Nothing
    %>
    The explanation:
    I generate today’s date, take out the “/”
    and add to that the temp name generated by the server object
    GetTempName method. BUT, the tempname has a period and crap, so I
    trim off the front and back and use the inside 4 characters. For
    good measure I add the user ID (a user is logged in at this point,
    so I have that info. You can remove that line if you don’t
    have a user.)
    Today’s date is included just to safeguard against a
    4-digit random value repeating. If it repeats, it probably
    won’t be on the same date.
    Anyway, that generates a random value and assigns it to a
    session variable.
    ASSIGN THE RANDOM VALUE TO A HIDDEN FIELD ON THE FORM
    <input name="hiddenField" type="hidden"
    value="<%=Session("sesRandomName") %>" />
    Include the hidden field in the Insert Record Server Behavior
    in Dreamweaver. Insert the value into a field called
    “randomtemp” (or whatever you like). Let Dreamweaver
    redirect to the next page.
    OPEN RECORD ON THE NEXT PAGE
    On the next page, create a record set that selects the record
    with the field “randomtemp” equal to
    Session("sesRandomName"). Get the ID from the record set.
    ANOTHER VARIATION
    Run the GetTempName method twice, trimming it both times to
    generate an 8-digit value.
    Session("sesRandomName") = mid(objRandomName.GetTempName, 4,
    4) & mid(objRandomName.GetTempName, 4, 4)
    THAT'S IT
    I hope that helps. It's a little convoluted assigning the
    session variable a random value (and I'd love to know an "official"
    way), but it works.
    Good luck.

  • Question about finding whether a reference number is NOT in the database?

    Hello,
    I use the following code to test whether the reference number is in the database
    <ul><li>CURSOR cur_yellow</li></ul>
    <ul><li>IS SELECT</li></ul>
    <ul><li>REFERENCE_NO,</li></ul>
    <ul><li>COMPANY_NAME</li></ul>
    <ul><li>FROM CONSULTANTS;</li></ul>
    <ul><li>rec_yellow cur_yellow%ROWTYPE;</li></ul>
    <ul><li>BEGIN</li></ul>
    <ul><li> OPEN cur_yellow;</li></ul>
    <ul><li> LOOP</li></ul>
    <ul><li> FETCH cur_yellow INTO rec_yellow;</li></ul>
    <ul><li> EXIT WHEN cur_yellow%NOTFOUND;</li></ul>
    <ul><li> IF ref_no = rec_yellow.REFERENCE_NO</li></ul>
    <ul><li> THEN</li></ul>
    HTP.print ('<ul><li><span class="style5">The information concerning the consultant selected has been deleted from the database.</span></li></ul>');
    <ul><li> exp := 1; -- used to make code bullet proof</li></ul>
    <ul><li> END IF;</li></ul>
    <ul><li> END LOOP;</li></ul>
    <ul><li> CLOSE cur_yellow;</li></ul>
    Do you have any ideas for how to write code to test whether the reference number is NOT in the database.
    Thanks
    Doug

    Hallo,
    in general, yes, but I think , it will be better without cursor:
    declare
    v_dummy number;
    BEGIN
    EXECUTE IMMEDIATE 'select 1 from dual where
    exists (select 1 from user_indexes where index_name = : ind_name) USING ''DOUGLASMYINDEX'
    INTO v_1;
    -- something
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    END;
    Is it necessary to perform it in dynamic SQL ?
    declare
    v_dummy number;
    BEGIN
    select 1 into v_1 from dual where
    exists (select 1 from user_indexes where index_name = ''DOUGLASMYINDEX''')
    INTO v_1;
    -- something
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    NULL;
    END;
    Regards
    Dmytro Dekhtyaryuk

  • Error in generating reference number of process

    Hi All Masters,
    I'm new in HCM P&F.
    Currently I have a problem. I was running a sample process or copied process from the sample. Clicking 'check and send'. Still OK.
    But when I clicked 'Send' button, I got an error message displayed 'Error in generating reference number of process'
    Would you please help me what's wrong with that? FYI, I've tried to activate Case Management, but maybe, there is still any loss in that area?
    Thank you for your help
    Regards,
    Pradita Herdiansyah

    Hi Otto,
    Neither did I. I don't have any complete resources. Maybe actually there are exists somewhere, but just I don't find it yet.
    I try to learn and doing that by watching this forum and sap help/doc, just maybe there are other people who have same obstacles with me in developing this and then I will get solutions for it.
    Have a nice day...
    Regards,
    Pradita Herdiansyah

  • Reference Number not coming in MIGO

    Dear Sirs,
    out of 100 quantity in PO I did MIGO of 10-9-10 quantity in three of MIGO transaction, but at the time of Cancellation of one of the MIGO I am not getting the reference of original GR Number in the cancelled document, Please advice if any customization is required for getting the reference number.
    Valuable suggestions will be rewared with suitable points.
    Regards,
    SagarRK
    Edited by: SagarRK on Apr 15, 2010 9:15 AM

    Goods Receipt done with reference to PO when you post material document in MIGO (GR,GI etc) a tab named "Purchase Order History" created automatically in Item detail level of Purchase order ME23N. so you can get the Original GR Reference number from PO History tab when you display that reference PO
    Edited by: Muhammad Ali on Apr 15, 2010 10:14 AM

  • External Reference number not copied in Service Confirmation

    Hi,
    We are on CRM 5.0 SP11. We have Mobile Service 5.0 SP11.
    In Mobile Service in the Service Order creation screen we have a window to input External reference number. When we create a Service Confirmation as a followup document of Service Order, SAP by default only allows to copy Reference Object,Subject and notes (both header and item level) to the Confirmation.
    Does anyone have idea how we can copy the External Reference number to Confirmation when we do followup to Service Orders on mobile.
    This functionality works fine on Enterprise.
    Thanks,
    Yatin

    Hello,
                 The external number won't be copied by standard as Wolhfard said they are different documents.
    You need to code this to make this copy from service order to Service confirmation.
    Open your Mobile Application Studio and make following changes.
    Open the BusinessObject "BOMSVHelper"  and view the code. Go to the Method "CopySrvTransHeader"  write the following code in it.
    Find the code
    UserName = _unwind(BusinessRootObject.UserDataDictionary.GetData("USERNAME"))
    and paste the following code below it.
            Dim servconfobj As BusinessObject = bocopysrvtrans.SalesInfo
            Dim servtransobj As BusinessObject = orderheaderobj.SalesInfo
            servconfobj.SetAttribute("PoNumberSold", servtransobj.GetAttribute("PoNumberSold"))
            servconfobj.SetAttribute("PoDateSold", servtransobj.GetAttribute("PoDateSold"))

  • What to do if you lost apple claim reference number for downloading Mountain Lion

    Okay, So I just registered my Macbook pro for Apple's Up-to-date program that lets you upgrade to mountain lion if you bought a Mac starting june 11.. So i registered my macbook pro and i forgot to copy the Claim reference number that they give you.. What do you all suggest i do?

    Been waiting 6 hours now, still no email after submitting the form for my retina MBP.  You'd think at least the MBP with retina would be a quick confirmation, since they didn't exist before the eligibility period for getting a free Mountain Lion update....
    Getting rather frustrated here.  I took today off to deal with the upgrade and potential clean install so I'd have it up and running before returning to work tomorrow.  And I've had absolutely NOTHING from apple yet...

  • Where do i find the reference number for my preorder? and yes i no this is prob a dumb question but i cant find it anywhere......

    Where do i find the reference number for my preorder? and yes i no this is prob a dumb question but i cant find it anywhere......

        Hi droidboy52999,
    Your email won't have the same confirmation number as it was ordered over the phone. You will need the last name used for the order, the location code (this ends in 01) and an order number (five to six digit number). Please keep us posted if you need further assistance with this.
    Thank you,
    MariaC_VZW
    Please follow us on Twitter @VZWSupport

  • Populate header text with reference number and vendor name

    Hi Experts,
    My client wants to populate the line item text field - SGTXT in MIRO / FB60 with the reference number field XBLNR and the vendor name.
    Is it possible to do it before the invoice get posted?. Like, just after the user entered the vendor account number and the reference number in FB60 system picks the vendor name against the vendor number from LFA1 table and the reference number entered in FB60 screen and populates them in text field ?
    Similarly in MIRO - before the invoice get posted is it possible to pick the reference number from MIRO screen and pick the vendor name based on the PO number entered on the MIRO screen.
    Please advise how to do this.
    Thank you
    Shino

    Hi
    This can be achieved by using a User Exit in Substitution rule. This is done through GGB1. Define the rule
    Prerequisite
    (System T Code =FB01 or MIRO) and Account Type = K
    Substitution
    User Exit
    The following link will be of help to you to define a user exit in substitutition rule
    http://help.sap.com/saphelp_46c/helpdata/en/5b/d231a843c611d182b30000e829fbfe/content.htm
    Regards
    Sanil Bhandari

  • F110 - reference number not getting updated.

    Hi,
    The reference number in the line items after running F110 is not getting updated. Is there any configuration I need to do .
    Please help.
    Thanks
    Sabu

    Hi,
    Thanks .
    After applying that note it has now updated the clearing document with reference number from its original document. But I want the reference document to flow/updated into the F110 screen -> DME attributes->refrence number. The table it has to get updated is REGUT-RENUM.
    I am not sure if this has to happen as a SAP standard functionality but this is the requirement given to me.
    Thanks in advance.
    SMS

  • Get CMdetails based on Reference Number

    Hi,
    I am developing Credit Memo Details report, here user wants all the details including Acct Docu Number based on Reference number.
    The report is working fine if the Credit memo has account docu number, but now user wants this report to work if Cmemo does not have ACCtDocuNum also.
    Please help me to modify this report so that it displays all details with out AcctDocuNumber also based on Reference number.
    Thanks,
    Neelu.
    FORM get_data.
      SELECT a~vbeln a~posnr a~vgbel a~netwr a~fkimg a~matnr
             b~vkorg b~vtweg b~spart b~kunag b~xblnr b~bstnk_vf
             FROM vbrp AS a
             INNER JOIN vbrk AS b
              ON a~vbeln = b~vbeln
              INTO TABLE ivbrkp
              WHERE b~xblnr IN s_xblnr
              AND b~fkart = 'ZMKD'.
      IF sy-subrc = 0.
        SELECT kunnr matnr sprice eprice eohqty bstkd crmemo
              FROM zppprice INTO TABLE izppprice
              FOR ALL ENTRIES IN ivbrkp
              WHERE kunnr = ivbrkp-kunag
                    AND matnr = ivbrkp-matnr
                    AND crmemo = ivbrkp-vgbel.
      ENDIF.
    ENDFORM.                    " get_data
    *&      Form  process_data
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM process_data.
      DATA: lv_name1 LIKE kna1-name1,
            lv_auart LIKE vbak-auart,
            lv_augru LIKE vbak-augru,
            lv_werks LIKE vbap-werks,
            lv_fkdat LIKE vbkd-fkdat,
            lv_knumv LIKE vbak-knumv,
            lv_kbetr LIKE konv-kbetr.
      LOOP AT ivbrkp.
        g_bqty  =  ivbrkp-fkimg.
        MOVE ivbrkp-vbeln      TO iout-vbeln.
        MOVE ivbrkp-posnr      TO iout-posnr.
        MOVE ivbrkp-vgbel      TO iout-vgbel.
        MOVE ivbrkp-netwr      TO iout-netwr.
        MOVE g_bqty            TO iout-g_bqty.
        MOVE ivbrkp-vkorg      TO iout-vkorg.
        MOVE ivbrkp-vtweg      TO iout-vtweg.
        MOVE ivbrkp-spart      TO iout-spart.
        MOVE ivbrkp-kunag      TO iout-kunnr.
        MOVE ivbrkp-matnr      TO iout-matnr.
        MOVE ivbrkp-xblnr      TO iout-xblnr.
        MOVE ivbrkp-bstnk_vf   TO iout-bstnk_vf.
        READ TABLE izppprice WITH KEY kunnr = ivbrkp-kunag
                                      matnr = ivbrkp-matnr
                                      crmemo = ivbrkp-vgbel.
        g_qdiff =  izppprice-eohqty - g_bqty.
        IF sy-subrc = 0.
          MOVE izppprice-sprice  TO iout-sprice.
          MOVE izppprice-eprice  TO iout-eprice.
          MOVE izppprice-eohqty  TO iout-eohqty.
          MOVE g_qdiff           TO iout-g_qdiff.
        ENDIF.
        SELECT SINGLE name1
                FROM kna1 INTO lv_name1 WHERE kunnr = ivbrkp-kunag.
        IF sy-subrc = 0.
          MOVE lv_name1 TO iout-name1.
        ENDIF.
        SELECT SINGLE auart augru FROM vbak INTO (lv_auart, lv_augru)
                                  WHERE vbeln = ivbrkp-vgbel.
        IF sy-subrc = 0.
          MOVE lv_auart TO iout-auart.
          MOVE lv_augru TO iout-augru.
        ENDIF.
        SELECT SINGLE werks FROM vbap INTO lv_werks
                            WHERE vbeln = ivbrkp-vgbel
                              AND posnr = ivbrkp-posnr.
        IF sy-subrc = 0.
          MOVE lv_werks TO iout-werks.
        ENDIF.
        SELECT SINGLE fkdat FROM vbkd INTO lv_fkdat
                            WHERE vbeln = ivbrkp-vgbel.
        IF sy-subrc = 0.
          MOVE lv_fkdat TO iout-fkdat.
        ENDIF.
        SELECT SINGLE knumv
               FROM vbak INTO lv_knumv
                WHERE vbeln = ivbrkp-vgbel.
        SELECT SINGLE kbetr
               FROM konv INTO lv_kbetr
                WHERE knumv = lv_knumv
                AND kschl = 'ZCPP'.
        IF sy-subrc = 0.
          MOVE lv_kbetr TO iout-g_pdiff.
        ENDIF.
        APPEND iout.
        CLEAR iout.
        CLEAR ivbrkp.
        CLEAR lv_name1.
        CLEAR lv_auart.
        CLEAR lv_augru.
        CLEAR lv_werks.
        CLEAR lv_fkdat.
        CLEAR lv_knumv.
        CLEAR lv_kbetr.
      ENDLOOP.
    ENDFORM.                    " process_data

    Hi,
    There is std Tcode MB25 in sap or u can use RESB table to see reservation against production order.
    Arun

Maybe you are looking for

  • In APEX clicking the hyper link doesn't trigger session timeout page

    Hi All, I have a question about the session time out in APEX application. I have created a simple APEX application. In the SQL report region section, i have code like this: SELECT DOC_Name, DOC_URL, '<a href="' || DOC_URL || ' target="_blank"/">Downl

  • Two databases on a same OS user/account?????

    I know it is possible to have two(or more) databases running on two different OS users/accounts in the same machine. But can we have two(or more) databases running on the same OS user/account in one machine? Wouldn't there be a conflict at ORACLE_HOM

  • Freaky backup ghost in my Mac!

    Something is backing up my files on a regular basis. That's great ... except I don't know what it is. Welcome to the highly amusing mystery! I was about to wipe my drive and install Tiger tonight. To do so, I was going to make a full copy of my home

  • Displaying Chinese Lyrics

    I have a problem on displaying Chinese Lyrics on my iPOD Nano. All chinese turns into strange character. The lyrics can be displayed in iTunes6.0 properly on both windows (xp) and mac mini. I have try convert the mp3 tag to v2.4, but it didn't help.

  • I would like to use a datasocket server to transmit

    I would like to use datasockets to connect transmit data at a rate of 20 times per second I'm using LV6i on Windows 2000 SP1 and experiencing problems to achieve a higher rate than 5 times per second. I've analized the packet sent between the two com