What is the procedure to change the owner of the BW jobs.

Hi Gurus,
Version- BW 3.5
I need to change few jobs Owners which are collected from the SM37 from a individual User to generic account(ALEREMOTE).
Will any body help me out with the procedure to change the owner of the BW jobs.
Thnaks in advanace..
With Regards,
MBS

in SM37, take all release jobs by giving JOb name as "" and user as "".
When you get the release job details then follow the steps.
1. Select theJob --> Menu Bar --> JOB --> Change --> here you will get the details of the job and Clieck on STEP just above the job name.
In the next screen select the job and click on Change ICON.  here you can see the user name in change mode and you can update the user to ALEREMOTE. And then save the job.
Once done then the job will be on the new user.
Hope this helps..

Similar Messages

  • Passing a Parameter to the Procedure and changing it in the Procedure

    Hi all,
    I am trying to pass a parameter to a procedure like this.
    PROCEDURE FLASH_PHY
    (date_begin IN DATE, date_end IN DATE)
    IS
    I am trying to do SELECT and INSERT based on the date range passed in the procedure as mentioned above. And I am trying to do something like this.
    SELECT NVL(sum(charges),0),count(summary_balances_id)
    INTO lnu_charges_6months,c_summary
    FROM SUMMARY_BALANCES
    WHERE period_begin BETWEEN ADD_MONTHS((date_begin), -6) -- AND ADD_MONTHS((date_end), -1);
    UPDATE summary_balances
    SET cummulative_charges_6mo = lnu_charges_6months;
    how should I do this parameter change. Right now if I use this select statement than it does not return anything as the parameter is passed on the procedure level. I am under the impression that when you pass a parameter to the procedure like this you can't change it into the procedure.
    PLEASE GUIDE. Thanks a bunch. I really appreciate it.

    From what I understand your variables that are passed into the
    procedure can be manipulated as local variable to the procedure.
    Here is my interpretation of what your attempting to do:
    create or replace procedure A (x in number) IS
    yes varchar2(3) := 'No';
    begin
    dbms_output.put_line('Start value for yes:'||yes);
    select 'yes' into yes from dual where x+1 = 2;
    dbms_output.put_line('End value for yes:'||yes);
    end;
    Call the procedure called "A" passing in a "1".
    EG:
    BEGIN
    A(1);
    END;
    Does this answer your question?
    ,Russ

  • What are the procedure to be followed while restart the exchange server..?

    Dear All,
    Pls provide the procedure to be followed while restarting the exchange server. i.e. what is the sequence for restarting and starting the exchange server.
    Regards
    R Nantha Ram

    As suggested above no such procedure to be followed unless it is a DAG.
    If you are running exchange and DC in one OS. Stop exchange services first then restart server. (commands below to stop exchange related services)
    net stop msexchangeadtopology /y
    net stop msexchangefba /y
    net stop msftesql-exchange /y
    net stop msexchangeis /y
    net stop msexchangesa /y
    net stop iisadmin /y
    net stop w3svc /y
    This is bcz DC stops quicker than Exchange, therefore Exchange is unable to write to the domain controller and has to be be "killed" by the operating system.
    This continual "killing" of the Exchange services, instead of allowing them to shutdown gracefully is not good for the database and is one of the prime reasons for recommending that Exchange is not installed on a domain controller.
    A better option is to stop the services before you begin to shutdown the server. This will also cause the server to shutdown more quickly because it isn't waiting for the services to timeout. This can significantly decrease the shutdown/reboot time of Server.
    MAS

  • What is the procedure/code in VBA for passing the calc scripts dynamically based on the selection.

    Hello Gurus,
    I want to know what is the procedure/code in VBA for passing the calc scripts dynamically based on the selection.
    For example:
    X=EssVCalculate("Sheetname","Calc_Script name",True)
    In the above code instead of the *"Calc_Script name"* I want a script which is called dynamically and the values are calculated accordingly.
    Thanks in advance
    Saurabh

    Hi Todd,
    This is the situation:
    I have a calc script in Essbase which I can call to perform the calculations on the current sheet that is retrieved. I want calculation for the following formulas:
    x = EssVCalculate("Sheet2", "CalcBC", False)
    CalcBC is my calc script which is present in Essbase
    So instead of passing the above script I want to pass the conditions dynamically in the VBA code . I don't want to mention the script name directly in EssVCalculate option
    For example:
    I have three drop down menus from which I would select three different( zero level )members. It would then retrieve the data for that particular values in the excel sheet and now when I click on Calculate button it should calculate the script dynamically.
    I don't know how calc scripts can be executed dynamically in the VBA code itself.
    Thanks in Advance
    Saurabh

  • I want the title on the browser to change when one of the frames changes in the Frameset.

    I am using frames (please don't tell me off!) and PHP.
    I want the title on the browser to change when one of the
    frames changes in the Frameset.
    Normally the title of the browser comes from the Frameset,
    But I am sure I have seen websites where the title changes
    depending on one of the frames... how is this done?
    C

    Then don't use frames.
    > Normally the title of the browser comes from the
    Frameset, But I am sure I
    > have seen websites where the title changes depending on
    one of the
    > frames...
    > how is this done?
    Show us one and we'll tell you.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "colinwalton" <[email protected]> wrote in
    message
    news:epuu1t$kgv$[email protected]..
    >I am using frames (please don't tell me off!) and PHP.
    >
    > I want the title on the browser to change when one of
    the frames changes
    > in
    > the Frameset.
    >
    > Normally the title of the browser comes from the
    Frameset, But I am sure I
    > have seen websites where the title changes depending on
    one of the
    > frames...
    > how is this done?
    >
    > C
    >

  • 1. The procedure called by CUSTOM.pll causes the problem when we use f60gen

    When CUSTOM.pll contains a call to a package that in turn calls a remote package, the CUSTOM.pll compile hangs forever.
    1. The procedure called by CUSTOM.pll causes the problem when we use f60gen. Though same procedure compiles successfully using "alter procedure compile" command.
    2. We have observed the problem happens due to synonym present on the remote database(db link).
    It doesn’t work if you are calling SYNONYM on remote database. It works, for calls to tables or procedures or packages in remote database if that object is OWNED DIRECTLY by the account to which dblink is connecting to.
    select object_name, object_type from user_objects@NH_SCM_ICE.DB.ATT.COM ;
    OBJECT_NAME OBJECT_TYPE
    FA_LOCATIONS SYNONYM
    FND_FLEX_VALUES SYNONYM

    The database link is created under the APPS user in the local database but connects to a different user (SWCS_ICE_SUPCHAIN) in the remote database.
    The user in the remote database does not own any objects. It only has synonyms to objects owned by apps and others.
    Incidentally, the hang also happens when trying to describe the remote package from the application tier (8.0.6.3 sqlplus) but the describe works fine from the DB tier (10gR2 sqlplus).

  • HT203200 I need help on purchasing a game I forgot my security question answers. and it's been awhile since I downloaded anything.. how do I find out the answers or change them without knowing the old answers??

    I need help on purchasing a game I forgot my security question answers. and it's been awhile since I downloaded anything.. how do I find out the answers or change them without knowing the old answers??

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • What is the procedure to change the hostname and IP address of iAS?

    Dear all,
    I would like to change hostname and ip address of iAS, is it just only
    change the kregedit or i need to change some config file?
    Thank you for your help!
    Angus

    Hi,
    i am not sure what do you mean by changing ip address and machine name.
    Is the IP address and machine name of the installation machine changed?
    Then you can change the ip address and machine name from kregedit. If
    you want to run it from some other machine, you wont be able to do it.
    regds
    parsuram panigrahi
    Angus Yiu wrote:
    >
    Dear all,
    I would like to change hostname and ip address of iAS, is it just only
    change the kregedit or i need to change some config file?
    Thank you for your help!
    Angus

  • Change unix owner for the database and the binaries

    Hello,
    Do you guys know of any documents, from Metalink or other sources that
    would lay out all the steps needed to take one database from one set of
    binaries owned by a unix user to another set of binaries owned by
    another unix user? The new unix user will also own the database files as
    well.
    Thank you all very much,

    You may change all oracle owned files recursively, but you should be aware of the files that belong to the root user, those have SUID's enabled, and if you change the owner, networking functions won't work, among other features.
    Are you planning to change the group too? or just the owner?
    ~ Madrid

  • The procedure to change kernel of system with database of one MT and dia. i

    Hello
    I wander what is procedure to change kernel of system with database instance of one machine type(i.e. HP-UX) and dialog instance of other MT type (i.e. Linux).
    I usually change kernel on path /usr/sap/<SID>/SYS/exe/run
    But in this case there will be two kernels(where I should copy them

    Hi,
    As I understand, Your CI/DB on Hp-UX and dialog instance on Linux.. For kernel upgrade check below link:
    SAP Kernel update on different Operating System
    Thanks
    Sunny

  • I need to interface SCC-TC02 with help of SC 2345 and PCI-6024E DAQ Card.please tell me the procedure and if possible send me the program

    Dear Friends,
               I need to interface SCC-TC02 with help of SC 2345 and PCI-6024E DAQ Card.But i can not understand example program.please send me the procedure to interface these three componnets and if possible send me the program.
    With Regards,
    Eswaramoorthy K V

    nce of nth triggering pulse. i need to know when the when the ist trigger occurs and when the nth trigger occurs . please tell me how to to . what i know is that event triggering has to be done with start and stop trigger. please tell me how it has to doneSuresh;
    What you will need to do is to set up a digital start and stop triggered Analog Input acquisition. Then you will need to have a counter set as event counter, having the specific number of pulses you need configured as the preset value, configured to count down, and generating a pulse after the terminal count has been reached. That counter output will be the stop trigger of the Analog Input operation. In summary, you will have the external pulse being both the digital trigger of the Analog Input operation and the source pin of the counter, and the counter output being the digital stop signal for the analog input.
    I'm attaching a Labview VI that does the start and stop analog input acquisition. You will need to include the counter part and set the stop s
    ignal to be the counter output.
    Hope this helps.
    Filipe
    Attachments:
    AI_Start-Stop_D-Trig.zip ‏25 KB

  • Why are the video player change size when resizing the window a little?

    When I use the video player to show mp4 files, the "player window" changes size if I change the firefox window. Why and how do I do to get the correct size direct (640x480)

    Hi john3,
    This can be the resolution of the screen or the site detecting screensize, do you have a url we can take a look at to determine what's going on?
    Thank you!

  • HT1296 How do I get calendar entries made in iPad to sync and update on the computer?  Changes I make on the computer sync properly on the iPad, but not visa versa.

    Hi iPad users - I seem to have this problem with both the iPhone and iPad.  I can make entries onto my computers calendar and they will sync properly on either the iPad or iPhone, but when I enter new information on the iPad or iPhone, which is usually the case, syncing does not result in transfer of updated information from my devices calendar to the computer's calendar.  What am I missing here?  Thanks!

    Same problem as TrailJim, but 4 related problems...
    Synced data did NOT xfer to Mac from iPhone (did xfer the other way). I rechecked settings and synced again. Still none of the info from iPhone went to computer.
    But now I have FOUR COPIES of some calendar items, three copies of some and two copies of others in the iPhone. There are hundreds, possibly thousands of duplicates going back several years and reaching into the future. Many of these dupes were not on the Mac at all- the system duplicated items that were only on the iPhone.
    It takes 15 seconds to delete each duplicate item (five 'clicks', two scrolls)- there is no bulk delete option. Duplicates will  take  hours to remove. It was only 3 months ago I finished cleaning out the duplicates from the last sync. OK, I cleaned cleaned out 1 year of data in about 1.4 hours. I noticed that data deleted long ago re-appeared after the sync. The iOS calendar crashed twice and the entire iPhone crashed once during editing.
    And still it won't xfer calendar items from iPhone to Mac. So these are the 5 problems:
    data won't transfer from iPhone to Mac
    massive duplication of data during sync
    no way to quickly remove duplicates
    deleted data never goes away
    iOS device crashes during massive editing
    After 4 years Apple still can't get sync right. Are there any workarounds? A paper calendar would save hours of work every year. A Google calendar would probably work more reliably if you don't mind sharing your personal data with them. Not to mention all the other data- contacts, music, etc that people have lost with this sync system.
    tia
    Tom
    iPhone 3GS, iMac & MBP OS 10.6.8, iTunes 10, sync via USB

  • Analog output to the DAQ that changes when controls on the front panel change

    I'm using the PCI-6024E, and trying to output an analog waveform that can change when one of the two controls on the front panel change. It outputs fine setting it to continuous output and using a simple while loop around the "Is Task Done" VI, but if I put the "Write" VI in the while loop, it doesn't output steadily. I then tried to use an event structure, so that I'd only have to write every time something on the front panel changes, but for some reason it was writing finite samples, even though I set the Timing VI to continuous. I looked around the NI site, and found an article about this with an example. I tried to change it around to use my waveform, but whenever I run it, I get a memory underflow error. Has anyone needed to do this before? Thanks in advance.
    -- Josh Matloff

    Hi Josh-
    It looks like you forgot to post the code still, but I'll take a stab at the problem anyway. It sounds like you're looking for a way to update a continuous waveform at runtime.
    You will need to stop the task in order to replace the write buffer information, but this will only be a small gap in operation. I have attached a modified LabVIEW shipping example that shows how to use value change events for any of the pertinent waveform parameters to either programmatically stop the task, replace the buffer, set timing and restart or to just pass the task information straight through. This will lead to continuous operation with no breaks at the output.
    Please let us know if this clears up your questions.
    Thanks-
    Tom W
    National Instruments
    Attachments:
    Cont Gen Voltage Wfm-Int Clk with Runtime Update.vi ‏134 KB

  • What is the procedure for filing a complaint with the FCC regarding no voice service for over 6 days

    Is the FCC the correct goverment agency to file  a complaint when a problem woth voice  service cannot be repaired for 5 days.
    How do I go about filing a complaint.

    Google the words "FCC file complaint"

Maybe you are looking for