You are on page 1of 10

<http://www.saptechies.com/> Post Article </home/new.php> Learn n Earn </learn-n-earn.php> <javascript:voide();> <https://www.google.com/accounts/o8/ud?openid.ns=http%3A%2F%2Fspecs.openid.net%2 Fauth%2F2.0&openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Fwww.saptechi es.com%2Fgoogleconnect%2Fglogin.php&openid.realm=http%3A%2F%2Fwww.saptechies.com &openid.ns.ax=http%3A%2F%2Fopenid.net%2Fsrv%2Fax%2F1.0&openid.ax.mode=fetch_requ est&openid.ax.type.namePerson_first=http%3A%2F%2Faxschema.org%2FnamePerson%2Ffir st&openid.ax.type.namePerson_last=http%3A%2F%2Faxschema.org%2FnamePerson%2Flast& openid.ax.type.contact_email=http%3A%2F%2Faxschema.org%2Fcontact%2Femail&openid.

ax.type.birthDate=http%3A%2F%2Faxschema.org%2FbirthDate&openid.ax.type.person_ge nder=http%3A%2F%2Faxschema.org%2Fperson%2Fgender&openid.ax.type.contact_postalCo de_home=http%3A%2F%2Faxschema.org%2Fcontact%2FpostalCode%2Fhome&openid.ax.type.c ontact_country_home=http%3A%2F%2Faxschema.org%2Fcontact%2Fcountry%2Fhome&openid. ax.type.pref_language=http%3A%2F%2Faxschema.org%2Fpref%2Flanguage&openid.ax.type .pref_timezone=http%3A%2F%2Faxschema.org%2Fpref%2Ftimezone&openid.ax.required=na mePerson_first%2CnamePerson_last%2Ccontact_email%2CbirthDate%2Cperson_gender%2Cc ontact_postalCode_home%2Ccontact_country_home%2Cpref_language%2Cpref_timezone&op enid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&o penid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select> New User? Register </register.php> | Login </login.php> * * * * * * * * * * * Home </> Tutorials </tutorials/> Forums </forums/> Books </pdf-books/> Interview Questions </interview-questions/> Transaction Codes </transaction-codes/> Institutes </training-institutes/> Jobs </jobs/> Classifieds </classifieds/> News </news/> Announcements </announcements/>

SAP R/3 ABAP </tutorials/abap/>BASIS </tutorials/basis/>FI CO (Financial Accounting & Controling) </tutorials/fi-financial-accounting/>Business One </tutorials/business-one/>EC (Enterprise Controlling) </tutorials/ec-enterprise-controlling/>TR (Treasury) </tutorials/tr-treasury/>IM (Investment Management) </tutorials/im-investment-management/>HR (Human Resource) </tutorials/hr-human-resource/>SD (Sales and Distribution) </tutorials/sd-sales-distribution/>Logistics Information System </tutorials/logistics-information-system/>MM (Materials Management) </tutorials/mm-materials-management/>PM (Plant Maintenance) </tutorials/pm-plant-maintenance/>PP (Production Planning) </tutorials/pp-production-planning/>QM (Quality Management) </tutorials/qm-quality-management/>BW (Business Warehousing) </tutorials/bw-business-warehousing/>IS (Industry Solutions) </tutorials/industry-solutions/>CS (Customer Service) </tutorials/cs-customer-service/>PS (Project Systems) </tutorials/ps-project-systems/>SEM (Strategic Enterprise Management Software) </tutorials/sem-strategic-enterprise-management-software/>CRM (Customer Relationship Management) </tutorials/crm-customer-relationship-management/>SCM (SAP Supply Chain Management) </tutorials/scm-sap-supply-chain-management/>Netweaver </tutorials/netweaver/>SRM (Supplier Relationship Management)

