Reg Submit command

I have used the submit command  in my program as follows:
SUBMIT rbdapp01 WITH SELECTION-TABLE rspar_tab EXPORTING LIST TO
MEMORY  AND RETURN.
This is working fine. But I want the updated values present in the program rbdapp01 populated in my internal table.
i.e in the program rbdapp01 the idoc status is changed from 64 to 53. I want this new status to be updated to my internal table. How can I do that? Please do help me.

Hi you always free the memory id as
FREE mEMORY ID <NAMEOF ID>
and refresh the itab.

Similar Messages

  • Doubt in SUBMIT command

    Hi,
      I am calling rvv50r10a program in my report using submit command. I created a variant in the selection screen of rvv50r10a. Now I want Deliv.creation date to have space for both low and high value. Am not able to save the high value as SPACE in the variant. How to make the high value as space.
    Please advice.
    Regards,
    Vanathi

    Have a look at the following code and put space as high and low value in the range table for delivery creation date. Instead of creating a variant try doing it as in the following code.
    CALL FUNCTION 'JOB_OPEN'
    EXPORTING
    JOBNAME = JOBNAME1
    IMPORTING
    JOBCOUNT = JOBCOUNT1
    EXCEPTIONS
    CANT_CREATE_JOB = 1
    INVALID_JOB_DATA = 2
    JOBNAME_MISSING = 3
    OTHERS = 4.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ELSE.
    SUBMIT RHALEINI
    WITH SELECTION-TABLE RSPAR_TAB1
    WITH PCHOTYPE EQ 'P'
    WITH PCHPLVAR EQ '01'
    WITH PCHZTR_D EQ 'X'
    WITH RCVPRN EQ S_PART
    VIA JOB JOBNAME1 NUMBER JOBCOUNT1
    AND RETURN.
    IF SY-SUBRC EQ 0.
    WRITE / TEXT-A00.
    CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
    JOBCOUNT = JOBCOUNT1
    JOBNAME = JOBNAME1
    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
    INVALID_TARGET = 8
    OTHERS = 9.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Submit command in configuration of apple tv

    After entering my password during apple tv setup, I cannot move to the submit command under the password

    Well, I got the answer to my question from apple support. Nicole told me a common problem is that the right arrow must be repeatedly pressed in order to advance to the submit command. The down arrow was the logical choice but that never worked. Nor did the right arrow unless you repeately pressed it. So all is well now.

  • SUBMIT COMMAND ERROR

    Dear All,
    I am using submit command with selection screen parameters of the called program and making a spool out of it and then converting spool output to pdf and sending it on through mail. While running the program in Development client it gives the full output but when I run it in Quality client it is not giving the output . I debugged it and found out that when submit command returns the output in development it gives the full output but in quality it is not giving the output . I have executed the called program separately with the same parameters it is running fine but not with submit command.
    Regards,
    Amber Bhatia

    Here is the code where i am using Submit Command .
    *opening a job to be send to spool
      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 the created job with selection parameters
        SUBMIT HINCEDT0 TO SAP-SPOOL
                        SPOOL PARAMETERS PRINPAR
                        WITHOUT SPOOL DYNPRO
                        WITH PNPXABKR = P0001-ABKRS
                        WITH PNPPERNR = PERNR-PERNR
                        WITH PNPBEGDA = PN-BEGDA
                        WITH PNPENDDA = PN-ENDDA
                        WITH PNPABKRS = P0001-ABKRS
                        WITH FORMULAR = 'ZJK9'
                        VIA JOB NAME NUMBER NUMBER
                        AND RETURN.
      ENDIF.
      IF SY-SUBRC = 0.
    *closing the job which was send earlier
        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.
    I am executing the program HINCEDT0 using the above parameters ..
    Regards,
    Amber Bhatia

  • How to run batch programs using SUBMIT command without any interaction need

    Hello ABAP gurus,
    I have created a batch program in SE38 which calls many other SE38 Programs (Reports).
    I have used the command SUBMIT to call the sub programs. There are about 15 sub programs that this main batch program is calling.
    It works fine, but after calling each subprogram it stops and I have to manually click on 'Back Button' in green on the sap screen to run the next program in the list. Like this I have to do 15 times to run all the programs in the batch.
    Is there a way to avoid this manual intervention and make the program run all the sub programs on its own.
    Your feedback will be highly appreciated.
    Thanks
    Ram

    Thanks Sampath for the response.
    Yes I am using the option "AND RETURN". So it is coming out of each sub program, and it is at this stage it waits for me to click on 'backward green arrow' to continue to the next.
    Here is the code I have used
      SUBMIT Z_AS_BI_F0005_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_DIVISION_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_COMPANY_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_CUSTOMER_EXTRACT WITH  S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_BRANCH_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_BUS_UNIT_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_ADDRESS_EXTRACT WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_CUSTOMER_GROUP_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_GROUP_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_PMT_TERMS_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_REGION_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
      SUBMIT Z_AS_BI_TERRITORY_EXTRACT  WITH S_DATE IN S_DATE WITH P_TEST = 'N' AND RETURN.
    Any other suggestions or feedback will be appreciated.
    Tks
    Ram

  • Submit command

    ii have 2 fields  tanum tapos
    in the first screen the mark is in tanum
    after i enter data to tanum tapos i make submit and the mark is in tapos
    i want him in <b>tanum</b>
    like in lt11
    what the solution

    Hi !
    The code construction "SUBMIT.... " only works if:
    - The called program has to be a REPORT
    - Every data the called report needs can be given via
      PARAMETER-ID to the transaction
    - No other action then "pressing F8" is neccesery on the entry screen
    If ther's an input to do that is NOT on the entry screen "SUBMIT...." will not work here !!
    In these cases you'll have to work with "CALL TRANSACTION .... using bdcdata".
    (See Code-Online-Help for that command)
    Regards
    Rainer
    Some points would be nice if that helped....

  • Reg:Submit statement Return Internal Table

    Hi Team,
    I have a query to return the internal table from the called program via SUBMIT statement to the calling statement ??
    Example : Thing is that consider reports A and B , Report B is getting called from report A where in B we have one internal table full of data that i need to pull to report A and there i need to process it.
    How can i achieve this?
    Please let me know the possible ways.
    Karthik.S

    Hi karthik,
    SUBMIT .... AND RETURN EXPORTING LIST TO MEMORY.
    Then use FM LIST_FROM_MEMORY.
    Thanks,
    Anil

  • Reg: stat command in solaris 10

    Hi Gurus,
    Where i can find the stat command in solaris 10.
    Any one help is appreciated.

    Hi
    /opt/sfw/bin/stat
    if you do a full install including the Companion DVD.
    More importantly, what exactly are you trying to achieve?
    Paul

  • HT3176 How do you use the submit command?

    HOw do I use the Apple TV remote to submit after typing?

    You can use Runtime.exec to execute other processes from Java. You'll want to read this though:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Reg submit

    Dear experts,
        I need help in the following requirement,
        I have a prgram named "A" with values in the selection screen. I need to call the other transaction  "B" in the background passing all the values to that selection screen B from selection screen "A"and exectute . After exection it should return back to program "A" with the values of internal table in the program "B".
    can anyone pls send me a sample code or let me know how to accomplish this
    thanks in advance
    karthik

    Hello Karthick,
    Check this code.
    I have did this report to submit to reports and get the output list of the two reports.
    REPORT ZV_06_026 .
    *--- Type für Anwenderstatus Suchhilfe
    TYPES: BEGIN OF TY_ESTAT,
            STSMA TYPE TJ30-STSMA,
            ESTAT TYPE TJ30-ESTAT,
            TXT04 TYPE TJ30T-TXT04,
            TXT30 TYPE TJ30T-TXT30,
          END   OF TY_ESTAT.
    *--- Anwenderstatus für Projekte
    DATA:  G_T_ESTAT TYPE TABLE OF TY_ESTAT,
           G_R_ESTAT TYPE          TY_ESTAT,
      BEGIN OF G_T_STATUS OCCURS 0,
        PSPID     LIKE PROJ-PSPID, "Projektdefinition
        POSID     LIKE PRPS-POSID, "PSP-Element
      END OF G_T_STATUS.
    *--- Interne Tabelle für Listausgabe
    DATA:
      BEGIN OF G_T_LISTE OCCURS 0,
        PSPNR LIKE PROJ-PSPNR, "Projektdefinition (intern)
        PSPID LIKE PROJ-PSPID, "Projektdefinition
        POSID LIKE PRPS-POSID, "PSP-Element
        POST1 LIKE PRPS-POST1, "Kurzbeschreibung
        KSTAR LIKE COSS-KSTAR, "Kostenart   "/&-neueneu
        KTEXT LIKE CSKU-KTEXT, "Kostenarttext"/&-neueneu
        PLAN       LIKE COSS-WTG001,
        OBLIGO     LIKE COSS-WTG001,
        IST        LIKE COSS-WTG001,
        PLAN_MINUS LIKE COSS-WTG001,
        OBLIGO_INT LIKE COSS-WTG001,
        IST_INT    LIKE COSS-WTG001,
        IST_LFD    LIKE COSS-WTG001,
        PSPXX(1),
        PSPNN(23),
      END OF G_T_LISTE.
    TYPES:
      TYPE_TEXTLINE(512).
    DATA:
      W_TEXTLINE TYPE TYPE_TEXTLINE.
    DATA:
      LT_LIST TYPE TABLE OF ABAPLIST,
      LT_TXT  TYPE TABLE OF TYPE_TEXTLINE.
    TABLES: T2503,PRPS,TJ02T.
    SELECT-OPTIONS: SO_WWSTO FOR T2503-WWSTO.
    *--- Buchungsperiod VON
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(33) TEXT-S01 FOR FIELD PA_JAHRV.
    PARAMETERS:
    PA_JAHRV TYPE GJAHR OBLIGATORY,
    PA_PERV  TYPE CO_PERIO OBLIGATORY.
    SELECTION-SCREEN END   OF LINE.
    *--- Buchungsperiod BIS
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(33) TEXT-S02 FOR FIELD PA_JAHRB.
    PARAMETERS:
    PA_JAHRB TYPE GJAHR OBLIGATORY,
    PA_PERB  TYPE CO_PERIO OBLIGATORY.
    SELECTION-SCREEN END   OF LINE.
    *--- Systemstatus
    SELECT-OPTIONS: SO_PBUKR FOR PRPS-PBUKR DEFAULT '1060',
    SO_ISTAT FOR TJ02T-TXT04 NO INTERVALS  MATCHCODE OBJECT Z48R_ISTAT.
    SELECTION-SCREEN BEGIN OF BLOCK BLCK2 WITH FRAME TITLE TEXT-002.
    PARAMETERS: FILENAME LIKE RLGRAP-FILENAME
    DEFAULT '
    SI39467atmo2$SAMQFETRANSFER.txt'.
    *SELECTION-SCREEN SKIP.
    SELECTION-SCREEN ULINE.
    PARAMETERS: AP RADIOBUTTON GROUP GRP1,
                PC RADIOBUTTON GROUP GRP1.
    SELECTION-SCREEN END OF BLOCK BLCK2.
    *--- Initialzation -
    INITIALIZATION.
      PERFORM F_INITIALZATION.
      INCLUDE Z48C_PSP_DOWN_E01                                          *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FILENAME.
      PERFORM FRONTEND_FILE CHANGING FILENAME.
    *&      Form  f_initialzation
          text
    -->  p1        text
    <--  p2        text
    FORM F_INITIALZATION.
      PA_JAHRV = '1900'.
      PA_PERV  = '001'.
      PA_JAHRB = SY-DATUM+0(4).
      PA_PERB  = SY-DATUM+4(2).
    *--- Alle zu Projekten gehörene Anwenderstatus selektieren
      SELECT  TJ30STSMA  TJ30ESTAT  TJ30TTXT04  TJ30TTXT30
        INTO  CORRESPONDING FIELDS OF TABLE G_T_ESTAT
        FROM  TJ30
        INNER JOIN TJ30T ON  TJ30STSMA = TJ30TSTSMA
                         AND TJ30ESTAT = TJ30TESTAT
        INNER JOIN TJ21  ON  TJ30STSMA = TJ21STSMA
        WHERE TJ30T~SPRAS EQ SY-LANGU
          AND TJ21~OBTYP = 'PRN'
          OR  TJ21~OBTYP = 'PDN'.
    ENDFORM.                    " f_initialzation
    START-OF-SELECTION.
      DATA: LISTOBJECT LIKE ABAPLIST OCCURS 0 WITH HEADER LINE.
      SUBMIT  Z48R_PROJEKTSTATUS WITH SO_WWSTO IN SO_WWSTO
                                 WITH SO_ISTAT IN SO_ISTAT
                                 EXPORTING LIST TO MEMORY
                                 AND RETURN.
    Import the list from memory and store it in table listobject
      CALL FUNCTION 'LIST_FROM_MEMORY'
           TABLES
                LISTOBJECT = LISTOBJECT
           EXCEPTIONS
                NOT_FOUND  = 1
                OTHERS     = 2.
      IF SY-SUBRC <> 0.
        WRITE  'Error in list_from_memory.'.
      ENDIF.
      CALL FUNCTION 'LIST_TO_ASCI'
          EXPORTING
               LIST_INDEX         = -1
           TABLES
                LISTASCI           = LT_TXT
                LISTOBJECT         = LISTOBJECT
           EXCEPTIONS
                EMPTY_LIST         = 1
                LIST_INDEX_INVALID = 2
                OTHERS             = 3.
      CHECK SY-SUBRC = 0.
      DATA: LV_LINES LIKE SY-TABIX.
      DESCRIBE TABLE LT_TXT LINES LV_LINES.
      LOOP AT LT_TXT INTO W_TEXTLINE.
        CHECK SY-TABIX > 3.
        CHECK W_TEXTLINE(5) <> 'Keine'.
        CHECK W_TEXTLINE(5) <> '-----'.
        DO 120 TIMES. REPLACE ' |' WITH '|' INTO W_TEXTLINE.  ENDDO.
        "WRITE / w_textline(255).
        PERFORM HANDLE_LINE USING W_TEXTLINE.
      ENDLOOP.
    Free memory
      CALL FUNCTION 'LIST_FREE_MEMORY'
           TABLES
                LISTOBJECT = LISTOBJECT
           EXCEPTIONS
                OTHERS     = 1.
      IF SY-SUBRC <> 0.
        WRITE  'Error in list_free_memory.'.
      ENDIF.
      DATA: SO_PROJ TYPE RANGE OF PROJ-PSPID,
            WA_PROJ LIKE LINE OF SO_PROJ,
            SO_POSID TYPE RANGE OF PRPS-POSID,
            WA_POSID LIKE LINE OF SO_POSID.
      CLEAR: SO_PROJ,WA_PROJ,SO_POSID,WA_POSID.
      REFRESH: SO_PROJ,SO_POSID.
      LOOP AT G_T_STATUS.
        WA_PROJ-SIGN = 'I'.
        WA_PROJ-OPTION = 'EQ'.
        WA_PROJ-LOW = G_T_STATUS-PSPID.
        APPEND WA_PROJ TO SO_PROJ.
        WA_POSID-SIGN = 'I'.
        WA_POSID-OPTION = 'EQ'.
        WA_POSID-LOW = G_T_STATUS-POSID.
        APPEND WA_POSID TO SO_POSID.
        CLEAR: WA_PROJ,WA_POSID.
      ENDLOOP.
      SORT SO_PROJ BY LOW.
      DELETE ADJACENT DUPLICATES FROM SO_PROJ COMPARING LOW.
      SORT SO_POSID BY LOW.
      DELETE ADJACENT DUPLICATES FROM SO_POSID COMPARING LOW.
      SUBMIT Z48R_PROJEKT_FEHLERKOSTEN  WITH SO_PROJ IN SO_PROJ
                                        WITH SO_PSP IN SO_POSID
                                        WITH SO_PBUKR IN SO_PBUKR
                                        WITH PA_JAHRV EQ PA_JAHRV
                                        WITH PA_PERV EQ PA_PERV
                                        WITH PA_JAHRB EQ PA_JAHRV
                                        WITH PA_PERB EQ PA_PERB
                                        WITH P_LIST EQ 'X'
                                        EXPORTING LIST TO MEMORY
                                        AND RETURN.
    IMPORT G_T_LISTE FROM MEMORY ID 'IV_06_026'.
    Import the list from memory and store it in table listobject
      CALL FUNCTION 'LIST_FROM_MEMORY'
           TABLES
                LISTOBJECT = LISTOBJECT
           EXCEPTIONS
                NOT_FOUND  = 1
                OTHERS     = 2.
      IF SY-SUBRC <> 0.
        WRITE  'Error in list_from_memory.'.
      ENDIF.
      CALL FUNCTION 'LIST_TO_ASCI'
          EXPORTING
               LIST_INDEX         = -1
           TABLES
                LISTASCI           = LT_TXT
                LISTOBJECT         = LISTOBJECT
           EXCEPTIONS
                EMPTY_LIST         = 1
                LIST_INDEX_INVALID = 2
                OTHERS             = 3.
      LOOP AT G_T_LISTE.
        WRITE:/ G_T_LISTE.
      ENDLOOP.
    *&      Form  handle_line
          text
         <--> P_TEXTLINE  text
    FORM HANDLE_LINE USING    P_LINE.
      DATA: BEGIN OF T_CLINE OCCURS 0,
              TEXT(40),
            END   OF T_CLINE.
    erstes Zeichen immer | und irrelevant
      SHIFT P_LINE.
      SPLIT P_LINE AT '|' INTO TABLE T_CLINE.
      READ TABLE T_CLINE INDEX 2.
      G_T_STATUS-PSPID = T_CLINE-TEXT.
      READ TABLE T_CLINE INDEX 3.
      G_T_STATUS-POSID = T_CLINE-TEXT.
      APPEND G_T_STATUS.
    ENDFORM.                    " handle_line
    *&      Form  HANDLE_LINE_LIST
          text
         -->P_W_TEXTLINE  text
    FORM HANDLE_LINE_LIST USING    P_LINE.
      DATA: BEGIN OF T_CLINE OCCURS 0,
              TEXT(40),
            END   OF T_CLINE.
    erstes Zeichen immer | und irrelevant
    SHIFT P_LINE.
    SPLIT P_LINE AT '|' INTO TABLE T_CLINE.
    READ TABLE T_CLINE INDEX 2.
    G_T_OUTTAB-PSPID = T_CLINE-TEXT.
    READ TABLE T_CLINE INDEX 3.
    G_T_OUTTAB-POSID = T_CLINE-TEXT.
    APPEND G_T_OUTTAB.
    ENDFORM.                    " HANDLE_LINE_LIST
    *&      Form  frontend_file
          text
         <--P_FILENAME  text
    FORM FRONTEND_FILE CHANGING P_FILENAME.
      CALL FUNCTION '/SAPDMC/LSM_F4_FRONTEND_FILE'
           EXPORTING
                PATHNAME         = 'C:'
           CHANGING
                PATHFILE         = P_FILENAME
           EXCEPTIONS
                CANCELED_BY_USER = 1
                SYSTEM_ERROR     = 2
                OTHERS           = 3.
      IF SY-SUBRC <> 0.
       MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " frontend_file
    Hope this will helps you.
    Vasanth

  • Possible to Modify Submit Commands?

    I am a new user to Adobe products.  Currently I am working in Adobe Acrobat 9 Professional.  I am in the process of creating a multi page form for users to complete & email back to myself and other department members in my group.  The forms include fill in data fields and the document has been saved to extend features to Adobe Reader users.  Is it possible to include different submit fields throughout the same document?  For example, can a submit button be added for pages 1 to 2 where only that portion of the document is emailed to specific members of our department and not others.  We would also want to create a different submit button for pages 3 to 4 to go to a different email distribution listing & include only those pages and not the first two.  Presently, the forms are saved as separate documents, but we would like to merge into a single document since there is duplicate data that users have to enter.
    Also, I noticed that when users select the submit button the document is attached to an email & is removed from their screen.  If multiple submit buttons are a possibility, can the document continue to remain on the user's screen to allow them to finish & submit the remaining portions of the form?
    Thank you for any help you can offer.

    You cannot do what you want. To get that level, you are better off placing the form on a website (No worries about number of instances being used, extended rights limit you to 500 instances). With a properly written script the information from the pdf file can import the information from the fields and either sent to the appropriate people or inputted into a database which people can then query. You can restrict who sees what in the database. This is the best way to handle forms that have information that must be used by different people.

  • Submit command in BSP

    i m using submit repname.....exporting list to memory in my BSP page..then using write_list / disply_list  i want to disply the exported abaplist .
    But write_list / display_list doesnt work in layout..
    can not display screen with plugins is the error.
    please give me a solution on this...
    My aim is to call a ABAP report program from a bsp and display the results.

    Hi Seshadri,
    please have a look at the following thread:
    Re: Conversion ABAP Report to BSP Application
    The answer given by Thomas Jung is important for your problem.
    Regards,
    Rainer

  • Reg : OS commands in Adapter Configuration

    Hi,
    I have seen the option like <b>Run Operating Sustem Command Before Message processing and After Message</b>.
    How can I use them
    Where can I see the results of it.
    I need an OS command to diplay all the files in a directory before message processing .
    How can I use it.
    Regards,
    Kalpana.

    Hi,
    Please Follow these
    Run Operating System Command Before/After Message Processing -
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm
    Also to catch errors - /people/michal.krawczyk2/blog/2005/08/17/xi-operation-system-command--error-catching
    Reward points if Helpful
    Regards
    Sesha

  • Reg Disabling command field in Portal

    I have an requirement where in the command field should be disabled while calling a Tcode in Portal.
    I.e. After i call a Tcode in Portal, the command field box should not be there for the user to go for another transaction. How can i achieve this??

    Hi,
    Duplciate Post.
    I dont know abt the hiding th command field. I think we need a exit or BADI for that.
    Or
    Try to have the Iview in the Iput Disabled mode when opened in the portal.
    Or
    Give the permissions only to view the Tcode but not for eidting.
    Regards
    Lekha

  • Reg INCLUDE command in SAPscript

    Hi Folks,
       Can anybody tell me is it possible to give tab in INCLUDE command in SAPscripts.
       What I mean is I want to display standard text after few spaces.
       Thanks in Advance
       Punit

    Hi Punit,
          You cannot give tabs for INCLUDE command. On the other hand you can read the text in your print program using READ_TEXT function module. You can modify the text using SAVE_TEXT and send it to the SAPScript for output.
    With Regards,
    Nelson

Maybe you are looking for