Favicon in url is possible in webdynpro abap???

hi friends,
     Is it possible to add a  favicon in url instead of internet explorer icon in web dynpro ABAP.i found that it is possible in bsp and web dynpro java. but i am not getting any clues regarding WD ABAP.Please give ur suggessions.
regards.
radhika.

Hi,
Just give the name of icon(ex: ICON_SAP) which you want to add in the property imagesource of url.
I hope it helps.
Regards,
Rohit

Similar Messages

  • Validations in Webdynpro ABAP ....

    Hi All,
    Any body tell me whether client side validation is possible in Webdynpro ABAP ?
    Will I need to write Javascript code in WDA ? Please shade some light. Any help in this regards would be highly appreciated.
    Thanks,
    Anil Kumar

    Hi Roger,
    There no automatic required field check within Web Dynpro ABAP. If you set the state to "required" only the asterix is displayed. You should implement the check in WDDDOBEFOREACTION. I assume that the value should not only be checked for "not empty", but there should also be a validation whether the field is correct.
    Somethimes it is not too easy to check whether all mandatory fields are filled, because there may be customizing or personalization for the view. Therefore there is a method, which can be used for it: CL_WD_DYNAMIC_TOOL=>CHECK_MANDATORY_ATTR_ON_VIEW. This method will take the personalization and customizing into account, especially if the admin has set some fields to required. But an additional check in the business logic should also be executed.
    regards, Regina

  • Integrating Silver light ISlands to Webdynpro ABAP Applications

    Hi Experts,
    In my project I want to enhance the UI of my application by using Silver Light Islands.
    I found that it is possible in Webdynpro ABAP . The following link i have seen ...
    http://help.sap.com/saphelp_nwpi71/helpdata/en/ba/b89348d6eb49eb8ff35a9bcfb9a59f/frameset.htm
    But I did't find any option for integrating Silver Light Island in my system. Iam using SAP ECC 6.0  with following details
    SAP_ABA     701     0006     SAPKA70106     Cross-Application Component
    SAP_BASIS     701     0006     SAPKB70106     SAP Basis Component
    PI_BASIS     701     0006     SAPK-70106INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     0000          -     SAP Solution Tools Plug-In
    SAP_BS_FND     701     0006     SAPK-70106INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     0006     SAPKW70106     SAP Business Warehouse
    SAP_AP     700     0019     SAPKNA7019     SAP Application Platform
    PLease help me in which version  I can find it or Send me some examples if any.
    THanks,
    Dayakar Padibandla

    You are running NetWeaver (SAP_BASIS) 7.01.  Silverlight Islands is not avaiable until NetWeaver 7.0 Enhancement Package 2 (7.02). Therefore you do not have Silverlight Islands functionality in your system. You could instead consider FlashIslands. They are available on 7.01 and are the same concept excpet they use Adobe Flash/Flex instead of Microsoft Silverlight.

  • How to exit from a WebDynpro ABAP application and open another url

    Hi Friends,
    How to exit from a WebDynpro ABAP application and open another url like (www.yahoo.com) in the same window of the WD4 application on click of a Button?
    Regards,
    Xavier

    Hi,
    First of all you should create outbound plug in the window you are trying to exit with plufg type "Exit"
    Then create method handler in the view with this code
            data lo_view_cntr type ref to if_wd_view_controller.
            data lo_win_cntr type ref to if_wd_window_controller.
            data: l_parameter_list type wdr_event_parameter_list,
                  l_parameter type wdr_event_parameter,
                  l_val type ref to data,
                  l_val_url type REF TO data.
            field-symbols: <fs> type any,
                           <fs_url> type any.
            lo_view_cntr  = wd_this->wd_get_api( ).
            lo_win_cntr = lo_view_cntr->get_embedding_window_ctlr( ).
            CREATE DATA l_val type c.
            CREATE DATA l_val_url type string.
            ASSIGN l_val->* to <fs>.
            ASSIGN l_val_url->* to <fs_url>.
            <fs> = 'X'.
            <fs_url> = 'http://your-link.com'.     
            l_parameter-name = 'URL'.
            l_parameter-value = l_val_url.
            INSERT l_parameter INTO TABLE l_parameter_list.
            lo_win_cntr->if_wd_view_controller~fire_plug( EXPORTING plug_name = 'EXIT_PLUG'
                                                                    parameters = l_parameter_list ).
          You can easily change this logic to exit application instead of redirecting to the site
           just changing to
           l_parameter-name = 'CLOSE_WINDOW'.

  • Where does WebDynpro ABAP URL get defaulted

    When creating a WebDynpro ABAP application, the URL gets generated automatically.
    My question is where does this path get generated from.  Is there a place to edit the settings?
    The reason why I ask is that the Basis team has disabled protocol HTTP and are now using HTTPS. 
    The problem is, our WebDynpro ABAP applications still get defaulted to HTTP in the URL string.
    Where do you change the settings?

    Yes, I replied to your question before realizing the answer had been given by Shruti.  By going to tcode SMICM, in GOTO/services menu, I noticed that HTTP and HTTPS were both set to active.  So, I inactivated the HTTP and by doing that the WebDynpro ABAP application URL's that get defaulted (tab folder adminstrative data) now default to HTTPS and the port defined in SMICM.
    The Basis team had disabled HTTP, I assuming by removing the port address, but keeping the HTTP service active and this was causing a problem for all the WebDynpro ABAP programs.  They were still defaulting to HTTP.  Why they did not make this change I just did, I don't know.
    I couldn't get anyone to take charge of this, so I did.
    Problem solved.

  • Reg calling Transaction code in Webdynpro ABAP

    Hi All,
    Can I call Transaction code in Webdynpro ABAP Portal Application. If so, how can this be possible? Can anybody give me a lead?
    Thanks.
    Kumar Saurav.

    Hi,
    The most easy Way is here:
    1) Test any Webdynpro Application from SE80 when the webdynpro Browser opens to display output
    Copy its HTTP link, Suppose we get the below link
    http://r3d01web1.Siemens.dk:8001/sap/bc/webdynpro/sap/z_dynamic_view?sap-client=002&sap-language=EN
    2) Now replace some part of the above link ( webdynpro/sap/z_dynamic_view?sap-client=002&sap-language=EN )  with the new link part ( gui/sap/its/webgui?~transaction=PA30 )
    So that the newly generated link is such that the below one:
    http://r3d01web1.Siemens.dk:8001/sap/bc/gui/sap/its/webgui?~transaction=PA30
    Note in place of PA30 you can put any of your desired tcode.
    3) Now Just Make a webdynpro component and in its View layout put a LINK TO URL ui element
    and in its property REFERENCE just past the http link ( http://r3d01web1.Siemens.dk:8001/sap/bc/gui/sap/its/webgui?~transaction=PA30 )
    4) Activate and test your webdynpro Application.

  • How to add Image dynamically in Webdynpro ABAP

    Hi Experts,
    How to add Image dynamically in Webdynpro ABAP.
    My requirement is i maintain all the images in a table.
    image source has to pick the table URl dynamically and display.
    is that possible in webdynpro?
    and also please give the suggesion,
    without using MIME objects is that anyway to get images?
    Thanks in advance.
    Regrads,
    Jeyanthi

    Hi,
      are those icons wou want to display then. he following code will be useful.
    data : lo_IMG type ref to CL_WD_IMAGE.
    LO_IMG = cl_wd_IMAGE=>new_IMAGE( id = img_id SOURCE = 'ICON_BW_APD_TARGET' tooltip = sts_tltp ).
    lo_cont->add_child( the_child = lo_img ).
    here lo_cont is the container where you want to add the image dynamically and source is the attribiute through which you can change the ICON image. this thing you can getit from data base table and change accordingly.
    Regards,
    Anil kumar G

  • User Roles & Authorization to run 'WebDynpro ABAP Application scenarios'

    Hi All,
    I am developer and my user ID is having developer roles, so when i am testing
    'WebDynpro ABAP Application scenarios' it is working fine.
    Problem is when I am executing with enduser portal WWID's (i.e. WWID's are also defined as sap
    user), 'WebDynpro ABAP Application scenarios' giving me dump in screen & in ST22.
    Pls guide me what roles or authorization we need to assign to user ID's
    who can use 'WebDynpro ABAP Application scenarios'.
    URL for Webdynpro application is like : https://xxxx.yyyy.zzzz:/sap/bc/webdynpro/sap/ZPA_EXTENSION_U?ZDATA=10028705591320090406
    ST22 Error when testing with portal WWID's
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Exception              CX_SY_REF_IS_INITIAL
    Short text
        Access via 'NULL' object reference not possible.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_WD_ADOBE_SERVICES==========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
         caught in
        procedure "PARSE_XML_SCHEMA" "(METHOD)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component.
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
        Either the reference was never set or it was set to 'NULL' using the
        CLEAR statement.
    Explorer screen error
    Error when processing your request
    What has happened?
    The URL https://xxxx.yyyy.zzzz:/sap/bc/webdynpro/sap/ZPA_EXTENSION_U/ was
    not called due to an error.   
    Note
    The following error text was processed in the system QJ1 : Access via 'NULL' object reference not
    possible.
    The error occurred on the application server sapqj1ci_QJ1_78 and in the work process 21 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: PARSE_XML_SCHEMA of program CL_WD_ADOBE_SERVICES==========CP
    Method: GET_SCHEMA_VERSION of program CL_WD_ADOBE_SERVICES==========CP
    Method: CONSTRUCTOR of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LADOBE==================CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/LADOBE==================CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
    Method: CONV_VIEW_INTO_VE_ADAPTER_TREE of program CL_WDR_INTERNAL_WINDOW_ADAPTERCP
    Method: SET_CONTENT_BY_WINDOW of program CL_WDR_INTERNAL_WINDOW_ADAPTERCP
    Thx

    Please refer to thread [Authorization Error|WDA adobe error] where various solution to the problem specified by you are described.
    Regards
    Rohit Chowdhary
    Edited by: Rohit Chowdhary on Apr 7, 2009 9:41 PM

  • How to call Webdynpro ABAP from Widget

    Hello guys,
    I want to add an icon to my widget with a link to a webdynpro ABAP application.
    However, the link is dependent on the system the user is accessing.
    So, I'd like to know if it's possible and what's the best method to do it.
    1. is it possible to call a Transcation or a RFC that calls a WebDynpro from the Widget?
    or
    2. is it possible to retrieve the Widget's default system parameters and assemble the Webdynpro URL dynamically?
    Any more ideas?
    Thank you and best regards,
    Henrique.

    up.
    Henrique.

  • Webdynpro abap from crm 2007

    Hi guys,
    I have one question, is it possible to generate a webdynpro abap page showing an alv from crm.
    Thanks!!
    Jon

    Hi,
    you can create WD reports and may be able to call them by using their URLs. Use the call_browser function to call the application.
    Regards
    Prasenjit

  • Error in opening webdynpro abap application

    hi All,
    I am facing below issue in opening webdynpro abap application, this is first WDA application in production system, please help me in resolving this issue.
    ============================================================================
    Error when processing your request
    What has happened?
    The URL http://grp.mysap.pg.com:9500/sap/bc/webdynpro/sap/zgpuvstapp/~ucfLOADING was not called due to an error.
    Note
    The following error text was processed in the system GRP : A request for server adln5412 has been sent to server adln5411; see Note 1364846
    The error occurred on the application server adln5411_GRP_10 and in the work process 3 .
    The termination type was: ERROR_MESSAGE_STATE
    The ABAP call stack was:
    Method: PREPROCESS_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system GRP in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server adln5411_GRP_10 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 3 in transaction ST11 on the application server adln5411_GRP_10 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 400 -u: BS6402 -l: E -s: GRP -i: adln5411_GRP_10 -w: 3 -d: 20100929 -t: 140306 -v: ERROR_MESSAGE_STATE -e: A request for server adln5412 has been sent to server adln5411; see Note 1364846
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    ============================================================================
    Edited by: brahmanandam ausali on Sep 30, 2010 4:11 AM

    Hi Shibli,
    I'm facing the same issue with the POWL only if called from a part of the network outside our country (Italy) so I think it would be a network configuration problem as you suppose. Can you explain us the configuration of the balancer and dispatcher to solve the issue?
    Thanks
    Mattia

  • I was gettiing runtime error while executing a Webdynpro-ABAP application

    Hi,
    I am working on Webdynpro-ABAP and created a ALV report using Service call BAPI method in IDES version. After creating component and designed view and created Webdynpro application. While executing application I am getting some error in explorer.
    For any application I am getting same error.
    I think some setting in explorer..I am not sure. If yes how can I rectify ?
    waiting for quick response.
    I am giving details error below what I faced.
    Error when processing your request
    What has happened?
    The URL http://sapserver:8001/sap/bc/webdynpro/sap/zz_00_bapiflight was not called due to an error.
    Note
         The following error text was processed in the system DM0 : Die URL enthält keine vollständige Domainangabe (sapserver statt sapserver.).
         The error occurred on the application server sapserver_DM0_01 and in the work process 0 .
         The termination type was: RABAX_STATE
         The ABAP call stack was:
    Method: CHECK of program CX_FQDN=======================CP
    Method: LATE_CONSTRUCTOR of program CL_WDR_UCF====================CP
    Method: HANDLE_REQUEST of program CL_WDR_UCF====================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
         If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system DM0 in transaction ST22.
         If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server sapserver_DM0_01 in transaction SM21.
         If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server sapserver_DM0_01 . In some situations, you may also need to analyze the trace files of other work processes.
         If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 800 -u: SAPUSER -l: E -s: DM0 -i: sapserver_DM0_01 -w: 0 -d: 20091226 -t: 135942 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Best Regards,
    BDP

    hi
    It is the Fully Qualified Domain Name (FQDN) error . Refer SAP online help :
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/67/be9442572e1231e10000000a1550b0/frameset.htm
    refer the similar thread :
    Problem executing sample Webdynpro application
    regards,
    amit

  • DMS Document not getting created thru Webdynpro ABAP Strange Problem

    Dear all,
    My requirement is that I have a Webdynpro ABAP application sitting on SAP Server1 and I am having a FileUploadUI Element in there for uploading files and we have SAP Server2 with the DMS configured. So, what we have done is we have an RFC in SAP Server2 and we are calling it from our webdynpro ABAP application sitting on SAP Server1. And we are calling BAPI_Create2 with all the necessary parameters in this RFC to create the DMS document with the file from webdynpro ABAP application. But its not working. I am passing the Presentation Server File Path of the File to the BAPI_create2.Even if I write the file to the application server of SAP Server2 and then pass this file path to the BAPI_Create2 then also it doesn't work but when I execute this RFC locally in the SAP Server2 with the presentation server file path It executes successfully.
    I don't know what I am missing.
    Please help.
    Thanks and regards,
    --Sonal

    Dear Thomas,
    Suppose I have got the file copied to the application server in SAP Server2 using datasets from WDA in SAP server1.
    Now I have an RFC say ZFILE_UPLOAD in SAP Server2 for which we have made an SAP ABAP RFC Connection from SAP Server1. In this RFC I am calling BAPI_create2 using the application server filepath(of SAP Server2) in docfile parameter along with ur suggested destination then also it doesn't work. Gives an error that "error in storing and checking file" i.e. Error 253.
    One more query how to handle the file upload of different file types say I am uploading a pdf file from my webdynpro abap application in SAP server1. Then I get the xstring and pass it to ZFILE_UPLOAD and convert it into binary and write it there in SAP Server2 using datasets. Is it possible to upload any kind of file and then creating the DMS document out of it?
    and how to call this RFC?
    Thanksn and regards,
    --Sonal

  • Webdynpro ABAP & JAVA step by step example with screen shots

    hi experts,
    i am new in webdynpro. i want to learn webdynpro so any one plz help me how to create,how to install,connect,and how to execute plz send any documents for webdynpro ABAP & JAVA step by step examples with screen shots.it's really helpful for my carrier.
    thanks and regards,
    sapbbm.

    hi bala,
      check out this URL you have 41 sample codes and PDF of Webdynpro for JAVA.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
    Thanks
    Gopi

  • Calling Portal iView from a WebdynPro ABAP application

    Hi ,
    I have a requirement where I need to call an iView in my portal from the Webdynpro application also existing in the portal.
    Can anyone provide me the method with source code( if possible ) to call an iView existing in the portal from the WebDynPro ABAP application.
    Best Regards
    Sid

    Hi Siddharth,
    Well, I think you can go for Portal Navigation concept.
    Please check the required source code in WDR_TEST_PORTAL_NAV Web Dynpro component. That will illustrate both Page based Navigation and Object based Navigation.
    Hope that should solve your problem.
    Regards
    <i><b>Raja Sekhar</b></i>

Maybe you are looking for

  • HT202213 Two Itunes libraries on one computer.  Any way to share content between the two libraries?

    We have 2 ITunes libraries on one computer.  Is there a way to share movies, music, etc. between the two libraries?

  • SSL/TLS ciphers of an SMA (M-series) appliance

    So SMA does not include sslconfig CLI command. We cannot reonfigure SSL/TLS ciphers as we do for ESA (C-series) appliances. Once I got instructions from TAC support telling, that I must download config file from SMA, edit those cipher parameters manu

  • No programs open, but 3GB RAM in use?

    I'm running into some problems with the amount of free RAM I have available to me, and it's causing serious performance problems. I have a new 2011 MBP and I just ran into a situation where I ran out of RAM and the computer became extremely sluggish.

  • Camera Profiles in LR 5.4 missing

    When trying to use VSCO film presets today, I've decided to check Camera Profile inside Camera Calibration in Lightroom. To my surprise profile would never change whenever I applied a new preset. It consistently showed Adobe Standard profile. In the

  • Private Secure Log Permissions being changed by someone????

    I have been having to repair the permissions on my ibook often. How do these get changed, by who, and what threat is it to me? How much control over my computer can one get???? Below is the repair I just had to make. Repairing permissions for "Macint