Calling script masters

I have a index.asp page with the following java script...
amongst the code is the js for my countdown clock...
The problem is that when I add my news summary asp page to
the site (ssi) which has some code (see below) the clock function
disappears - can anyone see why this might be?
Index .js
<script type="text/javascript">
<!--
//Clock blink setting
setInterval('blinkIt()',500);
function blinkIt(){
if(!document.all)return;
else{for(i=0;i<document.all.tags('blink').length;i++){
s=document.all.tags('blink')
s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';}}}
//Countdown - Clock
function Write(){
var today = new Date();
var bigDate=new Date(2006,10,22);
var dif=(bigDate-today)/(1000*60);
var d=parseInt(dif/(60*24),10);
var h=parseInt((dif%(60*24))/60,10);
var m=parseInt((dif%(60*24))%60,10);
if (d < 10) d="00"+d;
else if(d<100) d="0"+d;
if (h<10) h="0"+h;
if (m<10) m="0"+m;
document.getElementById('mysp').innerHTML= ' ' +d+'
  <blink>:<\/blink>  
'+h+'   <blink>:<\/blink>   '+m+'
setTimeout('Write()',50000)
window.onload = Write
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr;
for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i++)
x.src=x.oSrc;
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0;
i<a.length; i++)
if (a
.indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document;
if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document;
n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for
(i=0;!x&&i<d.forms.length;i++) x=d.forms
[n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++)
x=MM_findObj(n,d.layers.document);
if(!x && d.getElementById) x=d.getElementById(n);
return x;
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a
))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src;
x.src=a[i+2];}
//-->
</script>
Include asp page
<!--#include file="settings.asp" -->
<%
set rsOldnews = connect.execute("select id, rubrik, ingress,
datum, forfattare, eforfattare, nyheter from nyheter where visa=1
order by datum desc") set rsantal = connect.execute ("select iantal
from antal")
intAntal=rsantal("iantal")
alignment="right"
antal=0
do until rsoldnews.eof or antal = intantal
%>
<% =rsOldnews("Rubrik") %></span>
<br>
<% =rsOldnews("ingress") %>
<%
antal=antal+1
rsOldnews.movenext
loop
rsOldnews.close
set rsoldnews = nothing
rsantal.close
set rsantal = nothing
%>

You are using the variable "i" (in blink function) as a
global, I don't
know if this is your problem, but it will bite you
eventually.
Mick
nhavfx wrote:
> I have and index.asp page with the following java
script...
>
> amongst the code is the js for my countdown clock...
>
> The problem is that when I add my news summary asp page
to the site which only
> has js, the clock function disappears - can anyone see
why this might be?
>
> Index .js
>
> <script type="text/javascript">
> <!--
>
> //Clock blink setting
> setInterval('blinkIt()',500);
> function blinkIt(){
> if(!document.all)return;
>
else{for(i=0;i<document.all.tags('blink').length;i++){
> s=document.all.tags('blink')
>
s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';}}}
>
>
> //Countdown - Clock
> function Write(){
> var today = new Date();
> var bigDate=new Date(2006,10,22);
> var dif=(bigDate-today)/(1000*60);
> var d=parseInt(dif/(60*24),10);
> var h=parseInt((dif%(60*24))/60,10);
> var m=parseInt((dif%(60*24))%60,10);
> if (d < 10) d="00"+d;
> else if(d<100) d="0"+d;
> if (h<10) h="0"+h;
> if (m<10) m="0"+m;
>
> document.getElementById('mysp').innerHTML= ' ' +d+'
>
  <blink>:<\/blink>  
>
'+h+'   <blink>:<\/blink>   '+m+'
> setTimeout('Write()',50000)
> }
> window.onload = Write
>
> function MM_swapImgRestore() { //v3.0
> var i,x,a=document.MM_sr;
for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i++)
> x.src=x.oSrc;
> }
>
> function MM_preloadImages() { //v3.0
> var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
Array();
> var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
for(i=0; i<a.length;
> i++)
> if (a
.indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}
> }
>
> function MM_findObj(n, d) { //v4.01
> var p,i,x; if(!d) d=document;
>
if((p=n.indexOf("?"))>0&&parent.frames.length) {
> d=parent.frames[n.substring(p+1)].document;
n=n.substring(0,p);}
> if(!(x=d[n])&&d.all) x=d.all[n]; for
(i=0;!x&&i<d.forms.length;i++)
> x=d.forms
[n];
>
for(i=0;!x&&d.layers&&i<d.layers.length;i++)
> x=MM_findObj(n,d.layers.document);
> if(!x && d.getElementById)
x=d.getElementById(n); return x;
> }
>
> function MM_swapImage() { //v3.0
> var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
Array;
> for(i=0;i<(a.length-2);i+=3)
> if ((x=MM_findObj(a
))!=null){document.MM_sr[j++]=x; if(!x.oSrc)
> x.oSrc=x.src; x.src=a[i+2];}
> }
> //-->
> </script>
>
>
> Include asp page .js
>
> <!--#include file="settings.asp" -->
> <%
> set rsOldnews = connect.execute("select id, rubrik,
ingress, datum,
> forfattare, eforfattare, nyheter from nyheter where
visa=1 order by datum
> desc") set rsantal = connect.execute ("select iantal
from antal")
> intAntal=rsantal("iantal")
>
> alignment="right"
> antal=0
> do until rsoldnews.eof or antal = intantal
>
> %>
> <% =rsOldnews("Rubrik") %></span>
> <br>
> <% =rsOldnews("ingress") %>
> <%
>
> antal=antal+1
> rsOldnews.movenext
> loop
> rsOldnews.close
> set rsoldnews = nothing
> rsantal.close
> set rsantal = nothing
> %>
>

Similar Messages

  • How to call script in jsp

    How to call script in jsp
    3A-_@. Feb 8, 2007 3:08 AM
    Hi,
    I have abc.jsp file where i want to call javascript on pressing submit button.
    <input type="text" name="UserName" value="" width="30" />
    <input type="submit" value="Submit" onclick=" <what should i write here??">
    here how to call script?
    and in the same abc.jsp file i have javascript ( i am not sure about the way i m accessing text value inside javascript is right or not)
    <SCRIPT LANGUAGE="javascript" >
    here how can i access UserName field value here??
    if(isThisNotNull(UserName))
    alert("UserName Is Mandatory");
    </SCRIPT>

    If you do it like Greeks says then the javascript variable will be set when the page loads (userName probably blank). You will want the current value from the input field so use getElementById().
    Edited by: gmachamer on Nov 21, 2007 7:23 AM
    oops, just noticed Greeks posted both replies... so what I should have said is use his first suggestion as the second is not what you want.

  • Executing Call Scripts without CTI inegration

    Hello Experts,
    We are implementing a scenario where our client wants to conduct market surveys based on call lists generated in campaign management.
    We are now able to:
    1) Create Segments
    2) Create Campaigns
    3) Assign Call Scripts to the campaign with channel telephone
    4) Create Call Lists and show them on the agent screen
    My guess is that in a scenario with CTI integration, the agent needs to press the "dial" button to bring up the script and log an interaction recrod.
    However since we do not have this intergaration and we removed the "dial" button from the screen.
    I would like to know if there is some other way that we still can show the script after a call from the call list is selected, so that after the agent makes the call manually he can fill in the answers on the screen and after he ends the call can save a transaction as an outbound call.
    Thanks in advance for your replies.
    Kind Regards,
    Alex van Vondelen

    Hi,
    I think after the Agent confirms the customer the agent has to navigate to the work center "Script". It will not automatically populate because CTI integration is not there. Please have a look at the following thread.
    Campaign & interactive script
    However, you could create an alert to alert the agent that they should navigate to executing the call script. This will be probably the best you could do.
    Regards,
    Deepak

  • Mail command in script hangs and does not release control to calling script

    Hello folks,
    I am running in a situation which I haven't seen before.
    Main script calls function which executes another script.
    No matter which statement is the last in called script, it hangs on the last line and does not return control to main script.
    I tried to call another script not within the function - it is the same result.
    Can you help please.
    Below example of code:
    --- Main script:
    function checksum
    set -x
    /sybdump/ukgoald/scripts/egrep_expr1
    ##MAIN --- call to script script execution which runs mail command
    checksum
    ---- trace execution of called script:
    + read A B RF_FULL_NAME
    + print
    + /usr/bin/mailx -s Checksum Report [email protected]
    + 0< /sybdump/ukgoald/dump1/egrep_expr1.log3
    + print
    + return 0
    Edited by: ge**** on Dec 14, 2010 11:29 PM

    Hello folks,
    I am running in a situation which I haven't seen before.
    Main script calls function which executes another script.
    No matter which statement is the last in called script, it hangs on the last line and does not return control to main script.
    I tried to call another script not within the function - it is the same result.
    Can you help please.
    Below example of code:
    --- Main script:
    function checksum
    set -x
    /sybdump/ukgoald/scripts/egrep_expr1
    ##MAIN --- call to script script execution which runs mail command
    checksum
    ---- trace execution of called script:
    + read A B RF_FULL_NAME
    + print
    + /usr/bin/mailx -s Checksum Report [email protected]
    + 0< /sybdump/ukgoald/dump1/egrep_expr1.log3
    + print
    + return 0
    Edited by: ge**** on Dec 14, 2010 11:29 PM

  • How to configure drop-down that change dynamically in Call Scripts

    Hi,
    Would like to know as how to configure drop-down choices that change dynamically based on customer response in Call Scripts / Assessment Scripts of type "Service Request - Survey".
    I've read the following from CRM OnDemand pdf but was not able to figure out how to do that.
    Call Scripting:
    • Reduces agent training time
    • Provides drop-down choices that change dynamically based on customer response
    • Supports personalized interactions based on existing record data
    • Facilitates up-selling and cross-selling
    • Does not require third-party software
    I don't have a concrete requirement as of now, but was trying to check as how it works. Please guide me if any one has implemented the same.
    Thanks in Advance,
    Cheers!!!
    Deepak Veeravalli.

    Arun,
    If you plan to implement the "Querying the Active Directory" based on my code snippet,
    and if you do not have permission [your account must be the part of domain admin] to do so,
    Then still you can do it in least effort through code,
    string usersInXml = SPContext.Current.Web.AllUsers.Xml;your xml string look like this.
    <Users><User ID="2" Sid="" Name="Administrator"
    LoginName="i:0#.w|murugesan\administrator" Email="" Notes="" IsSiteAdmin="True" IsDomainGroup="False" Flags="0" /><User ID="1" Sid="" Name="Murugesa Pandian" LoginName="i:0#.w|murugesan\murugesan" Email="" Notes="" IsSiteAdmin="True" IsDomainGroup="False" Flags="0" /><User ID="1073741823" Sid="S-1-0-0" Name="System Account" LoginName="SHAREPOINT\system" Email="" Notes="" IsSiteAdmin="False" IsDomainGroup="False" Flags="0" /></Users>
    You can user Linq to XML to filter the "LoginName,Name and Email and then populate your drop down list.
    * User must be logged into the site at least once.
    Murugesa Pandian.,MCTS|App.Devleopment|Configure

  • How do you call scripts in subfolders using ODT 11.1.0.5.10 beta?

    Hello,
    I'm trying to create a script that calls several other scripts. The scripts I want to call are in a subfolder. Does anyone know the syntax I can use to call them?
    Structure:
    Providers
    +---Create All Script.sql
    +---Create
    +-------InstallOracleASPNETCommon.sql
    +-------InstallOracleMembership.sql
    +-------InstallOraclePersonalization.sql
    In Create All Script.sql, I added the following code and ran it using the "Run" option in my Oracle Database Project:
    @@Create/InstallOracleASPNETCommon.sql;
    @@Create/InstallOracleMembership.sql;
    @@Create/InstallOraclePersonalization.sql;
    The error I get is:
    Connected.
    SP2-0103: Nothing in SQL buffer to run.
    SP2-0310: unable to open file "Create/InstallOracleMembership.sql"
    SP2-0103: Nothing in SQL buffer to run.
    SP2-0310: unable to open file "Create/InstallOraclePersonalization.sql"
    Any help is appreciated. Thanks!

    Okay, I should probably clarify that I'm trying to call scripts using a relative path rather than the full path.
    I know I can use: @D:\Documents\CAL.MB\Oracle.New\Scripts\Create\MyTable\Create.sql;
    But I really want to use:
    @Create\MyTable\Create.sql
    Does anyone know the syntax for this or if it can be done when using the Run, Run on, or Run SQL Plus options?

  • Collect Digits in a Transfer to IVR call script

    Hi,
    UCCE 7.5
    We use IVR campaigns to contact customers with a reminder thath there account is due.  What I want to do is include in the message played to the customer the option to select a digit and route the customer to a contact centre queue.
    The CED node works, and I have tried using a 'Go To Script' node and a 'Label' node (to RF the call to a DN) and neither option works.
    It does work if I use another IVR script in the Go To Script node.
    What do I need to do to transfer the call from the IVR call script to an Inbound UCCE script?
    Thanks

    Hi Chris, it *should* work, at least I believe it should work with the Label node. Questions: when trying to send the call with the Label, does it uses the VRU routing client(s)? CUCM client does not work here, as you are already translation routed to VRU, CUCM won't do anything if at that point (and beyond).
    I definitely would not use the Go To Script node as it would screw up my reporting.
    Can you send us a screenshot perhaps?
    G.

  • Call script from script; exit code issues

    I have verified in a very simple pair of scripts that I can feed an exit code back to the calling script. My "Parent" test is little more than 
    powershell.exe -file "$ScriptPath\child.ps1"
    Write-Host "$LASTEXITCODE!!!"
    and the child script is just
    Exit 1
    And that Write-host comes back correctly. I have even tried it with two different child scripts, with different rerun codes, being called from Parent back to back. All good.
    However, in a more complicated script, where the child script has conditional exits, I am getting 0 all the time. The conditional looks like this
    if ($Global:MemberofSet) {
        if ($Global:ErrorOccured) {
            Write-Host '1'
            Exit 1
        else {
            Write-Host '0'
            Exit 0
    And even when the 1 echoes, I still get a $LASTEXITCODE of 0.
    Is there some known issue here that I am not aware of? Using PS 2.0, FWIW.
    Thanks!

    Um, no, more that I remmed out
    [CmdletBinding()] at the top of each child script and with no other changes everything is working exactly as it should. Not sure why it worked, but I am certainly not imagining it.
    For shits and giggles I also added the binding in my little test script set, and that is now broken,
    with no other changes. I really hadn't created a good test obviously, but I wasn't expecting binding to matter. Would love to hear an explanation as to why it would
    For anyone wanting to see the behavior, these are the three test scripts, and you run the Arch script. With binding enabled DTV will show 1, but return 0. Rem the
    bindings and DTV will correctly return 1. I also tested RVT to not be MemberofSet, so -1 is returned, and $LASTEXITCODE shows a wonky number as expected given the bug in 2.0 and negative return codes. 
    NOTE: In the test the argument in the child scripts is not used, it's just there to avoid the error you otherwise get when binding. In my "live" code the
    arguments are mandatory and used.
    Arch_2015.ps1
    powershell.exe -file "RVT_2015.ps1"
        Write-Host "$LASTEXITCODE!"
    powershell.exe -file "DTV_2015.ps1"
        Write-Host "$LASTEXITCODE!"
    DTV_2015.ps1
    [CmdletBinding()]
    Param ([string]$Mode)
    $Global:MemberofSet = $True
    $Global:ErrorOccured = $True
    if ($Global:MemberofSet) {
        if ($Global:ErrorOccured) {
            Write-Host 'DTV 1'
            Exit 1
        else {
            Write-Host 'DTV 0'
            Exit 0
    else {
        Write-Host 'RVT -1'
        Exit -1
    RVT_2015.ps1
    [CmdletBinding()]
    Param ([string]$Mode)
    $Global:MemberofSet = $True
    $Global:ErrorOccured = $False
    if ($Global:MemberofSet) {
        if ($Global:ErrorOccured) {
            Write-Host 'RVT 1'
            Exit 1
        else {
            Write-Host 'RVT 0'
            Exit 0
    else {
        Write-Host 'RVT -1'
        Exit -1

  • Call Script through plug-in.

    Hello,
    I have written script(.jsx).I want to execute that script throught photoshop CS3 plugin(Like indesign we call script through plugin).Is it possible call script through Plugin?
    if possible then how?
    On the following thread
    http://forums.adobe.com/message/4632125#4632125
    some one said we can call script by using executeScript method in CS5.But executeScript method is not present in CS3.
    So,I tryied following for CS6.
         #include "JSScriptingSuite.h"
         JSScriptingSuit2 sScriptingSuite;
         sScriptingSuite.CreateEngine(&engineRef);         
         if(engineRef != NULL)
              char *scriptText = "documents.add();"; // script to create new doc.         
              ASUnicode script = (ASUnicode)scriptText;
              sScriptingSuite.ExecuteScript(engineRef, &script, kJSExecutionModeNoDebug, kSPNoError);
        But, when i call CreateEngine function it crashes.Is anything wrong in above code?which library i have to add?
          please,help me.

    The following runJavascript() function lets you execute JavaScript code in Photoshop CS1 to CS6 and Photoshop Elements 6 to 11.  Its only parameter is a c string containing the Javascript code. If the execution was successfull it returns true, otherwise false. If there is an error in the JavaScript code, it displays an error message with the details.
    #include "JSScriptingSuite.h"
    BOOL runJavascript(const char * jscode)
            ASErr err = 0;
            JSScriptingSuite2 * sScriptingSuite = NULL;
            err = sSPBasic->AcquireSuite( kJSScriptingSuite, kJSScriptingSuiteVersion2, (const void**)&sScriptingSuite);
            if (sScriptingSuite == NULL)  //Also support Photoshop CS1-CS4 and Elements 6-10
                    err = sSPBasic->AcquireSuite( kJSScriptingSuite, kJSScriptingSuiteVersion1, (const void**)&sScriptingSuite);
            if  (sScriptingSuite == NULL) return false;
            JSEngineRef engineRef = NULL;
            err = sScriptingSuite->CreateEngine( &engineRef );
            if ( err == kSPNoError )
                    //Convert ascii to unicode
                    wchar_t  * wcode;
                    size_t codelength = strlen(jscode)+1;
                    wcode = (wchar_t *)malloc(codelength*sizeof(wchar_t));
                    mbstowcs(wcode, jscode, codelength);
                    const ASUnicode * result = NULL;
                    err = sScriptingSuite->ExecuteScript( engineRef, (ASUnicode *) wcode, kJSExecutionModeNoDebug, &result );
                    if ( err != kSPNoError )
                            //Display error details
                            MessageBoxW(hDialog,(LPCWSTR)result,L"JavaScript Error",0);
                            return false;
                    free(wcode);
           else
                   return false;
            if (engineRef) sScriptingSuite->DeleteEngine( engineRef );
            return true;

  • Calling Script without Text element

    Hi All
    Can we call script without using text element in driver program.
    Ex: in write_form without writing text element only passing window name
    Thanks in Advance
    Regards
    Suji

    hello
    NO, you can not use write_form without TEXT element name .
    Regards
    Geeta Gupta

  • Is there any other option to perform any action / call script/program instead of sending email alerts from app Insights ?

    Hi ,
    For app Insights configured alerts ( CPU usage/Response time ), we have email notification but do we have any other option to perform any action / call script/program
     in case of alert from App insight ?    
    We need to log these alerts into existing ticketing system like MS Alarm/MS ticketing
     ( GFS ) , please suggest

    We don't support performing any action except email notification in case of alert from App Insight. 
    To integrate with
    MS Alarm/MS ticketing  (
    GFS ) you’d need parse the mails from AI and use the
    MS Alarm/MS ticketing  (
    GFS )  connector to create a ticket. 
    Mihail Smacinih

  • Calling script to reset NTFS acl by mouse right-click... Possible???

    hello
    One subfolder have name as domain account name, like mikesmith...I want to right click on folder and choose example "reset ntfs". this "reset ntfs" is menu under right click which call script. this script need to disable inheritance,
    grant modify access to this user AUTOMATICALLY (from name of folder) and full to admin, auditing bla bla and rest all child object...
    Is that possible?

    Hi,
    Actually it is 2 questions. a. Add an item to Right Click menu and b. a script to help create default permission.
    Add an item to right click menu should be easy, however it is difficult to tell the script the "current location" (the path of the folder you right-clicked) and run the script on that folder specifically.
    Thus I think we could find another way to get this purpose.
    From the description it seems like creating home folders for users - folder with user name and only Admins and that specific user have permission to access.
    Generally we will directly use Home Folders function to do this. During my research it seems that the following script is more suitable for creating such folders in batch:
    https://gallery.technet.microsoft.com/scriptcenter/How-to-create-home-folder-d968f1d4
    It could help create folders for user accounts you input in TXT files in batch and only the user and Admins will have Full Control permission. 
    If you have any feedback on our support, please send to [email protected]

  • Problem when calling script in different languages..

    Hi,
                I copied F150_DUNN_01 standard sap script to ZDUNN in all 12 languages. And after that i changed the original language from DE to EN. Made some changes. When I am executing the transaction F150 it is calling the ZDUNN. The standard program is calling the script based on language. the language is not Login  language, it is picking language from customer master. When the customer language is EN, am seeing the changes. When the languages is HU am not seeing the changes. Later i came to know that it is calling the same form in HU language, then i change the same ZDUNN form by loging in HU. And now If HU also the changes are coming. 
                 I copied the form in all 12 languages, and same name. When i change anything in EN its not reflecting in another language.  So as per my requirement I changed in EN and HU. Now if the customer languages is not EN or HU, i want the form default in HU. Say if customer languages is RU, the print program is picking RU form, no changes in that. What will happen if delete the form in RU, what the print program will do?? will it pick default language or through any error??  Please tell me about this? And do you know how to copy standard script in only 3 languages in ECC 6.0???

    Hi ,
    If the form is not available it will cause shortdump (Ex: /E 143  Element  is not Found )
    When your creating or changing the form in the 
    Administrative tab you will find the  Language attributes   Translate into all languages  &  To Individual Languages & Do not translate  Go through that  
    You will find the lots of forums on  this 
    Hope you will resolve your issue 
    Let me know if any concerns.....

  • Call script in a workflow and get return value?

    hello
    I want create a workflow to check some attribute in IDM
    like for the home directory, use the workflow call some script to check there is enough space in the server? and the folder is almost there or not?
    then get the return value like if no enought space, call some other form let the admin input some new home directory string
    So I want to know how a workflow work with scipt file?
    I also use some after create action script, but it looks only can get some error message and shows in th IDM.

    This should help you:
    http://www.devdaily.com/java/edu/pj/pj010016/pj010016.shtml
    Note that the command will be executed by the application server user so check if it has sufficient rights.
    Ben

  • Debug dynpro + call script form

    Hello ,
    I have a req, I need to debug the few dynpro, and one of the dynpro is calling a form and I have to figure it out, which form is this ( and from where it is called ). I have never worked with script form before, can any one let me know how I can figure it out that ( how to call a form, I mean it should be statemnt like, call form .... or ) ?
    One another thing, I went into the coding, and there I see the screen ( in execution mode, the screen shows some button, ( e.g show , and after pressing this button show ,the form appers ), but when I went in flowlogic of the screen, I cant see those button ?
    Any idea....
    Regards,

    Shah,
    Do like this.You might be pressing some push button after which the smart form or script is appearing.
    do screen debugging.
    enter /h in the command field and press enter.
    now press the push button.
    this will take you to the logic in the driver program where the smartform or script is getting invoked.
    if it is a smartform you will see a function module SSF_FUNCTION_MODULE_NAME.
    smartform name will be stored in LF_FORMNAME
    put a watch point here to get the smartform name.
    if it is a script you will come across the following functional modules.
    open_form,write_form,close_form.
    Script name will be given in the open form functional module.
    If any doubt revert it.
    K.Kiran.
    Message was edited by:
            Kiran K

Maybe you are looking for

  • Westinghouse monitor problem

    So I just bought my G4 the other day, but it didn't come with a monitor so I headed over to best buy. I bought the cheapest one they had that they said would be compatible. I got a 17" lcd Westinghouse display..It has vga and dvi connections, but onl

  • Camera Raw no longer works

    Im trying to figure out why my Camera Raw plugin seems to have stopped working. I am using CS3, with the 4.5 plugin installed in the correct place, and my camera is the digital rebel XSi, which is on the list of supported cameras with the 4.5 plugin.

  • Oracle Identity and Access Management (11.1.1.3.0)   and IM difference?

    What is difference between Oracle Identity and Access Management (11.1.1.3.0) and Identity Management (11.1.1.3.0) ? From http://www.oracle.com/technetwork/middleware/downloads/oid-11g-161194.html

  • Object seems to update dynamically

    The code below is supposed to get all the actors within range of a point (that point in this case is the location of another actor) then pull the entire actor object from an arraylist, read that into an actor object and write that to another array li

  • Maximum 30s waiting for RPC call, how to resolve?

    Hi, We've face problem on limitation time Channel call procedure for RPC. We always get this message: info = mx.rpc.events.FaultEvent (@2141581)    bubbles = false    cancelable = true    currentTarget = null    eventPhase = 2    fault = mx.rpc.Fault