Problem job/submit a FM

Hi!
I have this code:
SELECT SINGLE PROCPROG JOBNAME
  INTO (lv_procprog, lv_jobname)
  FROM ZGL_MPF_CONFIG
  WHERE interfacename = INTERFACENAME.
  CALL FUNCTION 'JOB_OPEN'
    EXPORTING
      jobname                = lv_jobname
    IMPORTING
      JOBCOUNT               = lv_jobcount.
SUBMIT (lv_procprog)
  USER SY-UNAME
  VIA JOB lv_jobname
  NUMBER lv_jobcount
  WITH PATH EQ 'C:\DOWNLOAD2.TXT'
  AND RETURN.
CALL FUNCTION 'JOB_CLOSE'
  EXPORTING
    jobcount                          = lv_jobcount
    jobname                           = lv_jobname
    STRTIMMED                         = 'X'
The program dump in SUBMIT (lv_procprog) line. SAP tells z_interface (procprog value) doesn't exist but it is a FM that exists and is actived. Do you see any mistake? z_interface receive a path where write a file.
Thx

Hi,
        1. What u can do list.
Get all the variant of the standard report and
data: variant(14).
variant = 'VARIANT1'. " Based on ur condition change the value to the variable
SUBMIT REPORT01
       VIA SELECTION-SCREEN
       USING SELECTION-SET VARIANT  "Check here
       USING SELECTION-SETS OF PROGRAM 'REPORT00'
       AND RETURN.
2 .Use the fm: RS_VARIANT_CONTENTS to get the values of the different values in the screen.
move those values to screen fields in the INITIALIZATION event
<b>Reward points</b>
Regards

