Calling Methods from Business Object BUS2032

Hi all,
          Is it possible to call methods from the Business Object BUS2032.
   If so, how can it be done?? 
Regards,

Hi Marv,
you sure can. Here is an extract from the SAP Help. I found it at http://help.sap.com/saphelp_46c/helpdata/en/c5/e4ad71453d11d189430000e829fbbd/frameset.htm
<b>Programmed Method Call</b>
Call (fictitious) method Print of object type VBAK (sales document). The method receives the parameters Paperformat and Printertype as input.
* Call method Print of object type VBAK
* Data declarations
DATA: VBAK_REF TYPE SWC_OBJECT.
SWC_CONTAINER CONTAINER.
* Create object reference to sales document
SWC_CREATE_OBJECT VBAK_REF 'VBAK' <KeySalesDoc>
* Fill input parameters
SWC_CREATE_CONTAINER CONTAINER.
SWC_SET_ELEMENT CONTAINER 'Paperformat' 'A4'.
SWC_SET_ELEMENT CONTAINER 'Printertype' 'Lineprinter'.
* Call Print method
SWC_CALL_METHOD VBAK_REF 'Print' CONTAINER.
* Error handling
IF SY-SUBRC NE 0.
ENDIF.
Cheers
Graham

Similar Messages

  • Calling methods of business objects

    hi
    pls post some docs on calling methods in business obj's from abap programs.
    thkx
    P.S

    Do you share your solution?
    For other people interested, example for FMPSO object:
    INCLUDE <cntn01>.
      DATA : l_lotkz TYPE bkpf-lotkz,
             l_order TYPE swc_object,
             lt_fimsg LIKE fimsg1 OCCURS 0.
      DATA : BEGIN OF ls_key,
            sourcecompanycode LIKE vbkpf-ausbk,
            requestnumber LIKE vbkpf-lotkz,
             END OF ls_key.
        swc_container lt_container.
        ls_key-sourcecompanycode = 'value'.
        ls_key-requestnumber     = 'value'.
        swc_create_object l_order 'FMPSO' ls_key.
        IF sy-subrc EQ 0.
    * Validate
          swc_call_method l_order 'FlagReleaseSet' lt_container.
          IF sy-subrc NE 0.
            MESSAGE  e000(zz).
          ELSE.
    * Post
            swc_call_method l_order 'PostAll' lt_container.
            swc_get_table lt_container 'TFimsg' lt_fimsg.
            IF sy-subrc NE 4 AND sy-subrc NE 0.
               MESSAGE  e000(zz).
           ENDIF.
         ENDIF.
       ENDIF.

  • Error while accessing Method from Business Object

    Hello Experts,
    I have created a business object ZBUS7051 by using BUS7051 as a Supertype. I have crated a method GET_DATA in ZBUS7051. If I use BUS7051, Method GET_DATA in a standard task, getting a message that Method GET_DATA not defined for object type BUS7051.
    Why I am getting this error? Is there way I can use BUS7051-GET_DATA instead of ZBUS7051-GET_DATA.
    The workflow triggering event is BUS7051 u2013 CREATED. In the workflow binding, system is showing a warning that u2018Conversion from BO.BUS7051 to BO.ZBUS7051 can cause data-related errorsu2019. How to fix this? Please let me know.
    - Krishna.

    Thanks to everyone.
    I have delegated the custom business object to super type BO 7051. I triggered the workflow using T.Code: SWUE, BO: BUS7051. Event: CREATED. But the workflow is resulted an error as given below.
    Problems occurred when generating a mail
    Error '9' when calling service 'SO_OBJECT_SEND'
    Work item 000000503335: Object BUS7051 method WAIT_1_MINUTE cannot be executed
    Object does not exist
    Object does not exist
    Object does not exist
    Variables of the work item text cannot be generated
    Syntax error in expression &NOTIFICATION.NUMBER&
    (This is a Wait Step, Created in ZBUS7051, Method: WAIT_1_MINUTE)
    Since the delegation has done, I can say BUS7051 - WAIT_1_MINUTE, instead of ZBUS7051- WAIT_1_MINUTE. Is it correct?
    Could some one please let me know, How to fix the above issue?

  • WF Question: Call Transaction From Business Object Not works

    Hi Frinds
    I need some help
    in Business Object ZBUS2012  I have a method that run a report (ALV)
    in the PO nubmer I have a drill down to me23n with parameter BES (EBELN)
    when I click the PO me23n Opened Empty without the PO Number.
    If i try to run the report not from the BO its woks fine.
    it's opened me23n with the right PO Number.
    What can Be The Problem ?
    Thanks in Advance

    Hi Kobi
    Are you passing the parameter from the business object to the method of you ALV report, if in doubt, please post your method code?  Most likely this is what is wrong.  The correct way to reference the PO number within the method is
    object-key-purchaseorder
    Then test using SWO1 to ensure you method is correct before calling through workflow.
    Regards
    Gareth

  • Q: Calling Methods from Outside Object??

    I am an old VB programmer trying to convert to JAVA.
    I use a Jframe with a listbox to display and store general messages about the program status, etc. It is like a console or running log of events and messages. In VB, I know the form name and just call the function to add strings (frmDisplay.addString("HELP"). What is the best way in JAVA to send messages to this frame object even though the frame does not inherit or extend any of the other objects in the application? I must be missing something basic.
    Thanks,
    Scott
    [email protected]

    1) You can extend JFrame and simply add a method public void addString(String s)
    that does what you want to.
    2) If you want to add something to the list on the Frame you can keep the name of the listbox and directly add to it.
    3) You can extend Frame like in 1 but this time you add a variable
    public listbox (or whatever) lb;
    then you can access it via <framename>.lb and basically use 2) again.

  • Calling methods from the Business Object BUS2032

    Hi all,
    Is it possible to call methods from the Business Object BUS2032.
    If so, how can it be done??
    Regards,

    Hi Marv,
    you sure can. Here is an extract from the SAP Help. I found it at http://help.sap.com/saphelp_46c/helpdata/en/c5/e4ad71453d11d189430000e829fbbd/frameset.htm
    <b>Programmed Method Call</b>
    Call (fictitious) method Print of object type VBAK (sales document). The method receives the parameters Paperformat and Printertype as input.
    * Call method Print of object type VBAK
    * Data declarations
    DATA: VBAK_REF TYPE SWC_OBJECT.
    SWC_CONTAINER CONTAINER.
    * Create object reference to sales document
    SWC_CREATE_OBJECT VBAK_REF 'VBAK' <KeySalesDoc>
    * Fill input parameters
    SWC_CREATE_CONTAINER CONTAINER.
    SWC_SET_ELEMENT CONTAINER 'Paperformat' 'A4'.
    SWC_SET_ELEMENT CONTAINER 'Printertype' 'Lineprinter'.
    * Call Print method
    SWC_CALL_METHOD VBAK_REF 'Print' CONTAINER.
    * Error handling
    IF SY-SUBRC NE 0.
    ENDIF.
    Cheers
    Graham

  • Calling BSP Application from Business Object?

    Hi,
    Can any one tried to call BSP Application from Business Object for showing in the Portal.
    I have the following Scenario:
    1. BSP Page: User will input the Date and Submit to store in the Database. and in this page the Workflow will be truggered and a Work item will be sent to the Next Level User.
    2. When he executes the Work Item it has to trigger the BSP Application and has to show in the Enterprise Portal.
    All this has to happen in the Enterprise Portal.
    If any one knows how to triggere from business object, please let me know.
    Thanks & Regards
    Sumanth

    Hi Vijay,
    Thanks for the information. Its long back i was working on this, but not successful,
    Now the similar requirement i need to develope in R/3.
    I checked the mentioned class in R/3 4.7, This class is not available. I hope this is only in CRM because of PC-UI.
    Any Suggesions how can i achieve this execution of BSP.
    In one of the document i saw the Business Object BUS1006 as an example but i could not locate the way to reutilize the similar way.
    Thanks & Regards
    Sumanth

  • Calling DLLs or Java from Business Objects

    Post Author: nmarks
    CA Forum: Other
    I'm a newbie so please go easy!
    Is it possible to invoke a DLL or Java bean when opening a Business Objects query or report?
    I've just started working for a very large insurance company in the UK.
    Each month the company produces reports for the Directors, for the Auditors and Industry Regulators.
    Most of the results that go into the reports are produced using an extremely expensive application called Prophet. It dumps out files with data in.
    Ideally the company would like to upload the results from Prophet into Business Objects and have nice numbers show on a report the directors can understand.
    The problem is that lots of fiddly adjustment calculations have to be done to the data coming from Prophet before it can be shown on the BO report.
    I have proposed that the adjustment calculations are done using a VB DLL which will be called automatically by Business Objects  when the user wants to see the report. Can this be done?
    Can Business Objects call a DLL?
    Your help is very much appreciated.
    Regards,
    Nick.

    Post Author: thangvq
    CA Forum: Other
    Hello,
    I think it can. At least I have done it with a DLL is compiled by Delphi. You may read the CR Developer's Help for more info. If you have installed the Developer Edition, its location is something like this: C:\Program Files\Business Objects\Crystal Reports 11\Developer Files\Help\En
    Thang

  • How to call methods from within run()

    Seems like this must be a common question, but I cannot for the life of me, find the appropriate topic. So apologies ahead of time if this is a repeat.
    I have code like the following:
    public class MainClass implements Runnable {
    public static void main(String args[]) {
    Thread t = new Thread(new MainClass());
    t.start();
    public void run() {
    if (condition)
    doSomethingIntensive();
    else
    doSomethingElseIntensive();
    System.out.println("I want this to print ONLY AFTER the method call finishes, but I'm printed before either 'Intensive' method call completes.");
    private void doSomethingIntensive() {
    System.out.println("I'm never printed because run() ends before execution gets here.");
    return;
    private void doSomethingElseIntensive() {
    System.out.println("I'm never printed because run() ends before execution gets here.");
    return;
    }Question: how do you call methods from within run() and still have it be sequential execution? It seems that a method call within run() creates a new thread just for the method. BUT, this isn't true, because the Thread.currentThread().getName() names are the same instead run() and the "intensive" methods. So, it's not like I can pause one until the method completes because they're the same thread! (I've tried this.)
    So, moral of the story, is there no breaking down a thread's execution into methods? Does all your thread code have to be within the run() method, even if it's 1000 lines? Seems like this wouldn't be the case, but can't get it to work otherwise.
    Thanks all!!!

    I (think I) understand the basics.. what I'm confused
    about is whether the methods are synced on the class
    type or a class instance?The short answer is; the instance for non-static methods, and the class for static methods, although it would be more accurate to say against the instance of the Class for static methods.
    The locking associated with the "sychronized" keyword is all based around an entity called a "monitor". Whenever a thread wants to enter a synchronized method or block, if it doesn't already "own" the monitor, it will try to take it. If the monitor is owned by another thread, then the current thread will block until the other thread releases the monitor. Once the synchronized block is complete, the monitor is released by the thread that owns it.
    So your question boils down to; where does this monitor come from? Every instance of every Object has a monitor associated with it, and any synchronized method or synchonized block is going to take the monitor associated with the instance. The following:
      synchronized void myMethod() {...is equivalent to:
      void myMethod() {
        synchronized(this) {
      ...Keep in mind, though, that every Class has an instance too. You can call "this.getClass()" to get that instance, or you can get the instance for a specific class, say String, with "String.class". Whenever you declare a static method as synchronized, or put a synchronized block inside a static method, the monitor taken will be the one associated with the instance of the class in which the method was declared. In other words this:
      public class Foo {
        synchronized static void myMethod() {...is equivalent to:
      public class Foo{
        static void myMethod() {
          synchronized(Foo.class) {...The problem here is that the instance of the Foo class is being locked. If we declare a subclass of Foo, and then declare a synchronized static method in the subclass, it will lock on the subclass and not on Foo. This is OK, but you have to be aware of it. If you try to declare a static resource of some sort inside Foo, it's best to make it private instead of protected, because subclasses can't really lock on the parent class (well, at least, not without doing something ugly like "synchronized(Foo.class)", which isn't terribly maintainable).
    Doing something like "synchronized(this.getClass())" is a really bad idea. Each subclass is going to take a different monitor, so you can have as many threads in your synchronized block as you have subclasses, and I can't think of a time I'd want that.
    There's also another, equivalent aproach you can take, if this makes more sense to you:
      static final Object lock = new Object();
      void myMethod() {
        synchronized(lock) {
          // Stuff in here is synchronized against the lock's monitor
      }This will take the monitor of the instance referenced by "lock". Since lock is a static variable, only one thread at a time will be able to get into myMethod(), even if the threads are calling into different instances.

  • Is it possible to call methods from another class from within an abstract c

    Is it possible to call methods from another class from within an abstract class ?

    I found an example in teh JDK 131 JFC that may help you. I t is using swing interface and JTable
    If you can not use Swing, then you may want to do digging or try out with the idea presented here in example 3
    Notice that one should refine the abstract table model and you may want to create a method for something like
    public Object getValuesAtRow(int row) { return data[row;}
    to give the desired row and leave the method for
    getValuesAt alone for getting valued of particaular row and column.
    So Once you got the seelcted row index, idxSelctd, from your table
    you can get the row or set the row in your table model
    public TableExample3() {
    JFrame frame = new JFrame("Table");
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}});
    // Take the dummy data from SwingSet.
    final String[] names = {"First Name", "Last Name", "Favorite Color",
    "Favorite Number", "Vegetarian"};
    final Object[][] data = {
         {"Mark", "Andrews", "Red", new Integer(2), new Boolean(true)},
         {"Tom", "Ball", "Blue", new Integer(99), new Boolean(false)},
         {"Alan", "Chung", "Green", new Integer(838), new Boolean(false)},
         {"Jeff", "Dinkins", "Turquois", new Integer(8), new Boolean(true)},
         {"Amy", "Fowler", "Yellow", new Integer(3), new Boolean(false)},
         {"Brian", "Gerhold", "Green", new Integer(0), new Boolean(false)},
         {"James", "Gosling", "Pink", new Integer(21), new Boolean(false)},
         {"David", "Karlton", "Red", new Integer(1), new Boolean(false)},
         {"Dave", "Kloba", "Yellow", new Integer(14), new Boolean(false)},
         {"Peter", "Korn", "Purple", new Integer(12), new Boolean(false)},
         {"Phil", "Milne", "Purple", new Integer(3), new Boolean(false)},
         {"Dave", "Moore", "Green", new Integer(88), new Boolean(false)},
         {"Hans", "Muller", "Maroon", new Integer(5), new Boolean(false)},
         {"Rick", "Levenson", "Blue", new Integer(2), new Boolean(false)},
         {"Tim", "Prinzing", "Blue", new Integer(22), new Boolean(false)},
         {"Chester", "Rose", "Black", new Integer(0), new Boolean(false)},
         {"Ray", "Ryan", "Gray", new Integer(77), new Boolean(false)},
         {"Georges", "Saab", "Red", new Integer(4), new Boolean(false)},
         {"Willie", "Walker", "Phthalo Blue", new Integer(4), new Boolean(false)},
         {"Kathy", "Walrath", "Blue", new Integer(8), new Boolean(false)},
         {"Arnaud", "Weber", "Green", new Integer(44), new Boolean(false)}
    // Create a model of the data.
    TableModel dataModel = new AbstractTableModel() {
    // These methods always need to be implemented.
    public int getColumnCount() { return names.length; }
    public int getRowCount() { return data.length;}
    public Object getValueAt(int row, int col) {return data[row][col];}
    // The default implementations of these methods in
    // AbstractTableModel would work, but we can refine them.
    public String getColumnName(int column) {return names[column];}
    public Class getColumnClass(int col) {return getValueAt(0,col).getClass();}
    public boolean isCellEditable(int row, int col) {return (col==4);}
    public void setValueAt(Object aValue, int row, int column) {
    data[row][column] = aValue;
    };

  • Unpermitted combination of business object BUS2032 and sales doc. category

    Dear all
    I try to create a sales document category L (Debit memo request) with the BAPI BAPI_SALESORDER_CREATEFROMDAT2
    I get the error message: Unpermitted combination of business object BUS2032 and sales doc. category  L
    Is there a specific Bapi for creating this sales document?
    Herbert

    Magic or not, but try something like this
    CALL FUNCTION 'BAPI_SALESDOCU_CREATEFROMDATA'
    EXPORTING
       ORDER_HEADER_IN = lt_order_header_in
       BUSINESS_OBJECT = 'BUS2096'
       WITHOUT_COMMIT = ' '
    IMPORTING
       SALESDOCUMENT = l_vbeln
       RETURN = li_return
    TABLES
    ORDER_ITEMS_IN = lt_order_items_in
    ORDER_PARTNERS = lt_order_partners.

  • Calling methods from inside a tag using jsp 2.0

    My searching has led me to believe that you cannot call methods from in the jsp 2.0 tags. Is this correct? Here is what I am trying to do.
    I have an object that keeps track of various ui information (i.e. tab order, whether or not to stripe the current row and stuff like that). I am trying out the new (to me) jsp tag libraries like so:
    jsp page:
    <jsp:useBean id="rowState" class="com.mypackage.beans.RowState" />
    <ivrow:string rowState="${rowState}" />my string tag:
    <%@ attribute type="com.mypackage.beans.RowState" name="rowState" required="true" %>
    <c:choose>
         <c:when test="${rowState.stripeToggle}">
              <tr class="ivstripe">
         </c:when>
         <c:otherwise>
              <tr>
         </c:otherwise>
    </c:choose>I can access the getter method jst fine. It tells me wether or not to have a white row or a gray row. Now I want to toggle the state of my object but I get the following errors when I try this ${rowState.toggle()}:
    org.apache.jasper.JasperException: /WEB-INF/tags/ivrow/string.tag(81,2) The function toggle must be used with a prefix when a default namespace is not specified
    Question 1:
    Searching on this I found some sites that seemed to say you can't call methods inside tag files...is this true?...how should I do this then? I tried pulling the object out of the pageContext like this:
    <%@ page import="com.xactsites.iv.beans.*" %>
    <%
    RowState rowState = (RowState)pageContext.getAttribute("rowState");
    %>I get the following error for this:
    Generated servlet error:
    RowState cannot be resolved to a type
    Question 2:
    How come java can't find RowState. I seem to recall in my searching reading that page directives aren't allowed in tag files...is this true? How do I import files then?
    I realized that these are probably newbie questions so please be kind, I am new to this and still learning. Any responses are welcome...including links to good resources for learning more.

    You are correct in that JSTL can only call getter/setter methods, and can call methods outside of those. In particular no methods with parameters.
    You could do a couple of things though some of them might be against the "rules"
    1 - Whenever you call isStripeToggle() you could "toggle" it as a side effect. Not really a "clean" solution, but if documented that you call it only once for each iteration would work quite nicely I think.
    2 - Write the "toggle" method following the getter/setter pattern so that you could invoke it from JSTL.
    ie public String getToggle(){
        toggle = !toggle;
        return "";
      }Again its a bit of a hack, but you wouldn't be reusing the isStriptToggle() method in this way
    The way I normally approach this is using a counter for the loop I am in.
    Mostly when you are iterating on a JSP page you are using a <c:forEach> tag or similar which has a varStatus attribute.
    <table>
    <c:forEach var="row" items="${listOfThings}" varStatus="status">
      <tr class="${status.index % 2 == 0 ? 'evenRow' : 'oddRow'}">
        <td>${status.index}></td>
        <td>${row.name}</td>
      </tr>
    </c:forEach>

  • Call methods from view controller to another (enhanced) view controller!

    Dear All,
    Is it possible to use/call methods from view controller to another (enhanced) view controller? Iu2019ve created a view using enhancement in standard WD component. I would like to call one method from standard view controller in the enhanced view controller.
    Is it possible to include text symbols as enhancement in standard class?
    u2026Naddy

    Hi,
    If you have just enhanced an existing view then you can call the standard methods in one of the new methods which you will create as part of enhancement.
    If you have created a totally new view using enhancement framework option ( Create as Enhancement ) then in this new view you won't be able to use existing methods in other view as a view controller is private in nature. So all the view attributes, context nodes and methods are Private to that view only.
    Regarding text elements, I guess adding a new text element is just a table entry in text table and is therefore not recorded as enhancement.( Not very sure about this, need to double check )
    Regards
    Manas Dua

  • Where can I find information on migrating from Business Objects 5 to XI R2?

    We want to migrate several Business Objects implementations - some of which are Business Objects 5 and some Business Objects 6 to consolidate them into a XI R2 environment.
    I have the document that describes migration from 6.x to XI R2 but what is the process for migrating from Business Objects 5. Do I need to migrate from 5 to 6 and then follow the 6.x to XI R2 migration?
    Any pointers to additional hints and tips on migration or how to estimate how much effort is involved would also be welcome.
    Thanks in advance for your help.

    Hi,
    Following are the detailed steps for migration via Import Wizard:
    1] Go to Start > Programs > Business Objects XI Release 2 > BusinessObjects Enterprise > Import Wizard.
    2] The Welcome dialog box appears. Click Next.
    Setting source and destination environments:
    3] In the Specify source environment dialog box, set the following:
    u2022 Source: Business Objects Enterprise BO 6.5.x.
    u2022User Name:
    u2022 Password: visor
    BOMain key
    Note: Do not check the Import Application Foundation contents option since you are not performing Performance Management migration at this time.
    Click Next.
    4] The Warning page appears. Click Next.
    Note: The source repository can store any file, not just supported agnostic documents. Since the BusinessObjects XI Release 2 architecture requires a plug-in for each file extension, it does not import unsupported files (for example, .zip files and as .svg documents used in corporate dashboards).
    5] The Specify destination environment page appears. Set the:
    u2022 Destination: Business Objects Enterprise BOXI R2
    u2022 User Name:
    u2022 Password:
    u2022 Domain key file to: Default drive: \Business Objects\BusinessObjects Enterprise XI R2
    Click Next.
    6] Select the types of objects you want to import in this stage of the importing process. At a later stage, you select the objects themselves.
    u2022 Select the option u2018Import universes u2018.
    Click Next.
    7] Import options for universes and connections dialog box appears.
    Select the third option: Import all the universes and connections that the selected Web Intelligence and Desktop Intelligence documents use directly.
    8] The Please choose a merge scenario dialog box appears. Select I want to merge the source system to destination system and check the automatically rename top-level folders that match top-level folder on the destination system option.
    Click Next.
    9] The Incremental Import dialog box appears.
    You may need to import some objects more than once from the source repository to the destination repository.
    In this situation, you have the following update options:
    u2022 Overwrite object contents
    You select the types of objects for which the content overwrite applies:
    u2022 Documents (including dashboards and analytics)
    u2022 Universes
    u2022 Connections
    When you re-import an object, it will completely overwrite and replace the matching object (and its associated files) that you imported earlier.
    u2022 Overwrite object rights
    When you re-import an object, its associated security rights will overwrite the rights of the matching object you imported earlier.
    If you decided not to import security in the Security Migration Options dialog box, then the Overwrite object rights option is not relevant, and is therefore not available.
    If you don't select any overwrite options, the matching object in the destination repository will not change when you try to import it again.
    Note: This dialog box appears only if you select update as the import scenario.
    Click Next.
    10] Select the specific universe
    Click Next
    11] Information Collection complete dialog box appears.
    Click Finish
    12] Import Progress dialog box appears.
    Click Done
    Hope this helps !!
    Please revert in case of any queries.
    Regards,
    Deepti bajpai

  • How to migrating from Business Objects to OBIEE

    Hi,
    I have one query is it possible migrating from Business objects to OBIEE ? if, yes could you tell me any one regarding this requirement.
    Advance Thanks.

    Hi,
    I don't have any documentation link , we need to design rpd based on BO Universe and BO reports functionality.
    first observe what are the physical tables used in universe those physical tables improted into physical layer of obiee rpd give physical joins. In BMM layer design hierarchies, calculations and outerjoins all these things done in BMM layer thats it.
    Regards,
    Naresh

Maybe you are looking for

  • Multiple email accounts on my phone

    Hi, Not to sure if anyone knows of a solution to this but any thoughts would be welcomed. I have about 5 different email accounts set up on my iPhone. I took the plunge and swapped my email from POP3 to IMAP, my thought was that especially as I now h

  • Air for Iphone NavigateToUrl

    I am having an issue with using the navigateToUrl method when developing for the IOS using Flash Pro. I am using the Addthis.com functionality to share things to twitter, facebook, etc.  I use their api, which is actually super simple and just utiliz

  • Close purchase order item

    Hi, we have B/1 2004A SP0 PL 42. Is it possibile close an item on purchase order (and only this item) after a partial goods receipt ? We have found only to close entire document in document header. Thank you for attention. Regards.

  • Network printing problems using an iMac as the server

    I am running an iMac OS 9 computer as a server. There are three computers (an iMac, an iBook both running OS 9, and a Powerbook G4, running OS 10.4) connected to the server via ethernet. Here is the problem: all three computers have been printing fro

  • Smart form should be online (i.e Export to web )

    Hi friends, Its too immediate requirement. When i click push button, smart form containing 3 pages should be in online and also hard copy should be display. and that form ( statement should be online access ) Please help me in this, Points will be re