Regarding Adding multiple SAP Scripts in one Transaction

Hi All,
I have a requirement where i will have to develop one custom transaction which will have multiple SAP Script Forms to it.
The scenario is as below:
First i will have to create a Program with Selection-Screen with 10 Radio buttons in one Block - Here Each Radio Button indicated Diffrent FORM[SAP SCRIPT].
Down to it i will create another Block with some selection-screen fields. Like Order Type, Order No, Customer PO number, SOLD TO, BILL TO, SHIP TO etc.
And based on Radio button selected allowed order types will vary!
So after selecting one Form[Radio button] and enetring other selection fields once i press execute button.
i need to display list of Orders in ALV List output with check boxes for each record in the List Output.
Here all the radio button Forms are related to <b>Sales Order document and Delivery document</b>
So do we need to create new ALV List Report (or) We can use submit <b>VF31</b> transaction's program <b>[sd70av3a]</b>.
After we are displayed with orders in the output.
Then we should provide a functionality as such if user selects mutiple Orders/Check boxes he should be able to view multiple Orders one after other, and simultaneously generate PDF Files for Each Order Selected and attach them in Mail send them to Block of users.
Can anybody give there sujjestions.
Without generating spool request no's is it possible to generate PDF files for SAP SCript output!
Is it possible to Generate & attach one/multiple PDF files to mail ID and send them to list of users!
Can anybody give inputs.
Thanks in advance.
Thanks & Regards,
Prasad.

hi prasad,
There is one concept called Print Work Bench(PWB) to print the multiple scripts or smartforms which r assigned to a same transaction.
If u need the info related to PWB shoot me a test mail to [email protected]
i will send u the same
fot the same u can check the below link also
http://help.sap.com/saphelp_nw04/helpdata/en/64/bf2f12ed1711d4b655006094192fe3/content.htm
<b>Prasad i didn't get the mail from you plz check it once again</b>
If u find it useful plz mark the points
Regards,
Naveen
Message was edited by: NAVEENKUMAR GUDURI

