Transaction code(s)- that trigger 'Cheque' SAPscript & print program

Hi,
I have to do some modifications in the cheque (CANADA) SAPscript form and the corresponding print program as per the user requirements.
<b><u>Form Output and Debugging</u></b>:
Can you please let me know which transaction code(s)
trigger(s) the cheque SAPscript form and its corresponding print program.
Version: SAP 4.6c
Thanks in advance.
With Best Regards,
Vidya

F110

Similar Messages

  • Migrating SAPscript print program to Smartform

    hello everyone,
    Requirement is to print transfer orders. Current functionality supports SAPscripts and its print program. Since we are going to be using Smartforms, I need to change the print program so that it calls the custom smartform created by me.
    Can anybody help me out by telling me a step-by-step process as to WHERE and WHAT changes I can do in the SAPscript print program so that I can use it for my Smartform?
    The SAPscript print program that needs to be changed is: RLVSDR40.
    Thanks in advance.
    Regards,
    Fred.

    Hi Fred,
    The system does not migrate the print program (data retrieval) or the form logic contained in the print program. You must make the required changes to the respective print program yourself. PL take a look at the following
    <a href="http://help.sap.com/saphelp_47x200/helpdata/en/9d/9599386185c064e10000009b38f8cf/frameset.htm">SAP help</a>
    Regards,
    Suresh Datti

  • SAPscript print program for multiple pages

    Hello friends,
    How to write SAPscript print program for multiple pages? please help me.
    Thanks and regards,
    Shivanand.

    I believe you have posted this question in the wrong forum.  There is an ABAP Forms Printing Forum.

  • SAPscript print program

    Hi All
    I have the SAPscript form name. I need to find out the name of the print program.
    The table TNAPR gives the standard program name attached to the SAPscript.
    But, I need to find out the Z* program name associated with the SAPscript.
    Pls do help on this.
    Thanks,
    Zahabia.

    hI
    Sapscripts are client dependend and smartforms are client independet.
    SAPscript are CLient Dependent, SmartForms are Client Independent. The reason why SmartForms are client independent is because when you activate a SMartForm, SAP actually generates a Function Module (which as you know is client independent). The Print Program (or as SAP likes to refer to them these days - Application Program) calls your generated FM.
    In the "smartforms" transaction, when you are viewing a smartform, you can go to the Environment->Function Module Name menu path to see the FM name.
    Look at the "Application Program" for the Invoice SmartForm (RLB_INVOICE):
    determine smartform function module for invoice
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING formname = lf_formname
    variant = ' '
    direct_call = ' '
    IMPORTING fm_name = lf_fm_name
    EXCEPTIONS no_form = 1
    no_function_module = 2
    OTHERS = 3.
    call smartform invoice
    CALL FUNCTION lf_fm_name
    EXPORTING
    archive_index = toa_dara
    archive_parameters = arc_params
    control_parameters = ls_control_param
    mail_appl_obj =
    mail_recipient = ls_recipient
    mail_sender = ls_sender
    output_options = ls_composer_param
    user_settings = space
    is_bil_invoice = ls_bil_invoice
    is_nast = nast
    is_repeat = repeat
    importing document_output_info =
    job_output_info =
    job_output_options =
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    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.
    Contributed by : SAP ABAP/4 Programming, Basis Administration, Configuration Hints and Tips
    f) Unlike sapscripts (RSTXSCRP), you cannot upload/download Smartform to your local harddisk.
    It was said that it was provided in CRM 3.0 version, but not available in R/3. You can download smartforms into Local PC in a XML format. In the same way you can upload this XML format into Smartform. From the smartform editor itself you can call download option, if you are working in CRM 3.0 environment.
    In R3 also, you can download into XML format. However, it's not sure about uploading. Refer to the program 'SF_XSF_DEMO'.
    In 4.7 Enterprise, other have seen this utlity which is completey missing in 4.6c. There is functionality to downlaod a complete form or only a particular node. (Utilities -> Download form). It will create a XML file and save it in the hard disk.
    For others, if you want to download/upload the Smartforms source, you will need the help from the Basis people. What you can do is to create a Transport and then FTP down to your local harddisk. When you need the Smartform source in another system, you have FTP up the Smartforms file back to the SAP server. Finally, the Basis team, will tp it into your system.
    g) The protect and endprotect command in sapscript doesn't work with smartforms. For example on a invoice: First data of position no 80. is printed on page one, other data of position no 80 is printed on page 2. And there's nothing you can do about it. Actually, there is something you can do about it. By using a folder node and checking the 'protect' checkbox, everything in that folder will be page protected.
    i) The main difference is that SAP script is client-dependant, while smartform is independent. Also there are some advanced and intreractive features available in smartforms.
    You can use an External subroutine-call in sapscript editor like:
    /: perform <form_name> in program <program_name>
    /: using <var1>
    /: using <var2>
    /: changing <return1>
    /: changing <return2>
    /:endperform

  • SAPScript Print Program Entry Point

    Dear all,
      I try to modify the standard SAPScript form and its related print program.  What is the program entry point for those associated print program??  Since, i want to add my own logic and don't know where should i start.  I can only find the subroutine FORM_OPEN and ENTRY.
    Regards,
    Kit

    hi,
    u can add u r logic by using form routines.
    FORM .. ENDFORM is used when retrieved data
    needs to sent back to print program.
    In SAPscript:
    PERFORM < routine_name> in <report_name>
                USING  &var1&
            CHANGING &var2&.
    ENDPERFORM.
    in case of reports,
    i am giving the sample example for this,
    FORM < routine_name> in_tab type ITCSY
                                out_tab type ITCSY
    READ TABLE in_tab WITH KEY NAME = ‘var1’.
    {Data Selection based on above value. It returns ret_value.}
    READ TABLE out_tab WITH KEY name = ‘var2’.
                out_tab-value = ret_value.
                MODIFY out_tab.
    ENDFORM.
    Reward points if useful,
    Thanks,
    usha

  • Transaction code KOAB

    Transaction code KOAB is open for change even if client is closed. Will it be possible to change the setting of this transaction code so that , it will be open in change mode only when client is open.

    Hi,
    Good catch Actually, S_TABU_CLI is required only for cross client maintenance tables. However, as you highlighted the client should be open to modify the entires from KOAB transaction code. In your case, I infer that the tcode is allowing even the client is open
    This is true if the table belong to Delivery class C. You can check the same from SE11-> Enter the table name -> and Maint.Status tab. I suspect that the Delivery class is set to A in your case
    Note - You can verify the tables that are required for the code KOAB from SE93. It uses the program RKKOT2.
    Hope this helps!!
    Regards,
    Raghu
    Edited by: Raghu Boddu on Dec 22, 2010 9:47 PM

  • Issue in transaction code creation for sap query report .

    Hi  Gurus,
    I have a requirement to create transaction codes for sap query reports. I found two ways to create transaction code for sap query report
    1) By Generating program for sap query report and creation of transaction code for that generated Program. in tcode.
    2) By using parameter transaction options in start object of se93
    What are the difference between creation of these two ways. Please specify  the advantages and disadvantages of both methods.
    Regards,
    Suneel Kumar Uggina.

    Hi Jogeswara Rao,
    But I am getting problem while transporting form development system to  the production system. After transporting to Production system  I have used the code created in development system, but it is giving Error ' No Program Found for that Transaction Code. And  I would like to know  on what conditions should I have to  use the First one  and as well as a second one in sap query reports.
    Thank You,
    Suneel Kumar Uggina.

  • EDI Partner Profile creation at Transaction Code FI12

    How is the partner profile created when you select the Icon Partner Profiles, which is transaction code WE20 that is accessing from transaction code FI12.
    The type is B for bank. Can the partner number be a end user defined number? Can this be the vendor number for the bank? That does not appear to be an option!
    Here are my questions of the Post processing permit agent design.
    How are the values for the "Types" created?
    Thanks
    Chris Courter

    Rohan Patil wrote:>
    > BEGIN = 1.
    > edi_dc40 segment values
    > SEGMENT = 1.
    > TABNAM = EDI_DC40.
    > MANDT = 120.
    > DIRECT = 2.
    > IDOCTYP = CREMAS05.
    > MESTYP = CREMAS.
    > SNDPORT = SAPNBD.(XI port)
    > SNDPRT = LS.
    > SNDPRFC = LS
    > SNDPRN = NXICLNT120.
    > RCVPOR = SAPNED.(ECCport)
    > RCVPRT = LS
    > RCVPFC = LS
    > RCVPRN = ECCCLNT120(ECC partner number).
    Hello Rohan,
                            IDocs SNDPRN/SNDPRT/MESTYP will be taken in SAP for processing the received IDOC,so in your case either you need to create the partner profile NXICLNT120 with all inbound details or need to change the same in mapping and pass the values of your partner in SNDPRN SNDPRT fileds of control record
    HTH
    Rajesh

  • Transaction Code Search by Keyword

    Is there any way to search for appropriate transaction codes by keyword search without knowing any transaction codes? For e.g. type: Display Report or Display Table and not know the transaction code for that? I already know about Tables: TSTC and TSTCT, it did not help for what I am looking for.
    Thanks!

    Hi,
    Try this:
    1. Run TCODE: SE93
    2. Press F4 ( It will show new window)
    3. Press Information System ( or Press F5 )
    4. Write your Key Word in Short Description field, example: " *Display Report* "
    5. Press Enter or F8, and it will display all Transaction Code with that Short Description.
    OR
    1. Run TCODE: SE16.
    2. Write table name: TSTCV
    3. Write your key word in TTEXT, example: " *Display Report* "
    4. Execute or press F8, and it will give the result.
    Regards,

  • How to create a Transaction code for a Report Painter Report

    Hi All,
    Can any one let me know the procedure as to how to create a t-code for a user defined PCA report. I have created a PCA report (copied the existing report (8a26-001) and named it as zpca and assigned the same in a new Report Group ZPCA (the group is created by copying 8a26 group) and assigned it under the library 8a2. We have added few fields required by the user to the Z report.
    Now i need to create a transaction code for that zpca report. can anyone suggest how to go about it.
    Useful answers will be appropirately rewarded.
    regards,
    radhika

    Go to transaction SE93, enter a transaction code that you want and click on "create". Enter a text and select the "Transaction with Parameters" button. In the Default Values section, enter START_REPORT in the transaction field. Check the "skip initial screen" box. In the Name of Screen field section enter the following lines:
    Name of screen field:                               Value
    D_SREPOVARI-REPORTTYPE                RW
    D_SREPOVARI-REPORT                        ZPCA
    Save and transport accordingly.

  • Navigation for database tables in a transaction code

    Hi all !
       Is there any way to know the database tables linked to a transaction code, so that searching for fields in tables gets easier right?Please help.
    What is the use of Tcode SE80.How can we make use of this transaction?

    hi,
    SE80 - Object Navigator
    se80 is a tool to develope and navigate programs and dd-obj.
    SE80 Object Navigator - > means all the objects qill be available there.
    in se80 in addition to viewing the objects related to programming and classess, there are more priviliges to view such as some other repositories suchas mime, object repository,object browser and all..
    The 2 editors are se38 and se80 both have the abap editor in place. In se38 you can go create programs and view online reports and basically do all thedevelopmet of objects in this editor. In se80 ( object navigator) there are additional features such as creating packages,module pool , function group ,classes, programs ( where you can create ur programs) and BSP applications .
    SE38, u will get more space in editor when u compare with the SE80 screen, the tree structure available will occupy more space so it will be eay for us to code.
    If u want to do any special navigation then u can got to SE80, but there is no specific reason.
    It depends on teh users convineince.
    se80 is to navigate to every object .....
    but everytime there is no need to navigate to several steps and go to abap editor.
    So there certain transactions which takes us to directly to the objects such as SE38 for abapaeditor
    SE37 for function module
    SE93 for creating transaction codes...etc.
    U can also traverse to se80 from SE38 itself using CtrlShiftF5.
    SE 38 ->Abap Editor thru which we can create/modify the programs.
    SE80 ->Object Navigator thru which we can navigate to many areas like message classes,Function modules,application areas,transactions, programs etc.

  • How to assign transaction code to a ABAP program?

    Hi,
    Need help in assigning transaction code to a ABAP program. Any method that will do the job?

    >
    sainath raj wrote:
    > hi
    > within my knowledge
    > Any ABAP program can have its own transaction code if and only if it is of type 'MODULE POOL' .
    > An EXECUTABLE program  cannot have a transaction code.
    >
    > So try with this .
    >  1) Go to the attributes of the program and change the program as type module pool
    >   2) then execute transaction SE93.
    >  3) give the appropriate program name and assign a transaction code as ur wish.
    Well Sainath,
    What u said is not correct, an executable report can have a transaction code, difference between module pool and executable program is that u neccesarily need to have a tcode for module pool but that doesn't mean that only module pool can have tcode.
    And secondly u should not answer these kind of simple questions, as people then continue posting simple questions without making an effort to serach for themselves.
    кu03B1ятu03B9к.

  • Transaction Code for Smartforms...

    Hi All,
      i have created smartform and now i want to create Transaction code for that..how can i do that, i knew tcode 93 for creating transaction code..but after creating transaction code while executing it is giving error...
    Pls help..
    Regards,
    yunus

    Hi,
    first u create the driver program.
    then call the smart from from that driver program. driver program is simply an exceutable report program.
    from that use the FM - > SSF_FUCTION_MODULE_NAME
    give the t-code for this report program.
    eg: code
    DATA: FM_NAME TYPE RS38L_FNAM.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    * VARIANT = ' '
    * DIRECT_CALL = ' '
    IMPORTING
    <b>FM_NAME = FM_NAME</b>
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    *at first give the 'Environment' menu-->'Function Module *Name' in the below code and call 'PATTERN'.
    *then Remove that number with FM_NAME
    call function <b>FM_NAME</b>
    * EXPORTING
    * ARCHIVE_INDEX =
    * ARCHIVE_INDEX_TAB =
    * ARCHIVE_PARAMETERS =
    * CONTROL_PARAMETERS =
    * MAIL_APPL_OBJ =
    * MAIL_RECIPIENT =
    * MAIL_SENDER =
    * OUTPUT_OPTIONS =
    * USER_SETTINGS = 'X'
    * IMPORTING
    * DOCUMENT_OUTPUT_INFO =
    * JOB_OUTPUT_INFO =
    * JOB_OUTPUT_OPTIONS =
    TABLES
    GS_MKPF = INT_MKPF
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    rgds
    Anver
    pls mark all hlpful answers

  • How to create transaction codes

    hi,
    i have a program written and i need to have a transaction code to that program so that i can type in command field...
    can anyone just tell me the procedure to do this...
    thx in advance,
    regards,
    aj.

    Hi good
    1. goto se93 transaction
    2. give transaction code and
    3.click create button to create
    4.and enter the program name.
    reward if it is helpful.
    thanks,

  • Transaction code to run  SAP SEM BCS

    I want to know that what is the transaction code to run SAP SEM BCS.. please reply to me if u know the transaction code for that.
    thanks in advance..
    regards.
    Mohankumar.G

    Hi,
    UCWB - to run the workbench
    UCMON - to run the monitor.
    Best regards,
    Eugene

Maybe you are looking for

  • If your ipod is not recognized by itunes...

    One easy mechanical thing to check - sometimes the contacts between the docking cable and the ipod get dirty. Get some electrical contact cleaner (ProGold is the best), spray a bit on a clean toothbrush (which you should never again use for anything

  • How to use in submit with variant

    Dear Freinds     As per the my requirement from my program i want to send the data to spool and from tehre i want to download as PDF .   for the standard program i have a variant . I want to use the variant which has been set for the standard program

  • [Urgent]3G Socket programming

    May I use socket for 3G networks? I use the demo provided by the WTK2.5-Beta(NetworkDemo), it works well in the simulator. However, when I download the program to the mobile phone, it seems that the mobile phone that runs ServerSocket cannot create t

  • Does iOS 6 supports iPhone 3GS?????

    Please let me know if anyone is using iOS 6 in iPhone 3GS , I heared that it does not works properly or have some issue like Stucked to itunes an all. Thanks for your comments an suggestions in advance.

  • Possible index combinations in 2D array - more Math Question than LabView???

    Hi All, I accidently submitted the first post.. please disregard the previous one. I am struggling with this problem. Please HELP!!! I have an array of numbers: Set1  50     62    73    82       91     96   100 Set2  43     78    146  186     230   2