Assigning the KE80 report to Z transaction code

Hi friends
My functional consultant has created a report in KE80 transaction code using report painter. But due to some reason we cant give the authorization for KE80 to the user. So my functional consultant told me to create a Z tcode for a perticular report. I have assigned the program name to a Z tcode. But the selection-screen is coming differently in z tcode compare to ke80. In z tcode it is showing some extra fields in selection-screen. Apart from that after running the report the output is not coming in list format it is always starting printing. But in KE80 we can see the output in list format.
Please give some idea to solve this issue.

Have u copied the transaction code to a Z code or created altogther a new one?
Coz if u have created a new one, then it might be possible that the type of transaction created is different on from the needed.
Its better you copy the transaction into a Z transaction and actiavte.
Try this as this mite be the issue.
Hope it helps.
Regards,
Mansi.

Similar Messages

  • Assigning the Authorization group to particular transaction code

    Hi,
      How do we Assign the Aughorization group to particular Transaction code with authorization object. Is there any transaction code ?
    if anyone know, please let me know.
    With Regards,
    Prasad.

    The Tcode is tied to a Program & you can assign the Program to an Authorization Group via its attributes. I don't think there is an option to directly attach a Tcode to an Authn Group.
    ~Suresh

  • Passing selection screen values to the next report using CALL TRANSACTION

    Hi experts,
    I have 2 reports. In the first report i have the 3 input fields in the first report, how do i pass the values to the next report which is transaction: ZKKBC_PKO_2.
    I want to display in the next report the selections that the user previously selected.
    First report:
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: COMP     LIKE AFRU-WERKS OBLIGATORY MODIF ID s1.
    PARAMETERS: PERIOD   LIKE COEP-PERIO OBLIGATORY MODIF ID s1.
    PARAMETERS: YEAR     LIKE COEP-GJAHR OBLIGATORY MODIF ID s1.
    SELECTION-SCREEN END OF BLOCK b1.
    CALL TRANSACTION 'ZKKBC_PKO_2'.
    Anyone can help me?
    Thanks,
    Lawrence

    Hi experts,
    What i did is this:
    Using SET PARAMETER
    in the first report
    SET PARAMETER ID 'WRK' FIELD COMP.
    SET PARAMETER ID 'VPE' FIELD PERIOD.
    SET PARAMETER ID 'GJR' FIELD YEAR.
    CALL TRANSACTION 'ZKKBC_PKO_2'.
    Second Report
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    PARAMETERS: WRK     LIKE AFRU-WERKS.
    PARAMETERS: VPE     LIKE COEP-PERIO.
    PARAMETERS: GJR     LIKE COEP-GJAHR.
    SELECTION-SCREEN END OF BLOCK blk1.
    Using SUBMIT
    First Report
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: COMP     LIKE AFRU-WERKS OBLIGATORY MODIF ID s1.
    PARAMETERS: PERIOD   LIKE COEP-PERIO OBLIGATORY MODIF ID s1.
    PARAMETERS: YEAR     LIKE COEP-GJAHR OBLIGATORY MODIF ID s1.
    SELECTION-SCREEN END OF BLOCK b1.
    SUBMIT ZCO_PRDCOST_ACTUAL_2 VIA SELECTION-SCREEN USING SELECTION-SETS OF PROGRAM 'ZCO_PRDCOST_ACTUAL_1' AND RETURN.
    Second Report:
    GET PARAMETER ID 'WRK' FIELD comp.
    GET PARAMETER ID 'VPE' FIELD COEP-PERIO.
    GET PARAMETER ID 'GJR' FIELD YEAR.
    Either this 2 ways i still cannot get the first report selection values on the 2nd report. Can someone help me see if my codes is correcT?

  • How to execute a report using a transaction code?

    Hi team,
    I am new in ABAP and I want to do a very simple report and then call this report using a transaction code.
    Steps:
    1) create the report (SE38)
       the report is: Z_DEMO
    2) generate a transaction code for this report (SE93)
       note: the transaction code is ZDEMO
    3) call the transaction generated on step 2
    When I execute the report using SE38, everythig is ok and the records are inserted in my table zdemo2.
    But when I call my transaction ZDEMO there is no insertion. Why?
    The report ask for parameters and then fowards me to SAP's main menu.
    Thanks,
    Walter.
    The report is:
    REPORT  Z_DEMO.
    tables: zdemo2.
    parameters:
            nombre like zdemo2-nombre,
            edad like zdemo2-edad.
    data:
          begin of tabla occurs 0,
            nombre like zdemo2-nombre,
            edad like zdemo2-edad,
          end of tabla.
    zdemo2-nombre = nombre.
    zdemo2-edad = edad.
    insert zdemo2.

    Hi,
    While creating the transaction for your program
    1>Make sure u give the program name and screen number
    2>Important thing is a option "GUI SUPPORT"
    Check all the checkboxes or atleast SAPGUI for Windows to ensure that the Code runs in SAP GUI.
    Thank you.

  • The exception reported is: "javax.transaction.NotSupportedException ESB

    We have recently upgraded our ESB environment to 10.1.3.4 MLR #6. and I get this error when I try to deploy ESB web services into ESB container.
    error code: 0 : 10
    summary: An unhandled exception has been thrown in the ESB system. The exception reported is: "javax.transaction.NotSupportedException
         at org.apache.slide.transaction.SlideTransactionManager.begin(SlideTransactionManager.java:129)
         at org.apache.slide.common.NamespaceAccessTokenImpl.begin(NamespaceAccessTokenImpl.java:391)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.commit(XMLConsoleManagerImpl.java:2388)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(JDevDeploymentManager.java:226)
         at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(DeploymentServlet.java:120)
    Can somebody please help us to investigate why is it happening? This has been eating my head a lot.
    Thank,

    Have you made sure that the DefaultSystem (in the ESB console) has the correct hostname, and port. I can't remember but it may get updated in the upgrade.
    Also there is a sql script that needs to be run for the esb schema, has this been run?
    Is it just new esb processes, or do existing esb get this error?
    cheers
    James

  • Set the default field value to transaction code field, when calling from WD

    Hi all,
    Can we pass the value in a input field of a standard transaction calling from WD application. Suppose we are calling a transaction VA03 in an external window, then how will be pass the value in the VBAK_VBELN screen field.
    Is there any way to pass the value to this transaction field. I have also tried out to set the parameter ID 'AUN' for VA03 transaction VBELN field. But it did not work for me.
    Is there any way to set the default field value to transaction code field, when calling from WD?
    Please suggest, if anyone have any idea.
    Thanks
    Sanket

    Hi,
    I am using the below code to open a standard transaction. It will help you to explain my point more easily.
    DATA: url TYPE string,
              host TYPE string,
              port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
    *create URL
      CONCATENATE 'http'
      '://' host ':' port
      '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'VA03'
       INTO url.
    *get the window manager as we are opening t code in external window.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Note*
    One more query I want to add to this thread, that is there any possibility to call a custom transaction as well?

  • Want to know the tables of a particualr transaction code

    Hi,
    whatz the technique of knowing the tables of a particular transaction code.
    I have got a tcode - va01.
    Want to know the tables of this transaction code.
    How...?

    Hi,
    If you want know about transaction code table details
    1. Enter Tcode 'ST05' (SQL Trace on), You can find how many tables are involved in the tcode
    2. Goto SE93, enter VA01 and find the program name, Go to object browse (se80) and enter program name and find out how many tables are invloved (Another way go to search- Give search term 'Tables' -> there u can find the tables involved.
    Regards
    Bhupal Reddy

  • Assigning a T-code to the report created under transaction code (SQVI)

    Dear Gurus,
    I have joined three tables in t-code SQVI and created the report after assigning the required fields in list or selected views.
    Now I want to assign this report to a particular T-code, so that any user can access the same report without creating it in SQVI again.
    Kindly let me know how can I assign the T-code to this Report.
    Thanks,
    Abhishek

    Follow the following steps:
    1. Make a transaction with parameters transaction from se93 .
    2. Put START_REPORT in the transaction
    3. Check the skip intial screen checkbox
    4. in the table control in the end of screen put these values
    D_SREPOVARI-REPORTTYPE = AQ
    D_SREPOVARI-REPORT = <USER GROUP in WHICH THE QUERY IS CREATED> G
    (G stands for GLOBAL AREA:)(Entered after a space)(G should come after 9 chanracters(8 char for user group,one space and then G)
    D_SREPOVARI-EXTDREPORT = <QUERY NAME>
    Thanks & regards
    J Prakash

  • Agewise Reports for Vendors - Transaction Code?

    Agewise reports for Vendors are needed.
    What would be the best way and the Transaction code?

    Hi Bhatia,
    Transaction code F.42 via Information systems > Accounting > Financial accounting > Vendor accounts > Account balances ; you may find the balances and movements for different periods by varying the reporting periods and years.
    Hope this helps.
    Please assign points as way to say thanks

  • Generate report for displaying transaction codes role wise

    hi,
    i want to generate a consolidated report in which all transactions codes are displayed role wise.In TR SUIM the report is generated using one role at a time.i want an option where i can fill the require roles and get the consolidated reports.is it possible.please help..
    thanx,

    Hi,
    Your question is not about SOA.
    You should ask you question in an appropriate forum (Security ?) where you will have more chances to get a useful answer.
    Regards,
    Olivier

  • From customize report to customise transaction code

    Hi,
    I want to pass data from basic list (from my customize report) , when I double click, I want to call my z transaction code field and the field type is P length 8 decimals 2.and the data which i want to pass is also same data type.
    hoe to do..
    can anybody suggest.
    thanks
    n kumar

    try:
    1) hide your relevant fields in basic lis
    2) at line selection
    use fm VIEW_MAINTENANCE_CALL (-> look docu)
    A.

  • Report Painter - Add Transaction code

    Hi All;
    I have created a variant of the report S_ALR_87013558 using the report painter transactions CJ1/2/3 and CJ4/5/6 (Not GRR1).  The report is working fine.
    I now want to attach a transaction code to the report to make executing it faster and more effective.  I have searched the forum and I know that I should follow the following steps:
    To create a TCode, follow the steps below.
    1) Go to Transaction code SE93, Enter TCode Name and Press Create.
    2) Give short Description and select Parameter Transaction, Press Enter
    3) Select Transation Radio Button and write START_REPORT in the next text box Also Check the box Skip Initial Screen.
    My problem comes into play when one considers the paramaters that I should enter at the bottom of the screen.  I have tried to copy the same setting as S_ALR_87013558 but it did not work.  The following also does not work :
    On the bottom of Screen (default Values), Enter Parameters
    i) Name = D_SREPOVARI-REPORTTYPE. Value = RW
    ii) Name = D_SREPOVARI-REPORT Value = Your Report Group Name (Say ZGrp)
    Your feedback will be appreciated.
    Werner

    HI Psconsultant.
    thanks for your reply.
    1. I have included START_REPORT in transaction field.
    2. Checked the SKIP INITIAL SCREEN
    3. Check the INHERIT GUI ATTRIBUTES.
    4. Selected Radio Button PROFESSIONAL USER TRANSACTION
    5. Checked all check boxes for GUI SUPPORT.
    in the Default Values
    D_SREPOVARI-REPORTTYPE = RE
    the problem is with D_SREPOVARI-EXTD-REPORT
    if I type as KP01RPSCO_X12KST1A (without sapces) the report is not working. If I execute the t.code it says
           REPORT NAME DOES NOT EXISTS.
    if i type as KP  01RPSCO_X                12KST1A (with 23 spaces) and click on SAVE button(in SE93) it throws error msg
           DO NOT USE BLANK CHARACTERS
    Edited by: Mr A on Feb 19, 2010 4:39 PM

  • What is the main purpose of MEREP_EX_REPLIC  transaction code

    hi,
    i want know the main use of MEREP_EX_REPLIC, MEREP_MIG and
    MEREP_MON transaction codes.
    Regards,
    Anu

    Hi anusha,
    MEREP_EX_REPLIC-  (Execute Replicator) is used for  replicating SyncBO IDs.
    MEREP_MIG -    (Used for Migration) When u go for migration of a SyncBO using the SAP transport technology we use the Export and Import options.
    MEREP_MON-   (Mobile Monitor )The transaction MEREP_MON is a tool used to display inbound and outbound worklists of SyncBOs. Simply, transaction MEREP_MON allows you to see what is sent from the client to the MW and what happend when trying to send it to the Backend. May check there if you can see anything coming into the MW from the client. As well check what is the outcome (processing status) of these worklists.
    Do check the below link...Its worth.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/909d75c3-0801-0010-5f92-920a78c53daa">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/909d75c3-0801-0010-5f92-920a78c53daa</a>
    Similarly there are many other transactions...Check some of the below:
    MCD - MI:Process Mobile Component
    ME_WIZARD -ME:Registration and eneration
    MEREP_EX_REPLIC-Execute Replicator
    MEREP_LOG -Activity Log
    MEREP_MIG -Migration
    MEREP_MON- Mobile Monitor
    MEREP_PD - Profile Dialog
    MEREP_PURGE - Purge Tool
    MEREP_SBUILDER - SyncBO Builder
    MI_ALBACK - Back Up CCMS Alerts for MI
    MI_ALMON - Alert Monitor for MI Alerts
    MI_MCD -MI:Process Mobile Component
    MI_MSD -MI:Process Mobile Component
    S_ABA_72000157-Alert Customizing
    SMOMO - Mobile Engine
    Cheers,
    kumarR
    Message was edited by:
    KumarR
            kumarR

  • How to find the BTE event for FBCJ transaction code

    Hi All,
            i need to find the BTE event for Finance related transaction codes.i checked in the SWEL transaction code, didnt find any event triggered and the standard BADI doesnt suite my requirement.The transaction code  which i tried is FBCJ.can anyone help me how to find the BTE event for the above mentioned transaction.
    Thanks in Advance,
    lokesh kumar.K

    Hello Lokesh,
    The following is one of the process of finding a BTE and implementing it.
    (1)Goto transction FIBF .Execute it with Attribute type = 'A'. Then in the menubar Environment->Info System (P/S )
           Go through the list of BTE's available with the description available beside.
    (2)Select the BTE you want to implement.
    (3)Press button Sample function module
    (4)This brings you to SE37 - Copy the sample function module to a Z-function module (First create a new function group for the function module) . Note: The name of the Z-functionmodule is not important
    (5)Edit the code in the new function module
    (6)Go back to transaction FIBF - Menu Settings->Products -> Of a customer and create a new product whicj identifies the new product . Remember to mark the Active field.
    (7)Go back to FIBF menu Settings->P/S function modules->of a customer - Create an entry that links the BTE and Product with the new function module
    Hope this will help.
    Regards,
    Samson

  • Is the configuration done in RSPLSE transaction code transportable?

    I would like to know whether the configuration done in RSPLSE t.code transportable? In the rsplse screen I can not find any icon or option to do it.
    If it is not transportable then do we need to create the configuration manually in  the higher systems like Quality and Production?
    regards,
    Santosh
    SEM Consultant

    Hi Santosh
    no, the settings are not transportable: The settings are system specific, e.g. the server names. So only the lock relevant characteristics make sense to be transported. So you may transport the contents of table RSPLS_CHAS_LOCK.
    Or maintain the settings once again in RSPLSE in quality and production.
    Regards,
    Gregor

Maybe you are looking for