Other ways to trigger jobs

Hi all
I was wondering if there is any way that i can turn a job ON and OFF through JavaScript in the web page of a production line monitor page...
Best regards
Tks in advance

Hello Pedro!
everything going well! and you?
thanks for your answer!
i was now just wondering and testing how i could implement it.
i already tested those links and they work like a charm however it is necessary to run the link. When we run the link, does it have to open a new page, or is there a way to run the link without going out of the line monitor screen?
Best Regards

Similar Messages

  • Other ways to send the cursor to the end of the text

    Hi everybody
    Is there any other way to send the cursor to the end of the textfield except win_api_shell.sendkeys and keep cursor position.
    Because when I use keep cursor position property.. it is not working properly when i programatically write go_block and return back to this block.
    win_api_shell.sendkeys is working fine but, it is not giving me the desired results...
    so can any1 please suggest other ways to do it.....
    Thanks in advance

    You could use a global to deactivate this trigger before using ther sendkeys(), then reactivate it after
    KEY-PRESSED trigger
    If :global.fire = 'true' then
      -- do the job
    end if ;your code:
    :global.fire := 'false';
    win_api_shell.sendkeys()...
    :global.fire := 'true';Francois

  • Please help me to find my iPad and iPhone 5C. I lost all of them last night. I set up icloud for my devices but i can't find them because they were not connect to the Internet. Please guide me other ways to find my "best friends".

    Dear Apple,
    Please help me to find my iPad Air 2 64 GB and iPhone 5C 8GB. They're in IOS 8.0 maybe...I lost all of them last night. I set up icloud for my devices but i can't find them because they were not connect to the Internet. Please guide me other ways to find my "best friends". They're very important to me. Many important files for my job in here and it has sentimental value to me. My boyfriend gave it for me so i don't want to lose them. And because i just lost my iPad Air last 3 month, and now i just bought iPad Air 2 two months ago. I'm so sad and lost. I want to catch the thief to the police so bad because they keep my bag and many other important things. I can not do anything without them. Please help me and contact me via my email or my phone. Thank you very much. Hope to receive your answer soon.

    Hey there thaovy309,
    Welcome to Apple Support Communities.
    The linked article below provides a lot of great information and suggestions that should address your concerns about your data and finding your lost or stolen iPhone 5c and iPad Air 2.
    If your iPhone, iPad, or iPod touch is lost or stolen - Apple Support
    Take care,
    -Jason

  • Is there a way to trigger batch process via Applescript or Javascript?

    Based on what I've found so far on the internet, the answer is no. The Applescripts I've found so far that attempt to run a batch process don't work for me in either Acrobat Pro 8 or Pro 9.
    I've been using Applescript to automate a process that starts in InDesign (create PDFs), then goes to Acrobat to set open options (I've got a batch process for that but can't find a way to trigger it). If I can get that to work, I'll attempt to automate the task of using a Photoshop droplet to create JPEGs of a specific size from these PDFs.
    I've settled on InDesign CS3 for creating single-page PDFs from a multiple-page document, partly because I could not find a scriptable way to do this in Acrobat. I know just enough about Applescript to be dangerous. I know much less about Javascript.
    Any help would be appreciated.
    Thanks,
    Kevin Stauffer

    Kevin some thing like this for Photoshop should aid you
    set Todays_Date to do shell script "date \"+%d-%m-%y\""
    -- Create new folder to save to
    tell application "Finder"
    set Raster_Images to make new folder at desktop with properties ¬
    {name:"Rasterized PDF's " & Todays_Date}
    end tell
    -- Set Photoshop settings
    tell application "Adobe Photoshop CS2"
    activate
    set display dialogs to never
    set User_Rulers to ruler units of settings
    set ruler units of settings to pixel units
    -- set background color to {class:CMYK color, cyan:0, magenta:0, yellow:0, black:0}
    -- set foreground color to {class:CMYK color, cyan:0, magenta:0, yellow:0, black:100}
    end tell
    -- Get list of PDF's
    set The_Question to "Do you want to include all the subfolders" & return & "within your folder selection?"
    set The_Dialog to display dialog The_Question buttons {"No", "Yes"} default button 1 with icon note
    if button returned of The_Dialog is "Yes" then
    set Input_Folder to choose folder with prompt "Where is the top level folder of PFD's?" without invisibles
    tell application "Finder"
    set File_List to (files of entire contents of Input_Folder whose name extension is "pdf")
    end tell
    else
    tell application "Finder"
    set Input_Folder to choose folder with prompt "Where is the folder of PFD's?" without invisibles
    set File_List to (files of Input_Folder whose name extension is "pdf")
    end tell
    end if
    set File_Count to count of File_List
    if File_Count = 0 then
    display dialog "This folder contains no PDF files to rasterize!" giving up after 2
    end if
    -- Loop through the files in list
    repeat with This_File in File_List
    tell application "Finder"
    set The_File to This_File as alias
    end tell
    -- Tiger (OSX.4) shell call to count the pages
    set Page_Count to my PDF_Pages(POSIX path of The_File)
    if the result is not false then
    -- Loop Photoshop through the page count
    repeat with i from 1 to Page_Count
    tell application "Adobe Photoshop CS2"
    activate
    open The_File as PDF with options ¬
    {class:PDF open options, bits per channel:eight, constrain proportions:true, crop page:trim box, mode:CMYK, page:i, resolution:300, suppress warnings:true, use antialias:true, use page number:true}
    set Doc_Ref to the current document
    tell Doc_Ref
    flatten
    -- Enter your name strings into two enties below
    -- Case sensitive stings
    -- do action "My Action" from "My Action Set"
    -- New file naming options
    set Doc_Name to name
    set ASTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to " "
    set Doc_Name to text items of Doc_Name
    set AppleScript's text item delimiters to "_"
    set Doc_Name to Doc_Name as string
    set AppleScript's text item delimiters to "-"
    set Doc_Name to text item 1 of Doc_Name
    set AppleScript's text item delimiters to ASTID
    if Page_Count = 1 then
    set New_File_Name to (Raster_Images as string) & Doc_Name & ".tif"
    else
    set File_Number to ""
    repeat until (length of (File_Number as text)) = (length of (Page_Count as text))
    if File_Number = "" then
    set File_Number to i
    else
    set File_Number to "0" & File_Number
    end if
    end repeat
    set New_File_Name to (Raster_Images as string) & Doc_Name & "_" & File_Number & ".tif"
    end if
    end tell
    save Doc_Ref in file New_File_Name as TIFF with options {byte order:Mac OS, embed color profile:false, image compression:LZW, save alpha channels:false, save layers:false}
    close current document without saving
    end tell
    end repeat
    end if
    end repeat
    -- Set ruler units back to user prefs
    tell application "Adobe Photoshop CS2"
    set ruler units of settings to User_Rulers
    end tell
    beep 3
    -- OSX Tiger shell handler
    on PDF_Pages(This_PDF)
    try
    do shell script "/usr/bin/mdls -name kMDItemNumberOfPages" & space & quoted form of This_PDF & " | /usr/bin/grep -o '[0-9]\\+$'"
    on error Error_Message number Error_Number
    if Error_Number is 1 then
    display alert "Page Count Unavailable" message "The page count for " & This_PDF & " is unavailable." giving up after 3
    return false
    else
    display alert "Error " & Error_Number message Error_Message giving up after 3
    return false
    end if
    end try
    end PDF_Pages
    and something like this to perform JavaScript from within AppleScript for Acrobat
    You would be better talking to the JavaScript Experts on how to use addScript() to get your doc level scripts in.
    property Default_Path : (path to desktop folder as Unicode text) as alias
    property JavaScript : "var re = /.*\\/|\\.pdf$/ig; var filename = this.path.replace(re,''); try { for (var i = 0; i < this.numPages; i++) this.extractPages( { nStart: i, cPath: filename+'_' + (i+1) +'.pdf' }); } catch (e) { console.println('Aborted: '+e) }" as text
    set The_PDF to choose file default location Default_Path ¬
    with prompt "Where is the multi-page PDF?" without invisibles
    tell application "Adobe Acrobat 7.0 Professional"
    activate
    open The_PDF
    tell active doc
    do script JavaScript
    close saving yes
    end tell
    end tell

  • I need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training

    i need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training from authorised center.how good it it to do prepare from unauthorised center and take exam in any country like australia ,US ?please help understand .

    Hi Preeti,
    please first understand the difference between a subject (your header) and its body line, please never write so long subject matter.
    Now coming to your queries , what you thinks being at Australia or US is free of Cost. The first thing is that i don't understand your mission for taking Certifications, Are you a working proffesional because for more than 2 yrs. of working experience, you don't need any training , you can take direct examinations.
    And if you are not a working professional, i don't thing taking any certification will serve any purpose in your job hunt, although it will enrich your Resume only, you will nothing get out of this from just taking a vertification
    So, please tell us that you are a fresher or having real time working exposure in SAP SD module, then any one will guide you well.

  • Is there any way to trigger BSP Page from ITS..

    Hi,
      is there any way to trigger BSP Page from ITS?
      say for example i have a its service, when i click my its service i want to call BSP Page instead of calling module pool screen.
    thanks,
    Abhay.

    do you want to have a link the ITS page which calls a BSP page or do want a simple call the ITS url should redirect you to BSP page?
    for your explanation i understand that calling a ITS service should automatically redirect to BSP page -  in such a case you can just use url redirection by using meta tag or reidrect using javascript.
    <META HTTP-EQUIV="Refresh"
          CONTENT="5; URL=<BSP page>.htm">
    But i dont understand the reason why you would want to do this.
    Regards
    Raja

  • Way to trigger an applescript

    Is there a way to trigger an applescript (or a shell script) when a new wireless network is joined? In other words, if I am on one wireless network, I would want one script to run and if I am on another wireless network, I would want another script to run.
    Thanks in advance.

    Dear orangekay,
    Thank you for the link. It looks like it could solve my problem. I am curious though, in how marcopolo is able to check for which wireless network the computer is on and then run an applescript when it is on a particular one. Is there a way to do this without installing software, but instead using the commands that already come with mac os x?

  • Way to database and invoke command in terminal? Cool way to trigger?

    Hi... I'm thinking about all the code snippets I use... and just put into a text file and have to cut and paste.
    Now that I'm getting ARCH savvy it would be great if there was a GURU-like way to have all my command at the ready instead of using the arrow keys to scroll 'back in time' to find the one i want...
    IS there a way to trigger off commands that's really smart?
    thanks!

    UPDATE:  see studying already!!! more learning!
    http://www.linux.org/docs/ldp/howto/Bas … /x246.html
    u_no_hu !!!
    Well, it's kinda random in a way.
    Like today I was learing how to get alsa and jack and usb headphones, and and and and and
    there's like 40 or 50 distinct lines that I've triggered in terminal a dozen or so of which, I'm still thinking about, wondering this and that about and would like to be able to have in some kind of record.
    So, attempting to be cocise here, um, and being pretty poor at it today... hehehe
    I'm going thru, what for me is a very big assention to becoming average.... :---)
    geez, it's been incredible these past several months and what's starting to happen more and more is I've forgotten stuff, how I did this and how I did that...
    So, I keep text files for very program of note.
    So JACK has a list of notes and commands.
    FFmpeg/recordmydesktop/blender/   WELL.... there's dozens of programs and I'm really into figuring stuff out like so many of us...
    So.... really I am quite interested in studying the comments that have been kindly offered to me here today.
    great interest in bash, how to use alas and function....SOUNDS GReat!!!
    Right now I'm wondering IF I've missed some wonderful app that is a stepping stone to being really fast and efficint with terminal.... or just some novel text file based way of speeding things up AND having all my discoveries at my findertips quickly.....
    dunno! though I WILL look into all this...
    maybe just having a text file for every program IS a good approach and having the project with all the text files open in bluefish I guess...
    there's no way to as yet remember every idiosyncratic thing I learn every day...
    Last edited by yvonney (2009-01-18 10:04:33)

  • Need the most performance and scalable way to "trigger" JavaEE application

    Hi,
    Need the most performance and scalable way to "trigger" JavaEE application code running on WLS from PLSQL code.
    There are some thirdparty JavaEE application running on WLS that we need to invoke from PLSQL code. I have looked at couple of options:
    Option 1)
    Use oracle db callouts(http call etc.) but it seems the connection to WLS will not be maintained across database-sessions and so every call from different plsql database-session will make fresh TCP/IP connection. Usually fresh socket connection setup is expensive and can become a bottleneck.
    Option 2)
    Use AQ in the database from PLSQL and have a MDB in WLS to invoke the java code. The problem here is how do I simulate the Request/Reply pattern using the AQ API from PLSQL. The PLSQL code needs to wait until the JavaEE code completes as it needs some result back from JavaEE app. AQ also does not have true temporary queues so I am not sure how it will work with concurrent user/sessions.
    Option 3)
    Use Java in the database, we have tried this but for our usecase it is too expensive resource wise and is not meeting our performance needs.
    Performance is the triggering mechanism is of highest interest to us.
    Any suggestions/pointers is greatly appreciated.
    Thanks,
    Prantor
    Edited by: Prantor on Nov 8, 2010 10:37 PM

    Perhaps you would benefit from viewing the problem differently.
    In some/many/most cases the application server (WLS) invokes procedure residing in the DB server.
    Place the control for the desired results in the application code running on the WLS.

  • HELP!   SQL Query:  Other ways to reorder column display?

    I have a SQL query report with a large number of columns (users can hide/show columns as desired). It would be great if the column display order could be changed by changing the order of the columns in the SELECT list in the Report Definition, but that doesn't work -- it puts changed or added columns at the end regardless of the order in the SELECT list of the query.
    Is there some other way to reorder the columns displayed without using the Report Attributes page? It's extremely tedious to move columns around using the up/down arrows which redisplays the page each time. Am I missing a way to change display order, or does anyone have a "trick" to do this? It's so painful....
    When defining forms you can reoder columns by specifying a sequence number for each column. Just curious as to why reports were not done the same way, and are there any plans to address this in a future release?
    Karen

    Yes, reordering columns is extremely painful.
    It is supposed to be much improved in the next version.
    See
    Re: Re-ordering columns on reports
    Moving columns up/down in Report  Attributes
    See my example at
    http://htmldb.oracle.com/pls/otn/f?p=24317:141
    Basically, let the users move columns around until they are blue in the face, provide a Save button to save the column order in a user preference and reorder the columns when the page reloads.
    Or you can use Carl's PL/SQL shuttle as the widget to specify the columns shown and their order. The shuttle is at http://htmldb.oracle.com/pls/otn/f?p=11933:27
    Hope this helps.
    Message was edited by:
    Vikas

  • Any other ways to get parameters of a URL in a window method ?

    Hi,
    In SDN, i find the below two ways to extract the URL parameters, when i pass them while opening a new window. But, unfortunately they dont work for me. so, would like to know, if any other ways are existing to extract the URL parameters.
    1)
    HANDLEDEFAULT method of the window:
    DATA: lt_url_parameters TYPE tihttpnvp.
    wdevent->get_data(
    EXPORTING
    name = if_wd_application=>all_url_parameters
    IMPORTING
    value = lt_url_parameters ).
    2) In HANDLEDEFAULT method, have the URL parameter names as importing parameters and use them normally.
    If there is no other ways, can some one help me in pointing the issue that i face ?
    Note: I have wdevent (CL_WD_CUSTOM_EVENT) importing parameter in place.
    Thanks in advance,
    Gaurav.

    Hi,
    How you are trying to pass your parameters ? I believe you are using some SAP provided template (like for XSS) and relying on passing of some standard parameters. These parameters may be absorbed by the standard component and may not be passed to your WebDynpro Component. You can try passing them as application parameters.
    Thanks
    Prashant

  • I have an older ipod shuffle that will not continue to charge when i plug it into my laptop.  is there any other way to charge an ipod shuffle?

    my older ipod shuffle will not charge on my laptop.  it starts and then stops after the light blinks four or five times.  is there any other way to charge a shuffle?

    Hello there, gallo2432.
    The following Knowledge Base article offers up some great  information on how to charge your iPod shuffle:
    iPod shuffle: How to charge the battery
    http://support.apple.com/kb/HT1477
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How do I make my Iphone add to iCal-not the other way round

    Sorry, if I am dumb.
    Very simply, I do all my entries on my iPhone. Calendars, Contacts etc.
    How can I ensure that my iPhone updates my MacBookPro but not the other way around?
    Some of the old email addresses in my contacts are just that, email addresses. I have updated those in my phone with phone numbers and then when I sync I get them all back.
    Thanks in advance for helping.

    Do you use the Address Book application on your Mac when not accessing the iPhone for the same?
    If so, you can delete all contacts from the Address Book application as you can with any other data on your computer. Select the Address Book's All Group which is where all contacts are stored. You can edit each contact or you can delete each contact - with a contact selected at the menu bar go to Edit > Delete Card.
    Address Book data is stored somewhere - all Address Book data on your Mac is stored in a single data file located at Home > Library > Application Support > AddressBook > AddressBook.data. If you delete contact information from the Address Book, the data is removed from this data file which is what the Address Book application accesses for this data.
    Or you can delete the entire AddressBook folder with the Address Book application quit before doing so and all Address Book data will be deleted in one swoop but if you do this, all current contact information available on your iPhone will be put back in the Address Book application on your Mac during the next sync function.
    I think it is faster and easier to edit all contact information in the Address Book application on your Mac and there is also a preference setting for your iPhone sync preferences to replace all contact information on the iPhone with the Address Book information on your Mac which will revert to the standard sync process for this data during the next sync.
    Calendar events in iCal are stored in a separate iCal data file apart from the Address Book data file. Although integrated, these are separate applications with their own data file.

  • My iPhone 4s notified me that I had to manage my storage  so I deleted  apps that used a lot of space I deleted almost all my picture and it still keeps telling me  I don't have enough storage  is there any other way I can make room on my phone ?

    My iPhone 4s notified me that I had to manage my storage  so I deleted  apps that used a lot of space I deleted almost all my picture and it still keeps telling me  I don't have enough storage  is there any other way I can make room on my phone ?  Were it shows how much storage  I have available it still says 9.9 even after all that I have done so I don't know if I need to change my storage plan or what but anything will help I guess

    Check for 'others' in iTunes against your iPhone.
    Restore from a previous backup to reclaim some of it.
    Still want more, Restore in iTunes, setup as New.

  • How to connect my iPad 2 to Sony Bavaria wirless? Any other way than apple tv?

    How to connect my iPad 2 to Sony Bavaria wirless? Any other way than apple tv?

    http://store.apple.com/us/product/MD098ZM/A/apple-digital-av-adapter
    this one? if i connect it to the tv, will it work  if audio system is connected to the tv?

Maybe you are looking for

  • Upload time data using bdc

    hi hr gurus, plz help we have 3 shifts like 6-2,2-10,10-6. while uploading time data to sap from third party system. do we need to take care of the shifts times in BDC? or do we need to manage it in configurations if you have any code please send me

  • Create files from template using flienames in a text document.

    Hi I have been trying to wrap my head around this all evening and not gotten very far.  I have a template Word document that I need to copy and rename with pupils names.  I have the text document (.txt), with all the pupil names seperated into paragr

  • Is it possible using SQLite to collect data from an older SQL database?

    Is it possible using SQLite to collect data from an older SQL database? Where can I find a possible answer. Thanks in advance.

  • JES on Solaris 10 ?

    Has the latest JES Messaging Server (and other software) been certified for use on Solaris 10 (clustered environment). The new zone feature has my interest. I know that zone failover won't be available until later this year. I'm just planning ahead.

  • Installed CC on new laptop, why am I only allowed trial version?

    I originally bought CC and installed on a Macbook pro. Now I've bought a new Macbook pro 2014 and installed CC, but it only allows me to run the trial version. As far as I know, CC allows for the software to be installed on two machines at the same t