Reg creation of patterns in smartforms 4.6c

Hi,
I know that there is an option to create patterns in the smartforms version 4.7.But is there any way to create the required patterns of our own in smartforms version 4.6c.
thanks in advance
regards,
karthik

Check this help for the table painter in the Smartforms:
http://help.sap.com/saphelp_nw70/helpdata/EN/4b/83fb4edf8f11d3969700a0c930660b/frameset.htm
I am not sure, if the same table painter is available in the 4.6C
Regards,
Naimesh Patel

Similar Messages

  • Reg: Creation of PFILE

    Hi
    I'm a fresh DBA.I'm new to this field and learning Things.Unknowingly i deleted the pfile and made a shutdown to my database..... When i'm trying to start the Database i'm unable to start it. is there any way to create a new pfile..........Please find me the way...
    Advance Thanks
    S.Ram

    Hi,
    What is your Oracle version ? Have you create a spfile before delete pfile ? If the response is no, you need to recreate a pfile manually.
    => It a good way to have a backup of all database files, including pfile (or spfile).
    Nicolas.
    Duplicate case with thread in other forum :
    Re: Reg: Creation of PFILE after DB Shutdown
    Message was edited by:
    N. Gasparotto

  • Reg: Creation of PFILE after DB Shutdown

    Hi
    Actually i deleted the pfile accidentally and shutdown my database..... is there any way to create a new pfile..........Please find me the way...

    Duplicate case with thread in other forum :
    Reg: Creation of PFILE
    Choose a forum and fix it.
    What is your Oracle version ? Have you create a spfile before delete pfile ? If the response is no, you need to recreate a pfile manually.
    => It a good way to have a backup of all database files, including pfile (or spfile).
    Nicolas.

  • Uploading pattern in smartforms

    Hi gurus,
    How can I upload my customized pattern in smartforms. I want to put lines in the table, and none of the patterns defined in smartforms meets my requirement. How to create dynamic vertical lines in main windows. I need lines in some of the columns not in all, and those are random. Any kind of suggestion is welcome. I have read in a previous thread that it is possible to upload patterns in smartforms. How can we do that. Step by step suggestion would suffice. Full points are guaranteed.
    Thanks in advance.
    Debopriyo
    Debopriyo

    If u see in the table tab of a table or template tab of the template there will be options available for you draw lines where it is required...To be mopre precise you can do it for the particular cells in template.
    You requirement can be achived with this.

  • CFINPUT Reg Expression Validation Pattern Help

    I've got a form with a non-required field that needs to meet
    some validation requirements (Numbers, Letters, 'space character'
    or 'blank, empty string' only) if the user chooses to fill it
    out...
    I'm using CFINPUT tag with the following settings, does my
    Reg Expression pattern look OK?
    REQUIRED="No"
    VALIDATE="regular_expression"
    PATTERN="^[a-zA-Z *]{1,40}$"
    MAXLENGTH="40"
    Thanks for any help. I'm v. new to regular expressions (10
    hrs education at Google Univ.)
    Sincerely,
    Paul Cross

    I think you want something more like this:
    ^[a-zA-Z0-9 ]{0,40}$

  • Reg .. functions used in smartforms

    Hye Friends,
    Im not getting y we use the functions SSF_OPEN AND SSF_CLOSE in smartforms.
    what is the basic defn of both and for what purpose they are used in.
    Many thanks
    Sunny

    Hi
    go through this:
    How to create a New smartfrom, it is having step by step procedure
    http://sap.niraj.tripod.com/id67.html
    Here is the procedure
    1. 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.
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Reward points if useful
    Regards
    Anji

  • Reg: Creation of new Material type

    Hai Guys,
    Jino here,can anyone please tell me the procedure for creating my own "MATERIAL TYPE"
    while creating a new material.
    Regards
    Jino.

    Hi
    decide which material type in the standard availabilty closely resembles you New material Type  you are planning to create, It may be ROH/HALB/FERT/ERSA or any other. Use the TxN OMS2 for this, select the existing Std Material and do a Copy As and name the New material Type starting with Z . for example ZRAW , once saved select the material tyep and go to the details of the new material type , you can remove Certail views if you donot wish to have it during material creation, check out other parameters also lie external proc/internal proc, standard or Moving avg price indicator  and proceed as required for you.
    Regards

  • Reg: creation of return deliveries and Post goods recipt..... urgent...

    Hi,
    I have to create delivery for return sales order and i am not able to find bapi or function module to create return order deliveries. in my case it is serilized materials.
    I am trying to create return orders with BAPI_DELIVERYPROCESSING_EXEC...
    But i am not able to create.. for return order delivery creation. If this is right bapi can u send me the parameters for this...
    Thanks in advance,
    praveen

    Hi,
    Here you can use 653 instead of 651.When you use 653 system will post the stock directly to the unrestricted stock and an accounting document is generated with this movement type.
    Regards,
    Rambhupal reddy

  • Reg creation of rule while using ima 11

    Hi,
    I want to create a settlement rule on order creation after completing ima11.
    I want to pass a rule for a particular(ex tool order)
    after ima11.
    The rule is to pass the tool order to a particular GL code the screen in KA02 shows the rule ,
    1.Is there any enhancement ?
    2. What is the function module which can help to  pass the entry in the background .
    Regards
    Rohini
    Edited by: RohiniAda on Jan 10, 2011 9:32 AM

    Hi,
    please check SAP note 859500:
    - implement all relevant notes
    - send a message to SAP support for checking and solving the GUID inconsistencies.
    best regards
    Thomas

  • Reg creation of indexes

    Hi All,
    cud anybody pls let me know abt the <b>creation and maintenace of indexes</b>??
    any screenshots or step-by-step procedure.....!!!
    its quite urgent..
    regards,
    abc xyz

    HI,
    1.In SE11 Transaction display your table.
    2.press button index... in tool bar, it will ask you
    to create a new one.
    3.give the index name
    4. give short text description
    5. in bottom table give the field name on which
    you want index.
    6. save and activate.
    check this.
    http://www.oreilly.com/catalog/sapadm/chapter/ch01.html
    To create Secondary Index --> http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21eb47446011d189700000e8322d00/content.htm
    Also Check the below links.
    http://help.sap.com/saphelp_erp2005/helpdata/en/1c/252640632cec01e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c7/55833c4f3e092de10000000a114027/frameset.htm.
    Regards,
    Sesh

  • Reg: Creation of Table Types

    Hi All,
    I have a small question regaridng the creation of Table type.
    Let us suppose I am creating Table type for a custom table zsample which is having 5 fields. I am generally creating a structure similar to custom table and using that structure as line type for the table type. Let us suppose if there are any changes in the custom table like change in the order of fields or if new fields are added the table type will give dump.
    My question is If I use the custom table itself as a line type, will there be any effect in the performance or some thing or I can go ahead and use it..
    Thanks,
    Ravee

    What dump are you expecting ???
    It is idea behind the creation with reference to get structures and tables which always look like
    the tables they refer to.
    I can not see a possibilty for a dump as long as you create only an internal table.
    A dump could appear, if the internal table is later used to update another db-table. But there it should be clear that the structure of an internal should be created with reference to the tables which they change.
    Siegfried

  • Issue reg creation of reservation

    Hi all,
    I am trying to create a reservation.
    I have given a plant and storage location for a material by checking in table mard.
    for some reason ,its says  storage location not supported even though the mard
    table has the same plant and storage location for that material.
    it sometimes says only 1 quantity available.
    what should i do in order to increase the quantity available.
    waiting for your replies

    Hi Deepthi,
    Check,
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-log-mm/reservation-1179743
    Regards,
    Azaz.

  • Reg. creation of Blanket Order through BAPI_PO_CREATE1

    Hi All,
    I have a requirement of creating framework order of document type FO. When I fill bapi interface correctly, I am getting an error message as either error  SE-518 u201CNo account assignment exists for service lineu201D or error 06 436-In case of account assignment, please enter acc. assignment data for item". I even tried in reverse way of filling bapi interface of po create1 by seeing from BAPI_PO_GETDETAIL1 of already created PO.but still I face same error. I filled up POLIMTS,with dummy package value in POSERVICES,POITEM,POITEMX, and account assignment details in POACCOUNT,POACCOUNTX tables of BAPI_PO_CREATE1 inetrface.
    If any one of you has worked on this before, i request you to send the code or any suggestion on how to proceed.
    Srikanth.

    i have the same problem. Can you suggest me your solution.
    Thank in advance.

  • Reg.Creation of production order in past dates

    Hi all,
      Tell me that is there any possibility to create production order in Past dates.Let me explain my requirement.
    I create Production order mannually in CO01.By creating using this transaction code i need to save the production order on past dates,say
    Today's date - 06/04/2010
    my requirement is i will create production order on 06/04/2010 with the basic start date of production as 04/04/2010(I.e.Past Dates).And the system should schedule the order in past dates only after saving it.
    This is what i need
    To get this what are the configuration aspects i have to taken care.
    Thanks in advance,
    M.Badrinarain.

    hi ,
    for configuration you can go to OPU3 as suggested by by Mr. Kumar.
    also for a particular process order you can do it by :
    process order >settings> scheduling parameters in menu bar of process order.
    there you can give no. of days in past .
    regds
    satish

  • Reg:Creation of chart during query runtime

    Dear all,
    I want to display a Pie-Chart during my query execution
    dynamically. I am working only in query designer not in WAD.
    For example :  I have created a query in query designer based on Zonewise Sales Value. And i have designed the chart also based on these values. But i am facing the problem when i am executing the query i couldnt able to see the Pie-Chart desinged by me.
    Is it possible to save the Pie-Chart as saved view in my query  designer?
    Kindly do the needful. Helpful answers will be rewarded.
    Thanks,
    Harikrishna N

    hai expert's,
    is there any option to save and execute the chart during  query execution. i am asking in query designer?.....
    please through a ligh on it........
    Regards
    Harikrishna N

Maybe you are looking for