Refreshing view when LOV is called

Hi,
I have simple LOV based on a view with a search field. The next time the LOV is called, the search value is set to it's default (the wildcard caracter "%") but the view is still using the previous search value to filter the data set. How can I refresh the view to display the full set of data when the LOV is called?
Thanks.

Hi,
The LOV is based on a VO and the search criteria is set by an ExecuteWithParams action. The LOV is called from a SelectInputText control.
I can put the code on the Select and the Close buttons but this will not trap the user closing the window. Is there a way to put the code at the form level when the form is rendered?
Thanks.

Similar Messages

  • When i close called form. i want to refresh calling form.but how?

    i am using call_form ( name_in(':Global.App_Path')|| file_name, hide, Do_replace, no_query_only,pl).
    when i close called form. i want to refresh calling form.
    how can i do it.

    You have a block called : EMP, so you have to re-query-it with the following:
    Go_Block('EMP');
    execute_query ;Francois

  • Refresh the main view when the pop up was closed

    Hi,all
    how can I refresh the main view when the pop up window  was
    closed to see the updated data? In pop up window I update
    single row in the table based in main view.
    Regards,
    Michael

    Michael,
    There are 2 type of pop-ups in WD, and the answer is different depending on which type you are using:
    1. Stand-alone browser window that hosts separate application (result of IWDWindowManager.createNonModalExternalWindow) -- no way.
    2. Inner pop-up created via IWDWindowManager.createModalWindow -- absolutely possible:
    -- a. Create event in component controller (probably with parameters)
    -- b. Create method in component controller that fires this event (with corresponding parameters, if any)
    -- c. In view that corresponds to window invoke method created in [ b ] and hence fire event. This should be done in action handler of something like "OK" Button or "Close" LinkToAction.
    -- d. In any other controller subscribe to event described in [ a ]
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • HT1430 When the phone call from my iphone 5 will be in touch with another man, when my phone waiting to show view but why not?

    When the phone call from my iphone 5 will be in touch with another man, when my phone waiting to show viewing but why not?

    I'm sorry but your post doesn't make much sense in English. You may want to try posting again in your native language.
    Best of luck.

  • Lov Webservice called multiple times instead of once

    Hi,
    I am having a LOV which is being populated by a webservice call.
    I have attached this LOV to a view object attribute.
    Binded this attribute to a UI(Combo list of values) and when I pick the value from LOV, it fires a
    webservice call and fetches data.
    When I select a particular value from the list of values, it again fires the webservice call twice.
    Can some one advice me on how I can avoid the second and third calls to the webservice being made.
    I want the call to be made only once.
    Also is there any method in the VOImpl which can help me change this behavior when overriden.
    Thanks,
    Malathy.

    One possible solution is store the LOV values in some scope while retrieving it first time from the web service.
    Next time whenever LOV is called then return the LOV values from the scope instead of calling the web service.
    psedo code:
            if (ADFContext.getCurrent() != null &&
                ADFContext.getCurrent().getSessionScope().containsKey("LOV_LIST")) {
                LOVList =
                        (List<SelectItem>)ADFContext.getCurrent().getSessionScope().get("LOV_LIST");
            } else {
                LOVList = this.populateVendorListFromWS();
                ADFContext.getCurrent().getSessionScope().put("LOV_LIST",
                                                              LOVList );
            }Hope it helps.

  • Data no longer available when SALV_WD_TABLE GET_MODEL called

    Hello
    I created a view that retrieves data from one table to select a row in the table and proceed to the second view but I get an error like this:
    Data no longer available when SALV_WD_TABLE GET_MODEL called
    I did check the mapping between my view and the componentcontroller
    thank you

    There are several possiblities for this error.
    1) In your table, is there any field name starts with Number?
    2) Is your application 2 level process?( i mean two views? based on alv another alv)
    and Please check the below note.
    1528254
    and below
    Data no longer available when SALV_WD_TABLE GET_MODEL called
    error while testing a sample web dynpro
    If youare binding dynamically check this thread
    Assigning data to Dynamic ALV
    Regards
    Srinivas
    Edited by: sanasrinivas on Dec 14, 2011 11:51 AM

  • To set HOTSPOT for a field in ALV-oops and when clecked should call transac

    Hi,
    I need to set HOTSPOT for a field in O/P list using ALV-oops and when clecked should take me to Transaction VA01. Please help....
    Thanks,
    Prabhu

    Hi,
         Please go through this code it may help u.
    REPORT zcls_alv_oops MESSAGE-ID z1.
    TABLES : mara.
    Types Declaration..\
    TYPES :
    BEGIN OF t_mara,
    matnr TYPE matnr,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_mara,
    BEGIN OF t_marc,
    matnr TYPE matnr,
    werks TYPE werks_d,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_marc.
    Internal Tables Declaration..\
    DATA :
    i_mara TYPE TABLE OF t_mara,
    i_marc TYPE TABLE OF t_marc,
    i_fcat1 TYPE lvc_t_fcat,
    i_fcat2 TYPE lvc_t_fcat.
    Constants Declaration..\
    CONSTANTS :
    c_cont1 TYPE scrfname VALUE 'CONT1',
    c_cont2 TYPE scrfname VALUE 'CONT2'.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS:
    s_matnr FOR mara-matnr NO INTERVALS.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS :
    p_hotspt RADIOBUTTON GROUP r1 DEFAULT 'X',
    p_bttn RADIOBUTTON GROUP r1.
    SELECTION-SCREEN END OF BLOCK b1.
    \* Class forward referncing.
    CLASS lcl_rcvr_class DEFINITION DEFERRED.
    \* Pointers Declaration..
    DATA :
    lp_rcvr TYPE REF TO lcl_rcvr_class,
    lp_cont1 TYPE REF TO cl_gui_custom_container,
    lp_cont2 TYPE REF TO cl_gui_custom_container,
    lp_grid1 TYPE REF TO cl_gui_alv_grid,
    lp_grid2 TYPE REF TO cl_gui_alv_grid.
    \* Local Class Definiton.
    CLASS lcl_rcvr_class DEFINITION.
    PUBLIC SECTION.
    METHODS :
    hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
    IMPORTING e_row_id e_column_id es_row_no,
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
    IMPORTING e_row e_column.
    ENDCLASS.
    \* Local Class Implementation.
    CLASS lcl_rcvr_class IMPLEMENTATION.
    METHOD hotspot_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row_id-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    METHOD handle_double_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    ENDCLASS.
    \* Start of Selection
    START-OF-SELECTION.
    \* Extract the Material Master data for the Input Material.
    SELECT a~matnr
    a~mtart
    b~maktx
    INTO TABLE i_mara
    FROM mara AS a
    INNER JOIN makt AS b
    ON a~matnr EQ b~matnr
    WHERE a~matnr IN s_matnr
    AND b~spras EQ sy-langu.
    END-OF-SELECTION.
    IF NOT i_mara\[\] IS INITIAL.
    \* Call Screen to display the Material Master data.
    CALL SCREEN 100.
    ELSE.
    MESSAGE s121 WITH text-006.
    ENDIF.
    \*& Module DISP_GRID OUTPUT
    \* text
    MODULE disp_grid OUTPUT.
    \* Build the Field catelog for Material Master data.
    PERFORM build_fcat.
    \* Display the Material Master data using ALV.
    PERFORM disp_alv.
    ENDMODULE. " DISP_GRID OUTPUT
    \*& Module USER_COMMAND_0100 INPUT
    \* text
    MODULE user_command_0100 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    \*& Form build_fcat
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARA'.
    IF p_hotspt EQ 'X'.
    ws_fcat-hotspot = 'X'.
    ENDIF.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat
    \*& Form disp_alv
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv.
    IF lp_cont1 IS INITIAL.
    \* Create the Container Object of Material Master.
    CREATE OBJECT lp_cont1
    EXPORTING
    container_name = c_cont1
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6 .
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Master.
    CREATE OBJECT lp_grid1
    EXPORTING
    i_parent = lp_cont1
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Master data by calling method.
    CALL METHOD lp_grid1->set_table_for_first_display
    CHANGING
    it_outtab = i_mara
    it_fieldcatalog = i_fcat1
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Set Handler for the Hot Spot Event.
    CREATE OBJECT lp_rcvr.
    IF p_hotspt EQ 'X'.
    SET HANDLER lp_rcvr->hotspot_click FOR lp_grid1.
    ELSE.
    SET HANDLER lp_rcvr->handle_double_click FOR lp_grid1.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDFORM. " disp_alv
    \*& Module STATUS_0100 OUTPUT
    \* text
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'MAIN_STAT'.
    SET TITLEBAR 'T_100'.
    ENDMODULE. " STATUS_0100 OUTPUT
    \*& Module STATUS_0200 OUTPUT
    \* text
    MODULE status_0200 OUTPUT.
    SET PF-STATUS 'PLANT_STAT'.
    SET TITLEBAR 'T_200'.
    ENDMODULE. " STATUS_0200 OUTPUT
    \*& Module DISP_GRID_plant OUTPUT
    \* text
    MODULE disp_grid_plant OUTPUT.
    \* Build the Field catelog for Material Plant data.
    PERFORM build_fcat_plant.
    \* Display the Material Master Plant data using ALV.
    PERFORM disp_alv_plant.
    ENDMODULE. " DISP_GRID_plant OUTPUT
    \*& Module USER_COMMAND_0200 INPUT
    \* text
    MODULE user_command_0200 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0200 INPUT
    \*& Form build_fcat_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat_plant.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'WERKS'.
    ws_fcat-scrtext_m = text-004.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat_plant
    \*& Form disp_alv_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv_plant.
    IF lp_cont2 IS INITIAL.
    \* Create the Container Object of Material Plant data.
    CREATE OBJECT lp_cont2
    EXPORTING
    container_name = c_cont2
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Plant data.
    CREATE OBJECT lp_grid2
    EXPORTING
    i_parent = lp_cont2
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Plant data by calling method.
    CALL METHOD lp_grid2->set_table_for_first_display
    CHANGING
    it_outtab = i_marc
    it_fieldcatalog = i_fcat2
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDIF.
    ELSE.
    \* Call method 'REFRESH_TABLE_DISPLAY' to refresh the grid data.
    CALL METHOD lp_grid2->refresh_table_display.
    ENDIF.
    ENDFORM. " disp_alv_plant

  • Error Data no longer available when SALV_WD_TABLE GET_MODEL called

    Hello ,
    I have dynpro component on ECC6.0  POWL_UI_COMP which displayes service oders.
    This dynpro component has one more component usage component POWL_TABLE_COMP.
    This POWL_TABLE_COMP has used a SALV_WD_TABLE which is for ALV display.
    I have to create a on ALV toolbar one button,I know that I have to do this using self defined functions in wddoinit method of
    view which uses SALV_WD_TABLE and i could generate a button using self defined fucntions for another dynpro component.
    Now I am trying same method for this POWL_TABLE_COMP dynpro which is using SALV_WD_TABle , but its giving error as this
    Data no longer available when SALV_WD_TABLE GET_MODEL called .
    pl  can you suggest on this urgently.
    Attching a code to geenrated s self defined function.
    DATA: L_REF_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
    L_REF_CMP_USAGE =   WD_THIS->WD_CPUSE_ALV( ).
    IF L_REF_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
      L_REF_CMP_USAGE->CREATE_COMPONENT( ).
    ENDIF.
    DATA: L_REF_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
    L_REF_INTERFACECONTROLLER =   WD_THIS->WD_CPIFC_ALV( ).
      DATA:
        L_VALUE TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
      L_VALUE = L_REF_INTERFACECONTROLLER->GET_MODEL(
    lr_config_table ?= lr_interface_salv_wd_table->get_model( ).
       DATA :lr_buttonui type REF TO CL_SALV_WD_FE_BUTTON.
      CREATE OBJECT lr_buttonui.
      lr_buttonui->SET_TEXT( 'ACCEPT' ).
      DATA button1 TYPE REF TO CL_SALV_WD_FUNCTION.
      button1 = lr_config_table->IF_SALV_WD_FUNCTION_SETTINGS~create_function( id = 'LBUTTON' ).
      button1->SET_EDITOR( lr_buttonui )
    thanks,
    Sharada

    Hi Sharada ,
    I had the same error message.
    To resolve the problem I had to bind the context again to the interface controller of the used component.
    Alex van Hacht.

  • Error when IdentityXML is called

    Hi all!
    I'm working with OAM and trying to call an IdentityXML function to create a new user from outside of product using this API.
    I read de documentation (http://download.oracle.com/docs/cd/B28196_01/idmanage.1014/b25346/toc.htm) and I can't put this to work.
    When I call the function the only answer is a "No Content Length found" error, I try with a client in java, PLSQL, wget and nettool with the same result in all the cases. The same error is loged on Apache Error Log.
    The error is detected even if another function is call or just completely empty the message.
    OAM version 10.1.0.4
    Linux
    Please, I need this working but I can't find a solution, is really urgent.
    Line in Apache Access Log
    =========================
    192.168.3.103 - - [10/Dec/2008:11:25:03 -0600] "POST /identity/oblix/apps/userservcenter/bin/userservcenter.cgi HTTP/1.1" 200 -
    Line in Apache Error Log
    ========================
    [Wed Dec 10 11:25:03 2008] [error] [client 192.168.3.103] [ecid: 1228929900:192.168.1.199:7811:0:1584,0] No Content Length found.: /identity/oblix/apps/userservcenter/bin/userservcenter.cgi
    XML SOAP Msg
    ============
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:oblix="http://www.oblix.com" xmlns:soapenv="http://schemas-xmlsoap.org/soap/envelope/">
    <soapenv:Body>
    <oblix:authentication type="basic">
    <oblix:login>oc4jadmin</oblix:login>
    <oblix:password>password</oblix:password>
    </oblix:authentication>
    <oblix:request application="userservcenter" function="workflowSaveCreateProfile" version="NPWSDL1.0">
    <oblix:params>
    <oblix:ObWorkflowName>obworkflowid=wfqs20080919T13275417254,obcontainerId=workflowDefinitions,o=Oblix,dc=biosnettcs,dc=
    com</oblix:ObWorkflowName>
    <oblix:ObDomainName>cn=Users,dc=biosnettcs,dc=com</oblix:ObDomainName>
    <oblix:noOfFields>2</oblix:noOfFields>
    <oblix:AttributeParams>
    <oblix:GenericAttribute>
    <oblix:AttrName>cn</oblix:AttrName>
    <oblix:AttrOperation>ADD</oblix:AttrOperation>
    <oblix:AttrNewValue>melli</oblix:AttrNewValue>
    </oblix:GenericAttribute>
    <oblix:GenericAttribute>
    <oblix:AttrName>sn</oblix:AttrName>
    <oblix:AttrOperation>ADD</oblix:AttrOperation>
    <oblix:AttrNewValue>melli</oblix:AttrNewValue>
    </oblix:GenericAttribute>
    <oblix:GenericAttribute>
    <oblix:AttrName>uid</oblix:AttrName>
    <oblix:AttrOperation>ADD</oblix:AttrOperation>
    <oblix:AttrNewValue>melli</oblix:AttrNewValue>
    </oblix:GenericAttribute>
    <oblix:PasswordAttribute>
    <oblix:AttrName>userPassword</oblix:AttrName>
    <oblix:AttrOperation>ADD</oblix:AttrOperation>
    <oblix:AttrNewValue>melli</oblix:AttrNewValue>
    <oblix:AttrConfirmValue>melli</oblix:AttrConfirmValue>
    </oblix:PasswordAttribute>
    <oblix:ChallengeAttribute>
    <oblix:AttrName>genChallengePhrase</oblix:AttrName>
    <oblix:AttrOperation>ADD</oblix:AttrOperation>
    <oblix:ChallengeValue>
    <oblix:AttrNewValue>phrase1</oblix:AttrNewValue>
    </oblix:ChallengeValue>
    <oblix:ChallengeValue>
    <oblix:AttrNewValue>phrase2</oblix:AttrNewValue>
    </oblix:ChallengeValue>
    <oblix:ChallengeValue>
    <oblix:AttrNewValue>phrase3</oblix:AttrNewValue>
    </oblix:ChallengeValue>
    </oblix:ChallengeAttribute>
    <oblix:ResponseAttribute>
    <oblix:AttrName>genChallengePhraseResponse</oblix:AttrName>
    <oblix:AttrOperation>ADD</oblix:AttrOperation>
    <oblix:ResponseValue>
    <oblix:AttrNewValue>response1</oblix:AttrNewValue>
    <oblix:AttrConfirmValue>response1</oblix:AttrConfirmValue>
    </oblix:ResponseValue>
    <oblix:ResponseValue>
    <oblix:AttrNewValue>response2</oblix:AttrNewValue>
    <oblix:AttrConfirmValue>response2</oblix:AttrConfirmValue>
    </oblix:ResponseValue>
    <oblix:ResponseValue>
    <oblix:AttrNewValue>response3</oblix:AttrNewValue>
    <oblix:AttrConfirmValue>response3</oblix:AttrConfirmValue>
    </oblix:ResponseValue>
    </oblix:ResponseAttribute>
    </oblix:AttributeParams>
    </oblix:params>
    </oblix:request>
    </soapenv:Body>
    </soapenv:Envelope>

    There is some more data:
    The error is raised with any POST request to webservice endpoint:
    http://host:port/identity/oblix/apps/userservcenter/bin/userservcenter.cgi
    The error is always the same when endpoint is called with a POST (like a webservice!) ... but when is called with GET the User Console Page is returned
    Follow in this post paste a request/response example from HTTP point of view, this was taken from a HTTP Tunnel.
    The api is well used?? I'm using IdentityXML well??
    Thanks for advance.
    Complete HTTP Request Example (see that 2 chars are send in message, there is a empty messge!)
    =======================
    POST /identity/oblix/apps/userservcenter/bin/userservcenter.cgi HTTP/1.1
    Host: localhost:7778
    Content-Length: 2
    Authorization: Basic b3JjbGFkbWluOndlbGNvbWUx
    Cookie: ObSSOCookie=loggedoutcontinue; OBBasicAuth=fromDialog;
    Complete HTTP Response
    ==================
    Content-type: text/html
    <html>
    <body bgcolor="#ffffff">
    <h1>Error!</h1>
    <h3>An error has occurred in the product. Please contact.</h3>
    <h3>Oracle technical support directly or send feedback through.</h3>
    <h3>http://www.oracle.com/support/contact.html</h3>
    <h3>If possible, please include the version number of the software and the error message in your feedback.</h3>
    <h3>Error message: No Content Length found.</h3>
    </body>
    </html>

  • Problems displaying CR Viewer when using VS2010

    When I try to display a form containing reference to a CR Viewer I get the following error message:
    *An error occurred creating the form. See Exception.InnerException for details.  The error is: The type initializer for 'CrystalDecisions.Shared.SharedUtils' threw an exception.*
    Other info: Win7 Pro 64 is operating system.  Installed Beta 2 of CR last August and was able to upgrade old CR (Ver 8.5) reports and to display reports albeit by a rather convoluted process.  I created a seperate form for each report, added the viewer, showed the form which then displayed the report.  To display form showing report  the code line = "frm_cr_rpt01.show"
    RECENTLY installed CR13 and this is when the problems started.  I can no longer call up the previously running 'report' forms as I get the same error as above.  I have tried adding the CR viewer directly to the 'calling' form and displaying the report with code line= "me.cr_rpt01.printreport" (similar to the process used in VB6) and get the same error.
    I can open the CRreport.rpt in solution explorer and data and all report formatting displays just fine.
    Suggestions anyone?

    Moved to .NET SDK forum
    Make sure all your references are version 13 now, clean up your app.config file. Search this forum on how to "clean up" your PC if it's the same as the beta PC and then reinstall.
    Make sure you are using the 4.0 frame and not the client version.
    Thank you
    Don

  • When there is call on Lync IM, instead of user name SIP address is displayed.

    Lync: User name of instant message.
    When there is call on Lync IM, instead of user name SIP address([email protected]) is displayed on Office365.
    In February I was guided that it was temporary problem, however again there is problem that SIP address is displaying all the time.
    Inquiry content are mentioned in separate sheet ■SIP address is displayed when IM is called, is it specific, however if one can view user name, Let me know the best way and please confirm this.
    Thanks in Advance.

    I'd ask them over here.
    http://social.technet.microsoft.com/Forums/lync/en-US/home?category=lync
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • An error occurred when attempting to call the providers register function.

    Hi
    I am getting the following error while registering the Portlet to a WSRP portal.
    ]An error occurred when attempting to call the providers register function. (WWC-43134)
    An error occured during the call to the WSRP Provider: Java stack trace from root exception:
    java.rmi.ServerException: Internal Server Error (caught exception while handling request: oracle.webdb.wsrp.server.ContainerRuntimeException: An internal error has occurred in method <init>)
    at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:384)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:245)
    at oracle.webdb.wsrp.WSRP_v1_Registration_PortType_Stub.register(WSRP_v1_Registration_PortType_Stub.java:183)
    at oracle.webdb.wsrp.client.design.v1.OraWSRP_v1_Registration_PortType.register(Unknown Source)
    . (WWC-43273)
    I have done all the required configuration which includes the following.
    1. Installation of Infrastructure.
    2. Installtion of Portal.
    3. Created OC4J_WSRP instance on Portal_Home, configured DAD which is UP.
    4. Deployed the application which URL while registering giving me the above year.
    Can anybody give me an Instant Solution.

    I am receiving the same error messages under the same conditions.
    I have not not added any .jar files to the database and do have invalid 'java class' objects in my 'user_objects' table/view.
    A 'Troubleshooting Pdk Services for Java' article (search OTN for WWC-43134) mentions
    'recompiling the invalid objects'. How does one do this?

  • Hi, I have a specific website that keeps blocking me from going to website I want to view.  It is called vnebo.pro or mobi. I also have a pc computer with Kaspersky and it blocks it.  How do I remove it or block it from my computer.

    Hi,
    I have a specific website that keeps blocking me from going to website I want to view.  It is called vnebo.pro or mobi. I also have a pc computer with Kaspersky and it blocks it.  How do I remove it or block it from my computer?  It only appears at my home, when I use my mac at other places I don't have a problem.
    Thanks for any help!

    Thank you for the reply. I wanted to wait awhile in order to ensure that this corrected the issue. For a brief while, it did! However, it did not take long before the screen began once again hijacking my home button presses. This occurs even with Firefox removed from default applications ( triple-checked ).
    This never happened before version 35.

  • Since installing Lion the desktop view occassionally jumps to 'grid' view when I turn the computer on.  Why?  It is set to manual in the view menu.

    Since installing Lion the desktop view occassionally jumps to 'grid' view when I turn the computer on.  Why?  It is set to manual in the view menu.

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • ITunes updates podcasts each hour but won't refresh. When I sync my iPhone, it gets yesterdays podcasts and I have to manually hit refresh to make it update. How can I make it automatically refresh?

    iTunes updates podcasts each hour but won't refresh. When I sync my iPhone, it gets yesterdays podcasts and I have to manually hit refresh to make it update. How can I make it automatically refresh?

    I think figured out what is going on here... If you have set your Windows OS time manually, Apple iTunes will not honor the time you set in Windows XP...
    In my case, I had not applied the Windows update that changes the Daylight savings rules. No big deal I thought... I can easily correct the time manually. Well... iTunes will not like it if you do that. You have to have your daylight savings rules set correctly on the PC. Microsoft has a free program called TZEdit that will let you adjust the DST boundaries.
    Once I set the rules correctly and then set my time keeping back to "Automatic" it fixed it. Hope this helps...

