Call the Checkout service on button click in sieble iframe

How call checkout on click of a button in siebel iframe link (Sibel UCM integration) after having selected content.

Thanks and greetings

Priya Verma

Solved after you create a resource file url and call service checkout directly from here by the way of ddocname and has been in the url.

Thank you

Priya Verma

Tags: Fusion Middleware

Similar Questions

  • How to call the web service?

    Hello

    I want to know how to call the web service from my application HTML5 & javascript.

    Please help me find this detail as what I can access easily. and I want to access web services online (a method of it) I'm not concered with how background Web service takes place.

    I just want that when you call a web service method, I will return the result.

    Please try this out for a WebService call

    var xmlhttp;
    xmlhttp = new XMLHttpRequest();
    xmlhttp.open("get","your url",true);
    xmlhttp.setRequestHeader("Accept","application/json");
    xmlhttp.setRequestHeader("Content-type", "application/json");
    xmlhttp.onreadystatechange=function() {
     if (xmlhttp.readyState==4) {
      if (xmlhttp.status == 200) {
        console.log(xmlhttp.responseText);
      }
     }
    }
    xmlhttp.send();
    

    This will display the result of the invocation of webservice. The url is the application that you deploy and the type can be get/post. If xmlhttp.send (post) takes argument for the display of the data. You can call it by clicking a button in HTML.

  • Call the web service with Digest authentication

    Hello

    I JDevelper 12.2.4, I need build the java class to call the web service with Digest authentication.

    Any suggestion?

    Refer to:

    http://StackOverflow.com/questions/14896324/consuming-WCF-service-with-Digest-authentication-from-Java

  • Call to Web Service of Oracle PL/SQL not to call the Web service in SOA Server

    Hello

    Try to call the Web service to oralce pl/sql function

    created a function

    Unable to invoke the web service from the server of the SOA.

    CREATE or REPLACE FUNCTION HelloWorld_WebServices(S_STRING Varchar2) RETURN VARCHAR2 as

    Server sys.utl_dbws. SERVICE;

    APPEL_ sys.utl_dbws. CALL;

    service_qname sys.utl_dbws. QNAME;

    port_qname sys.utl_dbws. QNAME;

    response sys. XMLTYPE;

    application sys. XMLTYPE;

    BEGIN

    sys.utl_dbws.set_http_proxy ("hostname: Port'");

    service_qname: = sys.utl_dbws.to_qname ("ns1", "process");

    Server: = sys.utl_dbws.create_service (service_qname);

    APPEL_: = sys.utl_dbws.create_call (server);

    sys.utl_dbws.set_target_endpoint_address (APPEL_, ' http:/host name: port/soa-infra/services/OFS/HelloWorld/helloworld_client_ep ');

    sys.utl_dbws.set_property (APPEL_, 'OPERATION_STYLE', 'process');

    asks: = sys. XMLTYPE ("< ns1:process xmlns:ns1 ="http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld"> < ns1:input > < / ns1:input > < / ns1:process > '"); 

    answer: = sys.utl_dbws.invoke (APPEL_, request);

    return response.extract('//HelloWorld/child::text() ','http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld'). getstringval(); 

    DBMS_OUTPUT. Put_line ("values of the OutputsVariables8");

    -Of return ';

    END;

    Run - the code below:

    Select HelloWorld_WebServices ('Hi') to double;

    Error:

    ORA-29532: Java call terminated by eception Java exception: java.lang.NoClassDefFoundError

    ORA-06512: at "SYS." UTL_DBWS', line 403

    ORA-06512: at "SYS." UTL_DBWS', line 400

    ORA-06512: at the 'APPS '. HELLOWORLD_WEBSERVICES', line 74

    29532 00000 - "Java call terminated by eception Java exception: %s."

    * Cause: A mistake or a Java exception has been reported and could not be

    solved by Java code.

    * Action: Modify Java code, if this behavior is not expected.

    Hello

    Fixed the error

    After loading once again of DBA and network provided access files JAR/JVM firewall

    and the correction on the threshold

    Return response.extract (' / result/child::text () ','xmlns = "http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld" '). getstringval();

  • Closing the PDF form on button click

    Hi all

    Is there any command/code to close the PDF form on button click event.

    Thanks and regards-

    Chalukya.

    Hi Chalukya,

    This will close the PDF form, but not the application (Acrobat/Reader):

    app.execMenuItem("Close");
    

    Good luck

    Niall

  • Launch the browser from Java button click

    Hi guys,.

    Displays the first time, hoping that you guys can give me a steer. I am a novice at coding and am worried that I bit bigger I can chew!

    I have the code snippet within a program, that I am putting together, and is that when the user clicks on the button full screen 'fullScreenC1111', the app will launch a web page. I'm not very good with managers and that sort of thing, so if someone could please take a look at my code and I would like to know how to add the functionality, I would be really grateful. If that's the case elsewhere where I offer my apologies for the double post...

    class Cineberry extends net.rim.device.api.ui.UiApplication
    {
        public static void main(String[] args)
        {
            Cineberry instance = new Cineberry();
            instance.enterEventDispatcher();
        }
        public Cineberry()
        {
            pushScreen(new CountyList11());
        }
    }
    
    import net.rim.device.api.ui.*;
    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.ui.component.EditField;
    import net.rim.device.api.ui.component.ObjectChoiceField;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.Manager.*;
    import net.rim.blackberry.api.browser.Browser;
    import java.util.*;
    
    public class CountyList11 extends MainScreen
    {
    
            ButtonField btnCl111;
            ButtonField btnCl112;
            CustomButtonField fullscreenCl111;
    
      public CountyList11()
        {
    
            super();
    
            Bitmap HELLO_LOGO = Bitmap.getBitmapResource("cineberry.png");
            BitmapField helloBmpField = new BitmapField(HELLO_LOGO);
            add(helloBmpField);  
    
            LabelField applicationTitle = new LabelField("Cineberry Location List");
            setTitle(applicationTitle);
    
            add(new SeparatorField());
    
            RichTextField cineberryTextField = new RichTextField("Please Choose a County");
            add(cineberryTextField);
    
            add(new SeparatorField());
    
            add(new RichTextField(Field.NON_FOCUSABLE));
            fullscreenCl111 =  new CustomButtonField("Omniplex Carlow", CustomButtonField.FULLSCREEN, Field.FOCUSABLE);
    
            fullscreenCl111.browserSession.displayPage("http://www.google.ie/movies?hl=en&near=carlow&dq=omniplex+carlow&theater=omniplex&ei=OMHYS5GIBIj00gS...");
            add(fullscreenCl111);
    
            add(new SeparatorField());        
    
            btnCl111 = new ButtonField("Back To A - Z", ButtonField.CONSUME_CLICK | EditField.FIELD_HCENTER);
            btnCl111.setChangeListener(new ButtonListener2());
            add(btnCl111);
    
            btnCl112 = new ButtonField("Back To Home Screen", ButtonField.CONSUME_CLICK | EditField.FIELD_HCENTER);
            btnCl112.setChangeListener(new ButtonListener1());
            add(btnCl112);
    
        }
    
    }
    

    I know that I imported without doubt too many packages as well, but I can understand that at a later stage.

    Thanks in advance

    .. and here's a simple way to call the browser on the latest OS levels:

    Private browser = Browser.getDefaultSession ();
    browser.displayPage ("www.google.com");

  • Insert a row into the table on a button click

    Hi all

    I have a table called 'temp' with 4 columns such as seq, name, event, id and I have a GP with 3 text such as name, event id fields

    now my question is

    If I enter values in the 3 text fields on this page and a button, click on (for example create), I wanted the values of dose to get inserted into the table 'temp' and

    regarding, "seq" column I HAV created a sequence for it.

    so 1. How to insert values into the table by entering the values in the page

    2 wat shd b made to column seq... (shd b anyth made apex pages or wil automatically get values for each input line)

    pls help me...

    Thanks in advance

    1, it is up to you change your account to something more user-friendly than '8f4692cc-040e-48ee-b102-590cdd4303fc'.

    Then, it would also be a good idea to use proper English when you ask a question here...  Not broken English as "now comes to my" and "wat shd b"... More people will be willing to help you if you at least put forward in order to ask a good question...

    Which version of the database are you using? APEX version?

    Change the code above to this process:

    DECLARE

    v_seq NUMBER;

    BEGIN


    Select SEQUENCE_NAME. NEXTVAL INTO v_seq

    Double;


    INSERT INTO temp (seq, name, event, id)

    VALUES (v_seq,: P1_name,: P1_event,: P1_id);

    END;


    This allows it to be used in older versions of Oracle that do not allow direct access to the sequence.nextval in an assignment statement.


    Thank you


    Tony Miller

    Software LuvMuffin

  • Want to stay on the same blade after button click - Captivate 5

    I have a button that I use to bring up a separate, a directory browser window. I need this button on every page of the module. I've got boxes to click to control the flow of the timeline from one page to another. When the user clicks on the glossary, it should stay on the current page, its information and dismiss the glossary. When I run it, the timeline stops for the button, and if clicked, the timeline progresses at the break of the click box, always on the same page. But if the user clicks on the button again, the pop-up window works but Captivate goes to the next page. Is it possible to prevent this, so that a user can click any number of times on the button without going through the progress of the timeline past this page?

    Thanks for any help that anyone can provide.

    Hi DS,.

    I use a javascript call to do what you describe all the time.

    Since I use all the time I incorporate the real full javascript in the "standard.js" Captivate file. This is the complete script:

    function openBrWindow (theURL, winName, features)
    {
    Window.Open (Theurl, winName, Features);
    }

    I save the file standard.js. On my desktop, it's the path to this file:

    C:\Program Files\Adobe\Adobe Captivate 5\Templates\Publish\standard.js

    Now I can call the script anytime.

    Here's how to set up the click-box:

    If you look at the picture of Rick (thanks Rick) in the menu control properties to the title of the Action, for the success, choose Run Javascript.

    Then click on the button in the Script window, it opens an empty window. Given that you call just the javascript code, you need not put the script in the window. Here is an example:

    JavaScript:openBrWindow('myURL.html','thewindowname','height=800px,Width=1000px,ScrollBars_=yes');

    Example of THS opens a window 800px high and 1000 px in width with the scroll bars. You can add additional attributes if you wish. Make sure the URL is correct and is the correct path and if you have more than one of them on a slide that the name of the window will have to be different. (If this continues the slide to the slide you don't have to have them all as a single, only for more than one on a slide.

    Now, click on the small arrow next to the button of the Script window. This produces a small drop down (as shown on the picture of Rick). Make sure you select 'Top' and disable the 'continue playing the Project '.

    This control makes the newly laid on the project window and stops playback of the slide. You can set other options in the properties to enable or disable captions as needed.

    I hope this helps.

    TPK

  • I need to call the customer services

    I am a student and I create new account by mistake be cecause I need to get the discount of for students. I use adobe from 2014 by [email protected]. And the new account is [email protected]. So, how can I fix this to have an account with the student account



    Thank you

    Please contact the Support from Adobe by clicking on the link below.

    Contact the customer service

    Please make sure that you are connected with the right ID from Adobe.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • How to call the GET_SEARCH_RESULTS service in the filter

    Hi Experts,

    I wrote a custom filter and in the filter, I'll call service GET_SEARCH_RESULTS. But I am getting following error:
    intradoc.data.DataException:! csNoServiceDefined, GET_SEARCH_RESULTS
    at test.notification.ExpirationNotification.executeService(ExpirationNotification.java:195)
    at test.notification.ExpirationNotification.doCustomDailyEvent(ExpirationNotification.java:112)
    at test.notification.ExpirationNotification.doFilter(ExpirationNotification.java:51)
    at intradoc.shared.PluginFilters.filter(PluginFilters.java:92)
    at intradoc.server.ScheduledSystemEvents.checkScheduledEvents(ScheduledSystemEvents.java:161)
    to intradoc.server.IdcSystemLoader$ 13.handleManagerEvent(IdcSystemLoader.java:2411)
    to intradoc.server.SubjectManager$ 1.run(SubjectManager.java:92)


    Here is the code:


    / public class ExpirationNotification implements FilterImplementor
    {
    public int doFilter (ws, eventData, ExecutionContext cxt DataBinder workspace)
    get DataException, ServiceException
    {
    try {}
    Action string = eventData.getLocal ("action");
    If (action! = null & & action.equals ("CustomExpNotifyEvent"))
    {
    doCustomDailyEvent (ws, eventData, cxt);

    Back to CONTINUE;
    }

    } catch (Exception e) {e.printStackTrace () ;}
    Back to CONTINUE;
    }

    protected void doCustomDailyEvent (ws, DataBinder eventData workspace,
    ExecutionContext cxt) throws ServiceException, DataException
    {
    Update ("CustomExpNotifyEvent", "CustomExpNotifyEvent event began...", ws);
    Try
    {
    DataBinder serviceBinder = new DataBinder();
    serviceBinder.putLocal ("QueryText', ' dOutDate > ' < $dateCurrent () $ > ' < AND > dOutDate < '< $dateCurrent (30) $ >'" "'");
    serviceBinder.putLocal ("IdcService", "GET_SEARCH_RESULTS");
    executeService (serviceBinder, "sysadmin", false);
    ResultSet results = serviceBinder.getResultSet("SearchResults");
    }
    } catch (Exception e) {e.printStackTrace () ;}
    Update ("CustomExpNotifyEvent", "CustomExpNotifyEvent finished successfully," ws ");
    }

    Protected Sub update (String msg, String action, workspace workspace) survey ServiceException, DataException
    {
    long curTime = System.currentTimeMillis ();
    ScheduledSystemEvents sse = IdcSystemLoader.getOrCreateScheduledSystemEvents (workspace);

    sse.updateEventState (action, msg, curTime);
    }

    protected void trace (String str)
    {
    SystemUtils.trace ("scheduledevents", "- custom-" + str);
    }
    Public Shared Workspace getSystemWorkspace()}
    Workspace workspace = null;
    WsProvider provider = Providers.getProvider ("SystemDatabase");
    If (wsProvider! = null)
    workspace = wsProvider.getProvider ((workspace));
    Returns the workspace;
    }

    /**
    To get information about a user. Only the "userName" parameter must be
    * non-null.
    */
    public static getFullUserData (String userName, cxt ExecutionContext UserData,
    Throws of Workspace ws) DataException, ServiceException {}
    If (ws is nothing)
    WS = getSystemWorkspace();
    UserData userData is UserStorage.retrieveUserDatabaseProfileDataFull (name of user, ws, null, cxt, true, true);.
    return userData;
    }

    ' Public Sub executeService (linking DataBinder, String userName,
    Boolean suppressServiceError) throws DataException,
    ServiceException {}
    get a connection to the database
    Workspace workspace = getSystemWorkspace();
    Look for a value of IdcService
    String cmd = binder.getLocal ("IdcService");
    If (cmd is nothing)
    throw new DataException("!csIdcServiceMissing");
    get the service definition
    ServiceData serviceData = ServiceManager.getFullService (cmd);
    System.out.println(cmd+"...serviceData---"+serviceData);
    If (serviceData is nothing)
    throw new DataException (LocaleUtils.encodeMessage)
    " ! csNoServiceDefined', null, cmd));
    create the object for this service
    The service = ServiceManager.createService (serviceData.m_classID, workspace, null, Binder, serviceData);
    Get the data from the full user of this user
    {if (service.getCachedObject ("propFile") == null)}
    UserData fullUserData = getFullUserData (username, service, workspace);
    service.setUserData (fullUserData);
    Binder.m_environment.put ("REMOTE_USER", username);
    ServiceException error = null;
    try {}
    init service do not return HTML
    service.setSendFlags (true, true);
    create the ServiceHandlers and producers
    service.initDelegatedObjects ();
    do a safety check
    service.globalSecurityCheck ();
    prepare for service
    service.preActions ();
    run the service
    service.doActions ();
    perform a cleanup
    service.postActions ();
    store new data customization
    service.updateSubjectInformation (true);
    service.updateTopicInformation (binder);
    } catch (ServiceException e) {}
    error = e;
    } {Finally
    Delete all temporary files.
    service.cleanUp (true);
    workspace.releaseConnection ();
    }

    handle any error
    If (error! = null) {}
    If {(suppressServiceError)
    error.printStackTrace ();
    If (binder.getLocal ("StatusCode") == null) {}
    binder.putLocal ("StatusCode", String
    .valueOf (error.m_errorCode));
    binder.putLocal ("StatusMessage", error.getMessage ());
    }
    } else {}
    throw new ServiceException (error.m_errorCode, error
    (. getMessage());
    }
    }
    }
    }

    Published by: user4884609 on November 5, 2012 17:05

    1 are you sure that the filter you can call occurs AFTER the idc services are loaded?

    2. What is a filter of SystemScheduledEvent type? There is a filter 'scheduledSystemEvent '. Could you have mixed the two?

  • Matter of business for OSB 10.3.1 when to call the web service from SAP ECC 710

    Hello

    1. I was a unit test for a business service that calls a web service from SAP ECC 710 (this service is published directly to a RFC function via SOA Manager module);

    2. the problem is when I use the OSB test console, which generates the request below message:

    < soapenv:Envelope = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv >
    * < soap: Header xmlns:soap = 'http://schemas.xmlsoap.org/soap/envelope/' > *.
    * < / soap: Header > *.
    < soapenv:Body >
    < xmlns:urn urn: Zmmjf503 = "urn: sap - com:document:sap:soap:functions:mc - style" >
    string of < ContractInfo > < / ContractInfo >
    < / urn: Zmmjf503 >
    < / soapenv:Body >
    < / soapenv:Envelope >

    the response message is:
    < SOAP - env:Envelope xmlns:soap - env = "http://schemas.xmlsoap.org/soap/envelope/" >
    < SOAP - env:Header >
    < n0:MessageID = "http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:n0 >
    UUID:4cbe5b84 - 474 c-9abe-e100-00000ad00164
    < / n0:MessageID >
    < n1:Action SOAP - env:mustUnderstand = "1" xmlns:n1 = "http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soap - env = "http://schemas.xmlsoap.org/soap/envelope" / >
    < / soap - env:Header >
    < SOAP - env:Body / >
    < / soap - env:Envelope >


    Above the response indicates that the BS called SAP Web server successfully, but seems that the service did not get the request message.

    3. the Web service can be called successfully through SoapUI. and I checked the soapUI request message; and it can work if I just change the request:

    < soapenv:Envelope = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenv >
    * < soap: Header = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap > < / soap: Header > *.
    < soapenv:Body >
    < xmlns:urn urn: Zmmjf503 = "urn: sap - com:document:sap:soap:functions:mc - style" >
    string of < ContractInfo > < / ContractInfo >
    < / urn: Zmmjf503 >
    < / soapenv:Body >
    < / soapenv:Envelope >

    and I got the right answer:
    < SOAP - env:Envelope xmlns:soap - env = "http://schemas.xmlsoap.org/soap/envelope/" >
    < SOAP - env:Header / >
    < SOAP - env:Body >
    < n0:Zmmjf503Response xmlns:n0 = "urn: sap - com:document:sap:soap:functions:mc - style" >
    < Recmsg > <! [CDATA [<? xml version = "1.0" encoding = "utf-8"? > < DocumentResponse > < CONDITION > 0 < / STATE > < HTBH > < / HTBH > < MESSAGE > < / MESSAGE > < / DocumentResponse >]] > < / Recmsg >
    < / n0:Zmmjf503Response >
    < / soap - env:Body >
    < / soap - env:Envelope >

    4 it bother me, because the only difference between the above two request messages is the header (one contains a "newline"):
    ------------------------------------------------------------------------------------------------------------------------------
    * < soap: Header xmlns:soap = 'http://schemas.xmlsoap.org/soap/envelope/' > *.
    * < / soap: Header > *.
    -------------------------------------------------------------------------------------------------------------------------------
    VS
    --------------------------------------------------------------------------------------------------------------------------------------
    * < soap: Header = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap > < / soap: Header > *.
    ----------------------------------------------------------------------------------------------------------------------------------------

    5 I thought that the SOAP engine should ignore "carriage returns", seems this is a problem of SAP ECC710.

    Do you have someone having this problem? Thank you


    Concerning
    Wen

    Hello Wen,

    I tried to use exactly the same request (carriage return) to call the service through soapUI, and it does not work... just like BS OSB
    should I assume that it is a matter of SAP ECC?

    That same demand also doesn't SOAPUI so certainly it's an issue with SAP ECC. I doubt that SAP ECC is the treatment the carriage return as an end of file marker. Check with support.

    Kind regards
    Anuj

  • How to create a generic method that calls the Web Service

    Hi I have a question how to create the Web Service client. In design mode, I can't specify static URLs? WSDL and process.

    I found the briliant method in library of apache cxf.

    for example

    DCF JaxWsDynamicClientFactory = JaxWsDynamicClientFactory.newInstance ();
    Customer customer = dcf.createClient ("http://soabpm-vm:8001 / soa-infra/services/default/MailSender/mailsender_client_ep?") WSDL");

    Object [] results;
    try {}
    Results = clientA.invoke (QName new ("http://xmlns.oracle.com/SynchDSBpel20/MailSender/MailSender", "process"), '@', 'body', 'subject');
    } catch (Exception e) {}


    In my case, I should create a method with params (URL? WSDL, URI, name of operation, param1, praram2, param3)


    Y at - it something like CXF in the ADF library?

    If your question has been answered, can you please mark as answer?
    THX
    Antonis

  • loading movie clip to the stage with AS3 button click

    I'm trying to figure out how to load a clip to the scene with a click of a button and have the movieclip close again with a close button. Does anyone have a step by step on how to do this or links to tutorials.

    Here is an example of what I'm trying to do.

    http://i30.photobucket.com/albums/c316/good_snow/FlashBoxSample_zps4e655414.jpg

    Looks like you are using a 'el' and a 'single '.  they are similar, but they are not the same.

    copy and paste from your code to your properties panel or vice versa to correct.

  • Call the Web service method

    Hello
    I use a webservice in my Flex 2 project:
    "" < mx:WebService id = "WStest" wsdl = " http://192.xxx.x.xx/Service.asmx?WSDL" showBusyCursor = "true".
    < mx:operation name = "Test_me" result = "test ()" >
    < mx:request >
    < int > 0 < / int >
    < / mx:request >
    < / mx:operation >
    < mx:operation name = "OperatorExists" fault = "faultHandler (event)" resultFormat = "xml" > "
    < mx:request >
    < name > aaa < / name >
    <>aaa password < / password >
    < / mx:request >
    < / mx:operation >
    < / mx:WebService >
    "Test_me()' method works if I write" WStest.Test_me.send (0). I would like to know how can I call 'OperatorExists' method with 2 parameters? I tried with WStest.OperatorExists.send('aa',aaa'), WStest.OperatorExists.send(aaa,aaa) and WStest.OperatorExists.send(name:"aaa",password:'aaa'), but still no results. This method should return 'true' if the user name and password are good and "false" if not.
    Pleas help me if you can.
    Thank you
    Tudor

    I use:

    http://somewhere.in.Holland:50100/WSDL/mios_GetDataForView_Request_V6_1.wsdl ".
    ID = "myWebservice".
    result = "handleResult (Event)" "
    showBusyCursor = "true".
    Fault = "handleFault (Event)" "
    >



    {aanvraagproces_id}
    1
    120



    and then:

    private void DoInitialization (): void {}
    aanvraagproces_id = parameters.id;
    Model.aanvraagprocess_id = parameters.id;
    myWebservice.mios_GetDataForView_Request ();
    }

  • How to call the warning error message when click on change the link in the Apex 4.2

    Hi all

    It was a request when they review link I need to show a popup screen "you are trying to update" Ok (or) Cancel to process further.

    Currently, the screen has been designed as shown below, could you please help me how to handle this request.

    Now in the form id I provided a link as shown below [the main objective is that when you click on the link code form it will redirect to change the screen where users can update the fields if necessary]

    Under the link column.

    Text link: #COL01 #.

    Target: Page in the present application

    Page: 1

    Item 1: P1_BUTTONHIDD value: UpdateMode

    Point 2: P1_DISPLAY_EID value: #COL01 #.

    Now when we click on "ME0016" need to alert message before it redirects to change the screen to update things.

    Kind regards

    Sruthitamiri

    Change the TARGET:

    JavaScript: if (confirm ("do you really do this?")) {window.location ='f? p = & APP_ID: 1:P1_BUTTONHIDD, P1_DISPLAY_EID:UpdateMode & COL01.} "} ;

Maybe you are looking for