</tutorials/srm-supplier-relationship-management/>About SAP </tutorials/about-sap/>Exchange Infrastructure SAP XI </tutorials/exchange-infrastructure-sap-xi/>Advanced Planner and Optimizer (SAP APO) </tutorials/advanced-planner-optimizer-sap-apo/>Unix </tutorials/unix/>Oracle </tutorials/oracle/>Oracle SQL </tutorials/oracle-sql/>Third Party </tutorials/third-party/>Java </tutorials/java/>SAP GUI </tutorials/sap-gui/>HCM Human Capital Management </tutorials/hcm-human-capital-management/>SAP Office </tutorials/sap-office/>Mobile </tutorials/mobile/>HANA </tutorials/hana/> Home </> Tutorials </tutorials/> ABAP </tutorials/abap/> <http://feeds.feedburner.com/SAPTechiesTopArticles> <javascript:void(0);> <javascript:void(0);> ShareThis <javascript:void(0);> Post your Article </home/new.php> Smartforms: Frequently Asked Questions By: rekha | 05 Aug 2007 1:34 am | 3610 times viewed | *6 Comments <#comnt>* *What are the differences between SAP Scripts and Smartforms?* SAP Scripts are client dependent whereas Smartforms are client independent. SAP Scripts require a driver program to display the output whereas in smartforms the form routines can be written so that it is standalone. An integrated Form Builder helps to design Smartforms more easily than SAP Scripts An Table Painter and Smartstyles to assist in building up the smartforms On activation a function module is generated for Smartforms It is possible to create a Smartform without a main window Smartforms generates XML output which can be viewed through the web Multiple page formats is possible in smartforms *How can I insert symbols in Smartforms?* Select the Text node. Change Editor (Click the button above Check near the Editor) Go to menu Include->Characters->SAP Symbols Choose the SAP symbol that you want to insert. *I have a smartform which works fine in DEV. After trasnsporting it to PROD, there is no Function module generated for this smartform. As a result my program dumps in PROD?* The Smartform that is created in the Development may not have the same name in the Production server. So it is always advised to use the Function Module SSF_FUNCTION_MODULE_NAME to get the Function Module name by passing the Smartform name. DATA: fm_name TYPE rs38l_fnam. CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME' EXPORTING formname = 'ZSMARTFORM' IMPORTING fm_name = fm_name EXCEPTIONS

no_form = 1 no_function_module = 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. CALL FUNCTION fm_name 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.How can I make the Smartforms to choose a printer name by default? In the CALL FUNCTION of the Smartform Function Module, set the output options parameter to set the printer name. The output options is of the type SSFCOMPOP which contains the field TDDEST. Set the TDDEST field to your default printer name. *How can I make the Smartforms to display a print preview by default without displaying the popup for print parameters?* In the SSF_OPEN function module, Set the OUTPUT OPTIONS paramter TDDEST to your printer name. Set the CONTROL PARAMETERS and control parameters as shown below, control-preview = 'X'. control-no_open = 'X'. control-no_close = 'X'. control-no_dialog = 'X'. control-device = 'PRINTER'. control_parameters-no_dialog = 'X'. control_parameters-no_open = 'X'. control_parameters-no_close = 'X'. OUTPUT_OPTIONS-TDDEST = 'PRINTER NAME'. OUTPUT_OPTIONS-TDNOPRINT = 'X'. CALL FUNCTION 'SSF_OPEN' EXPORTING output_options = output_options control_parameters = control user_settings = ' ' 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. *How can I display the total number of pages in Smartforms?*

