Webdynpro ABAP configuration? How to?

Dear all experts,
I wanted to practice Webdynpro ABAP, so I have installed ECC 6.0 IDES system, whenever I run my WD application it loads a browser, it askes for a username/password after that system gives the following  error :
Error when processing your request
What has happened?
The URL http://eccserver:8005/sap/bc/webdynpro/sap/demo_table was not called due to an error.
Note
The following error text was processed in the system NEC : Die URL enthält keine vollständige Domainangabe (eccserver statt eccserver.<domain>.<ext>).
The error occurred on the application server eccserver_NEC_05 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 NEC 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 eccserver_NEC_05 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 eccserver_NEC_05 . 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: FAHEEM -l: E -s: NEC -i: eccserver_NEC_05 -w: 0 -d: 20110226 -t: 224420 -v: RABAX_STATE -e: UNCAUGHT_EXCEPTION
HTTP 500 - Internal Server Error
Your SAP Internet Communication Framework Team
My URL looks like :http://eccserver:8005/sap/bc/webdynpro/sap/demo_table(host.domain name missing in URL)
It is clear that it because of missing configuration.
What I have understood through googling :
We need to configure our hostname.domain in C:WindowsSystem32DriversetcHosts which I have done as :
192.168.2.1    mydomine.sap.com   localhost
"192.168.2.1    is the looopback adapter IP
But I was unable to make out what else to be configured and how to configure?
Can any one help me out how to resolve this?
Moderators : Plz move it to an apropriate section if this is not the proper section
Thanks & Regards,
Faheem.

Hi,
If you donot know this,on windows system, you can set the domain name in the following way:
1 Right click on My Computeru2013>Computer Name tabu2013>Click Change      
2 Click Moreu2013>Enter your domain name in the format u201Ccompanyname.comu201D under the section Primary DNS Suffix of this computeru2013>Click OK until you have exited
To set icm/host_name_full,  go to transaction RZ10
Choose your Instance profile, click on Extended Maintenance and then click on the Change button
if you see icm/host_name_full present, then edit it, else add it by using the New parameter button
set the value to <hostname>.companyname.com
Save and activate your profile
you might need to restart the Application server to take effect.
Hope this helps!
Best Regards,
Srilatha

