What is the relation between adobe forms and web dynpro

hi
what is the relation between adobe forms and web dynpro

Hi Jyothsna,
Adobe forms are advanced to smartforms and scripts.
Adobe forms are much easier than smartforms they are online forms.
they can be developed online.
Adobe forms : This is another SAP tool designed to create your own forms. The transaction for this is SFP.
How to use them: You can create a sales order form in adobe form and send to the sales reps. Sales reps can fill this form when they are not connected to internet / SAP system. Once they connect to SAP just send an e-mail to a specific user id in outlook. You got to customize and code how do you want to process once you receive this form. This enables you to create orders even when you are not connected to the system. Hence no data loss. This is not how i used though :-). This is just my idea.
What is the difference between Adobe forms and smart forms / scripts.
Smart forms / scripts are used to show the data in SAP. Most likely you will use these to print / display some kind of reciepts / forms. Many companies must be using this for hard copies / ALE / EDI or to transfer data from SAP to others.
Adobe forms are used to post data into SAP from SAP too.  So this has an additional feature compared to smartforms.
Please check this link
http://www.erpgenie.com/index.php?option=com_content&task=view&id=600&Itemid=77
Web dynpro in one of the component in NETWEAVER.
Web Dynpro is the SAP NetWeaver programming model for user interfaces and provides support when developing the Web representation of business applications. The Web Dynpro model is based on the Model View Controller paradigm, and has the following features that build on the classic dynpro model:
·        Clear separation of business logic and display logic
·        Uniform metamodel for all types of user interfaces
·        Execution on a number of client platforms.
·        Extensive platform independence of interfaces
please check this link
http://help.sap.com/saphelp_nw04/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm
Best regards,
raam

