Web Feel of SAP standard or custom transaction.

Hi All Experts,
  I have a reuirement to make Web feel of Transaction such as  VA01, VA02.
In CRM we get the Jave web feel in Gui page. Can we get such Web feel in SAP standard transaction..
Please advice and if any third party packages are available please let me know.
Thanks in advance..
Kind regards
Manglesh

Hi,
    If you are using ECC 6 or further, it is possible using Internet services,
for this create 1 ITS using se80, there mension these parameter, do required BASIS settings and now execute your ITS, you can use any standard transaction on web.
parameters to update in ITS
~AUTOSCROLL     0
~GENERATEDYNPRO     1
~LISTSCROLLING     0
~POPUPS     1
~STYLE     DHTML
~TRANSACTION     VA01
Thanks,
Anmol.

Similar Messages

  • How to find all those list of SAP standard and custom objects that are changed from a specific point of time

    Hi all,
    Please let me know the process to track or find all the SAP Standard and custom objects. that got changed from a specific point of time.
    Is there any function module or any table where this change log is maintained.?
    I just only need the details ,wheather that SAP standard or Custom object has got changed or not.
    Thanks in advance

    Hi RK v ,
    I really don't know what your actual requirement is , but if you want to know the objects as per the modification , then transport request will be much help to you .
    Have a look into table E070 and E071 .
    Regards ,
    Yogendra Bhaskar

  • Downloding the SAP master data and transaction data to a flat file

    Hello All,
    Is there any SAP standard method or transaction to download the SAP master data and transaction data to flat file.
    With out using ABAP development, SAP had provided any tool or method to download the SAP system master and transaction data to flat file.
    Thanks,
    Feroz.

    hi
    as of now up to my knowledge no.

  • SAP standard transaction output on web

    Hi,
    My client is developing  its own business portal,and they also wanted to display customer related data that have in  SAP .
    All is done but for one specific requirement  they  need to publish SAP standard transation output as it is on web.Transaction is  FPL9 that displays  business partneru2019s payment details.  
    So, I want to display FPL9 output on web(IBM WS),and we are on SAP 4.7.Also,we donu2019t have EP and all.
    For IBM WS to SAP connectivity we are using JCO.
    Regards,
    Vijay Gupta

    Hi,
    We can convert internal table data into HTML . you can try with the following sample code.
    REPORT  ytest_table_html1.
           D A T A   D E C L A R A T I O N
    ----*-HTML Table
    DATA:
      t_html TYPE STANDARD TABLE OF w3html WITH HEADER LINE,
                                           " Html Table*- Declare Internal table and Fieldcatalog
      it_flight TYPE STANDARD TABLE OF sflight WITH HEADER LINE,
                                           " Flights Details
      it_fcat TYPE lvc_t_fcat WITH HEADER LINE.
                                           " Fieldcatalog
    *-Variables
    DATA:
      v_lines TYPE i,
      v_field(40).*-Fieldsymbols
    FIELD-SYMBOLS: <fs> TYPE ANY.
           S T A R T - O F - S E L E C T I O N
    START-OF-SELECTION.  SELECT *
        FROM sflight
        INTO TABLE it_flight
        UP TO 20 ROWS.
           E N D - O F - S E L E C T I O N
    END-OF-SELECTION.*-Fill the Column headings and Properties
    Field catalog is used to populate the Headings and Values of
    The table cells dynamically
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name       = 'SFLIGHT'
        CHANGING
          ct_fieldcat            = it_fcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2.  DELETE it_fcat WHERE fieldname = 'MANDT'.  t_html-line = '<html>'.
      APPEND t_html.
      CLEAR t_html.
      t_html-line = '<thead>'.
      APPEND t_html.
      CLEAR t_html.
      t_html-line = '<tr>'.
      APPEND t_html.
      CLEAR t_html.
      t_html-line = '<td><h1>Flights Details</h1></td>'.
      APPEND t_html.
      CLEAR t_html.
      t_html-line = '</tr>'.
      APPEND t_html.
      CLEAR t_html.
      t_html-line = '</thead>'.
      APPEND t_html.
      CLEAR t_html.  t_html-line = '<table border = "1">'.
      APPEND t_html.
      CLEAR t_html.  t_html-line = '<tr>'.
      APPEND t_html.
      CLEAR t_html.
    *-Populate HTML columns from Filedcatalog
      LOOP AT it_fcat.    CONCATENATE '<th bgcolor = "green" fgcolor = "black">'
            it_fcat-scrtext_l
            '</th>' INTO t_html-line.
        APPEND t_html.
        CLEAR t_html.  ENDLOOP.  t_html-line = '</tr>'.
      APPEND t_html.
      CLEAR t_html.  DESCRIBE TABLE it_fcat LINES v_lines.
    *-Populate HTML table from Internal table data
      LOOP AT it_flight.
        t_html-line = '<tr>'.
        APPEND t_html.
        CLEAR t_html.
    *-Populate entire row of HTML table Dynamically
    *-With the Help of Fieldcatalog.
        DO v_lines TIMES.      READ TABLE it_fcat INDEX sy-index.
          CONCATENATE 'IT_FLIGHT-' it_fcat-fieldname INTO v_field.      ASSIGN (v_field) TO <fs>.      t_html-line = '<td>'.
          APPEND t_html.
          CLEAR t_html.      t_html-line = <fs>.
          APPEND t_html.
          CLEAR t_html.      t_html-line = '</td>'.
          APPEND t_html.
          CLEAR t_html.      CLEAR v_field.
          UNASSIGN <fs>.    ENDDO.    t_html-line = '</tr>'.
        APPEND t_html.
        CLEAR t_html.
      ENDLOOP.
      t_html-line = '</table>'.
      APPEND t_html.
      CLEAR t_html.
    *-Download  the HTML into frontend  CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = 'C:\Flights.htm'
        TABLES
          data_tab                = t_html
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          no_authority            = 5
          unknown_error           = 6
          header_not_allowed      = 7
          separator_not_allowed   = 8
          filesize_not_allowed    = 9
          header_too_long         = 10
          dp_error_create         = 11
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.  IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.*-Display the HTML file  CALL METHOD cl_gui_frontend_services=>execute
        EXPORTING
          document               = 'C:\Flights.htm'
          operation              = 'OPEN'
        EXCEPTIONS
          cntl_error             = 1
          error_no_gui           = 2
          bad_parameter          = 3
          file_not_found         = 4
          path_not_found         = 5
          file_extension_unknown = 6
          error_execute_failed   = 7
          synchronous_failed     = 8
          not_supported_by_gui   = 9
          OTHERS                 = 10.  IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Edited by: sairayachoti on Oct 4, 2010 3:18 PM
    Edited by: sairayachoti on Oct 4, 2010 3:20 PM

  • SAP standard report to show Inter Company transactions

    Basically, we have two companies that are buying and selling between each other. One of the companies is a subsidery of the other. So, the parent(x) can sell or buy from it's sub(Y) and visa versa. At the end of the period, we need to consolidate both companies for reporting purposes, therefore there will be elimination entries which should be identified.
    I need an SAP standard report to show these transactions which might still be sitting on each other books unsold

    Dear :
                   We are using ECC 6 SAP version and we have the t code FBU3  for displaying all inter company transactions. Have you done necessary configuration in OBYF. You can display all related inter company transactions through FBU3.
    Your 2nd query corresponds to same credit control area that was assigned to two company codes. In order extend credit limit for a customer who is extended on two company codes which have same credit area. It is not possible you distinguish credit limit for a customer who is extended on two company codes having same credit control areas. CCA is defined at organization structure level and for the distinction you will have to define new credit control area in customization at
    enterprise level i-e
    Enterprise Structure.... Definition.... Financial accounting....define credit control area
    Assignment.....Assign credit control area to co code
    Do necessary customization for SD module
    and then in credit management for AR you will have to assign the credit control area to company codes i-e
    Account Recv/A/c Payable.....Credit Management.... Assign permitted CCA to Co code
    . This is the only way to to segregate customer credit limit for two company codes. Please revert in case of any confusion.
    Regards

  • Custom transaction attached to SAP delivered code

    HI
    We have a requirement that all custom program and transactions are secure. Usually we have the developers add an auth check statement to the program and add that check to the custom t-code in SU24.
    today I have the situation that we are using SAP delivered code and attaching a custom transaction. Since we don't want to modify the SAP code, how is it possible to get any check on the transaction? I know that SU24 won't force the check unless the program is changed. So is there any way to have any type of auth object checked? Or is this a situation where no check would be needed and no objects added to the role when the new tcode is added? (SE93?)
    Hope that makes sense!
    Thanks
    Bobbi

    Here is where I run into problems. I am not a developer and have a hard time reading the code. This particular report is to display vendor address data. As far as I can tell I do not see anything that appears to be authority checks.
    This is the top level of the code:
    report AQZZZVEND=======ZVEND_ADDR====.
    include /1BCDWB/IQG000000000055DAT.
    data %dtab type standard table of /1BCDWB/IQG000000000055 with header line.
    data %subrc type sy-subrc.
    include /1BCDWB/IQG000000000055SSCR.
    include /1BCDWB/IQG000000000055SSCRAT.
    start-of-selection.
      if %runmode-extr_on <> space.
        call function '/1BCDWB/IQG000000000055EXTR'
             tables     %selopt = %seloptions
                        %dtab   = %dtab
             changing   %rtmode = %runmode
             exceptions no_data = 1
                        others  = 2.
        %subrc = sy-subrc.
        call function 'RSAQRT_CHECK_EXTR'
             exporting extr_subrc = %subrc
             tables    dtab   = %dtab
             changing  rtmode = %runmode.
      endif.
    end-of-selection.
      if %runmode-show_on <> space.
        call function '/1BCDWB/IQG000000000055SHOW'
             tables   %dtab   = %dtab
             changing %rtmode = %runmode.
      endif.
       special code for old API and BW extractor calls
    form %set_data changing p_lines type i.
      import ldata to %dtab from memory id 'AQLISTDATA'.
      describe table %dtab lines p_lines.
      free memory id 'AQLISTDATA'.
    endform.
    form %get_data tables p_dtab  structure %dtab
                   using  p_first type i
                          p_last  type i.
      append lines of %dtab from p_first to p_last to p_dtab.
    endform.
    form %get_ref_to_table using p_lid   type aql_lid
                                 p_ref   type ref to data
                                 p_subrc type i.
      if p_lid = %iqid-lid.
        create data p_ref like %dtab[].
        p_subrc = 0.
      else.
        p_subrc = 4.
      endif.
    endform.
    ================================================================================================
    The abaper doesn't seem to understand what  I am asking of him so I am stuck. It appears this custom transaction will go in without any checks on it unless you can perhaps advise me on how to proceed. Any help is appreciated.

  • Can we execute an SAP Standard ABAP Programme from a Custom BAPI?

    Hi,
    We have a requirement in our project where in we have to execute an SAP Standard ABAP report. We need to execute it from a Portal by click of a button.
    What we are thinking is that if we have a custom BAPI which triggers the execution of ABAP report, we can execute the BAPI from the Portal using Adaptive RFC Function call by developing a custom Web Dynpro Java application.
    So, my question is it possible to execute an ABAP report making sending required input parameters to the ABAP report from the BAPI. If so, how can we achieve this?
    Regards
    Ram

    Hi Brad,
    Thanks for your quick response. Actually, it is not exactly a report. We are trying to call an SAP Program related to SAP Business Workflow.
    When the user clicks on Approve or Reject buttons on the SAP GUI, this program will be called and exectured which inturn updates many Project System Tables.
    What we are trying to  do is that we had developed a custom Web Dynpro Java Application for achieving the SAP Workflow. Instead of reinventing the wheel, we just want to use already existing SAP Program which updates the Project Systems tables.
    So, from the Portal Workflow Inbox when the user clicks on the Approve or Reject buttons, we would like to call a custom BAPI which will execute this program.
    Could you please explain in detail how to achieve this? Thanks in advance.
    Regards
    Venkat

  • User Dialog as SAP standard customizing

    Hello,
    If you want to create a transaction as standard customizing transaction, you have to use "view cluster" transaction SE64.
    You define a tree at the left of screen with different relation table and you use standard dialog table SM30 with your different view of table.

    HI Kushan,
    This sounds like it might be the correct behavior. When you install an ADD-ON into SAP, the install process does not know which client you have saved your default customization settings into so it is likely going to put these into client 000 or 001.
    Does that help?
    J. Haynes

  • What is best way in sap to make a transaction web enabled?

    what is best way in sap to make a transaction web enabled?
    Is it through BSP, ITS, iView, web dynpro java, webdynpro abap?

    Are you referining to a custom transaction?  If not then simply use se80 and SICF.  I have implemeted ECC6 ITS on just a ABAP Stack.  You might find the doument, Migrating ITS Services with Flow Logic helpful.  It can be downloaded from https://sapmats-de.sap-ag.de/download/download.cgi?id=77GL5Z5I3NF1TD0D3F59HJ633N847EXOMEZQXKYP3FM4VG0D5R
    With ERP you can take advatage of all at the same time.  My comapny didn't have a lot of JAVA developers so we found ITS and canned webdynpro the easiest solution.

  • How  to add custom fields to the  sap standard  program ukm_bp_display

    How  to add new custom  fields to the  sap standard  program ukm_bp_display .
    could u  please any one help me on this?

    Hello Kumar,
    You have to modify below structure, as this structure is providing the field catalog for output display (ALV).
    Here you can see there are a lot of include structures, so if you want to add fields in the output display you can add those fileds as an append structure to any of the below mentioned structures (Like ukm_s_account, ukm_s_bp_cms_sgm etc as per your requiremnt and positon at which you need to dispaly your fields.)
    DATA: BEGIN OF gt_grid_alv OCCURS 0.
           partner LIKE but000-partner,
           credit_sgmnt LIKE ukmbp_cms_sgm-credit_sgmnt.
            INCLUDE STRUCTURE ukm_s_account.
            INCLUDE STRUCTURE ukm_s_bp_cms_sgm.
    DATA:   credit_sgmnt_txt LIKE ukmcred_sgm0t-credit_sgmnt_txt.
          Gruppe Vector
            INCLUDE STRUCTURE ukm_s_bp_vector.
          Gruppe OBL = Obligo
          include structure UKM_S_BP_CMS_MALUSDSP_OUT.
            INCLUDE STRUCTURE ukm_s_display_segment.
            INCLUDE STRUCTURE ukm_s_bp_cms.
            INCLUDE STRUCTURE bus000_dat.
    *DATA:   icon(4).
          Gruppe RAST (Raster)
    DATA:
             rast01 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast02 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast03 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast04 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast05 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast06 LIKE ukm_s_display_segment-AMOUNT_GRID.
    DATA:    rast2_6 LIKE ukm_s_display_segment-AMOUNT_GRID.
    "Summe raster 2 bis 6
    DATA:  END OF gt_grid_alv.
    Another way is you can  go  to SE38, and you can create implicit enhancements.One enhancement point is available here in this required area. so create an implementation and add your fileds with data types.This way is also simple.
    Hope this will solve yiour problems.
    Regards,
    Antony Thomas

  • Creation of Web Template for SAP R/3 Transaction

    Hi ,
        How can i create my Web Template for SAP R/3  
        transaction for publishing in ITS ?
        I have created my own Z transaction of
       (Module Pool ), <b> How  can i create Template & run 
       it  through web .     </b>
    Regards
    Sachin S M

    Go to transaction SE80
    choose internet service option.
    enter a name for the service and hit enter, the system will prompt with a message that the service is not available do you want to create clik yes.
    choose the radiobutton screen based application and enter the transaction code and hit enter.
    once the service is created, right click on the service name and click create Template, enter the program name (it will be defaulted from the transaction) screen number and hit save.
    once created you have to activate it and publish it to ITS server.
    Which version of SAP are you using? you can show your transaction on the web using ITS without creating template also.
    Regards
    Raja

  • Need to find All Custom Reports which are based on SAP standard reports

    Hi Specialists,
    I would like to find out all the customized reports which are a copy of SAP standard reports in the client's system.
    For Eg. RPCP11G0 is the SAP standard report which has been customized & it's code has been re-written into a Custom report i.e. ZGBPPYMP001_P11D.
    I would like to know all such occurences in the system.
    Steps already done:
    1) Tried searching with RPR_ABAP_SOURCE_SCAN & RS_ABAP_SOURCE_SCAN.
    Please suggest .
    Thanks
    Abhinav.

    it's only possible with an tool-program
    when your developers have not change the line with the REPORT-command.
    e.g.
    standard-report is RAGITT01
    copy is ZC_RAGITT01 or sth like this
    but report line is unchanged in copy:  "REPORT RAGITT01 MESSAGE-ID AB..."
    solution:
    select all reports from TRDIR/TADIR  from your Z/Y-device classes
    and analyse the reports with
    read report ZC_RAGITT01 into wa.
    and use find for searching 'report-command'.
    and check whether the result of that finding is an standard abap
    hope that helps
    Andreas

  • How to populate custom fields in SAP standard Basic type DELFOR01(E1EDK09)

    I've a requirement to include and populate 2 custom fields in SAP standard basic type DELFOR01 and Segment E1EDK09 (it is at hierarchy level 1 ) .
    The requirement looks very simple but for this, as per my knowledge, I have to create a new  Basic type with the copy of segment E1EDK09 and attach it to outbound process code and write my own function module to populate the segments.
    It seems ok but the there are some existing codes in the user-exits for the SAP standard function module.These codes will not get triggered.(Or I've copy the user-exits code in my FM)
    Can we do it any other way to handle this kind of situation?
    Thanks in advance for your suggestions and help.

    Hi Phani,
    You have done it correctly. ECC additional data to be moved to EWM, 1. you need to enhance the CIF for master data/ bapi  to populate the data in the custom field in EWM. 2. Make your your are not enhancing only one structure. You need to do it in the CI includes so that the field is available in all the related tables/structures.
    3. The BAPI/FM which updated these tables will take care automatically to update the custom field data if the field is correctly added in all the tables.
    4. If the custom fields are added correctly and still the data is not getting saved , then need to check the mapping of the custom field and bepi extension.
    Let me know if this helps.

  • How to make use of variable present in sap standard FM to custom badi.

    Hi All,
    Scenario: I am using a transaction which makes use of SAP standard FM. Also I have used a zbadi to achieve my requirement. While debugging, I found that when the control goes to zbadi, i am unable to make use of the variables which are defined in standard FM.
    Now my requirement is to make use of variables present in standard FM into zbadi. Can anyone suggest me how to achieve this?
    Thanks in Advance......[:)]
    Regards,
    Vinit

    if your system is NetWeaver 7.0 (ECC 6...), then you can use enhancement framework to add your code to the function module.
    Otherwise, you can only access them if they have global scope, using ASSIGN ('(SAPLfunction group name)GLOBALVARNAME') TO <fieldsymbol> (be careful, you could change variable value, so make sure you don't)

  • Docking container and SAP standard transaction

    Hello,
    in one screen I have a tree control container and a docking container. With the tree control container everything is perfect. If the user does a click on a node on the tree in the docking container there should be shown a SAP standard transaction (QA03) with the corresponding data.
    I have not found a possibility to show QA03 or QM03 in a docking container. I also tried it in a splitter container, but I do not know how.
    Can anybody help me?
    Greetings
    Corinna

    Hello Corinna
    There is a simple answer to your question: it is not possible.
    Container can only hold other containers or controls.
    Do not be fooled by the ABAP workbench where we apparently can switch between different transactions (e.g. display a class [SE24], show method coding [SE80], double-click on a DDIC structure [SE11]). The ABAP workbench simply changes the control to be displayed but NOT the transaction (remains always the same).
    Regards
      Uwe

Maybe you are looking for

  • Performance with Cloning is to slow

    Hello I just bought a G5 not the fastest I have CS3 Dual 1.8 GHz PowerPC with 4GB of memory with this setting on my screen and video card GeForce FX 5200:   Chipset Model:    GeForce FX 5200   Type:    Display   Bus:    AGP   Slot:    SLOT-1   VRAM (

  • GPS problem (?) in new iPad wifi?

    If I open Map app, iPad can show me my location... but it seems that the gps won't refresh itself. When I am moving around by car.... the gps will only show me the location where i open the map app and stays there and wont follow my moving car, until

  • Have an i book G4 took it to the I store and they sorted mymain issue which is getting my I tunes to run on it, and its a greatl, but i cant order prints from photos from it,NEED UPDATE?

    i book G4 2nd hand, love it, got it sorted at an i store to trun my itunes and my i phone 4, cant seem to print photos from it, company websites Kodak, Trueprint,Jessops seem to be woefull i just want to print the 500 plus picks from my camera role ?

  • Adding markers for tracks in a mix?

    i've recorded a 65 min mix and i want to put markers on each song so it's not just one big long mix. i could only find info for putting markers on podcasts but i'm pretty sure that what i want to do is possible. can anyone help me out?

  • Form Creation Tools?

    Hello All, I am looking for a less buggy way of creating Forms for Add-Ons. Screen Painter is very buggy. I was wondering if there is an solution that converts Visual Studio forms to SAP forms and xml? Other suggestions for Visual Studio are apprecia