How do I ensure respondents only complete one form?

I want to create a form which for my students which requires respondents to have a recognised student number and also allows one response per student number.
How do I achieve this?
Mike

Are you confirming your POP account is selected as the sending email account before the message is sent?
And regardless if the email is a new email or is replying to or forwarding an email received by the POP account and cofirming the POP acconut is selected as the sending email account, the message is sent by the Gmail account?
All message sent by the POP account are sent by the Gmail account?
If so, delete the Gmail account from your iPad and test if a message sent with your POP account which will be the only email account available with the iPad's Mail app is recieved from your POP account/address.
If not, something else is wrong or on play that has nothing to do with the iPad.

Similar Messages

  • How to approve the request only for one time for human task in BPM Worklist

    Hi All,
    I'm having a requirement where i have made the hierarchy in the .task file where in created two users for which i need an approval in a hierarchical manner. But when i'm approving the request from worklist app for one user and the request is going sucessfully to the second user and if i approve it over there it once again coming to first user where i have approve it once again to get the request processed. how to get request processed only for one time when it is approved. Do we need to customize anything
    If you did it can anybody can share thoughts on this please. Your help is highly appreciated.
    I am not able to see the rejected request at all. where to see the rejected request.
    Regards,
    CH

    Hi,
    Following are the some important points you should understand about ESS Leave Request Workflow
    1. The Visualization ( how should it appear in UWL and what should happen when you click on a particular workitem) is defined in SWFVISU. Check for TS12300097. Generally, it invokes com.sap.xss.hr.lea.appl/LeaveRequestApprover Java WebDynpro application. Just check whether you are able to get the correct Leave Processing application called when you execute your workitem from UWL?
    2. In general it should have option to process the leave request either approve/reject. When the leave request gets approved/rejected the status of the Leave Request document gets changed ( in workflow it is &REQ.STATUS&
    3. There is a need to schedule a background job for program RPTARQPOST which will pick up all the documents in APPROVED status and creates an absence record for the same.
    4. Apart from schedule job as mentioned above, you also have to schedule a background job for program  RPTARQEMAIL, which is basically used to send e-mails for all the documents which are yet to be approved to correct manager.
    as you say , you can not see Approve/Reject options from UWL, it looks to me that correct javawebdynpro application is not being called for this task. Just check this !!
    Good Luck !!
    Regards
    Krishna Mohan

  • How to refer the trigger written in one form from another form ?

    How to refer the trigger written in one form from another form ?
    Thanks,
    Ravi Shankar

    Try to convert the PL/SQL code from Forms trigger into a PL/SQL library(.PLL),
    and then attach that PLL in your forms.
    Note that all Forms objects should be referenced indirectly, for example,
    you have to rewrite
    :B1.DEPT_CODE := :B2.DEPT_CODE;
    :B3.TOTAL_AMOUNT := 100;
    ==>
    copy('B2.DEPT_NO','B1.DEPT_NO');
    copy('100','B3.TOTAL_AMOUNT');
    This is the best way to share PL/SQL code among Oracle Forms.

  • Dbms_datapump - How to ennusre pl/sql only completes when job completes -

    Hi,
    Calling dbms_datapump via pl/sql - when look at outpurt directory where log and export file are created it seems to take a while but pl/sql comes back saying complete far earlier.
    Uisng 11.2.0.3
    Want pl/sql to show complete only when actually complete.
    Seems tobe running in background.
    declare
      -- Local variables here
      i integer;
    h1 number; -- Datapump handle
      dir_name varchar2(30); -- Directory Name
    v_file_name varchar2(100);
      v_log_name  varchar2(100); 
    v_job_status ku$_Status;          -- The status object returned by get_status
        v_job_state VARCHAR2(4000);
        v_status ku$_Status1010;
        v_logs ku$_LogEntry1010;
        v_row PLS_INTEGER;
        v_current_sequence_number archive_audit.aa_etl_run_num_seq%type;
       v_jobState                user_datapump_jobs.state%TYPE;
    begin
    --execute immediate ('alter tablespace ARCHIVED_PARTITIONS read only');
    -- Get last etl_run_num_seq by querying public synonym ARCHIVE_ETL_RUN_NUM_SEQ
    -- Need check no caching on etl_run_num_seq
    select last_number - 1
    into v_current_sequence_number
    from ALL_SEQUENCES A
    WHERE A.SEQUENCE_NAME = 'ETL_RUN_NUM_SEQ';
    v_file_name := 'archiveexppre.'||v_current_sequence_number;
    v_log_name  := 'archiveexpprelog.'||v_current_sequence_number;
    dbms_output.put_line(v_file_name);
    dbms_output.put_line(v_log_name);
    -- Create a (user-named) Data Pump job to do a schema export.
      dir_name := 'DATA_EXPORTS_DIR';
      h1 := dbms_datapump.open(operation =>'EXPORT',
      job_mode =>'TRANSPORTABLE',
      remote_link => NULL,
      job_name    => 'ARCHIVEEXP10');--||v_current_sequence_number);
      dbms_datapump.add_file(handle =>h1,
                             filename => v_file_name,
                             directory => dir_name,
                             filetype => DBMS_DATAPUMP.KU$_FILE_TYPE_DUMP_FILE,
                             reusefile => 1); -- value of 1 instructs to overwrite existing file
      dbms_datapump.add_file(handle =>h1,
                             filename => v_log_name,
                             directory => dir_name,
                             filetype => DBMS_DATAPUMP.KU$_FILE_TYPE_LOG_FILE,
                             reusefile => 1); -- value of 1 instructs to overwrite existing file
      dbms_datapump.metadata_filter(     
          handle => h1,
          name   => 'TABLESPACE_EXPR',
         VALUE    => 'IN(''ARCHIVED_PARTITIONS'')'
    --dbms_datapump.metadata_filter(handle =>h1,
      --                       name => 'TABLE_FILTER',
      --                       value => 'BATCH_AUDIT');
    -- Start the datapump_job
    -- dbms_datapump.set_parameter(h1, 'TRANSPORTABLE', 'ALWAYS');
      dbms_datapump.start_job(h1);
      begin
        null;
        -- dbms_datapump.detach(handle => h1);
      end;
    dbms_datapump.wait_for_job(h1,v_jobState);
    dbms_output.put_line('Job has completed');
    exception
        when others then
          dbms_datapump.get_status(handle => h1,
                                 mask => dbms_datapump.KU$_STATUS_WIP,
                                 timeout=> 0,
                                job_state => v_job_state,
                                status => v_job_status);
                   dbms_output.put_line(v_job_state);
         RAISE_APPLICATION_ERROR(-20010,DBMS_UTILITY.format_error_backtrace);
    end;causes this.
    How do I ensure the pl/sql job only completes when the dbms_daatpump job completes i.e. runs in the foreground.
    Tried adding dbms_datapump.wait_for_job(h1,v_jobState);
    but get message job is not attached to this session when add this.
    Removed dbms_datapump.detach and now wokrs O.K - seems that dbms_datapump.detach + wait for job are mutually exclusive?
    Thanks
    Edited by: user5716448 on 28-Sep-2012 06:37
    Edited by: user5716448 on 28-Sep-2012 06:37
    Edited by: user5716448 on 28-Sep-2012 06:38
    Edited by: user5716448 on 28-Sep-2012 06:47
    Edited by: user5716448 on 28-Sep-2012 06:50

    user5716448 wrote:
    Removed dbms_datapump.detach and now wokrs O.K - seems that dbms_datapump.detach + wait for job are mutually exclusive?
    If you want your block to WAIT till datapump finishes, why are you detaching? detach means you are no longer interested once the job has started. Remove the detach and keep the wait_for_job as you have found out.

  • How come Java methods can only return one variable?

    Hi,
    I am just curious, how come C/C++/Java methods/functions can only return one argument but can accept many parameters.
    I know that the workaround is to return an object, but sometimes creating a class is just too much overhead.
    Thank you in advance.

    Hello,
    It's an interesting discussion. To get the full answer to your question, you'd have to consult the library and find books on programming language design and implementation.
    I believe the tradition goes all the way back to the first programming languages having subroutines/procedures/functions/methods in them: you can return nothing at all (void i Java) or a single value. The need for returning a single value, I guess, comes from the wish to embed calls in arithmetic expressions:
      res = 2 * someObject.foo(x) - anotherObj.bar(a,b);To my knowledge, few languages allow you to return more values. One that does is BETA (see www.daimi.au.dk/~beta/). Though not indispensable, it's convenient sometimes. I don't know why it's not more widespread.
    Yours,
    Ole

  • How do you pass a variable from one form to another

    Sorry, I am new at this.
    I have an ID on one form and I want to pass it to another form and then populate a text field on the second form. How is this accomplished.

    There are various ways to accomplish this depending on your applications' needs.
    Read up on the manual, especially on session state management http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10499/concept.htm#CIHCFHBD
    This will get you familiar with the basics of url syntax and and session state after which you will have no problem implementing what your asking

  • How to insert 20 records  only in one table

    hi to all,
    i want insert 20 records only in a table,but suppose i want to enter 21th record it will not inserted .
    suppose delete one record then insert, it will insert.
    but always count(*) is not greater than 20.
    is there any solution for that,
    pls help me

    Yes there is a solution for that using a materialied view:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL> drop table t purge;
    Table dropped.
    SQL> drop materialized view t_mv;
    Materialized view dropped.
    SQL> create table t (
      2  x integer,
      3  y varchar2(30)
      4  );
    Table created.
    SQL> CREATE MATERIALIZED VIEW LOG on t
      2  WITH ROWID (x, y)
      3  including new values;
    Materialized view log created.
    SQL> CREATE MATERIALIZED VIEW t_mv
      2  REFRESH FAST ON COMMIT AS
      3  SELECT count(*) cnt
      4  FROM t;
    Materialized view created.
    SQL> alter table t_mv ADD CONSTRAINT chk check(cnt<=20);
    Table altered.
    SQL> insert into t select object_id, object_name from all_objects where rownum <
    21;
    20 rows created.
    SQL> commit;
    Commit complete.
    SQL> insert into t values(21,'KO');
    1 row created.
    SQL> commit;
    commit
    ERROR at line 1:
    ORA-12008: error in materialized view refresh path
    ORA-02290: check constraint (TEST.CHK) violated
    SQL>
    SQL> select count(*) from t;
      COUNT(*)
            20
    SQL>Not sure that trigger based solution works due to multi versioning read consistency.

  • IOS5 and iCloud have duplicated my contacts and iCal entries.  How to I fix this / only use one of them?, iOS5 and iCloud have duplicated my contacts and iCal entries.  How to I fix this / only use one of them?

    Since loading iOS5 and starting to sync with iCloud, I'm getting multiple contacts in my Macbook as well as on my phone. How do I get rid of one or the other? The best soultion would be to fix the error without having to delete all of the duplicates manually.  This also happens with my events and reminders in iCal.

    I had the same problem and many contacts amongst my 330 differant people were duplicated up to 3 times. What seemed to have happened is any one who was in your main addrees book and also in a list would be duplicated when icloud syncs.
    I solved it by switching off icloud on the phone. deleting all entries in my mac address book. Checking the address book was totally empty. Then manualy deleting all the duplicates on the phone. Once I was happy everything on the phone was correct I Then turning cloud back on the phone. thats synched back all entries to the mac and no problem since.
    Now when i amend/delet/add a contact it syncs acros  both devices within minutes.

  • How to enter MR results only on one register even when other reg r MR relev

    Hi All,
    I have Device with 4 registers (1- Cummulative and rest are Balancing) . In the happy flow, i get the MR results from MDMR system and will be uploaded against the respective registers. So no problem.
    But when i have exchange or removals,  user will have only the register read for R1 to enter but not TOU values for 2/3 and 4 registers. Since 2,3 and 4 are also MR relevant, system will not allow to save without entering.
    How to overcome this ?
    Regards
    Haricharan

    HI,
    You should load ZERO value consumption on R2, R3 and R4. Let the system load it.
    At the end of your flow, update the MR status (EABL-ABLSTAT) for R2, R3, R4 to ZERO. Why this action your MR documents will be reset to MR Order status, with the exception on R1, which you which to keep.
    Br,
    André

  • How do you subscribe to only the ones you want?

    In the prefs it is a very broad subscibe to threads I start or subscribe to threads I post in. Well how do you subscribe to just the threads I want to?

    Now if you want to just subcribe to the Group in general; as soon as you get to desired group listing, before clicking on a topic, look to right and click on email notification.
    Also if your tired of a Particular Group when you go to that group click again to discontinue email notification. It will not stop other threads on your post , but will stop email Notifications.
    You can also set in prefrence to receive notication to Topics you reply to
    Message was edited by: PjonesCET

  • How can I have a recipient complete duplicate forms?

    I have to send a form to several entities with in my company.  Each entity needs to complete the same form for each of their accounts (ranging from 5-20 accounts per entity). How can i have them duplate the form easily.  I am using Adobe 9 standard.  The form is currently in excel.

    Just have them save it to a new name. It is not clear what you are doing with the form. They can simply be completed and submitted, requiring no saving (only data submitted). What do you mean by duplicate forms as such.

  • How to work with two blocks in one form

    i need help,i moved the control from block(abc) to another block(xyz) using go_block('xyz') and then i insert record to block(abc) but the record is not inserted to the table .
    i used previous_block but it is not working
    how to use it.

    Hi,
    You have written the code in when-window-activated? If yes then as soon as the window of xyz is activated the code starts running and populating the data (i.e. department code and its name) from table to the block, one by one. It seems that the block 'xyz' is like detail block. Am I right? U want the record row by row, isn't it?
    In this case, have you been able to populate your xyz block more than 1 records by the help of the code you have written ? If yes then use commit_form in the when-button-pressed trigger associated with the proposed button.
    I just can't understand how your code populates xyz block when you are writing :
    fetch DEPARTMENT into :DEPARTMENTS.DEP_CODE,:DEPARTMENTS.DEP_NAME;
    instead of fetch DEPARTMENT into :xyz.DEP_CODE,:xyz.DEP_NAME;
    Pls tell me the detail result you r getting.
    Regards,
    Pragati.

  • How do I 'save as' after completing a form?

    I want to be able to 'save as' rather then 'save'. I have loaded PDF forms for contract purposes that will be modified often, I would like to save the file as a different file after editing rather then saving over the root file.
    Thanks!

    Hi a_hubick,
    George is right that you need to duplicate it and then can edit it.
    We currently do not support the "Save as" feature. We have added this is our backlog. Thanks for contacting us.
    -Shilpi

  • How to open multiple db connections from one form?

    Hello,
    We have two different Oracle databases and need to access them (read and write) from the same form. Is there a way to do this, apart from using EXEC_SQL as described in Note 67516.1 ? I could also use db_links and synonyms, but this would add an extra maintenance aspect that I'd like to avoid.
    Thanks,
    :-Phil

    Sorry Phil,
    but that's all you got.
    Frank

  • WLI Process only execute one at a time

    Hi Guys,
    I am new to WLI, and have what could be a simple question:
    I have a seperate java program that puts messages one by one in sequence onto a JMS queue.
    I have built a channel and a JPD that subscribes to this channel. The purpose of the JPD is to take the message from the incoming JMS queue, perform some adhoc functionality, and then return the message to a different outgoing JMS queue.
    This works fine, however how do I ensure that only one JPD process is executed in full, before another is started.
    e.g of problem: if a really big message is put onto the incoming JMS queue, it might take 10seconds to process, but in that time another message (small) is put onto the incoming queue. This means that another process instance kicks off, and that the second message is put onto the outgoing queue FIRST because it takes less time to process.
    How do I ensure that the JPD process only executes once in full, at a time?
    At the moment, the JPD has "stateless" set to false.
    Any help would be greatly appreciated.
    Regards.

    I think if you follow a similar technique as outlined in http://edocs.bea.com/workshop/docs81/doc/en/integration/samples/sampleSuppressible.html?skipReload=true then it should work. The key points are to have a synchronous subscription to a MB channel, performing all your processing within this block, and to set the JMS event generator pool size to 1.

Maybe you are looking for

  • Creation of Multiple Activities for same Employee,same day and same time

    Hi Experts, In CRM 2007 I am creating an Activity(e.g Customer Visit) for a particular day for a particular employee. I am selecting the Option "Whole Day". When again I am creating another Activity same day and for same employee the ideally system s

  • Creation of export datasource failed

    Hi All. i copied a bussiness content data source object (DSO) and tried to activate it. it is giving error that "The creation of the export DataSource failed" Why ??? where m i going wrong. Thanks & Regards, Mo

  • Object Services Toolbox  and attachments

    Can somebody short inform me about what u201Climitationsu201D if any , u201Cdisadvantagesu201D if any or u201CAdvantagesu201D if any there is to use u201CService for objectsu201D and the attachment instead of DMS. This should be answered looking at t

  • SAP Enterprise Connector and service....

    Hi everyone, After creating, via the plugin "SAP Enterprise Connector", a proxy pointing on a BAPI, how can I create a service for this (and a web service). I know that you can create a web service directly using ABAP transaction se37. But our SAP ve

  • Want to show  A/R Invoice No   like gipl/00001/08?

    My question is that in    A/R in voice NOis showing like..1,2,3....10             first of all  if i want to show like  GIPL/00001/08  ... increment middle digit by1 in INVOICE NUMBER  Is it Possible? if i want to show like  GIPL/00001/08  ... increm