Philosophical question:VB Scripts or VI calls?

I suppose the answer to this is "depends", but I'm wondering what is the best way to do subroutines in DIAdem, VB scripts or VI calls. As one who's been programming exclusively in LV for many years I'm really weak in VB and am finding it very painful to relearn it. Are there situations where one method is preferred over the other? Can one method do things the other can't?
George

Hi George,
I understand your pain with programming in a language not of your preference. The objective answer to your question, though, is that VBScript subroutines are vastly preferable in DIAdem, because the only way to use LabVIEW code is to go through the ActiveX interface and use VI server. While this works, it introduces a host of complications and potential problems.
One such complication is passing the data back and forth from DIAdem to LabVIEW, which must be done through variant arrays in ActiveX. This is entirely unnecessary for a VBScript routine, which can reference the data in the Data Portal directly and pass "pointers" to the data when it calls DIAdem commands to manipulate the data.
Another complication is that you often end up starting LabVIEW every time you run that G subroutine. Think about that. First of all, that makes the call much slower, second of all, it requires LabVIEW to be on any computer your application is supposed to run on. It's much more efficient and much easier to distribute your application if it contains only DIAdem-native subroutines (and dialogs).
So much for the bad news. The good news is that this is a common request, and we are exploring possibilities to make this a more natural option in future versions of the software. No guarantees, of course, but we're definitely looking into it.
For the time being, though, I'd recommend making full use of the VBScript recorder in the DIAdem-SCRIPT panel to help with your VBScript development.
And you can always ask NI support for help,
Brad Turpin
DIAdem Product Support Engineer
National Instruments

