Where the standard smart forms stored in sap

hi
this is kishore kumar
i am new to smart forms
please tell me any body
in which table table standard smart froms r stored
for example scripts r stored in  TNAPR TABLES
so in which table smart forms r stored
please tell me
or how to use standard smart forms.
thanks in advance

Hi Kishore,
Smartforms stores in table STXFADM
Procedure to find where smartforms storeS:
Run Tcode: SMARTFORMS
Press F1 on smartform text box .
Click on technical information icon. You can find table name as SSFSCREEN.
Double click on SSFSCREEN, Which is a structure.
In this you can find first field as FNAME(form name).
Go to entry help/check tab .you can see check table for field FNAME as STXFADM.
Double click on STXFADM . it takes you into table STXFADM.(this is the table actual table where you can find smartforms).
click on content icon  where you can different smart forms.
Regards,
Jaipal Reddy.k

Similar Messages

  • How to display smart form stored in SAP in Webdynpro java( TLINE table)

    Hi
    I have a requirement where I have to display the smart form from WD Java end.
    The BAPI is producing output in TLINE(TDLINE(132),TDFORMAT(2)). I am trying to concat both(TDLINE+TDFORMAT) and put in the interactive form but I am not able to get the output from BAPI.
    Is it because the TLINE  format is not supported in the WD java. How can I solve the issue.
    Looking forward for the reply.
    Regards,
    Pawan

    Hi..
    Try this PDF URL.... u might get useful things...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    Web Dynpro Java
    yours GS

  • Replacing Standard SMART FORMS

    Hello,
    Firstly, how do we find the smart form associated with a transaction (service order, activity etc.) Secondly, I want to replace the standard Smart Form for printing of Service Orders and Case Management with a custom Z smartform, anyone has any idea on how do we do this ?
    Answers would be rewarded,
    Regards,
    Jacob.

    Jacob,
    Smartforms would be associated with the transactions via Actions.
    i.e.
    In spro, find out your transaction type and in its details find the action profile assigned to it. Once you get the action profile come back to spro and see the actions assigned to it. In one ofthe actions, you will find the smartform attached.
    This is the link. If you wish to change this standard to your z smartform, you need to make the change here in the action profile (in the action assigned to the action profile that would fire the print)
    Please note that when you change it to a Z smartform, unless you generate the smartform (in t.code SMARTFORMS) it wont reflect in the transactions.
    In other words, you need to activate and generate your z smartform before assigning it to the actions in the action profile.
    Let us know if you have any concerns.
    Julius

  • Sap standard smart form fol BOL is LE_SHP_DELNOTE

    Hi,
    Is this the Sap standard smart form for Bill of lading is LE_SHP_DELNOTE for shipment.
    Nor do i need to migrate the existing sapscript form to smartform?
    thanxs in advance.

    Hi,
    In SAPScript, you can use SHIPMENT_DOC.
    In SmartForms, you can use LE_SHP_DELNOTE.
    Thanks,
    Ramakrishna

  • How to use standard Smart forms

    hi All,
    Pls give me the detail for smartform ie how to use standard smart forms and how to modify them in SAP 4.7EE
    Thanks,
    Nitin

    Hi,
    first u copy the standrad smartform to z and then modify it,
    SOME STANDARD SMARTFORMS
    SF_EXAMPLE_01,
    SF_EXAMPLE_02,
    SF_EXAMPLE_03,
    LB_BILL_INVOICE,
    ENETR SMARTFORMS TCODE
    PRESS F4 HERE U FIND ALL STANDARD SMARTFORMS
    OR
    U GO TO TRANSACTION CODE NACE
    SAMPLE PROGRAM FOR SMARTFORM,
    . Create a new smartforms
    Transaction code SMARTFORMS
    Create new smartforms call ZSMART
    2. Define looping process for internal table
              Pages and windows
          First Page -> Header Window (Cursor at First Page then click Edit -> Node -> Create)
          Here, you can specify your title and page numbering
          &SFSY-PAGE& (Page 1) of &SFSY-FORMPAGES(Z4.0)& (Total Page)
          Main windows -> TABLE -> DATA
          In the Loop section, tick Internal table and fill in
          ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2
    3. Define table in smartforms
               Global settings :
               Form interface
               Variable name    Type assignment   Reference type
               ITAB1               TYPE                  Table Structure
               Global definitions
               Variable name    Type assignment   Reference type
               ITAB2               TYPE                  Table Structure
    4. To display the data in the form
        Make used of the Table Painter and declare the Line Type in Tabstrips Table
         e.g.  HD_GEN for printing header details,
                 IT_GEN  for printing data details.
         You have to specify the Line Type in your Text elements in the Tabstrips Output options.
          Tick the New Line and specify the Line Type for outputting the data.
          Declare your output fields in Text elements
          Tabstrips - Output Options
          For different fonts use this Style : IDWTCERTSTYLE
          For Quantity or Amout you can used this variable &GS_ITAB-AMOUNT(12.2)&
    5. Calling SMARTFORMS from your ABAP program
    REPORT ZSMARTFORM.
    Calling SMARTFORMS from your ABAP program.
    Collecting all the table data in your program, and pass once to SMARTFORMS
    SMARTFORMS
    Declare your table type in :-
    Global Settings -> Form Interface
    Global Definintions -> Global Data
    Main Window -> Table -> DATA
    Written by :  SAP Hints and Tips on Configuration and ABAP/4 Programming
                        http://sapr3.tripod.com
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
            INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
       MOVE-CORRESPONDING MKPF TO INT_MKPF.
       APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSMARTFORM'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      IMPORTING
        FM_NAME                  = FM_NAME
      EXCEPTIONS
        NO_FORM                  = 1
        NO_FUNCTION_MODULE       = 2
        OTHERS                   = 3.
    if sy-subrc <> 0.
       WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        GS_MKPF                    = INT_MKPF
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5.
    if sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Thanks&Regards,
    Phani
    POINTS HELPFUL

  • Standard smart forms

    hi All,
    Pls give me the details that how to use system defined smart forms and how to copy and change standard smart forms in SAP 4.7EE
    Thanks,
    Nitin

    Standard SmartForms
    Smartforms for Invoice--LB_BIL_INVOICE
    Delivery Note--LE_SHP_DELNOTE
    Check these threads.
    smartforms

  • Where the posted threads are stored

    Hi All,
    Where the posted threads are stored. In which repository i is storing.
    Regards
    Krishnamurthy K

    Hi,
    You can read the documentation about [Content Management Configuration|http://help.sap.com/saphelp_nw70/helpdata/EN/69/d96b7aa84611d5993600508b6b8b11/frameset.htm] , where you can find a lot of information about [Repository Managers |http://help.sap.com/saphelp_nw70/helpdata/EN/69/d96b7da84611d5993600508b6b8b11/frameset.htm] .
    Repositories are used for storing and/or retrieving content and metadata.
    The KM standard configuration uses several internal repositories that are controlled by CM. They are used for storing and staging various content and metadata and for navigating in this data. These repositories are preconfigured and preactivated in the KM standard configuration. You do not normally need to modify their configuration.
    In addition to the aforementioned internal repositories, you can integrate additional external repositories into CM, such as a WebDAV or file system repository. You can establish a connection to these repositories by configuring appropriate repository managers.
    Regards,
    Lubi
    *Hope it will be helpful for you.

  • Am using a standard smart form and a corresponding program.

    hi
    i  am using a standard smart form and a corresponding program. i did evry possible thing but it is not executing..where could be the error.?
    can any1 suggest

    Hi,
    Dude..!
    you told that you created form and corresponding print program also....!
    but you didn't mentioned what it is..! in the sense to which module..!
    are you changing any standard form or what..! be clear while raising issue..! so that you can get your issue cleared..
    and you have to assign your form and corresponding print program in NACE transaction for the given output type.
    Thanks & regards,
    Sasi Kanth.

  • Where do variant values get stored in SAP?

    Hello
    This is basically an ABAP question, but I am still putting it here. If we have a custom report (program) in R.3, and a user creates multiple variants for that program, is there a table which stores the values that he has entered for that variant. I have read several posts and have searched on the web and have found that:
    1. Most important tables for variants: VARID, VARI, VARIS, TVARVC. The table VARI has a field CLUSTD where the variant contents are stored are in encoded format.
    2. And the FM which does the conversion (behind-the-scenes): RS_VARIANT_CONTENTS.
    But is there an a proper database table that store the values (as there are) in SAP?
    Thanks,
    Srini.

    Hello,
    I think you can find the values in different tables like: TVARV, TVARVC, VARI, VARICON, VARICONCI, VARID, VARID_CI, VARIDESC, VARIDESCCI, VARINUM, VARIS, VARIS_CI, VARIT, VARIT_CI and VARI.
    I hope it helps!
    Thanks.
    Beatriz.

  • Where the Forum informations are stored?

    Hi all,
    i need to know, where the forum contents are stored in the KM?
    regards,
    Kathiresan R

    Hi,
    Did you press the Advanced mode when you are under repository manager?
    If the forums repository is not present, then you did not install Forums Application.
    Check this:
    http://help.sap.com/saphelp_nw70/helpdata/EN/46/9ca6594e903ef4e10000000a1553f7/frameset.htm
    Regards,
    Praveen Gudapati

  • Table where the Delivery date is stored in Confirmation tab on Me23n

    Hello ABAB Gurus,
                               Can anyone give me the table name where the Delivery date is stored in Confirmation tab in Item in ME23n.
                                  If anyone is aware of it then please let me know .
    Sagar

    Hi,
    Check the table EKES and field name is EINDT..
    Thanks,
    Naren

  • Changing where the sent messages are stored

    Hi, I was wondering is there any way you can change where the sent messages are stored. I have switched from a few programs.. and there is a 'sent' folder and ' sent messages' folder on my folder list in addition to that of what mail is putting them in. I just want one folder.

    Sounds like you are accessing an IMAP type account.
    If so, is this the only email account and account type you are accessing with the Mail.app?

  • How to find where the screen field is stored in table

    Hi all,
    How to find where the screen field  is stored in the table .
    for some transactions if i press F1 on the field and after checking for the technical help.
    I can only find the struture for the screen field, but whereas i need table name for it.
    Can anybody help me how to find the table name where the field is stored.
    Regards,
    Madhavi

    Hi,
    Just hitting a F1 on screen field and getting structure name will not help in getting table name.
    First you need to know the flow of data in the reqd module, which will help you know all the tables in that module with there most of the fields with the data flow, now you need to work on your own to figure out that in which actual tables that value is stored.
    Hope this helps you.
    Regards,
    Tarun

  • Tables where the XI Data is stored

    Dear all,
    Can you let me know all the tables in XI in which the data is stored.
    Like where the asyncronous messages are stored(which table and what is the abap program name which gets executed to store the message id's etc in the table).
    Pl list out all the tables,programs related to XI.
    Also pls let me know where IDOC,Proxy,RFC related tables programs.
    my mailid is srinivas5780@gmailcom

    Hi,
    Please go through the below weblog:
    /people/gourav.khare2/blog/2007/12/12/interesting-abap-tables-in-xi-150-part-i
    Look at the below thread for SXMB_MONI tables and Function module:
    In Which Database Table the Messages are Stored in XI
    Message Monitoring  --> corresponding tables?
    For IDOC:
    tables are EDIDC control record table and EDIDD-data record table.
    Thnx
    Chirag

  • In which table the condition records get stored in sap crm

    hi everybody any one can help me in this,
    In which table the condition records get stored in sap crm.
    Regards,
    Babu

    Hi Babu,
    The table name depends on the condition table you have chosen while adding a condition record. Like if it is SAP001, the database table will be CNCCRMPRSAP001.
    Regards,
    Shalini Chauhan
    Edited by: Shalini Chauhan on Jun 23, 2008 10:18 AM

Maybe you are looking for