Similar Messages

  • What is the difference between smart forms and scripts.?

    what is the difference between smart forms and scripts.?

    Differences between Smartforms and SAPscript
    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 .
    c) Routines can be written in smartforms tool.
    d) Smartforms generates a function module when activated.
    e) Smartforms can create web enable forms like XML
    f) smartforms itself contine subroutine pools need not to main separetly like in case of scripts
    Request you to refer the following links
    www.sap-img.com/smartforms/smartform-sapscripts.htm
    www.erpgenie.com/abap/smartforms_sapscript.htm
    Sapscript vs Smartforms
    Difference with SMARTFORMS vs. SapScript(SE71)
    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 .
    c) Labels cannot be created in smartforms.
    d) Routines can be written in smartforms tool.
    e) Smartforms generates a function module when activated
    Scripts are client dependent whereas smartforms aren't.
    Upto 99 main windows are possible in scripts and only one in smarforms.
    To create multiple main windows in scripts, you just have to give the window type as MAIN whnever you create a window.
    Scripts still exists but smartforms are in use from 4.6c version, now the lastest version of these two is adobe forms
    SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms.SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can
    configure forms with data from an SAP System for the relevant business processes.
    Advantages of SAP Smart Forms
    SAP Smart Forms have the following advantages:
    1. The adaptation of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-Release 6.10)
    Reward Points if useful.

  • What is the different between adobe reader and adobe acrobat reader?

    what is the different between adobe reader and adobe acrobat reader?What are the procedure to download a Acrobat reader?

    Good day,
    Adobe Reader is a free application we offer for viewing and printing PDF files.  Many years ago, it was known as Acrobat Reader.  You may still see some users refer to Adobe Reader as 'Acrobat Reader'.  Old habits are sometimes hard to break!
    You can download Adobe Reader by visiting: http://get.adobe.com/reader/
    Kind regards,
    David
    Adobe Systems

  • What is the Relation Between S_PARTY.ROW_ID AND S_PARTY.PARTY_UID

    Hi,
    What is the Relation Between S_PARTY.ROW_ID AND S_PARTY.PARTY_UID

    Why do you need to know?
    From the configuration in Tools (for instance the fields of Business Component Contact) you can see that by default they have the same value.
    But if you import through EIM you can supply your own value for PARTY_UID.

  • What is the relation between main class and inner classes

    hi
    i want to make a UML design and o want to know how to draw the relation betwwen the main public class and inner classes?
    and what is the relation?

    BaffyOfDaffyA wrote:
    Please keep in mind that if you spell better you will get better answers and if you add duke stars you will get better answers and if you mark the thread as a question you will get better answers. That will make it look like you are paying attention and that you really want an answer.
    My best answer based on your rather vague question:
    A minimal public class in a file named "Minimal.java" in the directory named "minimal":
    package minimal;
    public class Minimal {
    private int variable;
    public Minimal(int var) {
    variable = var;
    public int getVariable() {
    return variable;
    }This would be an example of adding an inner class:
    package minimal;
    public class Minimal {
    private int variable;
    public Minimal(int var) {
    variable = var;
    public int getVariable() {
    return variable;
    public class Inner {
    private int innerVariable;
    public Inner(int var) {
    innerVariable = var;
    public int getInnerVariable() {
    return innerVariable;
    }The inner class is exactly like any other inner class except if you are accessing it from anything else other than Minimal then you would have to add Minimal. right before Inner for example, where the Minimal class could use
    Inner inner = new Inner(5);other classes would have to use
    Minimal.Inner inner = new Minimal.Inner(5);
    See [Inner Class Example|http://java.sun.com/docs/books/tutorial/java/javaOO/innerclasses.html] or [Nested Classes|http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html] for more information.
    He is probably not asking what an inner class is or how to declare one in raw source code. To me he is asking how do I
    explain this relationship in a UML diagram and as UML is not and exact science and expression can vary a lot
    between UML design applications I didn't want to stab in the dark.
    @OP I would say whatever seems most logical to you and your team, write something that reads.

  • What's the Relation Between General Ledger and Customer Balances Extractors

    Hi SAP Gurus,
                        Anybody explain the relationship between General_Ledger, Accounts_Payable and Accounts_Receivable Data Extractors ?

    Hi,
    Relationship in what sense?
    All are timestamp based delta datasources, with After image delta.
    *Settings for them are controlled centrally in same BWOM tables. http://help.sap.com/saphelp_bw33/helpdata/en/af/16533bbb15b762e10000000a114084/content.htm
    *In a way AP & AR data are subset of GL data (as documents are posted to GL accounts). In simple, all Document items with Vendor or Customer linked are fetched in AP & AR.
    But extractors pick the data from indexed BSIK/BSAK and BSID/BSAD tables respectively and not from BSEG table (GL Line Items).

  • What is the relation between req type and checking group

    Could any1 please explain me the link between requirement type and checking group?
    Also please throw some light on the other terms in ATP like requirement class and checking rule.
    Thanks in advance

    Dear VGR,
    The requirement type refers to the origin type, for example, goods receipt for purchase order (Type B) or goods issue to cost centers (Type K).
    The criterion that groups together all checking rules for all application areas for a material.
    In conjunction with the checking rule, the checking group defines the scope of the availability check for each business event, that is, which stocks, goods receipts, and goods issues are taken into account in the availability check, and whether replenishment lead time is checked.
    Checking rule
    A rule that defines how the availability check is performed.
    The checking rule, in conjunction with the checking group, determines the scope of the availability check for every business operation; that is, which stocks, receipts, and issues are included in the availability check and whether the check is performed with or without the replenishment lead time.
    I hope this will help you,
    Regards,
    Murali.

  • What is the Relation between System Tables and FND Table?

    Hi,
    I have two LOV's. First one is Module Name. Here I will select Module Name as GL, AP, AR.... In the second LOV it should populate all the API's available in the module. I tried with the following tablesFND_APPLICATION AND ALL_SOURCES. But there is no relation between these tables.
    Can anyone suggest me..
    Please help me out.
    Thanks in Advance,
    Sateesh

    Hi,
    I have two LOV's. First one is Module Name. Here I will select Module Name as GL, AP, AR.... In the second LOV it should populate all the API's available in the module. I tried with the following tablesFND_APPLICATION AND ALL_SOURCES. But there is no relation between these tables.
    Can anyone suggest me..
    Please help me out.
    Thanks in Advance,
    Sateesh

  • In SAPScript what's the difference between std form and Preconfigured form?

    Hi all,
    These are both SAP given.. but what's the difference??
    Thanks,
    Charles.

    Hi Brown,
       What exactly your questoin,..?
    SAP provided standard forms in part of Products which can be copied and customized as per the customer requirements. Default forms which may customized generalizing the business process.
    You explore your question , it will help to share otehr's expericences on this.
    //Kiran Singh

  • About Adobe Form and Web dynpro Java development

    Hello experts,
    We had  a requirement to display different Adboe Forms dynmaticlly in Web dynpro Java application.
    There is only one Web dynpro Java application, but 10 Adobe Forms . If user "a" access the application ,display form 1 ; if user "b" access the application , display form 2 ;  if user "c" access the application , display form 3.... just like this.
    There are about 30 fields in BAPI which Web dynpro Java application called . Form 1 mapping to field 1 to field 3, Form 2 mapping to field 4 to field 6, Form 3 mapping to field 7 to field 9 ....
    Is it possible ? If it is possible , could you please give me a solution ?
    Thank you in advance !
    Best Regards,
    Louis

    Siva,
    I referred to the website, but still having issues with generating tables in Adobe Form. I can get all the table rows in the adove form, but the pdf doee not add new pages to display all the table rows. It just createa one page with the table inside it, display few of the rows and truncates rest of the table data.
    Here is the heirarchy of the page with the properties set
    Master Pages ---
            ||--> Page 1
                     ||--> content area
                     ||--> subfrom (properties:: Content - Flowed / Flow direction - top to bottom...pagination tab is greayed out completly)
                                ||--> Table
                                          ||--> HeaderRows (Object: Row - Type: Header Row)
                                          ||--> Row1 (Object Tab/Binding: Repeat Row for each data item - checked)
    Can't make it wor, not sure what's wrong here
    I am using NDS 7.0 SP18 and Adobe LiveCycle 8.0. Does that could be a problem.
    Appreciate your help
    John

  • What is the relation between photoshop cs4 and atkogl32.dll?

    Hi.
    Some times -not always- my photoshop cs4 Extended Edition, crash.
    However, if I disable OpenGl function, photoshop works perfectly.
    Of course: I have up to date the graphic card drives.
    Every crash, appears a magic word:atkogl32.dll.
    Uncle google says that atkogl32.dll is relating with Asus.
    Could you please help me?
    Thanks in advance.
    My graphic card: Asus EAX1650XT (256mb).
    MOBO: Asus P5W DH Deluxe.
    OS: Windows XP professional edition service pack 2.
    Processor: Core 2 duo E6320.
    Greetings from México.

    Hi, freeagent.
    Thanks for answering to me.
    Do you advice me to throw out all 3rd party plugins?
    Well... I only have 3: niksoftware color efex Pro, Viveza and Grain surgery.
    They work very good.
    Another option?
    I am sad...
    PS cs4 is an amazing program. It opens itself in 3.4 seconds.
    Of course: it is faster than cs2...
    Thanks in advance.

  • What's the relation between SESCrawlerExport index and UCM index?

    Does the SESCrawlerExport index feeds on changes from the UCM indexer?
    What happens if the UCM->Admin Applets->Repository Manager->Indexer->Automatic Update Cycle is disabled.
    Can the SESCrawlerExport index recollect changes?
    Thanks
    @

    you are right!
    Is there a threshold? The sql which ran above threshold can be captured?
    and I try that:
    1. there are three sql scripts (loop 10, 10000, 100000000)
    anmh@MYORACLE> select sql_id,sql_text,bind_data from v$sql where sql_text like '%count%a2%';
    8hxar1zmt4p24
    begin for i in 1..10 loop select count(*) into :cnt from a2; end loop; end;
    akmfy8m24dhvf
    begin for i in 1..10000 loop select count(*) into :cnt from a2; end loop; end;
    51ugvw2ajg75m
    begin for i in 1..100000000 loop select count(*) into :cnt from a2; end loop; end;
    2. check in dba_hist_sqltext:
    (1) loop 100000000 :
    anmh@MYORACLE> select sql_id from dba_hist_sqltext where sql_id='51ugvw2ajg75m';
    SQL_ID
    51ugvw2ajg75m
    (2) loop 10000 :
    anmh@MYORACLE> select sql_id from dba_hist_sqltext where sql_id='akmfy8m24dhvf';
    SQL_ID
    akmfy8m24dhvf
    (3) loop 10 :
    anmh@MYORACLE> select sql_id from dba_hist_sqltext where sql_id='8hxar1zmt4p24';
    no rows selected
    It prove that Hemant is right.

  • What's the relation between mobile components and device profile?

    We get the requirement to assigne Mobile components to device profiles.
    As a comparison for understanding, 
    R/3:    authorization is assigned to user profiles
    MI:      Mobile components are assigned to device profile.
    Am I right? If so, are mobile components basically predefined by SAP since
    security authorizations are basically  provided by SAP?
    Thanks!

    Hello jennifer,
    A Mobile Component is any part of Software which will be deployed and wich is running on a mobile device.
    This could be for example a Database, JVM, Mobile Client or of course a mobile application (developed or pre-packaged).
    A Device Profile is a kind of grouping mechanism which helps you to assign the Mobile Components to a large number of devices.
    For Example you create a Device Profile which includes the Mobile Components (DB,JVM, Mobile Client and your Mobile application ). You only need to create this Device Profile once and you can assign it do many devices.
    This helps you to administer your devices in a very efficient way.
    I hope this helps.
    Best Regards,
    Stefan

  • Urgent:What's the relation between WS-Reliability and WS-ReliableMessaging

    Thank you!

    Hi Justin,
    In the AFKO (type 30 for PM order), the fields AUFNT &  APLZT refer the assigned PS activity. This relation is not stored at PS activity (at least not in database), since multple PM orders can assigned to the same PS activity.
    A PS activity can NOT be a subitem of maintenace (PM) order, if in the database has such constellation, it is an error.
    Please reward, wenn the information is useful.
    Kind regards,
    Zhenbo

  • What is the relation between Smart Card and Java Programming?

    Kindly ingnore the message as this is just a test message by Mihir Mehta

    Nothing.....Pls ignore.....just testing the Forum

Maybe you are looking for

  • Dr watson error on WINNT Please help.

    Platform : NT4.0 with SP6 installed JDK: 1.2.2 DB: Oracle When I try to perform a some operations on running weblogic server I will get Dr watson error saying accessviolation. This problem occurs when I make high processor intesive calls or repeat sm

  • Advice to extend range from Time Capsule - wireless and ethernet with Airport Express and Airport Extreme

    Current wireless network is Time Capsule (connected to a Cisco router, 1GB switch to servers and printer 1) to Airport Express (wireless) and to Airport Extreme (wireless). Distance means poor signal at the Extreme which has 2 printers (ethernet cabl

  • How to export my purchased iTunes?

    Hi, I have a Macbook and a G5. I have purchased some iTunes from my Macbook, how can I export my purchased iTunes to my G5? Thanks

  • V1.5 Export to CSV or TXT and not getting all rows (600K+)

    We've recently moved to SQL Developer from a third party application and have been running into issues attempting to export very large queries (600K+ rows). We did find a very helpful article which suggested modifying the sqldeveloper.conf file setti

  • Kindly reply to this scenario ASAP.

    Respected Gurrs, In the following code  data frm LFA1 is not retrieved.Can anybody tell me where is the prob in my code here? Kindly help n reply ASAP. thanks and reagrds, SELECT SINGLE lifnr ebeln mblnr FROM mseg into itab_mseg       WHERE mblnr = m