Similar Messages

  • Multiple SAP Systems In One MSCS Cluster

    We have installed a NW 7.0 EHP abap stack in a MSCS Cluster with 2 nodes.
    This was installed as a standard Cluster Install.
    We have now higlighted a requirement to install a 2nd (Java ) instance in this Cluster Group.
    The NW 7.0 EHP1 documentation and Note 1321854 shows that multiple SAP systems in one  MSCS cluster is supported.
    The documentation, however, is not clear if the 2nd instance can be installed when the 1st instance was installed without the preperations for Multiple Systems.
    There are no further documentation or guidelines to help.
    Has anyone come across this situation or managed to install 2 SAP instances in one Cluster Group based on Windows 2003, SQL Server 2005.
    Regards

    I am not quite sure if I understood your problem completley. But let's see...
    Usually you use on on MSCS Cluster Group per SAP instance. So you have your already existing NW 7.0 ABAP stack in a separated Cluster Group, and you create a new Cluster Group for your new Java system.
    You can find more information about it in this guide here on SDN:
    Link: [High Availability;
    More information about High Availability Setups for SAP System can be found here on SDN:
    Link: [High Availability]
    If you want to use the same database for your clustered ABAP stack and your new Java stack you can do a MCOD installation.
    Please see Link: [SAP Note 388866 - Multiple Components on One Database - Installation|https://service.sap.com/sap/support/notes/388866]
    Hope this helps.
    Best regards,
    Mathias

  • Regarding debugging in sap script and smart forms

    hi guys,
    can any one tell me what are the different steps and options available to debug a SAP SCRIPT and a SMARTFORM.
    thank you very much
          pavan

    There is a transaction 'SMARTFORMSTRACE' (or was it 'SMARTFORMS_TRACE') which will give you quite helpful information.
    Try!
    Sorry: Correct name is SMARTFORM_TRACE. You have lots of options for adequate analysis.
    Regards,
    Clemens
    Message was edited by: Clemens Li

  • Regarding debugging in sap script and smart form

    hi guys,
    can any one tell me what are the different steps and options available to debug a SAP SCRIPT and a SMARTFORM.
    thank you very much
    pavan

    Scripts:
    1. In the form, Utilities->debugger / RSTXDBUG FM for debugging script
    2. Generally SAP script contains the Layout and corresponding print program.
    First go to SE71 and enter ur script name. In the same screen go to Utilities->click on activate debugger option.
    Now go to SE 38 and enter ur Print Program name and execute the program.
    Now you can debug the script Page wise and window wise.
    Smartforms:
    In the Smartform, create a Code Node and within the Code Node you can hardcode a normal abap Break Point.
    Insert a "Program Line" just above the node you want to debug and this program line write a normal abap breakpoint. So whenever you call the smartforms, it will stop at this breakpoint and you can debug onwards.
    Other way to debug smartform is to debug the Function Module of that smartforms.
    You can also use <b>smartform trace (transaction SFTRACE)</b>.
    Have a look at below link.
    http://help.sap.com/saphelp_erp2004/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    I hope it helps.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • Multiple table commit in one transaction

    Hi ,
    I have a issue with JDBC. I have about 5 tables to update which are related. So i am updating them as one set with multiple tables.
    what i want is to commit to database once the first three tables are updated and then move on to the next 2 tables.
    Is this possible
    Regards
    Nikhil

    hi
    the xml looks like below
    <root>
    <stmt1>
    <table1 action = "update_insert">
        <table> AAA</table>
         <access>
         </access>
         <key>
         </key>
         </table1>
    <table2 action = "update_insert">
        <table> BBB</table>
         <access>
         </access>
         <key>
         </key>
         </table2>
    </stmt1>
    I have to use some thing like this because to mentain it as one transaction so that if one table update fails the whole transaction is roled back.
    If you have any idea please do let me know
    Regards
    Nikhil

  • Spool - restrict multiple sap script  layouts into a single spool

    Hi Experts,
    I am writing a Sap SCRIPT print program for multiple number of customers with different layouts. But i am getting seperate spools for different customers. There fore i need to print out all customers in a single spool.
    Can some one help me how to do this?
    Thanks
    Dany

    OPEN_FORM and CLOSE_FORM function module are used to open and close spool. When you have single form to create document then we specify form_name in OPEN_FORM function module itself. However when we have multiple forms or same form needs to be called multiple times and all document needed in same spool then we use START_FORM and END_FORM to explicitly open and close form.
    Call function module in this sequence
    OPEN_FORM "without specifying any form name, this will open spool
    START_FORM " with form name
    END_FORM
    START_FORM "with (some other) form name
    END_FORM
    CLOSE_FORM "close spool request

  • Can we assign multiple SAP alias to one Enterprise user?

    Hi,
    Customer has a request to assign multiple SAP roles (imported to BOE) to an Enterprise user. The purpose to do this is to be able to refresh different reports reporting off different SAP system by one single user.
    Can the above been done by any kind of configuration or it's not possible at all?
    thanks and regards

    Yes, he wish to assign several SAP users from different SAP system to one Enterprise user.
    Actually customer wants to assign multiple SAP alias (from different SAP system) to one Enterprise user. (In this case, does it mean he needs to enable SAP authentication for multiple SAP system?) And then he can use the Enterprise user to refresh any reports, e.g report from BOE, and reports from different SAP system.
    Can the above be done through any configuration?
    thanks and regards
    nora

  • SAP script for MIRO transaction

    Hi,
    Please give me the standard sap script available for MIRO transaction

    Hi,
    Arun: The program name is RM08NAST
             The form name is MR_PRINT
    You can get the details by going thru' NACE transaction or TNAPR Table.
    Reddy: Please understand MIRO is for invoice posting. As you said its not for GR, PO or any other blah blah.
    Arun, hope its enough. Feel free to revert back.
    --Ragu

  • How to attach print program and sap script for F150 transaction

    How to attach print program and Z sap script for F150 transaction

    Hi,
    you can find the customization for dunning in transaction SPRO under this path: Financial Accounting->Accounts Receivable and Accaounts Payable->Business Transactions->Dunning.
    Kostas

  • Multiple SAP systems on One database

    Hello,
    We are planing to install multiple SAP systems like SM, ERP on one database with multiple DB SIDs, it means each SAP system has its own Oracle instance. We know MCOD has only one DB SID (one oracle instance) for multiple SAP systems.
    Is it possible to set up the landscape like this? Is it supported by SAP?
    Can any body advice?
    Thanks,
    Kris

    >
    Kris wrote:
    > Thanks Markus,
    >
    > But we want to install one DBMS home for all oracle instances for different SAP components. Is it possible?
    >
    >
    > Thanks,
    > Kris
    Technically, it is possible.
    But SAP Does NOT support it. The only method to install one set of binaries (one ORACLE_HOME) that is supported by SAP is to use MCOD (all components are installed in one Database)

  • Multiple SAP Systems to one LiveCache

    Hi All,
    I know some one in the past already discussed on this topic.  I want to know is it possible to use a single MaxDB/LiveCache  for more than one SAP System like SCM and WFD system to a single LiveCache.  If this is possible and some one already done it,  can you please let me know the high level config steps?.  I was thinking MaxDB should able to support the MCOD concept, but I am not sure.
    Thanks

    Hi Narayan,
    no, using one liveCache with several SCM installations is not possible.
    Although MaxDB is of course possible to support an MCOD setup, the liveCache is not. This is due to the very tight coupling of the liveCache routines and the SCM ABAP code.
    Anyhow, a special setup called OneDB is supported, where liveCache and the SCM database are stored within a single MaxDB instance.
    This setup simplifies Backup/Restore to a great extent.
    There is also no benefit in sharing one liveCache instance within several SCM instances as you can install multiple liveCache instances on a single server.
    regards,
    Lars

  • Multiple SAP Systems with one Unique ID

    Hi,
    SAP recommend to have <sidadm> and <sapserviceSID> user account for each system. 
    Currently we create domain users for each SAP System.  We are installing many test servers and trying to see if I can avoid creating domain user account for each system and use only one account to administer all test sap systems.
    Just wanted to know if there is any way to have one domain SIDADM user id and one domain SAPService user account to run multiple test SAP systems? 
    Thanks,

    Hi,
      Multiple test system you have different SID. so you must use different SAPserviceSID user. But you can use one SIDADM user with the proper permission with other test systems.
    I have used in OS400 environment with single SIDADM user id.
    please check with users with permission sap notes or document.
    But SAP not recommanded this.
    Thanks and Regards,
    Jibin.

  • Replace SAP Script of COPI transaction with new Smartform?

    sorry ..wrong place
    Edited by: Suzie on Apr 28, 2010 10:03 AM

    Why?  Do you have a couple of months to spend on the development? 
    SAPScript will be supported by SAP for the predictable future; there have clients all over the world relying upon it.  If you need to change the output, SAP best practice is: leave the driver program as is, copy the script layout set into a custom (Z) version, and add any necessary /: PERFORM... routines and any new fields.
    On the other hand, if your client or employer is (misguidedly, IMHO) insisting upon a new SmartForm (which will also mean a new driver program), you could try the programmed conversion.  When I went to SmartForms class, even the instructor advised against using the tool, since (at that time, at least) you were likely to have an unusable pile of trash after the attempt to convert the layout set, but that was in 4.6c.  Perhaps the "real" SmartForms build that became available beginning in WebAS has better tools.

  • Adding multiple indesign pages into one manual

    HELP, I am trying to make one big manual out of 60 different indesign files. How do I do this? I have been trying to find help on it without success. Can someone help me?
    THANK you!
    Stephanie

    There are time one might need to actually combine documents, rather than use the book feature. To do this:
    Open up the first and second documents (or as many as your computer will handle)
    Make the second doc the active one.
    Go to the Move menu on the Pages panel.
    Choose all pages and select the first doc from the pop-up destination menu.
    Click OK/Move.
    Close second doc.
    Save the first.
    Repeat as needed in document order.

  • Multiple Persistence Units AND one transaction

    Hello,
    I'm using JPA implementation for my EJB Project.
    I have 2 persistence units and I'm using them in the same method.
    I want to persist 2 object belonging each one to a different persistence unit
    The 2 persistence units are related to different databases.
    Everything is going fine and no exception is raised BUT only one object is persisted and the other one is not.
    Have anyone had a similar problem before.
    Any help will be appreciated.
    Thanks in advance.
    Edited by: ImaneA on Jan 18, 2011 9:29 AM

    @Yordan :
    First of all, thanks a lot for you answer.
    At the end, I didn't use two EJB Projects :
    1 - I used only one datasource( associated to one database ) in the persistence.xml
    2 - I created a DBLink in SQL Server
    3 - I created a synonym in the first database to get data from the second database.
    And it works
    But thanks for the answer, I may use you solution in my next project
    @Rolf :
    No, In NWA I've declared my datasources as normal datasources.
    But Plz if you have docs that talks about XDataSources plz share them and thanks in advance.
    Edited by: ImaneA on Jan 25, 2011 9:21 AM

Maybe you are looking for