Similar Messages

  • Problem with submit button in wweb dynpro abap

    hi all,
                we have problem in submit of our interactive form in web dynpro abap.
    my scenario.
                             on event submit we have to fetch data from database table and display the same.
    On click of the SUBMIT button for the first time it fetches data but when we change the input field and submit again it dsnt trigger the event(We need to double click only then event is triggered).
    Can anyone guide us on how to fetch the data at single click.
    Thanks and Regards
    Vinoth

    The form is open. I should have mentioned that I made sure to check that first.  The form was created by uploading an existing PDF file that I created from a MS Word file to Adobe FormsCentral. Once the form was completed, I had a coworker test it & it worked.  We sent the form out & I have received some back, but have also received reports of the form not working.  I downloaded the form to my computer & tested it using Adobe Acrobat 9.0 Standard.  I use a Windows environment on a Dell laptop.  The form does not work for me.

  • Code for Job  submit

    Hi ,
    I am trying to write code for open job , submit & close job.
    I need to send 4 fields as parameters from program1 to the BGprogram.
    Anyone please tell me the syntax for submit.I cun't find any syntax for this.
    Thanks in advance,

    ..Create new job
        CONCATENATE lc_job_prefix l_pr_count
            INTO l_job_name SEPARATED BY '_'
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname                = l_job_name
          IMPORTING
            jobcount               = l_job_count
          EXCEPTIONS
            cant_create_job        = 1
            invalid_job_data       = 2
            jobname_missing        = 3
            OTHERS                 = 4
        IF sy-subrc <> 0.
    ....Error creating job
          IF NOT sy-msgid IS INITIAL.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            MESSAGE s000(zz) WITH
                'Failed to create job'(021)
                l_job_name
          ENDIF.
        ELSE.
    ....Submit job {
          MESSAGE s000(zz) WITH
              'Creating job'(022) l_job_name l_job_count '...'
              INTO l_msgtx
          PERFORM show_progress USING l_msgtx 0 1.
          IF v_sort = 'X'.
            SUBMIT (sy-cprog)
                  WITH s_pernr BETWEEN l_pernr_min AND l_pernr_max
                 WITH s_g_ctrl IN r_cs_ctrl
                  WITH s_g_land IN r_cs_land
                  WITH s_g_gs IN r_cs_gs
                 VIA JOB l_job_name NUMBER l_job_count
                  TO SAP-SPOOL SPOOL PARAMETERS   l_print_parm
                               ARCHIVE PARAMETERS l_archive
                               WITHOUT SPOOL DYNPRO
                  AND RETURN
          ELSE.
            SUBMIT (sy-cprog)
                  WITH s_pernr BETWEEN l_pernr_min AND l_pernr_max
                  WITH s_g_lub IN r_cs_lub
                  WITH s_g_pro IN r_cs_pro
                  WITH s_g_pub IN r_cs_pub
                  VIA JOB l_job_name NUMBER l_job_count
                  TO SAP-SPOOL SPOOL PARAMETERS   l_print_parm
                             ARCHIVE PARAMETERS l_archive
                             WITHOUT SPOOL DYNPRO
                  AND RETURN
          ENDIF.
    ....Start immediately
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              jobcount                          = l_job_count
              jobname                           = l_job_name
              strtimmed                         = true
            EXCEPTIONS
              cant_start_immediate              = 1
              invalid_startdate                 = 2
              jobname_missing                   = 3
              job_close_failed                  = 4
              job_nosteps                       = 5
              job_notex                         = 6
              lock_failed                       = 7
              OTHERS                            = 8
          IF sy-subrc <> 0.
            IF NOT sy-msgid IS INITIAL.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ELSE.
              MESSAGE s000(zz) WITH
                  'Error releasing job'(023)
                  l_job_name
                  l_job_count
            ENDIF.
          ELSE.
            MESSAGE s000(zz) WITH
                'Job released'(024) l_job_name l_job_count
                INTO l_msgtx
            PERFORM show_progress USING l_msgtx 0 1.
          ENDIF.
    ....} Submit job
        ENDIF.
    ..Increment process count
        ADD 1 TO l_pr_count.
      ENDDO.
      MESSAGE s000(zz) WITH l_pr_count 'job(s) created.'(025).

  • PRoblem regarding Submit - Open/Transfer/Close Dataset

    Hello again, I know I keep asking the same topic (regarding datasets) for the past week. Its been a new topic for me. However, I have a program which I am testing that is shown below.
    <b>REPORT ZPROG_COOL7 NO STANDARD PAGE HEADING.
    DATA: ITAB_LIST TYPE STANDARD TABLE OF ABAPLIST WITH HEADER LINE.
    PARAMETERS: PNAME TYPE SYCPROG. (this does nothing yet ...)
    SUBMIT ZPROGRAM EXPORTING LIST TO MEMORY AND RETURN
                        USING SELECTION-SET 'CEDEX'.
    CALL FUNCTION 'LIST_FROM_MEMORY'
         TABLES
              LISTOBJECT = ITAB_LIST
       EXCEPTIONS
            NOT_FOUND  = 1
            OTHERS     = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF SY-SUBRC = 0.
      CALL FUNCTION 'WRITE_LIST'
           TABLES
                LISTOBJECT = ITAB_LIST.
    ENDIF.
    DATA: LD_FILENAME TYPE LOCALFILE.
    DATA: I_MONTH TYPE TABLE OF T247 WITH HEADER LINE.
    DATA: IHTML   TYPE TABLE OF W3HTML  WITH HEADER LINE.
    CALL FUNCTION 'WWW_LIST_TO_HTML'
       EXPORTING
           list_index = sy-lsind
         TABLES
              HTML       = IHTML.
    CLEAR IHTML.
    LD_FILENAME = '
    H******\SAPReport\death.html'.
    OPEN DATASET LD_FILENAME FOR OUTPUT  IN BINARY MODE.
    LOOP AT IHTML.
      TRANSFER IHTML TO LD_FILENAME.
    ENDLOOP.
    CLOSE DATASET LD_FILENAME.
    CLEAR: LD_FILENAME.</b>
    As you can see it is suposed to get a list from a diffrent program, write the list, and then transfer the list into a directory in the SAP application server. This all works fine on foreground but in Background Proccessing the story is diffrent.
    Here is the problem:
    If Iam to send a job in background, the report will generate fine if you view the spool list <b>but there HTML file that is supposed to be saved becomes blank.</b> Is there a way to solve this issue? Thank you all take care, and good day.

    I am concerned that his part does not work in background.
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    LISTOBJECT = ITAB_LIST
    * EXCEPTIONS
    * NOT_FOUND = 1
    * OTHERS = 2
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF SY-SUBRC = 0.
    CALL FUNCTION 'WRITE_LIST'
    TABLES
    LISTOBJECT = ITAB_LIST.
    ENDIF.
    DATA: LD_FILENAME TYPE LOCALFILE.
    DATA: I_MONTH TYPE TABLE OF T247 WITH HEADER LINE.
    DATA: IHTML TYPE TABLE OF W3HTML WITH HEADER LINE.
    <b>CALL FUNCTION 'WWW_LIST_TO_HTML'
    * EXPORTING
    * list_index = sy-lsind
    TABLES
    HTML = IHTML.
    CLEAR IHTML.</b>
    LD_FILENAME = '\H******SAPReportdeath.html'.
    OPEN DATASET LD_FILENAME FOR OUTPUT IN BINARY MODE.
    LOOP AT IHTML.
    TRANSFER IHTML TO LD_FILENAME.
    ENDLOOP.
    CLOSE DATASET LD_FILENAME.
    CLEAR: LD_FILENAME.
    I ran across this before and I did find a solution, I'll get back.
    Regards,
    Rich Heilman

  • Job submit

    Hi all,
    i am trying to submit a oracle job using the following code but i am getting the oracle error PLS-00103. when i put this sql statement in a textfile and run it with a batchfile it goes well. can anybody give me some advise.
    Imports Oracle.DataAccess.Client
    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim cn As New OracleConnection("Data Source=test;" & "User Id=myusername;" & "Password=mypassword;")
    Try
    Dim sql As String = ("declare " & _
    "jobnr number(10); " & _
    "instnr number(10); " & _
    "begin" & _
    "select instance_number into instnr from v$instance;" & _
    "dbms_job.submit(jobnr,'insert into system.job_logging(''system'',sysdate,''22:00'',''select name from v$database;'');'," & _
    "trunc(sysdate+1)+(22+00/60)/24," & _
    "'trunc(least(next_day(sysdate,''TUESDAY''),next_day(sysdate,''WEDNESDAY''),next_day(sysdate,''THURSDAY''),next_day(sysdate,''FRIDAY''),next_day(sysdate,''SATURDAY'')))+(22+00/60)/24',true,instnr);" & _
    "commit;" & _
    "end;")
    Dim cmd As New OracleCommand(sql, cn)
    cmd.Connection.Open()
    Dim result As String = cmd.ExecuteNonQuery()
    cmd.Connection.Close()
    If result = 0 Then
    MessageBox.Show("no job submitted")
    Else
    MessageBox.Show("succesfully submitted job")
    End If
    Catch ex As Exception
    MessageBox.Show("error' " & ex.Message)
    If cn.State = ConnectionState.Open Then
    cn.Close()
    End If
    End Try
    End Sub
    End Class
    kind regards,
    bryan

    Hi,
    i checked the code again and removed the "(" befor begin and at the end. here is the code again. I ran the code with sqlplus again offcourse without the " and the & or + _ around the code, because this is vb, against the datasource and the plsql procedure succeeded. when i run this code in vb i keep getting the following error:
    ora-6550: line 1, column 74:
    pls-00103: encountered the symbol "INTO" when expecting one of the following:
    := .(@ % ; not null range default character.
    i hope you can help me out with this problem.
    Imports Oracle.DataAccess.Client
    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim cn As New OracleConnection("Data Source=test;" & "User Id=myusername;" & "Password=mypassword;")
    Try
    Dim sql As String = "declare " + _
    "jobnr number(10); " + _
    "instnr number(10); " + _
    "begin" + _
    "select instance_number into instnr from v$instance;" + _
    "dbms_job.submit(jobnr,'insert into system.job_logging(''system'',sysdate,''22:00'',''select name from v$database;'');'," + _
    "trunc(sysdate+1)+(22+00/60)/24," + _
    "'trunc(least(next_day(sysdate,''TUESDAY''),next_day(sysdate,''WEDNESDAY''),next_day(sysdate,''THURSDAY''),next_day(sysdate,''FRIDAY''),next_day(sysdate,''SATURDAY'')))+(22+00/60)/24'," + _
    "true," + _
    "instnr" + _
    ");" + _
    "commit;" + _
    "end;" + _
    Dim cmd As New OracleCommand(sql, cn)
    cmd.Connection.Open()
    Dim result As String = cmd.ExecuteNonQuery()
    cmd.Connection.Close()
    If result = 0 Then
    MessageBox.Show("no job submitted")
    Else
    MessageBox.Show("succesfully submitted job")
    End If
    Catch ex As Exception
    MessageBox.Show("error' " & ex.Message)
    If cn.State = ConnectionState.Open Then
    cn.Close()
    End If
    End Try
    End Sub
    End Class
    kind regards,
    bryan

  • Problem with SUBMIT in Background

    Hi,
        I want to pass a internal table data to 2nd program from 1st program. I am using SUBMIT 2nd program and i am getting results in foreground , i am not getting in back ground .
    will you face this sort of problem ever.
    Please help me .
    Thanks in advance .
    Balaji.

    Hi Balaji,
    Please check this sample code.
    DATA: number TYPE tbtcjob-jobcount,
          name TYPE tbtcjob-jobname VALUE 'JOB_TEST',
          print_parameters TYPE pri_params.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = name
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc = 0.
      SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                        VIA JOB name NUMBER number
                        AND RETURN.
      IF sy-subrc = 0.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = number
            jobname              = name
            strtimmed            = 'X'
          EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDIF.
    Hope this will help.
    Regards,
    Ferry Lianto

  • PROBLEM JOB

    I HAVE A PROBLEM WITH THE JOB, IN MY PROGRAM THAT THERE IS A LOOP CALLED SEVERAL TIMES A SUBMIT 'VIA JOB'. ALL WORK ON AN ACCOUNT AND TRANSITIONAL JOB FOR SOME THAT ARE HAPPENING IN THIS ACCOUNT TRANSIENT ERROR WHY ARE STUCK ON THAT BEFORE. THERE IS A WAY TO STARTING THE JOB AFTER THE CLOSURE OF THE PREVIOUS?
    There any feature you say when the job is CLOSED?
    CODE REPORT :
    LOOP TAB.
    CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = va_job_name
        IMPORTING
          jobcount         = va_job_count
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
    submit del programma
      SUBMIT sapf124
         WITH bukrx    IN so_bukrx
         WITH gjahx    IN so_gjahx
         WITH docnr    IN so_docnr
         WITH so_zuonr IN so_zuon
         WITH x_saknr  = d_saknr
         WITH konts    IN so_konts
        WITH xaugdt   = d_xaugdt
         WITH xtol     = d_xtol
         WITH x_testl  = cb_test
         WITH augdt    = p_datum
         VIA JOB va_job_name NUMBER va_job_count
      AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = va_job_count
          jobname              = va_job_name
          strtimmed            = 'X'
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          OTHERS               = 8.
    ENDLOOP TAB.
    Edited by: francesco aiello on Nov 13, 2009 12:23 PM

    Quick fix would be to check the status of previous  Job within Loop after JOB_CLOSE using fm SHOW_JOBSTATE and wait until the previous job is completed.
    However, I would have used events (with parameter) to start the job which will be triggered by previous job just before it ends the execution.
    Problem here is you have sapstandard program in job which you can not modify to trigger a event, to overcome that you need to have another program which will can your sap standard program and once it is complete, trigger the event with correct parameter which will then start the next jon in queue. (this is just an idea, which I think should work)

  • Job submit error

    Guys,
    simply,
    i want to create temp_undo ( done ) and i want to do the following
    create or replace procedure temp_undo_procedures
    is
    CURSOR c is select a.name, b.status from V$rollname a, v$rollstat b
    where a.name IN (select segment_name from dba_segments where tablespace_name ='TEMP_UNDO')
    AND a.usn=b.usn;
    v_name1 v$rollname.name%type;
    v_status1 v$rollstat.STATUS%type;
    test1 varchar2(50);
    v_job_number number;
    begin
    open c;
    if c%notfound then
    test1 := 'good';
    Dbms_Output.put_line(test1);
    -- drop the tablespace.
    execute immediate 'drop tablespace temp_undo';
    select job INTO v_job_number from dba_jobs WHERE WHAT LIKE 'temp_undo_procedures';
    execute immediate dbms_job.broken(v_job_number,true);_ ==>i think this is error statement because i want to v_job_number come from the select statment and broke the job number that retrieve from select statment,
    end if;
    loop
    fetch c into v_name1, v_status1;
    exit when c%notfound;
    Dbms_Output.put_line(v_name1 || ' ' || v_status1);
    end loop;
    close c;
    end;
    VARIABLE v_jobnum1 NUMBER;
    BEGIN
    dbms_job.submit(:v_jobnum1,
    *'temp_undo_procedures', ==> also here i think this is error as well, coz i want to run this procedure every 5 min.*
    trunc(sysdate,'MI')+1/288,
    *'sysdate + (1/288)'*
    commit;
    END;
    plz help and add suggestion

    Can you try this?
    create or replace procedure temp_undo_procedures
    is
      CURSOR c
      is
        select a.name,
               b.status
        from V$rollname a, v$rollstat b
        where a.name IN (
                          select segment_name
                          from dba_segments
                          where tablespace_name ='TEMP_UNDO'
        AND a.usn=b.usn;
        v_name1 v$rollname.name%type;
        v_status1 v$rollstat.STATUS%type;
        test1 varchar2(50);
        v_job_number number;
    begin
        open c;
        loop
        fetch c into v_name1, v_status1;
        exit when c%notfound;
          if c%notfound then
          test1 := 'good';
          Dbms_Output.put_line(test1);
          -- drop the tablespace.
          execute immediate 'drop tablespace temp_undo';
          select job
          INTO v_job_number
          from dba_jobs
          WHERE WHAT LIKE 'temp_undo_procedures';
          execute immediate dbms_job.broken(v_job_number,true); -- ==>i think this is error statement because i want to v_job_number come from the select statment and broke the job number that retrieve from select statment,
        end if;
        Dbms_Output.put_line(v_name1 || ' ' || v_status1);
        end loop;
        close c;
    end;N.B.: Not Tested....
    Regards.
    Satyaki De

  • Problem with SUBMIT report [ WITH SELECTION-TABLE ] or [ IN range ]

    Hello Everybody,
    I am trying to call transaction F.80 for mass reversal of FI documents by using SUBMIT sentence and its parameters like this:
      LOOP AT i_zfi013 INTO wa_zfi013.
        PERFORM llena_params USING 'BR_BELNR' 'S' 'I' 'EQ' wa_zfi013-num_doc ''.
    range_line-sign   = 'I'.
    range_line-option = 'EQ'.
    range_line-low    = wa_zfi013-num_doc.
    APPEND range_line TO range_tab.
    endloop.
    Line: -
          SUBMIT sapf080
            WITH br_bukrs-low = p_bukrs
            WITH SELECTION-TABLE it_params  [ same  problem with -  WITH BR_BELNR IN range_tab]
            WITH br_gjahr-low = p_an1
            WITH stogrd = '05'
            WITH testlauf = ''
            AND RETURN.
    My problem is that  when the report is executed the BR_BELNR only delete one document of the all the inputs in the selection criteria from the loop. if I add the statement [ VIA SELECTION-SCREEN] in the SUBMIT if open the multiple selection criteria in the screen I can check that all the documents are set in it from the ABAP code in the loop from it I just need to push F8 to copy them and run the program processing all the documents normally .
    Can some one help me with this? is there a way to execute the transaction BY the SUBMIT with the multiple selection criteria for the Document Number working well?
    Thank for you time and help.

    This is my code:
      TYPES: BEGIN OF T_ZFI013,
              BUKRS     TYPE BUKRS,
              GJAHR     TYPE GJAHR,
              MONAT     TYPE MONAT,
              ANLN1     TYPE ANLN1,
              ANLN2     TYPE ANLN2,
              NUM_DOC     TYPE BELNR_D,
              DATE     TYPE DATUM,
              TIME  TYPE UZEIT,
              USER     TYPE SYUNAME,
             END OF T_ZFI013.
       DATA: I_ZFI013  TYPE STANDARD TABLE OF T_ZFI013,
             WA_ZFI013 TYPE T_ZFI013,
      DATA: br_belnr       TYPE BELNR_D,
            rspar_tab  TYPE TABLE OF rsparams,
            rspar_line LIKE LINE OF rspar_tab,
            range_tab  LIKE RANGE OF br_belnr,
            range_line LIKE LINE OF range_tab."range_tab.
      LOOP AT i_zfi013 INTO wa_zfi013.
        range_line-sign   = 'I'.
        range_line-option = 'EQ'.
        range_line-low    = wa_zfi013-num_doc.
        APPEND range_line TO range_tab.
      ENDLOOP.
      SUBMIT sapf080
        WITH br_bukrs-low = p_bukrs
        WITH br_belnr IN range_tab
        WITH br_gjahr-low = p_an1
        WITH stogrd = '05'
        WITH testlauf = ''.
    This is the RANGE_TAB table before submit:
    1     I     EQ     1001xxxxxx
    2     I     EQ     1002xxxxxx
    3     I     EQ     1003xxxxxx
    4     I     EQ     1004xxxxxx
    5     I     EQ     1005xxxxxx
    6     I     EQ     1006xxxxxx
    7     I     EQ     1007xxxxxx
    8     I     EQ     1008xxxxxx
    I think this wont work for some reason so I will start to do this by a BDC.
    Many thanks for your help.

  • Problem with submit report for transaction LT23

    Hi,
    I want to submit report for transaction LT23 based on the double click on a field in the output of my report. I am using selection table to pass values. The problem is I have  something called dynamic selections. I am using some selection fields from the dynamic selection option. Can anyone tell me how do I pass the values in such a case?

    In your [submit|http://help.sap.com/abapdocu/en/ABAPSUBMIT.htm] statement in the [selection screen parameters|http://help.sap.com/abapdocu/en/ABAPSUBMIT_SELSCREEN_PARAMETERS.htm] use the [WITH FREE SELECTIONS|http://help.sap.com/abapdocu/en/ABAPSUBMIT_SELSCREEN_PARAMETERS.htm#!ABAP_ADDITION_5@5@] option to pass dynamic selections
    NB: Use FREE_SELECTIONS_RANGE_2_EX to build the correct parameter texpr.
    Regards
    Raymond

  • Problem in Submit Program in background

    Hi Expert,
    I have one progam which fetch the sales order data as per input selection and pass it to COOISPI  T.Code.
    Through the program
          SUBMIT PPIO_ENTRY
                  USING SELECTION-SCREEN '1000'
                      WITH P_TCODE = 'COOISPI'
                      WITH P_AUTYP = '40'
                      USING SELECTION-SET 'SAP&COOISPI'
                      WITH SELECTION-TABLE rspar_tab
                     AND RETURN.
    But when i schedule the job of program then it is not running.
    Submit statement is running in background mode or not.
    Is there any other way to doing this work.

    HI ,
      yes it works
    You check the statement SY-BATCH  ..
    Or u can call the transaction and pass the values...
    Please see the sample code :

  • Problem in submit button on adobe form integrated with web dynpro

    Hello,
    I'm facing prob in triggering web dynpro event onSubmit for Interactive form.
    I've created a submit button from web dynpro activex pallete on adobe form (integrated with web dynpro) to send the form as email.
    Then in the web dynpro view where this form is embedded i have created an action against onSubmit event and called a method within this.
    However, on clicking Submit button this event is not getting triggered.
    Please let me know what is lacking in this process?
    Thanks.

    Hi,
    I am also facing the same problem. i have developed a simple scenario under which user have to input his/her details and on submit button it will be updated to database.
    I have tried the above solution but after adopting this solution all the editable fields become non-editable.
    so the above solution is not working for me could you help me out.
    I think ... try this....
    When you create the Adobe Form from WebDynpro, you need to follow one step in SFP Transaction or inSE80 transaction. Open the Adobe Form in any one the transaction and now in SAP menu bar "Utilities" in that you will find the "INSERT THE WEBDYNPRO SCRIPT" just click on that one. Then you will see a new Script Object is being created with the name "ContainerFoundation_JS" under the "Variables" in the Heirarchy of the Object Pallete of the Adobe Form.
    This step is mandatory to use the SUBMIT Button of the "WebDynpro Native", to trigger the OnSubmit event of the WebDynpro.
    Thanks
    Edited by: shailendra2sap on Mar 6, 2009 12:24 PM

  • Problem with Submit Button in Adobe Forms Central

    I have a PDF form that I uploaded to Adobe Forms Central.  I created the fillable fields & the submit button in Forms Central.  I have several documents like this.  All have worked in the past.  Today on my latest file, the submit button doesn't always work.  I am getting some submissions, but some people have reported to me that the submit button does not work.  I tested it myself to see.  I had to create a Digital ID for myself, which seemed to work fine.  But when I click on submit, the form says "Submission Failed.  This form can no longer be submitted. Please contact the author."  I'm the author & don't know what the problem is.  Anyone know what the problem could be?

    The form is open. I should have mentioned that I made sure to check that first.  The form was created by uploading an existing PDF file that I created from a MS Word file to Adobe FormsCentral. Once the form was completed, I had a coworker test it & it worked.  We sent the form out & I have received some back, but have also received reports of the form not working.  I downloaded the form to my computer & tested it using Adobe Acrobat 9.0 Standard.  I use a Windows environment on a Dell laptop.  The form does not work for me.

  • Problem with submit button

    I have installed Acrobat 9 professional and have created a PDF with field codes embedded.  At the top of the last page, I created a button which sends the form and answers to an email account (mailto: command is used).  The form works beautifully for me but not for anyone else.  There is no protection or other specialized settings enabled.  I can fill it in and submit the form with either Reader or Acrobat Pro.  Any suggestions or ideas to solve this little problem would be greatly appreciated.

    If they are using Reader you must either enable Reader Rights or change the submission to data only (preferred). You did not say if the form was created in Acrobat or Designer. There are significant differences and you need to indicate which you used.

  • Problem with submit button - Acrobat/Reader

    I have created a simple fillable form with Adobe Acrobat XI Pro with a submit button, form posted to the web. The form/button works fine for me in Google Chrome, IE, and Safari (Windows 8, Outlook email client) but doesn't seem to work for users with only Adobe Reader (9 was tested using an older version of Windsows and Outlook). After completing the form successfully, they are returned the error message: "This operation is not permitted" when they attempt to submit their form using the submit button. I'm not sure what program is causing the problem. How do I fix this?

    You need to Reader-enable the form using Acrobat. Before Reader 11 was introduced, Reader was not able to save a fille-in form unless the document was enabled. Since the changes need to be saved in order to attach it to an email, this is necessary for previous versions. Do enable a form in Acrobat 11, select: File > Save as Other > Reader Extended PDF > Enable More Tools

Maybe you are looking for

  • Upgrading E1 from 8.12 tools 8.97.2.1 to 9.0.2 tools -need db table layouts

    Where can I find a net change E1 812 vs. E1 9.0.2 document regarding specifically database table layouts when considering table conversion. For example, if the table layout for the F0911 table in E1 9.0.2 has changed as compared to the same in E1 8.1

  • Ship contact phone- Print PO

    Hi, I have developed a Print PO report using Standard Java concurrent Program that generates XML. I am trying to add ship_cont_phone in my PO and I inserted this XML element in my report. How ever when I run this report I don't see any Phone number a

  • Verification problem with BB Curve 9320

    Hi - when I try to access my emails on my BB I get a message that it is an invalid account. How can I get over this and get my email working again? Thanks

  • Initial load with LOBs

    Hi, i'm trying to do an inital load and I keep getting errors like these: ERROR OGG-01192 Oracle GoldenGate Capture for Oracle, ext1.prm: Trying to use RMTTASK on data types which may be written as LOB chunks (Table: 'TESTDB.BLOBTABLE'). ERROR OGG-01

  • Please re-open topic marked as solved but definitely NOT solved!

    [http://support.mozilla.com/tiki-view_forum_thread.php?forumId=1&comments_parentId=563509] click onto "See Solution", read, and be surprised. Please re-open. And: same issue with another topic on this bug: https://support.mozilla.com/tiki-view_forum_