Use SFSY-FORMPAGES to display the total number of pages in the Smartforms &SFSY-PAGE& Current page number &SFSY-FORMPAGE& Total number of pages in the currently formatted layout set &SFSY-JOBPAGE& Total number of pages in the currently formatted print request &SFSY-COPYCOUNT& Original-1,1st copy-2 &SFSY-DATE& Date &SFSY-TIME& Time &SFSY-USERNAME& Username I'm using the variable SFSY-FORMPAGES, I get a star "*" instead of the total number of pages. There may not be enough space in the window to display the variable, either increase the window dimensions or condense the spaces using &SFSY-FORMPAGES(C)& *What are the various text formatting options in Smartforms?* &symbol(Z)& Omit Leading Zeros &symbol(S)& Omit Leading Sign &symbol(<)& Display Leading Sign to the Left &symbol(>)& Display Leading Sign to the Right &symbol(C)& Compress Spaces &symbol(.N)& Display upto N decimal places &symbol(T)& Omit thousands separator &symbol(R)& Right justified &symbol(I)& Suppress output of the initial value *How can I provide a background shading to the table?* In the Table Painter, you can specify the color and shading for the table lines. *Where can I provide the input parameters to the smartform?* The input parameters for the smartform can be defined in Global Settings->Form Interface. The Associated Type must be defined in the ABAP Dictionary. *Where can I define my own global types for the smartform?* The global types(within the smartform) can be defined in Global Settings->Global Definitions->Types The types defined here will be global through the entire smartform. Also the form routines can be defined Global Settings->Global Definitions->Form Routines *I have defined my own Program Lines, where I have used a global variable G_TEXT. I get an error G_TEXT is not defined?* Whenever using the global variables in the Program Lines, enter the variable name in Input Parameters if you are going to use(read) the variable. If you are going to both read/write the variable value enter the same in Output Parameters. *I have created a table node for display. Where can I check the condition which must satisfy to display the table?* The conditions can be defined in the Conditions tab. In smartforms all the nodes have a condition tab where you can specify the condition to be satisfied to access the node. *How can I define Page Protect in Smartforms?* To define Page Protect for a node go to the Output options and check the Page Protection checkbox.

*What is the difference between Template and Table in Smartforms?* The Template contains a fixed number of rows and columns, where the output is fixed. The Table can have variable number of rows *Where can I define the paragraph and character format for the smartforms?* The paragraph and character format for the smartforms can be defined in the transaction SMARTSTYLES *How to add watermark to smartform output?* Go to the properties of 'PAGE', tab 'Background Picture'. Add the grapic image name here Comments How to input buttons like pushbutton, Radiobutton will insert in a smartform? Also, where i have to write function codes regarding buttons?? By: | 01 Jul 2008 Hi, I don't think we can insert push-buttons into Smartforms. If you want to add those buttons, try with Interactive Forms or PDF forms, which are introduced by SAP as a new-gen forms to replace Smartforms (but I believe that period is still in far future ^.^) However, you can insert radio buttons or check boxes into Smartforms (by using Symbols in text editor). regards, Solaris By: | 04 Sep 2008 How to explicitly call a page after a table? By: lydia | 09 Sep 2008 the ssf_open is not working for me it is not able to suppress the window By: | 02 Feb 2010 it is not possible to create a Smartform without a main window.. you are absolutely wrong By: | 12 May 2010 ya good one By: | 23 Oct 2010 Leave a comment <javascript:voide();> <https://www.google.com/accounts/o8/ud?openid.ns=http%3A%2F%2Fspecs.openid.net%2 Fauth%2F2.0&openid.mode=checkid_setup&openid.return_to=http%3A%2F%2Fwww.saptechi es.com%2Fgoogleconnect%2Fglogin.php&openid.realm=http%3A%2F%2Fwww.saptechies.com &openid.ns.ax=http%3A%2F%2Fopenid.net%2Fsrv%2Fax%2F1.0&openid.ax.mode=fetch_requ est&openid.ax.type.namePerson_first=http%3A%2F%2Faxschema.org%2FnamePerson%2Ffir st&openid.ax.type.namePerson_last=http%3A%2F%2Faxschema.org%2FnamePerson%2Flast& openid.ax.type.contact_email=http%3A%2F%2Faxschema.org%2Fcontact%2Femail&openid. ax.type.birthDate=http%3A%2F%2Faxschema.org%2FbirthDate&openid.ax.type.person_ge nder=http%3A%2F%2Faxschema.org%2Fperson%2Fgender&openid.ax.type.contact_postalCo de_home=http%3A%2F%2Faxschema.org%2Fcontact%2FpostalCode%2Fhome&openid.ax.type.c ontact_country_home=http%3A%2F%2Faxschema.org%2Fcontact%2Fcountry%2Fhome&openid. ax.type.pref_language=http%3A%2F%2Faxschema.org%2Fpref%2Flanguage&openid.ax.type .pref_timezone=http%3A%2F%2Faxschema.org%2Fpref%2Ftimezone&openid.ax.required=na mePerson_first%2CnamePerson_last%2Ccontact_email%2CbirthDate%2Cperson_gender%2Cc ontact_postalCode_home%2Ccontact_country_home%2Cpref_language%2Cpref_timezone&op enid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&o penid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select>

