How to display Popup message in ABAP Web Dynpro

Hi All,
Is it possible to display popup messages like SAP to collect information from the user? is it possible to display information messages like SAP? If possible, Please let me know how to handle in Web Dynpro.
Thanks & Regards,
IA Kumar.

Agree with the two firend on my head :).
you can find a demo from:   SWDP_TEST(package)-->   WDR_TEST_POPUPS also.
I have a lazy idea, two step:
1. create a popup function module;
2.call the function module;
function module:--Begin--
FUNCTION ZFUNM_CONFIRM .
""Local interface:
*"  IMPORTING
*"     REFERENCE(P_API) TYPE REF TO  IF_WD_VIEW_CONTROLLER
*"     REFERENCE(P_CMP_API) TYPE REF TO  IF_WD_COMPONENT
  DATA:
    L_WINDOW_MANAGER      TYPE REF TO IF_WD_WINDOW_MANAGER,
    L_CMP_API             TYPE REF TO IF_WD_COMPONENT,
    L_API_MAIN            TYPE REF TO IF_WD_VIEW_CONTROLLER,
    L_POPUP               TYPE REF TO IF_WD_WINDOW,
    L_TEXT                TYPE STRING_TABLE.
   wd_this               type ref to IF_MAIN,
   wd_comp_controller    TYPE REF TO IG_COMPONENTCONTROLLER.
   l_api_main = wd_this->wd_get_api( ).
