Ability to maintain multiple simultaneous program versions

We have a client that will be implementing the FS-CD module over the coming year. The time line for the project is aggressive and currently has multiple independent test events occurring at the same time and overlapping with each other.
I am interested in finding out if SAP has the functionality or if there is a third party tool on the market that would allow an SAP system to have multiple versions of the same program or object out on the system. For example, program ZABC was built for stage 1 testing. While stage 1 user testing continues, program ZABC is modified for stage 2 testing. A bug is found in stage 1 testing necessitating a change in stage 1 that should not be applied to stage 2 until verified. Is there a tool or functionality that would facilitate this sort of object handling?
Thanks,
DZ

Hi,
As per your reply Prelude CC v2.x we need panels located here for Windows:
Windows:
C:\Program Files (x86)\Common Files\Adobe\CEPServiceManager4\extensions
that's right.. but, I want konw the Prelude CC v3.x panel location.
Do you have any idea about it?
Thanks
Chirag.

Similar Messages

  • Can multiple LabVIEW programs simultaneously access the same NI-DAQmx hardware?

    I am developing a test station system that, in essence, runs several
    seperate LabVIEW programs simultaneously on the same computer, each
    controlling a different set of I/O channels on one shared set of NI
    DAQ hardware (analog and digital I/O PCI boards with external signal
    conditioning).
    I have already gotten a system like this running almost flawlessly
    using LabVIEW 6.1, NI-DAQmx 7.1 with traditional channels, and older
    E-series DAQ hardware. So long as two programs do not try to write to
    the same output channel simultaneously, everything works exactly as
    expected--I can even read from the same (named) channel simultaneously
    from more than one program. The only issue I have had is that if
    one
    of the compiled applications is closed (not just stopped, but closed)
    while others are still running, Windows XP (SP1) will bluescreen on a
    driver error. This is undesireable, but acceptable (though if there's
    a fix/workaround, I'd love to hear it).
    I am now building a similar system using mostly the same software
    (with an upgrade to LabVIEW 7.1), and I've noticed that the new
    M-series DAQ hardware seems to offer much more bang for the buck than
    old E-series hardware and its kin.
    My question is this: It appears that I/O on M-series hardware must be
    performed with new mx channels, with traditional channels not being an
    option. I am therefore wondering if I will be able to do this kind of
    multiple simultaneous access with mx channels, or if I must purchase
    the classic hardware and use traditional channels for this somewhat
    unorthodox application.
    (Incidentally, the multiple simultaneous program thing is a
    requirement for this system, as it is the only clean way to run
    multiple
    identical copies of the same complete program that only
    operate on different I/O channels, and re-doing the program from
    scratch is not an option.)

    Dear Anonymous,
    Thank you for contacting National Instruments.
    To address your question, I don't know if multiple simultaneous access with mx channels is possible, but I do not see why it wouldn't be. The best way to find out would be to test it. I don't have your program or hardware, so I'm pointing you to some Compatibility VIs. These are VIs that look exactly like Traditional DAQ VIs except that underneath they call the DAQmx driver instead of the Traditional DAQ driver. If your device works when you substitute these Compatibility VIs in for the Traditional DAQ VIs, then you'll know the M Series boards will work for you.
    Here is the link for information about the Compatibility VIs:
    http://digital.ni.com/softlib.nsf/954feaeea92d90918625674b00658b
    83/9d67f671bcc6850586256e630059308b?OpenDocument
    Let me know if you have any further questions or if this does not resolve your issue.
    Thanks again and have a great day!
    Chad AE
    Applications Engineer - National Instruments

  • Is it possible to maintain multiple payment formats with a single Program

    Hi,
    Is it possible to maintain multiple payment formats with in a single program.
    For example let us assume that we have created 2 payments formats as 'XX-PAY1' & 'XX-PAY2'.
    When i select the parameter as '1' then 'XX-PAY1' has to run else 'XX-PAY2'.
    if its possible could you please tel us where to define the parameters in Setups.
    Many thanks,
    Zaheer S

    nazzu wrote:
    Hi,
    Is it possible to maintain multiple payment formats with in a single program.
    For example let us assume that we have created 2 payments formats as 'XX-PAY1' & 'XX-PAY2'.
    When i select the parameter as '1' then 'XX-PAY1' has to run else 'XX-PAY2'.
    if its possible could you please tel us where to define the parameters in Setups.
    Many thanks,
    Zaheer SSounds like an Apps question. Start here: https://forums.oracle.com/forums/category.jspa?categoryID=3

  • Powershell program to upload multiple files with version control at the file level

    I have a network folder which contains multiple files refreshed daily.I then run a power
    shell scrip which uploads all the files . I have scheduled it to run once
    daily. I have version control at the directory level , is there a way to upload all the files daily and maintain the last X versions for each file , rite now it does it at a folder level . I want it at a file level
    powershell script
    if((Get-PSSnapin "Microsoft.SharePoint.PowerShell") -eq $null)
    Add-PSSnapin Microsoft.SharePoint.PowerShell
    #Script settings
    $webUrl = "http://sharepoint.contoso.com/Corporate/Sales/"
    $docLibraryName = "Shared Documents"
    $docLibraryUrlName = "Shared Documents\arizona" # specify your subfolder url here
    $localFolderPath = "C:\Test"
    #Open web and library
    $web = Get-SPWeb $webUrl
    write-host $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    write-host $docLibrary
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    write-host $files
    ForEach($file in $files)
    if($file.Name.Contains(".pdf"))
    write-host $file
    #Open file
    try
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    #Add file
    $folder = $web.getfolder($docLibraryUrlName)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name,[System.IO.Stream]$fileStream, $true)
    write-host "Success"
    #Close file stream
    $fileStream.Close();
    catch
    Write "Error: $file.name: $_" >>c:\logfile.txt
    continue;
    #Dispose web
    $web.Dispose()

    Check if this helps you
    http://blogs.technet.com/b/heyscriptingguy/archive/2013/04/28/weekend-scripter-use-powershell-to-upload-a-sharepoint-file-version.aspx
    # Add the Snapin
    Add-PSSnapin Microsoft.SharePoint.PowerShell
    # Retrieve specific Site
    $spWeb = Get-SPWeb http://SP01
    # Create instance of Folder
    $spFolder = $spWeb.GetFolder("Shared Documents")
    # Get the file on Disk that we want to upload
    $file = Get-Item C:\Documents\MyDoc.docx
    # upload the file.
    $spFolder.Files.Add("Shared Documents/MyDoc.docx",$file.OpenRead(),$false)
    $newVersion = $spFolder.Files.Add($spFile.Name, $file.OpenRead(), $spFile.Author, $spFile.ModifiedBy, $spFile.TimeCreated, (Get-Date))
    If this helped you resolve your issue, please mark it Answered

  • Jumpstart/JET - How to maintain multiple versions of patch clusters

    Is there a way to maintain multiple versions of the recommended patch cluster with JET? Since Sun uses the same filename (10_recommended.zip) but releases several versions over time, its hard to keep new systems at the same baselines as ones built previously. So when I download a patch bundle I always rename it to the date downloaded (ie 10_Recommened_10SEPT2010.zip) Is there a way to integrate this into JET?
    Thx,

    when you are talking about versioing , starting form XI 3.1 SAP business objects released the BusinessObjects LifeCycle Manager for XI 3.1
    find more details here
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi31_LCM_User_en.pdf
    good luck
    Amr

  • Is it possible to maintain multiple pymt  frmts with in a single prgm 11i

    Hi,
    Is it possible to maintain multiple payment formats with in a single program in 11i
    For example let us assume that we have created 2 payments formats as 'XX-PAY1' & 'XX-PAY2'.
    When i select the parameter as '1' then 'XX-PAY1' has to run else 'XX-PAY2'.
    if its possible could you please tel us where to define the parameters in Setups.
    Many thanks,
    Zaheer S

    nazzu wrote:
    Hi,
    Is it possible to maintain multiple payment formats with in a single program.
    For example let us assume that we have created 2 payments formats as 'XX-PAY1' & 'XX-PAY2'.
    When i select the parameter as '1' then 'XX-PAY1' has to run else 'XX-PAY2'.
    if its possible could you please tel us where to define the parameters in Setups.
    Many thanks,
    Zaheer SSounds like an Apps question. Start here: https://forums.oracle.com/forums/category.jspa?categoryID=3

  • Maintaining Multiple Vendor Phone Fax and Email using IDOC

    Hello Guru's,
    I have a requirement where I must be able to maintain multiple phone and fax entries for all of our vendors.  Is there a standard segment in IDOC CREMAS05 that will allow for this maintenance?  Or will I have to use a separate BAPI / FM?  I think there must be a standard way for doing this.
    As of now it appears the CREMAS05 IDOC only supports the ability to maintain one phone/fax or email address at a time, which is in the LFA1 table, and not at the address table level (ADR2, ADRC, ADRT, etc.).
    This is for an R/3 System running on EHP5.
    Thanks,
    Kohl Kemp
    Edited by: Kohl Kemp on Jul 14, 2011 3:16 PM

    I've never done this natively in CUC.  Here's a guide that covers how to do it with the Fax server integration if that helps:
    http://docwiki.cisco.com/wiki/Configuring_Fax_Detection_%28Single-Number_Voice_and_Fax%29_with_Cisco_Unity_Connection

  • Please add the ability to add multiple folders to the assets folder in order to better organize large numbers of files.

    Please add the ability to add multiple folders to the assets folder in order to better organize large numbers of files.

    Hello KDLadage
    Thank you for your recommendation. I understand the challenges of managing large numbers of files on the My Files page. I also understand the need to preserve project files.
    Perhaps a compromise would be to create an Archive tab under My Files. Previous versions and retired project files could then be automatically moved into this holding area when a new version is published, thus preserving the files in a separate area that is still accessible to the author.
    I will submit this suggestion to our product management team to consider as a future enhancement.

  • Maintain multiple address for vendor

    User purchase article from vendor A at addess#1 but returned article back to vendor A via address#2. Vendor has 2 different departments handling delivery and returns.
    How can I configure 2 adddress for the same vendor code?
    If I had to used a partner function, what suggested partner function should I used?
    My PO order entry currently only accept vendor code.
    Suppose I need to add in a partner, like sold-to and ship-to in SD, is there a way to configure the screen?
    Where do I do it.
    Thanks
    bye

    Hi Colin,
    What is the bussiness reason for multiple addresses for the same vendor?
    If the vendor maintains several different physical locations at different addresses, then they should be created as different vendor master records. Then, if they all use the same payment office, they can be partnered to the same invoicing vendor.
    If you need to add a seperate address for the supplier location, payment location, billing location, etc, then you must create each of them using the correct account group and use partnering to tie them all together.
    Also, there is a way to maintain multiple addresses for the same vendor - but this is used for maintaining different international versions of the same address. (See the international button) - which requires some configuration in central address management.
    Or,
    Go for one-time-vendor concept else it is not possible .
    Also,
    Partner function can be used to maintain different address.
    This is the advantage of keeping the partner function in vendor account groups.
    You create different vendor codes for different addresses and assign the same.
    Regards,
    Rahul.

  • Can we run multiple sapinst programs in parallel?

    We are planning to upgrade our EP, XI and BW simultaneously. These SIDs all reside on the same server and same OS. Is it possible to run multiple sapinst programs in parallel? I know it may require specifying separate ports for the 2nd and 3rd instance of sapinst. For example: sapinst 1 gets default ports 21212, 21213. sapinst 2 will take 21214, 21215 and sapinst 3 takes 21216 and 21217.
    Has anyone attempted this sort of a thing before? Appreciate your thoughts.

    Never done that before, maybe it works .. however it could run into problems when the sapinst are trying to access the same paths / files.
    Regards,
    Siddhesh

  • Message Include * is used in multiple main programs (210)

    Hi,
    I get the message:
    Select a main program in Properties View on tab "Source"
    Include /SAPDMC/SAP_LSMW_READ_FORMS is used in multiple main programs (210).
    when I want to modify an include in LSMW.
    The effect is for example that I cannot open the declaration of a data element.
    Is there something I can do?
    Best regards
    Volker

    Hi Michael,
    I have updated ADT to newest version (com.sap.adt.core is now 2.31.5).
    When I type something in that Include or save it, the error message is now displayed in status bar (which is of course much better, and I can at least edit the file):
    However, when I try to activate this Include, same popup comes as earlier with this error message. It is still not possible to edit the main program in properties.
    What I also found out:
    If I create new include, let's name it Z_INCL1, and use it in one program - Z_PROG1, include Z_INCL1 will have as main program Z_PROG1 and everything works fine. (of course).
    When I create Z_PROG2 which is including Z_INCL1, main program of Z_INCL1 will be Z_INCL1 and I can no longer compile Z_INCL1. (So far there was nothing new).
    Now when I remove Include statement from Z_PROG2, main program of Z_INCL1 will still be Z_INCL1 and I still cannot compile Z_INCL1 with the same error message even thougt it is now only included in 1 program again. I have to remove include statement also from Z_PROG1 and than I am able to compile Z_INCL1 again.
    Have a nice day!
    O.

  • Export multiple resolutions/formats/versions in single export preset

    I would like to be able export multiple resolutions of a project at the same time into separate folders. I can kind of do this now by having multiple export presets and running each of them right after the other and then letting them export simultaneously. Even though the export preset has a folder name specified, I have to manually type in the unique project name into each export preset. Unfortunately  this becomes a little bit cumbersome as I often use 3 or 4 export presets for each project, and I may be exporting multiple projects at the same time. Obviously it makes sense to just type the unique text once (or have it automatically read from metadata) to avoid typos and make it easier on me.
    I think there are two parts to make this work. The first is using metadata to name the folder name (to ensure unique foldernames), and the second is to allow "export preset groups" that export multiple presets together.
    Here is my scenario:
    I have three export presets:
    600px saves to subfolder "project 600px for web"
    2400px saves to subfolder "project 2400px for print"
    600px watermark saves to subfolder "project 600px watermark"
    So I have to type the real project name, replacing "project" three times for each project. This information could be easily entered automatically because lightroom already has that metadata in the folder name, or collection name.
    This could be entered for the folder name in the same way custom file naming is done with the Filename Template Editor.
    Another option would be use the Custom Text field in the Filename Template Editor to manually enter the project name if it's not already in some metadata field.
    All of this already works great with the file name options, it just needs to be applied to the folder name as well.
    Once the folder naming is taken care of, just group multiple presets into a preset group, or allow to select multiple presets at once, and exporting multiple resolutions/formats/versions of a group of images is made easy.

    Thanks Rob
    Your export plugin does allow running multiple export presets in a single group, however it still doesn't address the folder naming issue. Using your tool, I can easily initiate my multiple presets in a single export, however I am stuck using the generic foldername that I specified in my original export preset. This means that after the export completes, I still have to rename the folders to the particular project name. I would save the time of typing the project name into lightroom, but then just have to repeat that same task later outside of lightroom. It also prevents me from exporting two projects at the same time (or one after the other) because both projects would end up in the same generically named folders.
    That said it is a useful plugin that I will likely use under the specific scenarios where it does work.

  • Autostarting multiple terminal programs?

    Hi there,
    Is there any way I can start multiple terminal programs using Awesome WM?
    I'd like to start htop, alsamixer, cmatrix, irssi, moc and xfce-4 terminal. So essentially I'd like to start six alternate versions of xfce4-terminal on startup.

    Hi everyone.
    I now have multiple terminal programs running using urxvt -name, which works great. However, I can't get them to shift to different tags. I've tried quite a few different methods, but I can't seem to get it working.
    Using xprop I can determine that the window class is (using ranger as an example) is:
    WM_COMMAND(STRING) = { "urxvt", "-name", "RANGER", "-e", "ranger" }
    but in the rules section, I've tried multiple variations and nothing seems to work.
    --Autostart Programs
    awful.util.spawn_with_shell("urxvt -name HTOP -e htop")
    awful.util.spawn_with_shell("urxvt -name RANGER -e ranger")
    awful.util.spawn_with_shell("urxvt -name CMATRIX -e cmatrix")
    --awful.util.spawn_with_shell("urxvt")
    --awful.util.spawn_with_shell("")
    -- {{{ Rules
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "HTOP" },
    properties = { tag = tags[1][4] } },
    { rule = { class = "urxvt -name RANGER -e ranger" },
    properties = { tag = tags[1][4] } },
    { rule = { class = "urxvt", "-name", "CMATRIX", "-e", "cmatrix" },
    properties = { tag = tags[1][4] } },
    Also, Trilby with Awesome WM tag essentially refers to a virtual desktop. With regards to the 2-D array, I believe the first digit refers to the monitor but the second refers to the tag you want to place it in.
    Edit:
    I think I will give Tmux a go. It does seem incredibly useful.
    Last edited by Gwynplaine (2014-11-14 20:15:51)

  • Ability to view multiple files in ONE window

    I can see here that this is not a new topic really but the thing with Acrobat 9 is so frustrating that it is just unbelievable.
    This is another pearl:
    Acrobat 9 "lost" its predecessors ability to view multiple files in ONE window. After opening four only documents I cannot see anything on the screen because the toolbars on each individual window cover all necessary view and nothing is left for the actual document. And sometimes I need to open 20 documents!
    This is ABSOLUTE DISASTER!!!
    I found some explanations from Adobe on the Web that are more than a year old.
    I was sure that by now this unfortunate mishandling of that feature (apparently it was dropped out from A9 deliberately - WHO'S IDEA WAS THAT?) would be somehow restorable.
    Would anyone happen to know if this feature can get restored to how it was working in A7 or 8 (without the need to uninstall A9 and install A8)?

    No, it can't be restored, unless Adobe decides to change the way Acrobat works (which is possible, but not likely).
    By the way, it was Microsoft's idea... Adobe were just following their example on this.
    You can make a feature request here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • How can I maintain multiple white spaces in a PDF written from InDesign?

    I need to have 2 white spaces maintained (within a part #) in the PDF I write, but when I open in Acrobat it converts it to one space.
    I've tried word spaces, set spaces and applying "no color" to a placeholder character and nothing is working!
    Any ideas or suggestions?

    I am talking about normal white space. Multiple fixed widt spaces are not a problem. How the space is handled in a PDF depends on how it is created.
    Viele Grüße
    Wilhelm Georg Adelberger
    Von meinem iPhone gesendet
    Am 21.08.2014 um 12:01 schrieb Peter Spier <[email protected]>:
    How can I maintain multiple white spaces in a PDF written from InDesign?
    created by Peter Spier in InDesign - View the full discussion
    It may not be a great idea to use multiple spaces, but it certainly is not prohibited and sometimes is necessary -- you might want a 2em space, or a thin space before and after a tab you underline in a form.
    I'm able to select the multiple spaces just fine in Acrobat 9 using the text touch-up tool.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6661037#6661037
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for

  • Itunes won't sync my new songs into my iphone 4s

    I would like to know why one of the last itunes updates won't let me sync music into my iphone 4, instead it added music I don't want and I looked for these songs on my itunes library so I could delete them hoping this would this would fix the proble

  • How to change the location value after it is registered

    hello, I want to change the location (A) to a new schema. From what I am understanding, I need to unregister the old locatin(A) in repository browser, and then re-register it in control center, and change the schema name to my new target. Now, I have

  • Norton Toolbar 2011 Is not working with firefox 13.1

    Hey, I installed Norton Internet Security 2012 on my one computer and the norton toolbar will not work any more I have all my logins in there and don't have backups of them. It says they are incompatible with Firefox 13.1. I also Installed a firefox

  • What happened to the Extract Filter in CS6?

    I tried the Content aware option and all it did was shrink the image layer down.

  • Several instances distributed in a 10g rac environment

    Hi all. We have a RAC environment with two instances. We use ASM and have two disk groups mounted. One for data and one for flashback. We want to expand the environment by adding a new database. Do we need to create additonal disk groups to exclusive