How to add a checksum to an URL that is called from a redirect ?

Hello everybody,
I need to add a confirm message before deleting a line, and since the delete process is in the header of the same page, it use a redirect call. Before, it added the &cs=############## automatically. But since I must use a javascript function to call url, it doesn't contain the checksum (which is normal, because the javascript is run from the browser).
I need a way to calculate the checksum and put it in my url,when I'm generating the page. Isn't something like &CS. to get the checksum inside the URL ? We get already plenty of information that way like &APP_ID. , &SESSION. , &DEBUG.
Do you know something about that ?
Thank you !

Hi Scott,
it's the url that is generated when you select "url" instead of "link to a page in this application" inside the state editor page. There is an URL box that appears with a valid link with all the previous data for the link (except the checksum).
f?p=&APP_ID.:5:&SESSION.::&DEBUG.::HID_14505_SEQ_COMNC_0002,HID_14505_BTN_0012:#IDE_HIST_COMNC#,SI copy that line into a javascript function which redirect the browser.
So I'm missing the checksum parameter. And I was wondering if there is a way to obtain the checksum and copy inside my javascript link.
thank you !
Dan

Similar Messages

  • How to add photos taken in iOS 8 to albums migrated from iPhoto

    Does anyone know how to add photos taken in iOS 8 to albums migrated from iPhoto, or do I have to set up another set of albums?

    Albums that you synced from a computer can't be amended in the Photos app, the only way to add (or remove) photos to those albums is to do it on your Mac and resync.

  • IOS7 : blank browser when i try to connect to a wifi signal. Someone knows the apple-urls that are called to add to a whitelist?

    I´ve a problem when i try to connect to a wifi signal, an external browser is launched and it goes blank.  Someone knows apple-urls that are called in this case?, i was thinking to add to a whitelist into my router.
    Thanks.

    Contact your it department.
    You are blocked by a firewall.

  • Hi, i have a user that is working with the Adobe acrobat 9 standard. when he adds a stamp to a PDF that he opens from an Email in Outlook, this is the error he gets. (snapshot in the attached files)

    hi good morning,
    I have a user that is working with the Adobe acrobat 9 standard. when he adds a stamp to a PDF that he opens from an Email in Outlook, this is the error he gets. (snapshot in the attached files)
    can you help us with this problem?

    Hi, thanks for the fast response.
    This is the Extended Font Pack i have installed on the Terminal server.
    what do you mean by properly embedded? how can i check that?
    BR
    Eric Mizrachi

  • How do I find a list of printers that will print from the IPad 2?

    How do I find a list of printers that will print from the IPad 2?

    Those that support AirPrint are listed on this page : http://support.apple.com/kb/HT4356
    Some printer manufacturers also have their own apps e.g. HP http://itunes.apple.com/us/app/hp-eprint-home-biz/id299531647?mt=8
    And there are third-party apps which work with some printers e.g. Print Central For iPad and Print n Share

  • Is possible to add 2 conditions in a view that is used from an extractor?

    Hi alls.. that´s my question:
    Is possible to add 2 conditions in a view that is used from an extractor?
    I have an extrator in R/3 that´s a table view, so i want that this filter from 2 differents fields when this has the same value.
    For example:
    filter when FIELD1 = ZZ or when FIELD2 = ZZ .
    ..different fields, but the same type of data and value!
    is it possible?
    When i trying to activate the view, then show me an error that this is impossible to do.
    Help me..please!!!
    TY

    The error is :
    Only be able to 'OR' connects for the same fields.
    You are trying to connect with 'OR' select conditions from differents fields.
    (sorry but the sistem is in another language ---> not english)

  • How do I get ringtones onto my phone that I downloaded from an app

    How do I get ringtones onto my phone that I downloaded from an app

    what app? Was that app on your phone? Perhaps you should contact the developers of the app to find out how to get the ringtones onto your iPhone.
    I always get my ringtones using the iTunes app on my iPhone. When I download them they are immediately available.

  • HT1689 how do I delete photos  on my iphone that were downloaded from my Mac

    How do I delete photos on my iphone that were downloaded from my Mac?

    You have to Unsync them using your Mac...
    To delete photos and videos from your device
    From Here  >  http://support.apple.com/kb/HT4236

  • How can I fine a photo on icloud that is deleted from my camera roll

    How can I find a photo on icloud that is deleted from my camera roll

    All photos captured or saved with the iPhone are stored in the Camera Roll which cannot be changed.
    You can create an album to place photos in that are in the Camera Roll which does not duplicate the photo. It creates a pointer to the original photo stored in the Camera Roll. If the original is deleted from the Camera Roll, it will be removed from the album as well.
    Import the photos from the Camera Roll with your computer as with any other digital camera followed by deleting the photos from the Camera Roll after the import process is complete. Create an album or albums for the imported photos on your computer followed by transferring the albums from your computer via the iTunes sync process which is selected under the Photos tab for your iPhone sync preferences with iTunes.

  • How do you delete pictures on your iphone that were downloaded from your computer or memory card?

    How do you delete pictures on your iphone that were downloaded from your computer or memory card?

    There is NO other way to get photos off your phone, that were synced to your phone, other than through the iTunes sync process. Just make sure there are no checks, in any boxes, for any photos, that you do not want on your phone.

  • How to add a custom button in WD screen to call a workflow in siebel?

    Hi All,
    We have a requirement to have a custom button at the summary screen(after the rule execution) "Create Opportunity", on clicking on it a new opportunity record should be created in Siebel. As we know the "Save" link calls "PolicyAutomationSaveSession" inbound web service method and saves the information in session table and we can modify the PreSession and PostSession workflows. But we are not sure how it calls the service method and where is the mapping defined.
    Can you please help me on how to add a custom button and how to invoke a workflow in siebel side to implement this requirement?
    Also is there any document which can help me to add a custom button in screen and to add the code behind the button?
    Thanks in advance!!
    Regards,
    Subhradeep

    Subhradeep,
    Closing a Web Determinations window is essentially the same as closing any HTML window. It involves javascript, which you would have to add to the Web Determinations templates.
    Essentially the javascript command to close a window is {{window.close}} or {{top.close}}
    For timing, you might be able to use the setTimeout function of Javascript (see: http://www.w3schools.com/jsref/met_win_settimeout.asp)
    At the risk of exposing exactly how bad my javascript skills are, I have attached a super-simple html fragment, a page that closes itself after 3 seconds. It may help you get started in the right direction. In general closing a window is a fairly dubious activity and is often not permitted by certain browsers. This html page at least works in Internet Explorer.
    <html>
         <head>
         <script language="JavaScript">
              setTimeout(closeMe, 3000);
              function closeMe() {
                   alert("This window will close");
                   top.close();
         </script>
         </head>
         <body><B>This window will close in three seconds</B></body>
    </html>
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to add PCI 7340 and UMI in my labview program from functions palette or how?

    Am using PCI 7340 and UMI7764 for motion control of a stepper motor.
    How to add the functions for PCI and UMI in my labVIEW program and how
    do I use these further? I need to control the direction of stepper
    motor rotation based on the pressure applied which we calculate as
    either clock.anti clockwise. So which function palette should I use for
    that.
    We use a darlington pair driver unit. ? The output
    from UMI are from the individual axis control whereas the driver input
    is through a serial bus. So what kind of cable should we use to connect
    the UMI with this and how do we connect this or should we use any other
    driver unit? Please explain in detail.
     Thank you

    Thank you I ll see to it

  • How to add the Social Network share buttons (that work!) to share INDIVIDUAL post from the same page

    How to add the Social Network share buttons like Facebook and Twitter (that work!) to share INDIVIDUAL post on the same web address in Dreamweaver? I have searched on google and youtube tutorials, but most of them are "Blogger" and  "Wordpress" users.. The only Dreamweaver tutorial is the one that share THE WHOLE page (not individual post on a page). There is Facebook Integration on Dreamweaver (29 Dollar download from Adobe) but so far no review about it so  I don't want to spend money for something I don't know.  There is also Sharrre but they say there is a bug. It seems like everyone out there use these buttons but I start to get crazy since it seems easy but it's actually complicated to get the html or js script to paste on! Any help would be very much appreciated. Thanks.

    Cool,
    Here is my test site. I have made at least 3 articles (Fashion, Sport, and Art) with thumbnail images on it.
    http://andiratih.free.fr/
    On each article I add the share buttons from "AddThis".
    However, if I want to ONLY share the "Sport article" on Facebook by clicking share-->Facebook, then the feed is scrambling my images on other articles too and it eventually just share the whole page instead of one particular article.
    It is now fine since I only build 3 articles, but as you see when the page is getting long with at least 20 articles it will not be ok.
    I don't want to make individual page for each article either, since they are just short article each, and I intend to use this page as a welcome page to update the latest activity every half year.
    I have seen many bloggers or pages where even if they have many article on ONE page, they are able to share one particular article to Facebook, and when we click (via Facebook) it will redirect us to exactly that particular article even if the article is on the bottom of the page, and not just bring me to the top of the page only and have to search by myself by scrolling to the bottom of the page to see the article.
    Infact, Bloggers and Wordpress seems to have the tool for that so that we can just click and add. I am not a Blogger or Wordpress users but I saw youtube tutorials on that.
    I have heard about Dreamweaver behavior, and does this will help to achieve what I want (sorry I'm a beginner)? I also heard about meta tags but I don't know how and where to get them to paste to my html source code.
    I have found several sites where the person show how to do this, but when I tried it didn't work, and in fact some other discussions about this are never solved.
    Thanks for your input.

  • How can I restore FLASH to a URL that I previously blocked?

    I have set Shockwave Flash to "Ask." I set a specific URL to ALWAYS ALLOW, then later changed my mind. How can I restore flash-deny functionality to that URL?

    Note that you can click the Lego block icon on the at the left end of the location/address bar to change the plugin settings for a website.
    If you click the "[[Site Identity Button|Site Identity Button]]" (globe/padlock) on the location/address bar then you will see what permissions have been changed from the default.

  • How to: Add Internal anchors to a PDF and then link from an external webpage?

    Hi,
    I work in email marketing and create html emails that we send through our own web based system. I am just wondering if it is possible at all to create internal anchors with unique urls that I can then link to from my html email as a hyperlink?
    The client has created the PDF and I am wondering if I can create the anchors and when linking to these anchors from my email, it downloads the file and opens to that specific anchor location?
    Thanks in advance.

    I seem to having a new issue with this task. Thanks to Bernd I have managed to create named destinations within the PDF document. From there I have then created the email and linked the pdf url with the destination tag to open to that location. However what we're finding now is that once the PDF has been downloaded once, if you go back to the email and select another link it opens the PDF in the last viewed state.
    This client has created one PDF containing many different articles. In the email she has created a table of contents and wants to link from each listed article to that destination in the PDF. But once you have clicked on one link, shut down browser, go back to the email and select another link it just opens what you were viewing last. Is this a cache issues? Are we using the named destination method in the correct manner?
    We tried suggesting, linking once to the PDF and then from the PDF creating a table of contents with internal anchors however the client doesn't want this.
    Suggestions?

Maybe you are looking for

  • Free items in po screen

    Hi Xperts Plz let me know about free item & return items check box concepts in po screen i.e is in the me21n Moderator message: Locked. Reason: failed to search properly. Please try to search for answer or ask a more sepcific question. Edited by: Csa

  • How can I make DHCP Service automatically assign IP addresses?

    We decided on using OS X Server's DHCP service rather than depend on our router to dole out IPs. Here's the size and shape of our local subnet: Range: 192.168.0.0 to 192.168.7.255 Mask: 255.255.248.0 Router: 192.168.1.1 DNS: ....etc... We're trying t

  • Agency error on Value Mapping in 7.1.

    Hi, I'm facing a problem with value mapping using message mapping. The problem is that i can only choose as a Source/Target Agency the SenderParty/ReceiverParty but I can not use sender/receiver business system . Does anyone knows why? I'm using as A

  • Avoid messages in F4 helps

    I have a main view with a message bar, and on the view, there is an input field with an F4 help. Now, the user does some action with leads to a message in the message bar. Then, he opens the F4 help. As a consequence, the message will also be shown i

  • Need JSP HELP

    I am trying to figure out a bunch of code in jsp, it is a html form with some textfield and two button, one is "ok" and another is "cancel", I want to make different response when client click on the buttons, if they choose ok, I want to insert the v