l_cmp_api = wd_comp_controller->wd_get_api( ).
  L_WINDOW_MANAGER = P_CMP_API->GET_WINDOW_MANAGER( ).
  APPEND 'POPUP text' TO L_TEXT.
  L_POPUP = L_WINDOW_MANAGER->CREATE_POPUP_TO_CONFIRM(
              TEXT                   =  L_TEXT
              BUTTON_KIND            = 4
              MESSAGE_TYPE           = 1
              CLOSE_BUTTON           = ''
              WINDOW_TITLE           = 'messagebox Title'
             WINDOW_LEFT_POSITION   = L_CONF_CONTEXT-WINDOW_LEFT_POSITION
             WINDOW_TOP_POSITION    = L_CONF_CONTEXT-WINDOW_TOP_POSITION
             WINDOW_POSITION        = L_CONF_CONTEXT-WINDOW_POSITION
             WINDOW_WIDTH           = L_CONF_CONTEXT-WINDOW_WIDTH
             WINDOW_HEIGHT          = L_CONF_CONTEXT-WINDOW_HEIGHT
  L_POPUP->SUBSCRIBE_TO_BUTTON_EVENT(
          BUTTON             = IF_WD_WINDOW=>CO_BUTTON_YES
          ACTION_NAME        = 'YES'
          ACTION_VIEW        = P_API
          IS_DEFAULT_BUTTON  = ABAP_TRUE ).
  L_POPUP->SUBSCRIBE_TO_BUTTON_EVENT(
          BUTTON             = IF_WD_WINDOW=>CO_BUTTON_NO
          ACTION_NAME        = 'NO'
          ACTION_VIEW        = P_API
          IS_DEFAULT_BUTTON  = ABAP_FALSE ).
  L_POPUP->OPEN( ).
ENDFUNCTION.
function module:--End--
call the function module  Begin----
METHOD ONACTIONDELETE .
  DATA:
    L_API                               TYPE REF TO IF_WD_VIEW_CONTROLLER,
    L_CMP_API                           TYPE REF TO IF_WD_COMPONENT,
    NODE_ZTAB_PROJ                      TYPE REF TO IF_WD_CONTEXT_NODE,
    ELEM_ZTAB_PROJ                      TYPE REF TO IF_WD_CONTEXT_ELEMENT,
    STRU_ZTAB_PROJ                      TYPE IF_ZV_PROJ_DISPLAY=>ELEMENT_ZTAB_PROJ,
    SELECTED_ELEM                       TYPE  WDR_CONTEXT_ELEMENT_SET .
  navigate from <CONTEXT> to <ZTAB_PROJ> via lead selection
  L_API = WD_THIS->WD_GET_API( ).
  L_CMP_API = WD_COMP_CONTROLLER->WD_GET_API( ).
  CALL FUNCTION 'ZFUNM_CONFIRM'
    EXPORTING
      P_API     = L_API
      P_CMP_API = L_CMP_API.
  IF WD_THIS->A_DEL = ''.
    EXIT.
  ENDIF.
  NODE_ZTAB_PROJ = WD_CONTEXT->GET_CHILD_NODE( NAME = IF_ZV_PROJ_DISPLAY=>WDCTX_ZTAB_PROJ ).
  IF ( NODE_ZTAB_PROJ IS INITIAL ).
    EXIT.
  ENDIF.
  ELEM_ZTAB_PROJ = NODE_ZTAB_PROJ->GET_LEAD_SELECTION( ).
  ELEM_ZTAB_PROJ->GET_STATIC_ATTRIBUTES(
    IMPORTING
      STATIC_ATTRIBUTES = STRU_ZTAB_PROJ ).
  DELETE FROM ZTAB_PROJ
  WHERE COMCODE = STRU_ZTAB_PROJ-COMCODE
    AND PROJID  = STRU_ZTAB_PROJ-PROJID.
  WD_THIS->ONACTIONSELECT(
    WDEVENT = WDEVENT                        " Ref to cl_Wd_Custom_Event
LOOP AT selected_elem .
ENDLOOP.
  ELEM_ZTAB_PROJ
  @TODO handle not set lead selection
  alternative access  via index
  Elem_Ztab_Proj = Node_Ztab_Proj->get_Element( Index = 1 ).
  @TODO handle non existant child
  if ( Elem_Ztab_Proj is initial ).
  endif.
  get all declared attributes
ELEM_ZTAB_PROJ->GET_STATIC_ATTRIBUTES(
   IMPORTING
     STATIC_ATTRIBUTES = STRU_ZTAB_PROJ ).
ENDMETHOD.
call the function module  End----

Similar Messages

  • How to support mutil-language in abap web dynpro

    HIi, guys ,
       Can you kindly tell me how to translate a button's text or group's name into multi-language in abap web dynpro ? thanks .
    Jialiang.Qiu

    Hi,
    unfortunately, the OTR documentation is available in <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/4a/fff13a62d1ad6de10000000a11405a/frameset.htm">German</a> only,
    about translating OTR texts, see <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/f8/dd8a0f276111d5b316000102a3fd99/frameset.htm">here</a>
    Regards, Heidi

  • How to display smartform as PDF in web dynpro java

    Hi,
    Where can I find sample program to display smartform as PDF in web dynpro java.
    Thanks.
    Regards,
    Henry

    1. Create a smart form in the R/3 side
    2. Now create a function module with the corresponding export parameter:
    3. Make sure that the function module is marked remote enabled. 
    4. In NWDS  create an Adaptive RFC model which points to the FM created in R/3 under the webdynpro application
    5. Now create an application and view inside it to display the PDF and Insert a frame inside the view
    6. Create a  value node and an attribute say url of type string inside that node and bind it to the source
    7. In the doInit() method place the following code
    >    ZTest_Pdf_1_Input input = new ZTest_Pdf_Input();
    >    wdContext.nodeZTest_Pdf_Input().bind(input);      
    >    try {                       
    >            wdContext.currentZTest_Pdf_InputElement().modelObject().execute();
    >            }
    >  catch (Exception e) {
    >                        e.printStackTrace();
    >            }          
    >  wdContext.currentInternalElement().setUrl(convert(wdContext.currentOutputElement().getBin_File()));       
    Inside that view create a method to convert the string to url so that it can be passed as a string to the setUrl method of the currentContextElement() , say convet(byte[] doc_content) which return a string.
    Inside that methos write the following code,
    >         String url = "";
    >           WDWebResourceType webResType = WDWebResourceType.PDF;
    >            IWDWebResource webResource = WDWebResource.getWebResource(doc_content, webResType);
    >            try {
    >                        url = webResource.getURL();
    >            }
    >  catch (Exception e) {
    >                        e.printStackTrace();
    >            }          
    >            return url;
    Hope It will be helpful
    Regards,
    Sam Charles J.

  • How to display error message in abap

    How to dispaly error message in report?
    i have to check the range bewteen two days and if it is not in range have to display error message only once.
    next time if i press the execute button report will get executed without showing the warning message.
    i am calculating the days between two dates, i am displaying the error message but if i press the execute button i will not allow me to execute the report.it again shows me the error message.i have to skip this in 2nd time.
    can any one  suggest what to do with this?

    hello suman,
    i am using select-option in my report. And i have to check the difference between two dates in select option input box( low-value and high-value). if it is greater then suppose 10 then i have to display warning message at once and then if click on execute button , the report should get executed without showing any warning messages in report.
    here i am attaching my source code.please take a close look and tell me where should i have to make change.
    SELECT-OPTIONS :s_bedat FOR ekko-bedat.
    AT SELECTION-SCREEN ON s_bedat.
      IF NOT s_bedat IS INITIAL.
        PERFORM bedat_validate.                       " Perform for Purchasing Document Date Validation
      ENDIF.
    FORM bedat_validate .                        " Form for Purchasing Document Date Validation
      DATA  : diffr TYPE i.
      CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
        EXPORTING
          i_datum_bis                   = s_bedat-high
          i_datum_von                   = s_bedat-low
      I_KZ_EXCL_VON                 = '0'
      I_KZ_INCL_BIS                 = '0'
      I_KZ_ULT_BIS                  = ' '
      I_KZ_ULT_VON                  = ' '
      I_STGMETH                     = '0'
      I_SZBMETH                     = '1'
       IMPORTING
         e_tage                        =  diffr
    EXCEPTIONS
      DAYS_METHOD_NOT_DEFINED       = 1
      OTHERS                        = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ELSE.
        IF diffr GT 31.
          MESSAGE s009(zerrormsg) WITH text-000 DISPLAY LIKE 'W'.
          LEAVE TO LIST-PROCESSING.
        ENDIF.
      ENDIF.
    ENDFORM.                    " BEDAT_VALIDATE

  • How to display popup messages in webdynpro

    Hi all,
                I have an application which has continue button.if the userclicks on this button a pop has to come with the msg as "Do u want to continue" ..followed by Yes and No....
    how to show popup msgs in my webdynpro application
    Regards
    Padma N

    Hi! padma,
      please go through the following tutorial, you will get a good idea..
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#23">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#23</a>
    you need to create an object of IWDConfirmationDialog and also the eventHandle.
    regards,
    Mithileshwar Sahu

  • How to display work flow log in web dynpro

    Hi
    I generated a  list of users work flow in web dynpro abap now i wanted to display log as it appears in standard report using method cl_swf_rdg_dispatcher=>execute_dialog_request but when i run it it give me  below mention error
    "Screen output without connection to user. "
    code is as follows
      DATA: ls_por          TYPE sibflpor.
        ls_por-INSTID = lv_wi_id.                    "8177
        ls_por-CATID = 'BC'.
       CALL METHOD cl_swf_rdg_dispatcher=>execute_dialog_request
            EXPORTING
              im_por      = ls_por
              im_function = 'DISP'
            EXCEPTIONS
              OTHERS      = 1.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.

    >
    Ammad Zaman wrote:
    >  is there any container available to display ABAP screen ? as it is available for ALV
    No.  There is no container for displaying SAPGUI inside of Web Dynpro.  The closest you could get to this would be the SAPGUI for HTML running inside an iFrame, but that is completely different than what you are talking about (and also not recommended). Dynpro/SAPGUI output is a very different technology thatn Web Dynpro and the two can't be mixed directly.  You need to find a way to extract the data you need without any calls to visualize it.

  • How do I translate POPUP Message Text in Web dynpro program?

    I have hardcoded some Text message for POPUP inside webdynpro program. It works properly for English Language. But not getting translated for other languages. So how do i solve this.? Can i make use of OTR text or Text Elements here?  I am new to Webdynpro. Please clarify.
    My Code :
      ls_text = 'You want to cancel changes...Are you sure?'.
      INSERT ls_text INTO TABLE lt_text.
    lo_window = lo_window_manager->create_popup_to_confirm( text = lt_text
      button_kind     = if_wd_window=>co_buttons_yesno
      message_type    = if_wd_window=>CO_MSG_TYPE_WARNING
      window_title    = 'Information to Confirm...'
      window_position = if_wd_window=>co_center ).
    Regards,
    Anand R

    Hi Anand,
    You can make use of OTR text.
    - Use TCode SOTR_EDIT to create OTR Text
    - Get the text with FM  SOTR_GET_TEXT_KEY by passing ALIAS, LANGU and receive the text in E_TEXT parameter.
    Hope it helps. Cheers!

  • How to Verify digital signature in ABAP web dynpro enviroment

    Hi,
    I have few questions regarding, how we can Verify digital signature in ABAP WebDynpro ?
    Do we have class or function modules to verify digital signature on WAS once signed offline or online interactive form is uploaded back?
    can we use function modules in function group SSFG for validating authors signature? Or any other classes or interfaces are available in NetWeaver environment.
    I searched to find any sample for validating signatures in ABAP WebDynpro, however I could not find any thing. Any sample code will be very useful?
    Thanks,
    Nitesh Shelar.

    I Found that Interface IF_FP_PDF_OBJECT can be used to extract signatures from document.
    Thanks,
    Nitesh Shelar.

  • Is abap web dynpro is a netweaver product?

    Dear experts,
    is abap web dynro is a netweaver product? ..i wonder why is it categorized under application server in sdn forums can anyone explian..
    in addition to abap i am willing to learn abap web dynpro.how would be the prospectes of abap web dynpro in the us market ...or do u suggest any other hot topic to learn?..please feel free to comment on my idea and kindly suggest me a better option if my idea is not ideal....
    i am not into java till now so i am not willing to learn java web dynpro..
    please suggest a better option so that i can use my abap skills to the fullest..
    thanks in advance.

    Hi Ramu,
      Yes, ABAP Web dynpro is a Netweaver product. It cums with mySAP suite.
    This is the hot technology in the market and if you are not a JAVA guy then you must go with ABAP Web dynpro.
    Basically with the help of ABAP Web dynpro we develope custom products for the client. this is UI based technology and one of best option for "ABAPers" .
    For Web dynpro ABAP you will require SAP ECC 6.0 onwards and WAS 7.0
    is a must. It has very good future propspects as this is best UI technology.
    In web dynpro ABAP we follow MVC(Model View Controller) architecture.
    In this object oriented ABAP is used to provide background functionality. Here, your ABAP skills can be utilized to the fullest. Programming in web dynpro ABAP is different than conventional ABAP programming. Here we strictly follow MVC architecture in terms of controller interface. Also there are many wizards available so that we can directly pick the code from wizards.
    e.g We can call BAPI through a service call in web dynpro application. Thus automatically backgroud code for BAPI execution will be generated.
    To start with Web dynpro ABAP you can try following tutorial:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a282c952-0801-0010-1eb5-87953e036712
    You can start with tutorials and all. There are around six tutorials in SDN library.
    Web Dynpro for ABAP
    http://help.sap.com/saphelp_erp2005/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/frameset.htm
    best tutorials in wbdynpro for ABAP to start with :
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11 [original link is broken]
    Have a look at the following SDN WDA Wiki . There you can find all relevant information.
    https://wiki.sdn.sap.com/wiki/display/WDABAP/Main
    Also you can search weblogs on web dynpro ABAP.
    Hope this will help you.
    Cheers,
    Darshna.

  • Change properties of Roles in Abap web dynpro

    Hello Gurus,
    I need to hid or unhide a role based on a condition in my abap web dynpro.
    Can anyone please update me how I can access it from abap web dynpro.
    Is there an API call from abap to set or reset the invisible in navigation area value in portal?
    Regards,
    Dale

    End of days play, this is what I was able to achieve.
    Realised the masthead jsp is the best place to call my abap web dynpro as it is just after the login and at the load of default framework page.
    I was able to call my abap web dynpro and on success, I am calling the homepage role.
    What I have done in the jsp is written an if else statement:
    1) If it is the first call to the jsp call my abap web dynpro in navigation mode 3. This ensures the roles are not visible and the redirection works before the page loads.
    2) Else load the framework page as usual.
    The only issue I have at this point is, I cannot depend on the first visit of the user.
    I need to know in the jsp where the call to jsp is coming from, if it is coming from login page, i will direct the user to WDA else if the call is from my WDA, the normal load should work.
    It would be ideal if my abap web dynpro could write something in the http header which the jsp could read as success. Still close but dont have the solution working yet
    Regards,
    Dale

  • Open a new outlook  email with Abap Web Dynpro

    Hi Experts,
    I'm developing an abap web dynpro application, and at the end of a text I need to have a link that opens the outlook for sending and email, do you know how can this be done with ABap Web dynpro.
    Regards and thanks.
    Fona

    It should be noted that just relying on the browser handling for the [url mailto: reference|http://www.w3.org/TR/WD-html40-970708/htmlweb.html] does not guarantee handling by any specific email application. It is completely up to the browser implementation - The HTML 4.0 spec does not specify any handling other than:
    MAILTO URLs have the following syntax:
    mailto:email-address
    User agents may support MAILTO URL extensions that are not yet Internet standards (e.g., appending subject information to a URL with the syntax "?Subject=my%20subject" where any space characters are replaced by "%20").
    Then again - given that WDA supports so few browsers (user agents!), you could probably get around the different support in each them in a reasonably common way.
    To ensure that it is MS Outlook you are launching and potentially pass more data into that email you'll need to make use of the [ACFExecute functionality|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/b91539878a2d67e10000000a42189c/frameset.htm] and then also the [command-line interface of Outlook.|http://www.brighthub.com/office/collaboration/articles/21840.aspx]

  • Best Practices Question: How to send error message to SSHR web page.

    Best Practices Question: How to send error message to SSHR web page from custom PL\SQL procedure called by SSHR workflow.
    For the Manager Self-Service application we’ve copied various workflows which were modified to meet business needs. Part of this exercise was creating custom PL\SQL Package Procedures that would gather details on the WF using them on custom notification sent by the WF.
    What I’m looking for is if/when the PL\SQL procedure errors, how does one send an failure message back and display it on the SS Page?
    Writing information into a log or table at the database level works for trouble-shooting, but we’re looking for something that will provide the end-user with an intelligent message that the workflow has failed.
    Thanks ahead of time for your responses.
    Rich

    We have implemented the same kind of requirement long back.
    We have defined our PL/SQL procedures with two OUT parameters
    1) Result Type (S:Success, E:Error)
    2) Result Message
    In the PL/SQL procedure we always use below construct when we want to raise any message
    hr_utility.set_message(APPL_NO, 'FND_MESSAGE_NAME');
    hr_utility.raise_error;
    In Exception block we write below( in successful case we just set the p_result_flag := 'S';)
    EXCEPTION
    WHEN APP_EXCEPTION.APPLICATION_EXCEPTION THEN
    p_result_flag := 'E';
    p_result_message := hr_utility.get_message;
    WHEN OTHERS THEN
    p_result_flag := 'E';
    p_result_message := hr_utility.get_message;
    fnd_message.set_name('PER','FFU10_GENERAL_ORACLE_ERROR');
    fnd_message.set_token('2',substr(sqlerrm,1,200));
    fnd_msg_pub.add;
    p_result_message := fnd_msg_pub.get_detail;
    After executing the PL/SQL in java
    We have written some thing similar to
    orclStmt.execute();
    OAExceptionUtils.checkErrors (txn);
    String resultFlag = orclStmt.getString(provide the resultflag bind no);
    if ("E".equalsIgnoreCase(resultFlag)){
    String resultMessage = orclStmt.getString(provide the resultMessage bind no);
    orclStmt.close();
    throw new OAException(resultMessage, OAException.ERROR);
    It safely shows the message to the user with all the data in the page.
    We have been using this construct for a long time for all our projects. They are all working as expected.
    Regards,
    Peddi.

  • How Can I convert or include a Transaction to ABAP web dynpro

    Hey,
    Im new to web dynpro, and I have followed sap web dynpro tutorials step by step but  I couldnt find a way to create an interface the same way I create screens. Can anyone tell me how do I design an interface in web dynpro or is there a way to convert my transaction to an ABAP web dynpro application?
    Thanks.

    No there is no way to convert your gui based screens to web dynpro, you have to design them in web dynpro. And the design of WD is not like normal screen painter(SE51).
    What I would suggest you is first go thru some basic tutorials, then you will get the idea of UI elements which are used in WD.
    Have a look on this link
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/wdabap/learning+map

  • How to display a message in an audit report?

    hello all,
    i would like to ask how do display a message in an audit report.  here is my code...
    CALL TRANSACTION tcode USING i_bdcdata
                            MODE c_n
                            MESSAGES INTO i_error2.
    IF sy-subrc EQ 0.
    ENDIF.
    CLEAR i_error2.
    LOOP AT i_error2.
      IF i_error2-msgtyp EQ c_e.
        MOVE v_pernr TO i_bdcerror2-pernr.
        MOVE c_infotype TO i_bdcerror2-infty.
        MOVE 'Error' TO i_bdcerror2-msgtype.
    <b>    SELECT SINGLE text
          INTO v_msgtxt
          FROM t100
          WHERE sprsl = i_error2-msgspra
          AND arbgb = i_error2-msgid
          AND msgnr = i_error2-msgnr.
        MOVE v_msgtxt TO i_bdcerror2-msgtxt.</b>
        APPEND i_bdcerror2.
      ENDIF.
    ENDLOOP.
    DESCRIBE TABLE i_bdcerror LINES v_bdcerrors.
    IF v_bdcerrors <> 0.
      SKIP 1.
      WRITE: 'BDC Error Report'.
      SKIP 1.
      WRITE: 'PERNR',
             'INFOTYPE',
             'MESSAGE TYPE',
             'MESSAGE TEXT'.
      ULINE.
      LOOP AT i_bdcerror.
        WRITE: / i_bdcerror-pernr,
               13 i_bdcerror-infty,
               22 i_bdcerror-msgtype,
               35 <b>i_bdcerror-msgtxt</b>.
      ENDLOOP.
    ENDIF.
    the message text that i was getting contains &1, &2 and so on.  how would i be able to replace it with the original value?
    thanks!
    -ann

    After calling the transaction, this is what I do.
    a) Call the function module, <b>MESSAGE_TEXT_BUILD</b> and pass the following values from <b>BDCMSGCOLL</b> or the internal table where you collect the messages.
       i) MSGID
      ii) MSGNR
    iii) MSGV1
      iv) MSGV2
       v) MSGV3
      vi) MSGV4
    There is no need to fetch data using select from table t100.
    It builds the message and returns in MESSAGE_TEXT_OUTPUT which can be then displayed to user.
    Regards,
    Subramanian V.

  • How to display error message in Shopping Cart?

    How to display error message in Shopping Cart and stop the shopping cart for further processing? I try MESSAGE w001(zshop) or MESSAGE e001(zshop). But it is causing run-time error.

    Hi Paul,
    In the DOC_CHECK or DOC_SAVE BADI, you have a global internal table named et_messages. The structure of this table is 'bbp_smessages_badi'. You can append your error message here by inputting the message type, ID and number. The message type is either 'E' for error or 'W' for warning and the number would depend on your message class(ID). You will be able to see the error message on top of the screen, can be a red or yellow highlight depending on your appended message. I don't think creating the error message via the MESSAGE syntax will be successful, maybe this is why you are getting a runtime error.
    Regards,
    Noel