Similar Messages

  • Webdynpro ABAP - ALV how can i display Total of Column

    Hi friends,
    Webdynpro ABAP - ALV how can i display Total of Columns.
    Please tell me any metod is there or any solution.
    Thanks,
    Kumar.

    Hi
    You can take help of following code snippet to create totals for a particular column
    Data: lr_function_settings TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_column          TYPE REF TO cl_salv_wd_column,
            lt_column type salv_wd_t_column_ref,
            ls_column type salv_wd_s_column_ref.
    Data:  lr_field_amnt type REF TO CL_SALV_WD_FIELD.
    * get reference of ALV component
      lr_salv_wd_table = wd_this->wd_cpifc_OVERVIEW_EARNED_ALV( ).
      wd_this->alv_config_table = lr_salv_wd_table->get_model( ).
    *  get function settings
      lr_function_settings ?= wd_this->alv_config_table.
    * display columns in correct order
      lr_column_settings ?= wd_this->alv_config_table.
      lt_column = lr_column_settings->get_columns( ).
      loop at lt_column into ls_column.
    CASE ls_column-id.
    when 'AMOUNT'
    * aggregate field
            CALL METHOD LR_FUNCTION_SETTINGS->IF_SALV_WD_FIELD_SETTINGS~GET_FIELD
              EXPORTING
                FIELDNAME = 'AMOUNT'
              RECEIVING
                VALUE     = lr_field_amnt.
    * create aggregate rule as total
            CALL METHOD LR_FIELD_AMNT->IF_SALV_WD_AGGR~CREATE_AGGR_RULE
              EXPORTING
                AGGREGATION_TYPE = IF_SALV_WD_C_AGGREGATION=>AGGRTYPE_TOTAL
              RECEIVING
                VALUE            = lv_aggr_rule.
    endcase.
    Regards
    Manas DUa

  • Webdynpro abap configuration steps

    Hi,
    could anyone please tell about the configuration of webdypro abap.
    Thanks & Regards,
    prabhu kishore.

    Check this link [http://help.sap.com/saphelp_nw70ehp1/helpdata/en/43/e86de5008b4d9ae10000000a155369/frameset.htm]
    Regards,
    Radhika.

  • WebDynPro-ABAP Configuration

    Hi This is Praveen. working as a ABAP Technical Consultant.
    I want to know the use of Configuration in WedDynPro-ABAP. Please help me
    Thanks & Regards,
    Praveen K

    Hi Praveen,
    above posters have already given the important essential inormation about this topic. Here's a hands-on tutorial concerning WD4A Component and Application Configuration; you might find this helpful too, as you can comprehend the approach of setting such configurations up pretty well (in my opinion).
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b52e13c3-0901-0010-8fa6-d11a51821b7c
    best regards, Lukas

  • How to call the RFC from R/3 to SRM, when we use webdynpro abap? (Urgent)

    Hello
    We use SRM Server 5.5 with classic scenario.
    We want to call RFC in R/3 from webdynpro ABAP.
    How can we do that?
    We are developing the web report using webdynpro abap.
    So we need some of R/3 data such like PR(EBAN)and PO(EKKO,EKPO).
    When user choose the search parameter, report diplay the Shopping cart, PR and PO data on webdynpro.  So we call the R/3 RFC to display the PR, PO data.
    But I tired to call the RFC in R/3, We could not call it.
    How to call the RFC from R/3 to SRM, when we use webdynpro abap?
    Thank you,
    Best Regards,
    SH.

    Hi
    <b>Please look at the following threads as well -></b>
    WebDynpro in SRM
    BAPI's /RFC's in SRM
    BAPI to Change Shopping Cart by RFC
    SRM60 and webdynpro
    Webdynpro Services Exception
    WebDynpro using BAPI has an error
    SRM60 and webdynpro...
    <b>SAP uses META Function modules in SRM to get data from R/3 back-end.</b>
    <u>For getting Purchase requistion data, use the function modules -></u>
    META_REQUISITION_CHANGE        Change purchase requisition              
    META_REQUISITION_CREATE        Create Requisition                       
    META_REQUISITION_DELETE        Delete/close purchase requisition        
    META_REQUISITION_GETDETAIL     Display requisition details              
    META_REQUISITION_GETITEMS      Display requisition items                
    META_REQUISITION_GETRELINFO    Get Releasease Info for requisitions
    <u>For getting Purchase order data, use the function modules -></u>
    META_PO_CREATE                 Create purchase order                    
    META_PO_DELETE                 Delete reservation                       
    META_PO_GETDETAIL              Display purchase order details           
    META_PO_GETITEMS               Display purchase order items             
    META_PO_GETRELINFO             Display purchase order release information
    Hope this will definitely help. Do let me know.
    Regards
    - Atul

  • Organizational Structure Search Help in Webdynpro ABAP

    Hi,
    I need an organizational structure search help in webdynpro abap.
    It should list the organizational structure in tree view like RH_OBJID_REQUEST lists.
    I tried to use RH_OBJID_REQUEST function in webdynpro but I got " A RAISE statement in the program
    "CL_GUI_CUSTOM_CONTAINER=======CP" raised theexception condition "CNTL_ERROR" short dump.
    Is there such a function for webdynpro abap and  how can I achive this with select options?
    Thanks in advance..
    MERAL

    Great article.  I also had this probelm a year ago. My problems questions are:
    Is it possible to select more then one entry in the tree?
    What about selecting all childrens with one click?
    In my solution I inserted this tree, into a table and the table had a checkbox, row, so the user can check the required org units, (more then one) and there was a separate button, for "select all children"

  • Why do we go for Webdynpro ABAP?

    Hi All,
             Why do we go for Webdynpro ABAP and How is it beneficial comparing with other technologies in SAP?
    Thanks
    Gopi.

    hi ,
    u may wish to like to go thru this WIKI
    http://wiki.sdn.sap.com/wiki/display/WDABAP/General+Issues#GeneralIssues-1.95
    in whch WD ABAP is compared with WD JAVA , BSP , JSP and HTMLB and mobile infrastrucutre .
    u may wish to go thru these WD ABAP tutorials :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/03/0048413e466e24e10000000a155106/content.htm
    Main Topic Page:
    http://sdn.sap.com/irj/sdn/nw-wdabap#section2
    Tutorials for Beginners:
    Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
    eLearning Videos:
    /people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
    go thru this quote by thomas
    The designers of WDA didn't want to lock developers into having to create an extra model layer. One of the values of WDA is that it sits closely with the underlying business logic and data. Therefore it can easily reuse existing function modules or classes (or even contain SQL directly - although this isn't recommended).
    There are different options for playing the role of model. You could create a faceless web dynpro component. This is sometimes used in large complex Floorplan Manager applications. However the cross-component context binding can represent a performance problem.
    More often a class is used as a simple model. These are called feeder classes in POWL. But really any ABAP class can be used to separate out the logic for the model. Data from this class can be accessed and then bound to the local context. Sometimes people use the Assistance Class as a model. It is possible to share a single instance of an assistance class between a hierarchy of components - making it an efficient way to share data.
    Of course there are the service call wizards. These aren't really models like in WDJ. Instead they are just shortcuts to generate context structures and code generators. However everything they generate can also be created by hand or altered after generation.
    rgds,
    amit

  • Excel Pivot in WebDynpro ABAP

    Hi All,
    I wanted to download my Internal table to Excel(PIVOT). I can download my content in EXCEL format.
    But I want it in Pivot format.
    I searched SCN and I found only for ABAP Reports but I want for Webdynpro abap.
    How to achieve this.
    Thx.

    hi,
    check the below document:
    http://scn.sap.com/docs/DOC-25024

  • Creating a PDF file in webdynpro abap.

    Hi friends,
        Can anybody tell me how to create PDF file in webdynpro abap and how to save and edit, copy etc., whatever you can do through normal pdf file?
    I have checked with the standard application WDR_TEST_ADOBE and WDR_TEST_ADOBE_ONLY. But none of the applications are working...
    Could anyone please suggest me how to do this?
    Regards
    Sireesha.

    Hello Sireesha,
    Good places to start are the online help and tutorials, which you can find here:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/interactiveforms-elearning">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/interactiveforms-elearning</a>
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/2c/241a427ff6db2ce10000000a1550b0/frameset.htm">http://help.sap.com/saphelp_erp2005/helpdata/en/2c/241a427ff6db2ce10000000a1550b0/frameset.htm</a>
    Best regards,
    Thomas

  • Component Configuration in Webdynpro ABAP

    Hello,
    I created a Webdynpro ABAP Application which works fine . Then I created a Component Configuration to hide a particular UI Element . Now how can I test it? Also I tried creating a iview on Portal and point to the Application name and Configuration name but still that UI Element shows up.
    What is the right way of doing this.?
    Thanks

    Hi,
    To test the web Dynpro Configuration
    1) Right click the web dynpro component and select the Create/Change configuration item
    2) A new application configuration window opens in that window give your Web Dynpro component name and in the Configuration id give a Name for your configuration and save it
    3) After saving a new window opens with list of created configuration find your config file and select it and click on the go to configuration button
    4) Here you will find the component name and Configuration id which we have already given
    5) Choose change button here you will see Attribute, Component Defined and Web dynpro built-in tabs
    6) select the context attribute which you have created in the custom controller with type boolean and set it to false to hide it
    save the configuration and test it.
    Note: To test the Configuration an configured application will be created under the web dynpro application right click and select test.
    You can refer [this|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b52e13c3-0901-0010-8fa6-d11a51821b7c?quicklink=index&overridelayout=true] link.
    Regards,
    Arun.P

  • How to clear webdynpro ABAP cache ?

    Hi,
    Please advise me on how to clear webDynPro ABAP Cache data ?
    Scenario as most of you might be knowing:
    1>We retreive data from the the table using query stmt. For ex: Creating an employee
    2>When we want to update/terminate the same employee on same day giving us short dump
    We checked in the backend that employee has been sucessfully onboarded and offboarded/updated without any dump.
    I guess it has something to do with clearing the cache/memory on each operation(create/update/delete)
    So, I got some transaction code:SWFVISU where we can maintain the cache configuration. But I'm not sure whether we can use the same.
    Is there anyway we can avoid the cache issue.
    Thanks
    Praveen

    Hi, Praveen kumar Kadi. can be to you this function will help:IQS1_REFRESH_ALL

  • How to Download a PDF file from Webdynpro ABAP Screen

    Hi,
    I have developed a input form in webdynpro - ABAP(Not Adobe),
    As I am not using above services here, but would like to download the information I am capturing into a PDF file.
    can I do it without using adobe interactive forms ?
    thanks
    Siddharth

    Hi siddharth,
    My suggestion would be to create your output as a Smartform and call your Smartform in your View.
    For more Click this link.
    [HOW TO DISPLAY A SMARTFORM AS PDF DOCUMENT IN WEB DYNPRO FOR ABAP|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0de1eb8-0b98-2910-7996-8a3c2fcf6785]
    Regards
    Bulent

  • How to disable Print button on WebDynpro ABAP ALV

    In WebDynpro ABAP, a standard menu appears around the ALV,  that has a PRINT button and an EXPORT button.
    Is there anyway to disable those buttons????
    Thanks
    John

    Hi John,
    Check the interface if_salv_wd_std_functions. It contains methods which are used to hide the standard ALV toolbar buttons.
    Also refer : Removing "print version" button in alv
    How to hide Print and Filter option from dynamic ALV

  • How to insert the image or logo into the table as a field in webdynpro abap

    Hi Friends,
    Please tell me how to insert the image or logo into the table as a field in webdynpro abap.........

    Hi Alagappan ,
          In your view layout you take table UI element and then you bind it with some context nodes.
    The attributes of your nodes comes as a field.
    Now in these fields you can set various properties and image is one of them.
    Go to ->
    1. View Layout -> Right Click on ROOTUIELEMENTCONTAINER -> INSERT ELEMENT -> TABLE
    2. Right click on table -> Create Binding.
       Here you have to bind it with the appropriate context node.
    You will get two properties here
    a- Standard Cell Editor :- ( make it image )
    b- Standard properties :- ( If required set image properties ).
    3. If you want put image from out side then import it as a mime object and set the source of your table field ( used as a image )
    also have a look :-
    [Image Properties|http://help.sap.com/saphelp_nw04/helpdata/en/f3/1a61a9dc7f2e4199458e964e76b4ba/content.htm]
    Hope this will solve your problem.
    Reply if any case of any issue.
    Thanks & Regards,
    Monishankar C

  • How to Call the RFC in Webdynpro abap application

    Dear Experts,
    Good Evening to all...
    I have to add two numbers using RFC in webdynpro abap application. If we give the numbers in the input screen then the RFC should add it and give it in the output screen. This is the application for that I have created the RFC.
    But the problem is i don't know how to call the RFC in that Webdynpro abap application and how to link the input view and output view with that RFC...? I am new to Webdynpro abap. Please kindly help me on this... I am struggled here... I need your help in this....
    Thank You.

    Hi Jaga,
    You asked the same question again.
    Without closing the [previous one|Re: Where SAP store the uploaded files?].
    I think Abhi has answered your question.
    If not please elaborate on the problem.
    The solution btw is to create a Service Call.
    Sumit

Maybe you are looking for

  • Po and BP Number

    Dear all, From which table I can get the PO number and BP number Thansk and  regards Ram

  • Addition of new field in existing cube which has data?

    I Have service provider field in ods and which is populating data on daily basis. Now I need to populate that field into cube and then reportingu2026u2026.. For this do I need to delete the data from the cube and add that new field and need to load t

  • Unknown error (-200) when i start v7

    i can't open itunes v7 because of this "unknown error (-200)". and if i revert to v 6.0.5 i'm having lots of problems as well (that i didn't have before this GRMBL version 7)! what is this unknown error (-200) and what can i do? i've been looking all

  • Too Much Stuff

    This is a Ps question, but I have the same problem with AE, bridge, and others.  In the past I had Ps CS2 and AE CS3 (which came with Bridge 3).  I have upgraded to CS5 Production Suite which includes Ps, AE, etc. but, of course, all CS5.  Prior to i

  • An unhandled exception has been thrown in the ESB system

    Hi Experts, we are using SOA suite 10.1.3.1.0 with Jdev 10.1.3.1.0, when we are trying to deploy the FullfillmentESB(of SOA Order booking application) to Integration server, prompted with the following error: Entity Deployment Failed error code: 0 :