Sign up for SAPTechies </login.php> Submit Comment <javascript:void(0);> Related * * * * Tutorials <#tabs-1> Forum <#tabs-2> Books <#tabs-3> Interview Questions <#tabs-4>

* A Simple Smartform Tutorial </simple-smartform-tutorial/> A Simple Smartform Tutorial SAP Smartforms can be used for creating and maintaining forms for mass printing in SAP Systems. The output medium for Smartforms support printer, fax, e-mail, or... * Smart forms Frequently Asked Questions </smart-forms-frequently-asked-questions/> Forcing a page break within table loop Create a loop around the table. Put a Command node before the table in the loop that forces a NEWPAGE on whatever condition you want. Then only loop through a... * Mapbox Troubleshooting Guide </mapbox-troubleshooting-guide/> Symptom Frequently asked questions during Installation, Deployment and Operation of MapBox. Other terms MapBox, CoordLauncher,CoordServer,Operational, Deployment, Installation MapBoxLauncher... * SAP System under Microsoft Cluster Server (MSCS) </sap-system-under-microsoft-cluster-server-mscs/> This note contains a collection of the most frequently asked questions and problems during the installation and the operation of an SAP System under Microsoft Cluster Server (MSCS). 1. Message:... * Informations about e-Service (ICSS) Java version </informations-about-eservice-icss-java-version/> Symptom Informations about e-Service (ICSS) Java version Reason and Prerequisites Maintenance Strategy: In January 2001, the CRM Development organization made a strategic decision to create... * SAP Solution Manager: Frequently Asked Questions </itutorial-sap-solution-manager/> SAP Solution Manager Introduction The I-Tutorial on the SAP Solution Manager. To proceed click the screen anywhere. How can i safeguard the technical installation and operation of my... * Preparatory activities for Indian Budget 2008 </sap-bp-frequently-asked-questions/> Symptom Indian Budget 2008-2009 will be announced on 29/02/2008. This note contains instructions for customers using country version India on preparatory activities to carry out prior to the... * SAP PS Frequently Asked Questions </sap-ps-frequently-asked-questions/> Workforce Planning and Project Status When a project status is set back to REL from TECO or CLSD status, the work force planning done is getting deleted completly at the activity. Run... * My SAP HR Certification Experience </my-sap-hr-certification-experience/> I went thru my HR Cerification in November. Examination is for 3 Hrs for 80 Questions. There are 3 types of questions 1. Questions with one answer 2. Questions with multiple answer/morethan... * Collective note: Posting payroll accounting 4.0 </collective-note-posting-payroll-accounting-40/> Symptom Questions concerning posting of payroll accounting in Release 4.x occurred, which were not delt with sufficiently in the documentation and in the implementation guide. Solution ... * Frequently Asked Questions: BI Java Support Packages/patches </frequently-asked-questions-bi-java-support-packagespatches/>