Maybe you are looking for

  • [Solved]Qtcurve style disappeared after update

    After updated to version 0.65.1-1,and now i can't select qtcurve from systemsettings-->styles,and in kdeglobals "widgetStyle=qtcurve",but in fact oxygen style is used .How can i get qtcurve style back? Edit:I downloaded the PKGBUILD file and recompil

  • AP wont join WLC

    i have 3702I AP's that wont join a 5760 WLC ap logs as follows  *Mar  1 00:33:57.035: %DHCP-6-ADDRESS_ASSIGN: Interface BVI1 assigned DHCP address 172.16.239.148, mask 255.255.255.192, hostname APd072.dc03.8110 *Mar  1 00:34:02.915: %CAPWAP-5-DHCP_OP

  • Quality check on Business Rules gives strang result for OMS-60005

    OMS-60005 Functions used to record business rules should be labeled as: BR_[entity short name]###([decomposition id])_[type abbreviation] BR_IDE024_CEW, BR_IDE029_CEV, BR_IDE030_CEW, BR_IPF004_CEW are violations but they are valid as far as I know.

  • Java web service to invoke a stored procedure in the database

    Hi Does anybody have a example Java web srevice to invoke a stored procedure in the database regards Edited by: hrishy on May 20, 2011 12:11 AM

  • Comment after the commit statement.

    Hi Everyone, Please do have a look at this. Commenting on COMMIT: Example The following statement commits the current transaction and associates a comment with it: COMMIT COMMENT 'In-doubt transaction Code 36, Call (415) 555-2637'; Now where can I se