Similar Messages

  • Scope issue: Trying to set the value of a variable in a calling (upper) script from a called (lower) script

    Hi,
    I have a basic scope question . I have two .ksh scripts. One calls the other.
    I have a variable I define in script_one.ksh called var1.
    I set it equal to 1. so export var1=1
    I then call script_two,ksh from script_one.ksh.  In script_two.ksh I set the value of var1 to 2 . so var1=2.
    I return to script_one.ksh and echo out var1 and it still is equal to 1.
    How can I change the value of var1 in script_two.ksh to 2 and have that change reflected in script_one.ksh when I echo var1 out after returning from script_two.ksh.
    I've remember seeing this I just can't remember how to do it.
    Thanks in advance.

    Unfortunately Unix or Linux does not have a concept of dynamic system kernel or global variables.
    Environment variables can be exported from a parent to a child processes, similar to copying, but a child process cannot change the shell environment of its parent process.
    However, there are a few ways you could use: You can source execute the scripts, using the Bash source command or by typing . space filename. When source executing a script, the content of the script are run in the current shell, similar to typing the commands at the command prompt.
    Use shell functions instead of forking shell scripts.
    Store the output of a script into a variable. For instance:
    #test1.sh
    var=goodbye
    echo $var
    #test2.sh
    var=hello
    echo $var
    var=`./test1.sh`
    echo $var
    $ ./test2.sh
    hello
    goodbye

  • UCCX script and abandoned calls

    Hi Guys
    I got question about that UCCX script and abandoned calls , so currently we had 4 different script for  support the call follow .
    So the Main script is just AA let the people select menu 1 , 2 ,3 then go to different queue , after select 1 (for example) then call-direct to second script trigger number and coming into the queue .
    Unfortunately , the system counter the action to be an Abandoned call      , I already open the case about this issue and the TAC did not found any configure issue on UCCX , from the log we can seem all the REDIRECT,lrd=5000 is abandoned call .
    23811205: Apr 28 13:01:44.257 GMT+800 %MIVR-SS_TEL-7-UNK:Call.received() JTAPICallContact[id=37148,implId=151183/1,state=STATE_RECEIVED_IDX,inbound=true,App name=APP0,task=null,session=null,seq num=-1,cn=5000,dn=5000,cgn=0405554590,ani=null,dnis=null,clid=null,atype=DIRECT,lrd=null,ocn=5000,route=RP[num=5000],TP=null
    23811420: Apr 28 13:02:00.491 GMT+800 %MIVR-SS_TEL-7-UNK:Call.transferring(5030) JTAPICallContact[id=37148,implId=151183/1,state=STATE_ANSWERED_IDX,inbound=true,App name=APP0,task=48000040709,session=36000027315,seq num=0,cn=5000,dn=5000,cgn=0405554590,ani=null,dnis=null,clid=null,atype=DIRECT,lrd=null,ocn=5000,route=RP[num=5000],TP=5007]
    23811424: Apr 28 13:02:00.491 GMT+800 %MIVR-SS_TEL-7-UNK:Call.abandoned() - transferring JTAPICallContact[id=37148,implId=151183/1,state=STATE_ANSWERED_IDX,inbound=true,App name=APP0,task=48000040709,session=36000027315,seq num=0,cn=5000,dn=5000,cgn=0405554590,ani=null,dnis=null,clid=null,atype=DIRECT,lrd=null,ocn=5000,route=RP[num=5000],TP=5007]
    23818414: Apr 28 13:09:46.095 GMT+800 %MIVR-SS_TEL-7-UNK:Call.transferring(239) JTAPICallContact[id=37149,implId=151183/1,state=STATE_ANSWERED_IDX,inbound=true,App name=app2_Admin,task=48000040710,session=null,seq num=-1,cn=5030,dn=5030,cgn=0405554590,ani=null,dnis=null,clid=null,atype=REDIRECT,lrd=5000,ocn=5000,route=RP[num=5030],TP=5034]
    23818421: Apr 28 13:09:46.095 GMT+800 %MIVR-SS_TEL-7-UNK:Call.abandoned() - transferring JTAPICallContact[id=37149,implId=151183/1,state=STATE_ANSWERED_IDX,inbound=true,App name=app2_Admin,task=48000040710,session=null,seq num=-1,cn=5030,dn=5030,cgn=0405554590,ani=null,dnis=null,clid=null,atype=REDIRECT,lrd=5000,ocn=5000,route=RP[num=5030],TP=5034]
    Please give some advice about that and I am look forward to heard from you guys soon .
    Thanks

    Hi Jon
    I was tested "Set Call Contact Info step to mark the call as handled" last night , but not working .
    so in the get call contact info properties , I was used  last Redirect number  to nest trigger number .
    but not working .
    so have got any idea about that ?
    thanks

  • Run special script for abandon calls

    Sample: If the call has been stopped at the initiative of the client after 40 seconds of stay of a call in system (that is the client looked forward to hearing more than 40 seconds, and has hanged up, without having waited)We can call any IVR/ICM the Script?

    I'm with David on the first part: Your question is difficult to understand. I'll take a couple guesses at the answer you might be looking for. Please clarify if you still need help.
    1) It IS possible to run further/additional scripts if a caller hangs up but this requires a good understanding of the scripting engine. You can use exception handling to recover from the caller abandoning and then move to another point in the script or call another script entirely. If you called another application and accompanying script (instead of calling a script as a sub flow) you would need to use a session to move useful variable data to the other application. Again, this is possible but you need to know CCX well before attempting this, in my opinion.
    2) You could use the Get Reporting Statistic step to retrieve the estimated wait time for the CSQ prior to the caller abandoning. This would allow you to offer them other options. An example would be "If the estimated wait time is more than one minute, offer them an option to leave a voice mail." The estimated wait time statistic has some caveats though so I would recommend reading the documentation on it carefully first.

  • How can I exit my UNIX script when my PLSQL script in it calls an error?

    hello.
    I hope someone can help with my error handling and exiting-in-the-right-place problem.
    I have several PLSQL scripts that are called from a UNIX script to insert/update employee records in ORACLE Financials.
    At the end of the UNIX script, depending on whether an entry has been created in the errors table should depend on whether the UNIX script stops or not. Trouble is, its stopping too early everytime even though the the record has been inserted correctly. Please can someone either advise on what I'm doing wrong or suggest an alternative..
    This the end of the PLSQL script that inserts the entry into errors table if theres an error..
    WHEN OTHERS    THEN       ROLLBACK;
          err_msg := SUBSTR (SQLERRM, 1, 350);
          insert into kpmg_error_check (concurrent_id,module,narrative,status,creation_date,created_by)
                                values(0,'TEMPLOYEE_DTLS.sql',err_msg,'ERROR',SYSDATE,'Feldman');
         commit; This is the end of the UNIX script that looks at the table..
    echo " "
    echo "**** `date +%H:%M:%S` - Checking if TEMPLOYEE_DTLS.sql ran OK"
    error_check=`sqlplus -s $user_id @$SU_TOP/sql/SUTEMPCHK.sql 1`
    if `echo $error_check` -ge 1
    then
    # Load failed
    echo " "
    echo "**** `date +%H:%M:%S` - TEMPLOYEE_DTLS has failed - check table KPMG_ERROR_CHECK for details.."
    exit 1
    else
    # Load finished OK, if input data file exists, move and rename it
    echo " "
    echo "**** `date +%H:%M:%S` - TEMPLOYEE_DTLS has finished OK.."
    fiThis is the entire SUTEMPCHK.sql script that the UNIX script uses..
    -- Check if any errors have occurred
    SELECT count(1) FROM kpmg_error_check WHERE concurrent_id = &1
    EXITIs it that the above is always returning '1' and so always thinks theres an entry in the errors table?
    Is there an easier way?
    many thanks,
    Steven

    Hi,
    You have to iterate through all pages.marginPreferences:
    var
      myDocument = app.activeDocument,
      allPagesMaPref = myDocument.pages.everyItem().marginPreferences,
      curPageMaPref;
    while ( curPageMaPref = allPagesMaPref.pop() )
      with (curPageMaPref) {
      columnCount = 1;
      //columnGutter can be a number or a measurement string.
      columnGutter = "0";
      bottom = "0"
      //When document.documentPreferences.facingPages == true,
      //"left" means inside; "right" means outside.
      left = "40"
      right = "0"
      top = "0"
      inside = "0"
    Jarek

  • Questions regarding FaceTime: When I call someone, it rings but they can't answer and when someone calls me via FaceTime it won't even ring.

    Questions regarding FaceTime: When I call someone, it rings but they can't answer and when someone calls me via FaceTime it won't even ring.

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • How to reset apple security questions after apple takes your call

    how to reset apple security questions after apple takes your call can anyone tell me what to do

    Hi tyler30389,
    You can reset the security questions for your Apple ID by going to My Apple ID and navigate to the Password and Security section to change them. You will have to know the answer and if you do not know them there should be a reset security questions email link. If you do not see one then you will have to contact Apple Support to further assist you. For more information take a look at the article below.
    If you forgot the answers to your Apple ID security questions
    http://support.apple.com/en-us/HT201485
    Regards,
    -Norm G.  

  • I wanna change the Questions, but the support will call me in a wrong number and it won't let me change the number unless i change the country, and i can't change the country because i have a money in my account.. what should i do??

    I wanna change the Questions, but the support will call me in a wrong number and it won't let me change the number unless i change the country, and i can't change the country because i have a money in my account.. what should i do??

    You will need to call tech support or have them call you at http://expresslane.apple.com
    Diana

  • Hi  Question On Script

    Hi Abapers,
                          I am having a question in Script how to move data from one main window to other main window...
    With Regards
    Bhaskar Rao.M

    Hi..
       U dont need to move data from one main window to another ...
      anyway a form can have onli one main window...
    If the main window of the  first page is  filled with data and still some data is there to print , then it automatically trigggers a new page ... and the reamining data will be continued on the next page's main window..
    This is the difference between the main window and Variable window.. Variable window truncates the data and it wont trigger any new page...
    <b>U can split the main window on a page into 99 multiple main windows ...
    To send the data to the next splitted window u need to use the command <u>NEW-WINDOW</u>.</b>
    i hope u understood the concept..
    reward if it helps u...
    sai ramesh

  • Interview questions on Scripts & Smartforms

    Can anyone please help me with the answers for these questions that were asked in an interview.
    1. in Scripts, I have 10 address lines there were blanks in between rows how can I avoid those?
    2. In smartforms, If  I want to transfer the data from print programme to smartform, How can I do?

    Hi
    When you create a paragraph format in SE71
    you will observe one check box for NO BLANK LINES
    just check that, it is a property of that Paragraph format..
    If you see the following code of smartform you will observe the internal tables that are passed to it and they are used in smartform
    TABLES: MKPF.
    DATA: FM_NAME TYPE RS38L_FNAM.
    DATA: BEGIN OF INT_MKPF OCCURS 0.
    INCLUDE STRUCTURE MKPF.
    DATA: END OF INT_MKPF.
    SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.
    SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.
    MOVE-CORRESPONDING MKPF TO INT_MKPF.
    APPEND INT_MKPF.
    ENDSELECT.
    At the end of your program.
    Passing data to SMARTFORMS
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = 'ZSMARTFORM'
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    FM_NAME = FM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    if sy-subrc <> 0.
    WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call function FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    <b>GS_MKPF = INT_MKPF</b>
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Here in this case we are passing GS_MKPF = INT_MKPF, so this strcuture data can be used in Smartform to display the data
    Reward points for useful Answers
    Regards
    Anji

  • Technical and Philosophical Question re: Digital Signatures

    My question is technical, but has a philosophical issue driving it.
    Summary:
    In Livecycle Designer ES2 (9), I would like to setup a form for digital signature that, once enabled for Reader, you can apply a digital signature without having to immediately save.  I know it can be done.  Example:  http://www.opm.gov/forms/pdf_fill/opm71.pdf
    Technical:
    How is this done?  Is it a setting of the signature field object?
    Philosophical Underpinings:
    1. I don't need the digital signature to be legally defensible, so I don't care if if the document changes after applying the signature, nor will any of the fields be locked down after signing.  However, the digital signature everyone at my company uses is the legally defensible type, so using it instead of digital ink is for simplcity's sake.
    2. When most people sign a paper document, they usually sign, and THEN date.  The problem with Adobe et al.'s implementation of digital signatures is that you have to date, and THEN sign, or else the date field will usually be locked down after you are forced to save the document after signing.  I know that a date field is not required when using digital signatures, but you need to date field in case someone decides to print the form and sign the old fashioned way.
    3. Because of this conundrum, I made the date field auto-populate with the signing date by applying javascript to the signature field that populates the date field upon signing.  The problem with that is that with Adobe forcing me to save the document immediately after signing, the date field does not populate because the signature applies to the version of the document that existed just prior to the signature being applied.  Since the date field wants to populate after signing, it is discarded.
    Hence, I want to prevent Reader from forcing me to immediately save.  I am approaching this philosophical conundrum all wrong?
    Signed,
    Befuddled

    "you can apply a digital signature without having to immediately save.  I know it can be done."
    Whenever a signature is applied, the form gets saved. So, you can't apply a signature without having saved the form. Do some modifications in the form you have provided, save it and validate the signature. Validation would suggest that changes have been done in the form, so signature is invalidated at this stage. This effectively means that data has been changed in the form after signing making it unreliable so to say.
    Since you are moving to digital signing in the form, I do not understand exactly why there's a need to manually enter the date after signing the form digitally. Once you sign the form, date automatically comes in the signature. This solves the purpose/use case that user needs to fill in the date. Ideally, you need to remove the date field from the form.
    "I know that a date field is not required when using digital signatures, but you need to date field in case someone decides to print the form and sign the old fashioned way."
    If you can't remove the date field from the form and want to have a simialr experience in digital world, the option is to write a simple script in the form which checks whether the date is filled in or not. If it's not filled in, abort the signing process and provide a message asking user to fill in the date.

  • How do modems interact with efax and ccl scripts to receive calls in 10.5?

    I want to do two things:
    1) alter the modem init string used for faxing and receiving calls, and
    2) alter the RING string to detect and respond to other modem responses during the answer process
    The machine in question is a PowerBook G4 with an Apple Internal Modem (V.92) running Leopard 10.5.1.
    In searching, it seems that Leoard is using efax as its base fax app. I have located the efax plist in the LaunchDaemons folder. It sends the 'answer' command via the 'fax' app to the 'efax' app. This command is an argument key in the plist.
    Now, how do I change the modem init string that is used for the purpose of faxing? Also, how do the modem CCL files interact with this whole process - or do they?
    Thanks in advance for any help you can offer. I'm either just googling for the wrong things or there aren't many people looking for this information? Most likely the former...

    Well, I'm starting to feel like I've got a little blog going on here, since I'm only answering myself - but for anyone else who may someday seek this information, here is a little more:
    In Leopard, when you set up the fax in System Preferences/Printers and Fax, it enables an efax plist used by an application called 'launchd'. When your computer boots up, if that plist is indicated as enabled (using a key within the plist), launchd starts up the 'fax' script with parameters matching what is entered in the fax setup in System Preferences. This script starts up the 'efax' application, which runs continuously in the background, waiting for a call to come in.
    The plists involved are:
    Library\Preferences\com.apple.print.FaxPrefs.plist -- which contains the actual fax preferences, like phone number and number of rings for example, that are ultimately provided to efax.
    System\Library\LaunchDaemons\com.apple.efax.plist -- which is the one used by launchd to start the fax script, and which contains the arguments and path to that script.
    efax does not use the CCL scripts; instead, those seem to be used by the Internet Connection modem selection, as I mentioned previously.
    efax runs in the background constantly. If it were to crash for some reason, launchd would automatically start it up again - unless the fax functionality is turned off in System Preferences, in which case the efax application would be 'turned off', and would no longer run in the background.
    There is a 'lock' feature in efax, which is supposed to temporarily suspend efax while other apps use the modem. So, my next question is whether I can somehow leave the Internet Connect functionality running, exiting when I get the result I want, which would then allow efax to come on up and answer the phone.
    Alright, I'm going to admit it - I'm trying to find a way to make Distinctive Ring work with efax. The PowerBook G4 internal modem can sense Distinctive Ring with a +VDR=n,n value added to the initialization string. Once this is added to the init string, the modem will return the amount of time the ringer is on or off, with values like DRON=8 and DROF=40, as well as the normal RING. Using a CCL script, I can look for those values coming in from the modem instead of the usual RING value. (As far as I can tell, I cannot do this with efax directly without changing the actual source code. The RING value it looks for is hard-coded.) So, the question becomes how to transfer control from the Internet Connect to efax, and can I do so soon enough for it to be able to answer the phone before my AT&T CallNotes does?
    More to come (if someone else doesn't answer my question before I do

  • Question regarding JSTL and function calls

    Hello
    I'm quite new to JSTL and I'm having a problem accessing a function when I want to pass argument to that function.
    Im using MVC where my M (model.jsp) can be accest from my V (view.jsp) by doing ${model.(parameter/some function) }
    in my M I have a couple of getMethods() (example: getThisInfo() ) and som control methods like "isSomethingValid(arg1)"
    my question is lets say I want to access my "isSomethingValid(arg1)" and arg1 should be the value of "getThisInfo()" I thought I could do like
    ${model.somethingValid($model.thisInfo)} but it isnt working I get:
    "Unable to parse EL function ${model.somethingValid(model.thisInfo)}"
    I know that the syntax above is a mix of scriptlet and JSTL but I dont know how to or if its even possible to achieve this?
    Thanks for helping me!
    Best Regards/DS

    By default, EL can only access getters and setters on objects.
    It can not execute general methods on an object.
    You can define function libraries that call static methods
    You have to write the method as static, and then declare it in a tld.
    public boolean checkValid(Model m, Info i){ ...}
    and then you could invoke it something like
    <%@ taglib uri="myfunctionstaglib" prefix="myfunctions" %>
    ${myfunctions:checkValid(model, model.thisInfo)}

  • How can I change the security questions on my account without calling Apple support?

    Important to note that when I try to change it on the Password and Security page on My Apple ID, it keeps asking me to answer my security questions, which I can't remember the exact answer to.
    I've also tried changing my Apple ID password, but then it still asks me to answer the questions before I change them.
    Please help, I don't want to waste money by calling Apple Support on the other side of the world

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (101987)

  • IFrame fatal script error when calling application

    Dear All ,
    I'm facing a problem on a web dynpro abap on a PI 7.11 application server.
    I have a view wich contain a iFrame with the property field "source" binded with a context element that contain a url.
    In the url I'm trying to call an application that show the audit log (is the standard PI audit log).
    The aplication dump and give me this error:
    "The following error text was processed in system : WebDynpro Exception: URL may contain fatal script
    The error occurred on the application server and in the work process .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: RAISE of program CX_WD_GENERAL=================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C0STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP"
    I know that the iFrame is deprecated, but I have another server with the PI 7.0 with the same web dynpro and it is working fine.
    Do you have any suggestion??
    Thanks in advance!
    Dario Fracassetti.

    I Have tried to debug into the method is_valid_url but it calls a System command:
    SYSTEM-CALL ict    "#EC CI_SYSTEMCALL
            did
              ihttp_scid_check_uri
            PARAMETERS
              url                                " >
              l_url                              " <
              c_last_error                       " < return code
              OPTIONS.                           " >
    I don't know if that call is debuggable. In version 7.00 the call was this:
        SYSTEM-CALL ICT
          DID
            ihttp_scid_check_uri
          PARAMETERS
            url                                " >
            l_url                              " <
            c_last_error.                      " < return code
    and was working fine.
    I tried to debug the method cl_http_utility->CHECK_HTTP_WHITELIST, but unfortunately in my case this method is not called.
    Regards,
    Dario

Maybe you are looking for

  • Syntax error in Start Routine routine 9998 in transformation

    Hi Guyz, I am getting the below error while doinf the syntax check in start routine in one of the transformation in BW production after the failed TR movement E:In PERFORM or CALL FUNCTION "ROUTINE_9998", the actual parameter "SOURCE_PACKAGE" is inco

  • In DB-13 Initialize tape error

    Hi while initialize tape in db-13, it gave error like ob started tep 001 started (program RSDBAJOB, variant &0000000000119, user ID BASIS) xecute logical command BRBACKUP On host CRMDEV arameters: -u / -i force -c force -n 1 -v SCRATCH R051I BRBACKUP

  • Can't view tickets in Help Desk

    What to do? Got error: 'View not found' This topic first appeared in the Spiceworks Community

  • How do i get i tunes support if i use it on windows? i cant seem to get help anywhere and i want my moneyn back!!!

    i have purchased a movie on itunes and keep getting an error - 41120 - and so i looked it up, found a link on deleting the sc folder and when i find thsi page on itunes there is nothing there. its as if its been deleted!! so i try to contact but it k

  • GRC AC 5.3 J2EE Box frequently restarting

    Hello, Our J2EE Engine box is automatically restarting again and again. Whenever I execute  any GRC AC 5.3 background jobs, the J2EE Engine box gets restarted. I frequently get the message as follows. 03 Service Unavailable SAP WebAS Engine is starti