This note provides answers to frequently asked questions (FAQs) with regard to the Support Package Stack and the patch strategy for BI Java. What is BI Java? From a technical perspective, BI... * Difference with SMARTFORMS vs. SapScript(SE71) </difference-with-smartforms-vs-sapscriptse71-2/> The Following are the differences :- a) Multiple page formats are possible in smartforms which is not the case in SAPScripts b) It is possible to have a smartform without a main window . ... * Smart Forms Form Printing in the Internet Age </smart-forms-form-printing-internet-age/> Smart Forms Form Printing in the Internet Age Smart Forms was introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms within SAP solutions, such as mySAP CRM... * HR Interview Tips </hr-interview-tips/> It has become more challenging for companies to find the right employees because of the market. When you hold an interview for a potential employee, there are a number of things you will want to keep... * SAP BASIS INTERVIEW QUESTIONS ON DATABASE </sap-basis-interview-questions-on-database/> HI im surya, im searching for job on SAP BASIS, so any body who is having frequently asked questions on database questions of sap, kindly forward me to this mail id mail2vasu18@gmail.com Thanks ... * SAP CIN FAQ for Beginners </sap-cin-faq-for-beginners/> The following document contains frequently asked questions about SAP CIN for MM, SD, FI and more.. http://rapidshare.com/files/291615234/SAP-CIN-Beginners-FAQ.pdf source site: SAP Downloads... * SOLUTION MANAGER CERTIFICATION:C_SMI310_06 </solution-manager-certificationcsmi31006/> Dear Experts, I am preparing for SAP Solution Manager certification. Course Name: SAP Certified Solution Consultant - SAP Solution Manager 4.0 Implementation Tools Certification Tests:... * Why do we have to create Symbolic Account . </symbolic-ac-and-00140015/> Hi Group, I was asked the following questions in an interview, appreciate your help in knowing the answer for the same : Symbolic account - why do we have to create symbolic account why... * Where can I find the remaining 60 XI Certification questions? </where-can-i-find-the-remaining-60-xi-certification-questions/> Hi, where can I find the remaining 60 questions on this page http://www.saptechies.com/sap-xi-certification-questions-set-3/ ? There are solutions to 100 questions, but I can only... * Time Management </time-management/> Does any-one have an SAP TM Questionnaire regards the top 10 questions to ask a client when they are looking at TM module? * SAP HR certification questions for sale </sap-hr_5/> Hi, We have sets of sap hr certification questions.These questions are real from the previous tests.We have collected these questions for few years from the people who wrote the test... * Could you please send sap fico material interview questions and jobs? </sap-fico_11/> Hi friends could you please send sap fico material interview questions and jobs to my email id baddala@live.com. Thanks Sree * Need interview questions regarding SAP SD </for-sap-sd-modules/> hi , i m bharat bhushan and working as a enduser in sap sd modules. i want the Can yo please send some interview questions regarding SAP Sd to me too.. Thanks bharat * ABAP and Java Dictionary data type system in comparison...? </abap-and-java-dictionary-data-type-system-in-comparison/>

The type system in Java Dictionary is more flexible and effective (as demonstrated in answers to more detailed questions, please read on). Help for TADM70 </help-tadm70/> Hello, i'm looking for help this Examination. Nowhere dump is availability. The answer on this site http://www.saptechies.com/tadm70-exam-questions/ are not actual or partial not correct. thx dennis Real Time Error and some intreview questions and resume format in SAP FICO </sap-fico_1/> Hi All, I have done MBA Finance and presently working as SAP End user. I have learn the SAP FICO can any one can help me real time error and some intreview questions and resume format in... SAP CRM - Interview questions/material </sap-crm--interview-questionsmaterial/> Hi, I am into SAP CRM. Fresher/trainee .I would like to share my interview questions/ideas/material. anybody in SAP CRM can email me or reply . my Email id -... How to prepare for certification exam in SAP (SD). </sap-certification-questions/> Hi All, Can you please suggest me how to prepare for certification exam in SAP (SD). Please suggest me site for online questions for exams. Tawsif Chogle. SAP FI Certification Questions Free Download </sap-fi-certification-questions-free-download/> This is useful material for all guys need to prepare themself before take the certification exam. Download here >> SAP Free Download