Maybe you are looking for

  • How do I change the default Outlook mailto: account

    I just upgraded to a new computer with Windows 7 and Outlook 2010. I'm running Firefox 3.6.9. When I right click on a website and choose "Send link", Firefox correctly uses Outlook as the email client. However, I have several accounts configured in O

  • Post user and pass to SOAP Header message in ABAP Proxy

    Hi Folks! I'm trying to post user and pass to SOAP Header on an ABAP proxy. I've already read the thread [Consume web service in ABAP proxy with SOAP header|Re: Consume web service in ABAP proxy with SOAP header; and I see that is possible to manipul

  • How to see pl/sql cursor in v$sql

    Hi All, I am trying to find how many child cursor will be created for select * into employee_rec from employees where employee_id = i however I couldn't find anything? Do I have to use execute immediate? Can't I measure PL/SQL cursors? set serveroutp

  • Does anyone know what error 208 is?

    I'm trying to download the last 2 tracks from the Killers new album and I keep on getting error .208 coming up. How do I sort this out? It's driving me nuts!! lol!

  • Any facility in Cocoa for word completion?

    I'm looking for some interface to the Mac OS dictionary, with the goal of being able to get a list of words which match a basic expression. For example: asking for words that are 5 characters long that match the form sh_. Feature useful for suggestin