Smartforms in ECC 6.0

Hi Folks,
I am designing a smartforms for invoice but the drag and drop opertaion doesn't work in ECC 6.0 version
how do i insert fields using field list generator..
any help wud be appreciated.

Hi
It will work see correctly
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
Subtotals - Check the link...
Re: Subtotal with Table Node in smartforms
Reward points for useful Answers
Regards
Anji

Similar Messages

  • Standard program name for PO smartform in Ecc 6.0 onwards

    Hi,
    Could anyone please help me to know the program name for PO smartform in ECC 6.0 version onwards.i know about /SMB40/FM06P but this program is not there in Ecc 6.0.
    Plesea help me.
    Thanks,
    Sandeep.

    Hi Sandeep,
    The Driver program for the SapScript MEDRUCK is SAPFM06P.
    Thanks,
    Anon

  • How to call and reuse smartforms from ECC to CRM?

    Hi Experts,
    I would like to seek help from all of you, I would like to know if it is possible to call and reuse smartforms created in ECC to CRM environment. The requirement is to create smartforms in ECC (R/3 system) and reuse and call it in CRM environment whenever the 'PREVIEW OUTPUT' button is ticked in CRM webclient. This is to reduce the creation of smartforms from both systems.
    Hope to hear from all of you. Your help will be very much appreciated.
    Thanks and Regards,
    Monica

    You can not reuse it directly but I guess you can download form from ECC and then upload it to CRM. I guess based on your requirement you might end up with few changes to form in CRM to display correct data.
    http://help.sap.com/saphelp_nw70/helpdata/en/c9/452f2d33ca11d5b697006094192fe3/content.htm
    http://www.howforge.com/how-to-upload-smartforms-from-pc
    Smartform Download/Upload problem
    Regards,
    BJ

  • PURCHASE ORDER SMARTFORM   IN ECC 6.0

    Hi all.
    I have an issue in smart forms.
    we are using ECC 6.0,
    in this version the smartform for Purchase Order is existing or not.
    if it is existing ,plese tell me the smart form name.
    if it doesn't exist,how can I get that smart form.
    Thanks in advance,
    regards,
    Eswar

    Hi Eswar,
    We have the Smartforms in the Service.sap.com, you need to download from this one. in our SAP we do not have these smartforms .
    smartform name is <b>/smb40/mmpo_l</b>. Look at the SAP Note 695891
    Look at the below link
    Re: PURCHASE ORDER SMARTFORM   IN ECC 6.0
    <i>Mark all the helpful answers</i>
    Regards
    Sudheer

  • Standard SMARTFORMS - SAP ECC 6.0

    Hi All,
    We are implementing SAP ECC 6.0 version.
    We would like to use the standard smartforms provided by SAP. But I am unable to find most of the smartforms (thro' Tcode: SMARTFORMS, F4 help).
    Do we have to run some patches to import standard SAP smartforms? Please provide your inputs. Thanks.
    Regards,
    Sathyajith ([email protected])

    Hi,
    Please check this link for preconfigured smartforms.
    http://service.sap.com/installations
    In menu choose "Entry by Application Group" -> "SAP Best Practices" -> "Best Practices for mySAP All-in-One" -> "PRECONFIGURED SMART FORMS"
    Also you can ask BASIS team to down load pre-configured smartforms and then copy the standard to yours. This link may help you.
    http://help.sap.com/bestpractices/industry/wholesale/v146c/Wholesale_US/html/PreconfSmartForms.htm
    Regards,
    Ferry Lianto

  • PO Smartform for ECC 6.0

    Dear All,
    We have a reqirement to implement PO through Smartform.
    We have a idea of copying the std availabe smartform and modifying it to meet our requirments.
    In ECC 6.0 I am unable to find any standard smartform availabe.
    I also learnt from ECC 6.0, Smartform would be availbe in the bestpractise guide. I am not sure where to extract the data from.
    I searched in service.sap.com/bestpractises. but no outcome.
    Some people in the forum have ealier suggested note 852250, but the note says clearly.
    "This workaround is not available for ECC600 system,it is not supported".
    Pls could anybody give me some correct info on this.
    Or should we create our own progam/layout.
    Harish

    Please try this Link , it may help you
    https://websmp108.sap-ag.de/preconfiguredforms
    http://help.sap.com/bp_cpwsd603/CP_WSD_IN/html/index.htm
    Regards
    Edited by: samuel mendis on Jan 28, 2010 4:46 PM

  • Examples of scripts and smartforms in ECC 6

    Dear All,
    I request you all there, to send me few examples or tutorials which has screen shots in them for creation of SAP scripts and the same example for smartform. As i am looking in ECC 6 there is lot of difference to that of before versions of SAP.
    Awaiting to hear from you all soon.
    Full reward will granted for correct solution provided.
    Regards,
    CHK

    Full reward will granted for correct solution provided.
    Did you read rules of engegement?
    refer:
    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
    SAPScripts
    http://esnips.com/doc/1ff9f8e8-0a4c-42a7-8819-6e3ff9e7ab44/sapscripts.pdf
    http://esnips.com/doc/1e487f0c-8009-4ae1-9f9c-c07bd953dbfa/script-command.pdf
    http://esnips.com/doc/64d4eccb-e09b-48e1-9be9-e2818d73f074/faqss.pdf
    http://esnips.com/doc/cb7e39b4-3161-437f-bfc6-21e6a50e1b39/sscript.pdf
    http://esnips.com/doc/fced4d36-ba52-4df9-ab35-b3d194830bbf/symbols-in-scripts.pdf
    http://esnips.com/doc/b57e8989-ccf0-40d0-8992-8183be831030/sapscript-how-to-calculate-totals-and-subtotals.htm
    SAP SCRIPT FIELDS
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/d1/8033ea454211d189710000e8322d00/content.htm
    scripts easy material
    http://www.allsaplinks.com/sap_script_made_easy.html

  • ECC 6.0 Purchase Order Smartforms

    Dear all,
      I know the standard PO smartform and print program are:
      Smartforms: /SMB40/MMPO_L
      Print Program: /SMB40/FM06P
    But i can't find them in my ECC 6.0 system.  Any suggestion??
    Regards,
    Kit

    PURCHASE ORDER SMARTFORM   IN ECC 6.0
    PURCHASE ORDER SMARTFORM   IN ECC 6.0
    Smart Form Purchase Order in ECC 6.0
    Reward points..

  • Need the SMARTFORM name for Purchase Order in ECC 6.0

    Hi experts,
              I have been working on ECC 6.0 version and I need your help in finding out the name of the SMARTFORM for Purchase Order. Please let me know the SmartForm name if anybody knows. Waiting for your replies.
    Regards,
    Ravi

    HI,
    We have the Smartforms in the Service.sap.com, you need to download from this one. in our SAP we do not have these smartforms .
    smartform name is /smb40/mmpo_l. Look at the SAP Note 695891
    Look at the below link
    Re: PURCHASE ORDER SMARTFORM   IN ECC 6.0
    <i>Mark all the helpful answers</i>
    Regards
    Sudheer

  • SRM Smartform - How to write custom logic to get data

    Hi Experts,
    I am new to SRM 7.0 now. I want to know where the code logic can be written to print the custom smart form?
    I have already create custom smarts form ZBBP_PO, and implement the BADI  BBP_OUTPUT_CHANGE_SF to pass the custom form name.
    But i don't know where to write the code for fetching the source data. In ECC, we can write the code in a separate report program. How it does in SRM now? It is said some class and method will print the form. How to find it? and how to add custom logic.?
    Or the logic of fetching source data should be embeded in the smart form? I don't like to write much more codes directly in smart form.
    Thanks!

    Yeah, I know it. but I don't want to write code logic into the Smartforms. in ECC, i always write the code in a separated program which will pass the data to smartform and call function module to print it.
    i just want to know whether i can write the code in somewhere else in SRM, not in smartform.

  • Avoid the pagebreak in smartforms

    Hi
    I am working in smartforms version ECC 5.0.iam displaying headerdata and item data for purchase orders.
    Header data i created one complexsection and table for item data.how can i get header data and itemdata in onepage without pagebreak.for example.
    purchase order : 4151506108
    itemno    quantity        unitprice     amount
    00010     100,000         10,00         1.000
    000020    100,000         50,00         5.000
    000030    100,000         50,00         5.000
                                         subtotal    11.000
    I need complete data in onepage without page break.
    please provide  me solution in detail.
    Thanks in Advance,
    Suresh.

    Hi....
        It should be similer to PROTECT and ENDPROTECT in scripts... isn't it?
    For that we are having One Check box in the smart form...
    i.e...
    Page protection in output options tab... for every text node...
    just click that... with this option you can solve your problem...
    Thanks,
    Naveen.I
    Edited by: Naveen Inuganti on Jun 27, 2008 10:42 AM

  • How to convert Tables in ECC to Tables in 4.6C

    Friends,
       I have a unique requirement where I need to copy the smartform from ECC to 4.6C. Everything seems to beokay except filling the table. I have a table in Main window with 2 line types. first one has only one cell (header) and 2nd one has 3 cells with item data. for each of the cell I have some abap code ( program lines node) and one text element. so when I write define them I see all of them under Table node in a messy format. even I am not able to see which program line code is related to which text element and CELL.
       Can anyone advice me how to define in order to place the data in relevent cells ?
    Thank you so much for your time in going thru this.
    Cheers
    Reddy

    Hi Reddy,
    No problem, these setting can be a bit tricky.
    For your text elements, the first element in the row you need to check the 'New line' box and specify your line type, this will put the text in the first cell of that line.  For each other element in the row only check 'new cell', this will put each element into a new cell working across the row.  The 'Skip cells' field should only be filled if you want to leave a cell in the row blank and fill the next one.
    Regards,
    Nick

  • Smartform for PO - ME21N info needed

    Hi ,
    Can anyone also tell me how to add a hyperlink on the smartform page? Is that possible? If yes, how can that be done?
    I am developing a smartform in ECC 6.0 for PO for ME21N transaction...Please can anyone let me know where I could get the below information:
    Ship to party, Sold to party, Vendor info, Bill to party.
    Also, what is the procedure to print the header text on the smartform? Do we have to use, read text FM? Are there any standard form?
    Please respond.
    Thanks.

    Hi,
    it is not possible to give hyper link in smartform.
    the reason being the end result of a smartfrom is supposed to be a print out or PDf file.
    generally u will not maintain sold-to/shipto details in P.O, this is possible when we create P.O with reference to a Sales order in which case u need to go to the document flow and get them.

  • Smartforms text node in release 710

    Prior to today, I have worked with SmartForms in ECC 5.0 but now I am in ECC 6.0.  I see a major difference in SmartForms when it comes to text nodes.  What is this all about?  I can no longer drag fiields to the text node.  Now the text node opens with an, embeded, instance of MS Word.  Is this normal?  Have SmartStyles gone away?  I am royally confused.
    Regards,
    Aaron

    The only pencil icon I see says "Editor" when you hover over it and it is above the 'Check' icon.  I used the 'Insert Field' icon, adding the '&'s, and it still doesn't display the result of that field.  Any ideas?
    I now managed to get the value to come through.  I had to click the "editor" button and add the field in that editor.  It didn't work if I added the field in the first editor (the node layout).
    My problem with the character format still stands.  Also, can you not drag and drop the fields anymore?  Is there a way to go back to the old editor?  This new editor takes entirely too long to load each time you go to a new text node.
    Aaron
    Edited by: Aaron Shover on May 7, 2008 11:12 AM

  • Standard SmartForm for Purchase Order in ECC6.0?

    Hello SAPients!
    Does anybody knows if SAP has released a standard SmartForm in ECC 6.0 as an alternative to SAPScript MEDRUCK? Do you know the name?
    Thanks!

    Hi,
    Please refer OSS Note 843193:
    "The SAP Best Practices Preconfigured Smart Forms are available for
    ERP 2004 (ECC 5.0) only.
    It is not planned to deliver the preconfigured SmartForms as separate SAP Best Practices solution for other releases.
    If future releases, the prconfigured SmartForms will be delivered with the country-specific SAP Best Practices Baseline Packages.
    Please check http://service.sap.com/bestpractices for availability."
    Regards,
    Amey

Maybe you are looking for

  • How to reset my MacBook Pro for re-sale

    I'm thinking of selling my 2010 MacBook Pro, which I bought with OS X 10.6 Snow Leopard. When selling previous Macs, I've deleted everything, including other user accounts and then re-installed the OS from the supplied CDs or DVD. This then leaves a

  • Java related error while installing 10.2.0.1 on Radhat Linux 5

    Hi , I am getting below error while running runInstaller.sh on Radhat Linux 5. Help is much appreciated. inflating: /tmp/OraInstall2009-09-30_06-23-57PM/jre/1.4.2/lib/fonts/LucidaBrightItalic.ttf inflating: /tmp/OraInstall2009-09-30_06-23-57PM/jre/1.

  • Access Sequence for PO output

    Hi experts, I have defined new PO output type in NACE by copying existing one. I have created New Condition Table for PO output (in SPRO). Now, i want to create new access sequence. But, i am facing following problems 1. If i try to create new access

  • Connection SEM 4.0 and BW 3.5, after upgrade R/3 4.6C to ECC 6.0

    Hello experts, Currenctly my customer has the following systems: BW 3.5 with software component SEM 4.0 R/3 4.6C without software component SEM ECC 6.0 with software component SEM 6.0 (Development system, I cannot connect the BW system to this one!)

  • Syncing issues with 4S since iOS 8 Update

    Any iPhone 4S owners having issues syncing to iTunes since "upgrading" to iOS 8?  I have a 32 GB phone and I've had make almost 12 GB available to even get the phone to sync.  I had to delete half my music library and a bunch of apps!!  I'm ******!