* Budget Control System Bloomsburg University BCS Training Manual November 2008 </budget-control-system-bloomsburg-university-bcs-training-manual-november-2 008/> Table of Contents Introduction... * Managing SAP Archiving Projects </managing-sap-archiving-projects/> Managing SAP Archiving Projects Contents 1 INTRODUCTION ............................................................................ ............6 1.1 DOCUMENT OBJECTIVES AND CONTENTS... * Skipping of document numbers in SAP Number Range Object </skipping-document-numbers-sap-number-range-object/> Skipping of document numbers in SAP Number Range Object SAP Number Range Object For more tips, tutorials, Interview questions, certification questions, please visit SAPTechnical.com... * SAP System Administration, by Liani Will, BPB Publication & R/3 administration by Tata macgraw hill </reply-from-soumen-kumar-roy/> Hi, You can consult 2 books. 1. SAP System Administration, by Liani Will, BPB Publication 2. There is another book R/3 administration by Tata macgraw hill. Tell your institute to... * BAPI function module in ABAP reporting </bapi-function-module-abap-reporting/> Bonus Material for 201 ABAP Interview questions Table Of Contents Business Object Repository ............................................................................ ............ 2 ... * Implementation Strategies for SAP R/3 in a Multinational Organisation: Lessons from a Real-World case study </implementation-strategies-sap-r3-multinational-organisation/> Foreword ............................................................................

............................vii Preface... * Latest SAP GUI 7.2 is Available on the following weblink </latest-sap-gui-72-available-following-weblink/> Latest SAP GUI 7.2 is Available on the following weblink Download SAP GUI 7.10 for Windows Download SAP GUI 7.20 for Java Download SAP Tutor 2.2 Download SAP Basis Interview Questions ... * SAP R/3 System Administration </sap-r3-system-administration/> Contents Foreword to the series of books ================================= 13 Foreword ==================================================15 Introduction... * SAP NetWeaver Overview </sap-netweaver-overview/> Course Overview The course SAPNW introduces the possible uses of SAP NetWeaver and provides an overview of the technical infrastructure it represents. This infrastructure includes the SAP... * Technical Consultant Training R/3 Administration Week 2 </technical-consultant-training-r3-administration-week-2/> Technical Consultant Training R/3 Administration Week 2 Contents Section: Software Logistics ......................................................1 Introduction... * SAP FI/CO Interview Questions, Answers, and Explanations </sap-fico-interview-questions-answers-explanations/> Master Data How can you link customer and vendor master records and what is the purpose of doing so ? A: On the customer master there is a field "vendor" and likewise on the... * TAFI40 Financial Accounting Part IV </tafi40-financial-accounting-part-iv/> TAFI40 Financial Accounting Part IV Overview of Controlling General Tasks of Controlling The Components of CO Integration Overview of Controlling: Unit Objectives At the... * The SAP R/3 Guide to EDI, IDocs and Interfaces </sap-r3-guide-edi-idocs-interfaces/> The SAP R/3 Guide to EDI, IDocs and Interfaces Where Has the Money Gone? 1 1.1 Communication ............................................................................ ...................2 More... * Frequently Asked Questions About SAP Smart Forms </frequently-asked-questions-about-sap-smart-forms/> What Zebra printers does SAP Smart Forms support? Smart Forms software from SAP AG supports Zebra printers with the ZPL II printer command language and with firmware versions x.10 and... * Derived Profiles questions, asked in an interview. </derived-profiles/> Hi Gurus, please give the sols for the below questions, asked in an interview. 1)what is Derived Profiles? 2)If we have 500 printers in an r/3, suddenly 400 printers are not working, wht... * ABAP Questions Commonly Asked 1 </abap-questions-commonly-asked-1/> 1) What is the difference betwen abap and sap memories? Data sending between internal sessions is called abap memory using import and export parameters. Data sending between main sessions using... * Frequently Asked Questions on Authorization </frequently-asked-questions-on-authorization/> Role & Profile What is the difference between role and a profile? Role and profile go hand in hand. Profile is bought in by a role. Role is used as a template, where you can add T-codes... * Frequently asked Questions about mySAP SCM and SAP APO </frequently-asked-questions-about-mysap-scm-and-sap-apo/> 1. Which are the components of the new mySAP SCM Solution? SAP SCM 4.1 is the new available Supply Chain Management Solution offered by

SAP. The SAP SCM 4.1 System includes SAP APO 4.1 (Advanced... * SAF FI Frequently Asked Questions 2 </saf-fi-frequently-asked-questions-2/> 1. Where to assign activity type in cost centers? OR how to link cost centers & activity types? >> There is no direct assignment. You plan the output for a cost center first in kp26. Then... * SAF FI Frequently Asked Questions 1 </saf-fi-frequently-asked-questions-1/> 1. Whether any FI doccument will be created during PO(Purchase order)? If please mention the entry also. 2. What factors differentiates from one dunning level and other dunning level? 3. APP... * Need Help ABAP Interview Questions </abap-interview-questions_1/> Hi i need help for the intrview question that are normally asked. 1.explain about ur project(ABAP) ?how can we explain our abap project,how can we start,what r the technical words we use in it,pls ... * Frequently Asked Questions for SAP Basis / Technical </frequently-asked-questions-for-sap-basis-technical/> How can I lock a transaction? Use transaction SM01. Look for the transaction you want and then check the Locked box. Why should I lock a transaction? Because some transactions are... * FAQ: Independent requirements reduction/withdrawal quantity </faq-independent-requirements-reductionwithdrawal-quantity/> Summary Symptom This note contains frequently asked questions for the planned independent requirements reduction. For planning strategies that provide consumption of planned independent... * SAPScripts: Frequently Asked Questions </sapscripts-frequently-asked-questions/> How do I create Boxes in SAPScript? You can create Boxes in the SAPScript using the BOX command specifying the x,y co-ordinates and the width and the height BOX XPOS '0' CM YPOS '0.5' CM WIDTH... * FAQ: Reporting in the purchasing </faq-reporting-in-the-purchasing/> This note contains a list of frequently asked questions about Reporting in Purchasing Q1. For Transactions ME2L, ME2M, ME2B, ME2N, ME2W, ME2K, ME2J, the stockkeeping unit is output for each... * Need interview questions asked in SAP HR </sap-hr_12/> Hi, If you have a strike in a company , what will be the configuration steps 2) How will come to know the person in an organisation his working in positive time or negative time 3 )If... * FAQ: Account assignment system response </faq-account-assignment-system-response/> This note answers frequently asked questions about the EBP account assignment. 1. Why does the system not issue a message stating that the account assignment is incomplete, even though only one... * ABAP Interview faq's part-3 </abap-interview-faqs-part3/> Hi, please give the answers to the questions below : Diff b/w reports and scripts Ans. report give print out ,u as normal format,but scripts is word processing tool,it provides u... Tutorials </tutorials/> | Forum </forums/> | Books </pdf-books/> | Interview Questions </interview-questions/> | Transaction Codes </transaction-codes/> | Institutes </training-institutes/> | Jobs </jobs/> | Classifieds </classifieds/> | News </news/> | Announcements </announcements/> | SAP Notes </notes/> RSS/Syndication </syndication/> | Contact Us </contactus.php> | Terms Of Use </terms-of-use.php> | Terms & Conditions </terms-conditions.php> 2005-2012 SAPTechies. All rights reserved. SAP Techies <http://www.saptechies.com/>

You might also like