How do I hide multiple steps in GAF FPM

I have a GAF FPM that has five steps. Based on some data condition I want to hide steps 2 and 3. I have implemented the interface IF_FPM_GAF_CONF_EXIT to get the OVERRIDE_EVENT_GAF method. WIthin in that I am calling the HIDE_MAINSTEP two times, however, it appears that only the second HIDE_MAINSTEP is taken.
Is there some way to commit or update between calls.
My code is:
CALL METHOD IO_GAF->HIDE_MAINSTEP
EXPORTING
IV_VARIANT_ID = 'MAIN'
IV_MAINSTEP_ID = 'Account'
CALL METHOD IO_GAF->HIDE_MAINSTEP
EXPORTING
IV_VARIANT_ID = 'MAIN'
IV_MAINSTEP_ID = 'Profile'
When I test my application only the PROFILE step is hidden. What do I need to add to make sure that both steps are hidden? I know that I can create a variant with these steps removed but in the end I will need to conditionally hide one to main of the five steps which will end up being main variants.  Ideally I do not want to maintain all possible combinations of 5 steps.
Thanks for the help...

Hi ,
i have used the following code on the FPM_START event IN OVERRIDE METHOD to disable the steps.
TRY.
      io_gaf->get_mainsteps( IMPORTING et_mainstep = lt_main_step ).
LOOP AT lt_main_step INTO ls_main_step.
          io_gaf->enable_mainstep(
            EXPORTING
              iv_variant_id  = ls_main_step-variant
              iv_mainstep_id = ls_main_step-id
              iv_enabled     = abap_false ).
        CATCH cx_fpm_floorplan INTO lx_fpm_floorplan.
ENDLOOP.
ENDTRY.

Similar Messages

  • How do I hide multiple steps in FPM

    I have a GAF FPM that has five steps.  Based on some data conditional I want to hide steps 2 and 3. I have implemented the interface IF_FPM_GAF_CONF_EXIT to get the OVERRIDE_EVENT_GAF method.  WIthin in that I am calling the HIDE_MAINSTEP method, however, it appears that is will only accept one HIDE_MAINSTEP. 
    Is there some way to commit or update between calls.
    My code is:
    CALL METHOD IO_GAF->HIDE_MAINSTEP
       EXPORTING
         IV_VARIANT_ID  = 'MAIN'
         IV_MAINSTEP_ID = 'Account'
    CALL METHOD IO_GAF->HIDE_MAINSTEP
       EXPORTING
         IV_VARIANT_ID  = 'MAIN'
         IV_MAINSTEP_ID = 'Profile'
    When I test my application only the PROFILE step is hidden.  What do I need to add to make sure that both steps are hidden?
    Thanks for the help...

    Hi ,
    i have used the following code on the FPM_START event IN OVERRIDE METHOD to disable the steps.
    TRY.
          io_gaf->get_mainsteps( IMPORTING et_mainstep = lt_main_step ).
    LOOP AT lt_main_step INTO ls_main_step.
              io_gaf->enable_mainstep(
                EXPORTING
                  iv_variant_id  = ls_main_step-variant
                  iv_mainstep_id = ls_main_step-id
                  iv_enabled     = abap_false ).
            CATCH cx_fpm_floorplan INTO lx_fpm_floorplan.
    ENDLOOP.
    ENDTRY.

  • How do i select multiple steps and move them?

    Hi everyone! I'm trying to select multiple steps and move them all into a branch of a condition outcome. Here's the thing, I have almost completed my workflow with several steps for dynamic approval, however, i need to put a condition at the very start of the workflow and it does not seem that there is an easy way to move all of the steps into one branch. I find the workflow explorer really clumsy in this respect. Is it easier to just drag one outcome of the condition, say to the very end of the workflow? It does not seem to work for me though...hmmm...
    Thanks and generous points will be awarded!

    Funtion Module 'SWD_GET_WORKFLOW_DEFINITION ' gives the structure of the Workflow definition. The informations are stored in following table.
    1. SWDSTEXT -> Table which gives WF Steps and descriptions
    2. SWDSBINDEF --> Binding information is stored in this table
    3. SWDSMNODES -> All nodes information is stored in this table
    4. SWDSMLINES -> Workflow lines are stored in this table.
    <b>SWDSMLINES</b> and <b>SWDSMNODES</b> are important tables for current requirement. By changing <b>SWDSMLINES</b> the bulk copy and paste can be incorporated. But this is <b>very very risky</b>, better to have a backup of workflow definition before doiing anything.
    Any enthuiasts to write code for a unitlity to move multiple steps ?

  • How to hide multiple XsltListViewWebPart when they are empty using OOTB or script?

    Hello,
    I have a SharePoint 2013 page that displays a few XsltListViewWebParts i.e.(Lists).
    All the lists contains rows of data when we open: 
    http://Server/Pages/MyPage.aspx
    But, We have some customized filters and views in place, and when we open e.g.: http://Server/Pages/MyPage.aspx?FilterField1=LinkTitle&FilterValue1=250
    The page opens correctly, But all the XsltListViewWebParts which do not meet the filtering will still be shown but as empty web parts - How to hide those?
    In other words, In my SharePoint 2013, How to fully hide multiple XsltListViewWebParts on a page when they are empty ?
    I have already tried:
    http://mmman.itgroove.net/2014/06/22/hiding-empty-sharepoint-web-parts-using-javascriptjquery-on-a-dashboard-page/
    http://sharepoint.stackexchange.com/questions/340/setting-displaynone-for-empty-web-part-zones
    https://social.technet.microsoft.com/Forums/en-US/f26383dd-b53d-4ffa-8075-0ef8e46ab0b1/hide-list-view-web-part-when-list-is-empty?forum=sharepointgenerallegacy
    Nothing works - Am I doing it incorrectly or am I missing anything ?
    I would be thankful for your suggestions !

    Hi,
    The problem was due to JQuery is not loaded in the page.
    Please follow the steps given in the URL :http://mmman.itgroove.net/2014/06/22/hiding-empty-sharepoint-web-parts-using-javascriptjquery-on-a-dashboard-page/ 
    Instead of referring the JQuery link provided in that page, use the Google CDN (<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> )Link in script editor before calling 
    $(document).ready(function(){
         setTimeout(waitForSPReady, 100);
    Thanks.
    A'Kumar

  • Multiple Steps Verification

    Hi,
    How can I get multiple steps status from TestStand? I have 20+ pass/fail steps in code and need to update one station global array based on the result status. Example of my sequence given below for better understanding.
    Step1: Action 1
    Step 2: Action 2
    Step 3: Test 1 (Pass/Fail)
    Step 4: Test 2 (Pass/Fail)
    Step 5: Action 3
    Step 6: Test 3 (Numeric Test)
    Step 7: Test 4 (String Test)
    Step 8: Test 5 (Pass/Fail)
    Step 9: Action 4
    Step 10: Test 6 (Pass/Fail)
    In this sequence, if Test 1, 2, 6 passes, I need to update one Station global (array element 1); if Test 3, 5, 6 passes, need to update Station global (array element 2) and Test 4, 6 passes Station global (array element 3). How can I implement it? At present we are doing with ANDing unique number of steps status with “if” condition.
    Thanks,
    Sanad MM

    You have Result array at runtime, and there are all status of steps, then you u need to write expression to check them and do actions on stationglobals

  • Multiple Step Task

    Hi all
    How can i create Multiple Step Task  in UWL? Please help.
    Regards
    Priyanka

    Hi Priyanka,
    Please refer to following help guide:
    http://help.sap.com/saphelp_nw04/helpdata/en/44/fabc8f905a0485e10000000a155369/content.htm
    Regards
    Anjali

  • Hide the Button Next / Previous in Main Steps on GAF.

    Hello Friends,
    I have to develop one application using GAF.
    In this applicaion there is no INITIAL Screen.
    application directly start with Main Step but Application doesn't have Button Next and Previous like standard GAF application.?
    How to Hide the Button Next / Previous and change the name of Button?

    Hello Julia,
    You are absolutely correct.
    But the thing is, first screen of my application only have the button 'Start' and also roadmap is displayed.
    But in standard GAF application,
    if i configured my window as Inital Screen then button Start will come, but raod map will not come.
    if i configured my window as Main Step then Road Map will come with Button 'Previous; and 'Next'. but Button Start will not come.
    either I can add the Button 'Start' in Main Step or change the name of Button 'Next' to 'Start'.
    But button 'Previous' nothing make sense, so i have to hide this button.
    my 'Start' button will act as Button 'Next'.
    but how can i hide the button 'Previous' and change the name of button 'Next'.
    could you please suggest me shall i develop this application using GAF or simply use the Roadmap UI element in my web dynpro abap application?
    Thanks
    Edited by: Chandraprakash Sulakhe on Apr 6, 2009 11:34 AM
    Edited by: Chandraprakash Sulakhe on Apr 6, 2009 11:42 AM

  • How to hide multiple columns in multicolumn listbox like as an excel sheet?

    Hello All,
    I have large amount of data that is to be displayed on multicolumn listbox. After displaying that, I want to hide or delete some columns from listbox in runtime.
    I know how to hide one column using active cell property node. But I want to hide multiple columns. I am using LabVIEW 2011. 
    Thanks in advance.
    Thanks & Regards,
    Manisha

    Thank you so much. 
    But I have total 12 columns and I don't want to delete columns serially. I want to delete inbetween columns, like in attached VI I want to delete column A & D only. 
    And in this user have to select it from frontpanel. I want this is to be done as in excel, like we select the entire column and either we hide it or delete it. One more thing I want to clear the data in multicolumn when I next time open my VI. How to do that?
    I hope am clear in explaining my problem.
    Thanks & Regards,
    Manisha
    Attachments:
    Delete Column.vi ‏10 KB

  • Does anybody know how I can run multiple skype accounts on my macbook air?  I found workarounds on youtube, followed the steps to set-up a second skype account but I can't login using the second account.

    How do I run multiple skype accounts on my macbook air.  I'm using MAC OS X 10.6.8.  I followed the workaround steps on youtube to set up a skype b account (application and folder) but when I open the skype b account I can't login. I get an error message saying "please check your network settings and try again".  My 1 skype account works but I need to run 2 skype accounts at the same time, 1 for a client and my own personal account.
    Thanks
    Yolanda

    How do I run multiple skype accounts on my macbook air.  I'm using MAC OS X 10.6.8.  I followed the workaround steps on youtube to set up a skype b account (application and folder) but when I open the skype b account I can't login. I get an error message saying "please check your network settings and try again".  My 1 skype account works but I need to run 2 skype accounts at the same time, 1 for a client and my own personal account.
    Thanks
    Yolanda

  • How do i hide my history and cookies not erase but hide so no one can erase their steps such as kids

    How do I hide my history and cookies so that they cannot be erased by kids or others using my computer. Or can i lock it somehow so that they cant be erased. Signed computer illiterate...

    You should be able to copy iTunes purchases (which should include PDFs in the iBooks app even though they aren't purchases) off the iPad to your computer's iTunes via File > Transfer Purchases.
    On Windows 7 your backup should be stored under :
    \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    But without restoring onto a device you probably won't be able to make much sense of the backup files.
    If you want to copy off photos that were originally synced from a computer you will need a third-party app such as Simple Transfer which can copy them off via your wifi network. But as photos are 'optimised' when they are synced to the iPad, any that you then copy back to a computer may not be exactly the same as they originally were on your computer
    There is also this user tip for recovering your library from a device : https://discussions.apple.com/docs/DOC-3991

  • How we set up multiple websites on OSX Server

    BACKGROUND
    After fiddling and futzing around for weeks (actually since last year) I've finally figured out how to set up multiple websites (virtual sites) using one port and one IP address. While there seems to be lots of discussion on this topic, it seems that the basic assumption is that one knows everything about websites, DNS and all that stuff, which I do not.
    When our network was originally established the engineer set up a wiki and also configured webmail, so we had two sites, one secured for mail and the other open for Calendar and the wiki. We were not hosting any websites locally because our school website is hosted by a company in New England.
    This year I wanted to set up websites for teachers and students. As great as the wiki is, there are some things it just can't do as well as a website. So I figured if I set up the sites teachers could link back and forth from one to the other. In addition kids could now start to use a real website instead of the cobbled together file mess I had when we ran a Windows network. Also iWeb is a much more accessible tool than FrontPage.
    SERVER SIDE:
    Snow Leopard Server - 10.6.4
    There are two - actually three pieces if you want your iWeb clients to connect to the server: Server Side Web Services, DNS and, in my case, FTP.
    ================================================ SERVER SIDE - WEB SERVICES
    If you haven't turned on Web services, you'll need to open Server Admin and do that. If you don't know how to set up web services - just reply and I'll step you through that as well.
    Once web services are set up and turned on, you'll see it listed under your server’s name in the Server Admin sidebar. Click on "Web" and then click on the "Sites" tab at the top of page. This is where you list all your sites.
    Click the plus button and enter the fully qualified name of your site, for example: "students.myschool.org". Don't use the defaults here (no name) - that's what got me in trouble before. BE SPECIFIC!
    You'll be looking at the "General" tab (the other tabs, "Options", "Realms", etc. we'll deal with in a second).
    On the "General Tab", the default IP address ("any") and port (80) is just fine. We'll run everything over port 80. (Apache figures all the virtual site stuff out - you don't need your rocket science degree for that.)
    "Web Folder:" is important because this is how you'll "segment" your websites. While I would NEVER do this again, we have a solid state hard drive for the OS and a RAID array for our data files. IF you have that, make sure you do NOT use the default "Web Folder" because it will store all your files on your solid state drive. There may not be enough room, over time, on that drive. I've not experienced it yet, but it's my understanding that if the drive fills up, the server shuts down.
    I store my web sites on a folder on the RAID array.
    Everything else on that tab can be left as the default. (Just make sure that you have an "index.html" or "index.php" file in your web folder root, but iWeb will take care of that for you.)
    I would put in your email address in the "Administrator Email:" field.
    Under "Options" you really don't have to put anything. I've tested making websites with iWeb and it doesn't appear that anything needs to be checked.
    Nothing needs to be entered in "Realms" as well from what I see working w/ iWeb.
    The defaults in "Logging" are fine.
    You can leave "Security" alone, but we do have a (self-issued) certificate listed for our webmail site.
    "Aliases" is important. Under "Web Server Aliases" you enter how you want the site to respond to when users type in a URL in their web browsers.
    When our web server was initially set up the engineer set up "wiki.myschool.org" on port 80 and "mail.myschool.org" on port 443. In the aliases section was nothing but a "*" (the wildcard character). That means, from what I can figure out, that the webserver will respond to these sites regardless of what is typed in the URL. (Well, something like that - point is, if you create OTHER websites, you'll NEVER get to them because the wildcard character in the "Aliases" section, in effect, grabs those web requests and redirects them to the sites that are already there.
    In my case I deleted both of those wild card characters. For my "wiki.myschool.org" site, I entered "mail.myschool.org". That means if you type EITHER "wiki." or "mail.", go to the site that’s stored in the “Web Folder” we set up when those sites were created.
    For "mail.myschool.org" I just DELETED the wildcard character. I wanted that site (since it was secured) only to respond to "mail." - nothing else. (You're not going to that secured site for any other reason than to get your mail.)
    "Proxy" can be left blank. Have no idea what that does. As time permits I'll do some research and figure out what it's used for.
    "Web Services" is if you want to provide any MORE services to this particular site. Most likely you'll want to uncheck all the boxes. For our "wiki." site, we have checked "Wikis", "Blogs", and "Calendar". For our "mail." site we have those checked PLUS "Mail".
    I would create a separate "Web Folder" for each of your sites. I don't know if that's a requirement but for housekeeping purposes, I would keep the sites separated. And I SUSPECT that it's "best practice" to separate your wiki from your other websites.
    SERVER SIDE - DNS
    OK...now you have to make your site reachable and the only way to do that is to set up DNS so that folks don't need to type in the IP address of your web server. You need to set up DNS inside your network and, if you want folks in the outside world to reach your website, you'll need to set up an external DNS as well. I'm going to cover INTERNAL DNS - if you don't know how to set up EXTERNAL DNS - reply or email me and I'll post those instructions.
    Most likely you have already created Zones for you network...all you really need to do is create "Aliases" so that when you type "students.myschool.org" your web browser will know that site resides on IP address XXX.XXX.XXX.XXX.
    If you've set up Zones then you already have a "Machine" setting that translates your server’s name to an IP address and vice versa.
    All you need to do is create an "Alias" (CNAME) record for, in this case, "students". You’ll see the choices for types of records when you click the "Add Record" button.
    There are only two fields to configure for a record: "Alias Name" - in this case "students" and "Destination" - in this case "servername.myschool.org". (You've already entered a machine record that says "servername" = 192.168.1.x.)
    That's it for Internal DNS.
    SERVER SIDE - FTP
    Now you have to get iWeb to communicate with the webserver.
    There are only three ways iWeb will communicate with webservers: MobileMe, Local Folder and FTP Server.
    Local Folder is really only practical if you want to host a website on a laptop (I was blown away initially when I found out that all Macs had a built-in web server - how neat is that?). I think there are some very cool things teachers could do with configuration, and, of course, you wouldn't need to set up any web services on the web server, but that's for another discussion. You need to set up FTP services on the web server.
    Turn on and enable FTP on your webserver.
    You can leave the defaults for "General", "Messages" and "Logging". "Advanced" is the only thing you want to set. I set "Authenticated Users See:" to "Home Folder Only". I set the "FTP Root" to the same root folder in which I plan to store my web sites (/VOLUMES/RAID Array/WebServer/Documents). This setting sets that folder only to be accessible via FTP.
    I would suggest returning to your DNS settings and adding one more "Alias". Set "ftp." to point to your webserver. Why? So folks can edit their sites from home (see below).
    CAVEAT: If you are running FTP on other servers, make sure that the settings here do not conflict with the settings on the other servers. For example, I'm running FTP on my file server so that my scanners can communicate with it. However, I configure my FTP settings by machine name and NOT "ftp.myschool.org".
    ================================================
    CLIENT SIDE - CONFIGURING iWEB
    Now you have to configure iWeb so that it will communicate with your server.
    Click on the "Site" icon so that "Site Publishing Settings" appears.
    Publishing:
    "Publish to:" = "FTP Server"
    You can set the "Site name:" and "Contact email:" to whatever you want. But see below!
    FTP Server Settings:
    "Server address"=ftp.myschool.org (you could also enter in servername.myschool.org or the IP address. However, if you want folks to be able to work on the site from home, you will need to configure external DNS for that. If you use the IP address, you're out of luck for remote access to the site. (You can do it but it's beyond the scope of this discussion.)
    "Username" & "Password" should be your user's network login credentials.
    "Directory/Path" - this is important. Remember, you set your "FTP Root" to be "/VOLUMES/RAID Array/WebServer/Documents". If you leave this field blank then the website will be dumped into this folder. If you are only setting up one site, that may be OK. However I wanted to set up a "students" site folder, a "faculty" site folder and a separate site for our literary magazine.
    THEREFORE: I have, in my ..../Documents folder (on the server), a "students" folder, a "faculty" folder, and a "litmag" folder.
    SO...in my "Directory/Path:" field, I have "/faculty". That means the full path to this website is "ftp root/faculty" or "/VOLUMES/RAID Array/WebServer/Documents/faculty" (You don't need a trailing "/" character. iWeb will automatically append the folder for you user depending on what you entered in "Site Name:" in the "Publishing" area.
    Website URL:
    This is the root website depending on whether it is "students" or "faculty". Since iWeb will append the site name to this root website, I accomplished what I hoped to accomplish in this post (http://discussions.apple.com/message.jspa?messageID=12288561#12288561).
    Faculty sites will be @ http://faculty.myschool.org/username. Students @ http://students.myschool.org/username. PERFECT!
    iWeb is such a GREAT tool - NOW the kids can start using it!
    I want to reiterate that this works for our school but it should work for you as well. There may be better ways to do this but it works for us.
    Hope this has been helpful and you won't have to spend weeks trying to figure this all out by yourself!

    OK...here's how we did it.
    To get access to the website you created from outside your network there are a couple of steps.
    First, you have to have a STATIC IP address from your ISP. If you have a T1 circuit, no problem...you usually get a couple of static IPs you can use. However, if you have a cable modem circuit, most likely you have a dynamic IP address which changes when you connect to the internet. Usually a static IP will cost a bit more because the ISP has to go through a couple of steps to set it up for you. But once you have the address, you now have a way for folks outside your network to connect with you.
    (I’m also assuming that you use a router of some sort through which traffic flows out to the internet and that you aren’t using connection sharing or something like that.)
    The next thing you need to do is have your new static IP address associated with the server on which you are hosting your website. You've probably already done that if your website works inside your network. However, you've associated a private ip (192.168.x.x, etc.) to your web server. That doesn't mean anything to folks on the outside because private IP addresses are just that - private - folks can't access them. (I won't get into VPN because that's a whole other topic.)
    The way you associate your new static IP address to your web server is through some sort of dns application from your ISP. For example, we use TierraNet to manage our external DNS information. They have a web interface control panel that is very similar to the DNS interface for XServer. You can create CNAME records (aliases - other ways that folks can access your servers).
    Basically you create an "A" (CNAME) record with a fully qualified domain name (e.g. webserver.myschool.org) and point it to your public IP address (XXX.XXX.XXX.XXX) which you just got from your ISP. It's going to take a while (24-48 hours) for this change to take effect. BTW, you can create as many “A” records as you want. For example mail.myschool.com and wiki.myschool.com could point to the same place.
    You want to make sure that the fully qualified domain name you enter in the external dns utility matches the name you used when you created your internal dns records on your XServer.
    OK...so now folks can get to your domain - but, remember, you have a private network IP scheme between them and you. You now have to tell your router that when web traffic arrives, allow it inside the network and direct it to your web server.
    Let's say your public IP address is 205.100.112.50 and your web server is 192.168.0.5.
    You have to create, in your router’s "Security Zone" (router companies call them different things) a couple of rules. Usually the first rule is: "Let everything inside the network get out to the web." You've probably already done that if folks inside the network can reach the internet.
    You then have to tell the router to allow web traffic (port 80) into your network AND redirect that traffic to 192.168.0.5.
    We use AdTran routers and they have a web interface which allows you to write "rules" affecting public and private traffic. Public is folks outside the network, private is folks inside.
    AdTran calls them "Security Zones" and you modify those zones with policies.
    So my "Policy" would say, in the above example, redirect traffic from my public IP (205.100.112.50) -> to my web server -> (192.168.0.5).
    THEN you have to modify this policy with what AdTran calls "Traffic Selectors". You've said, OK, you can get in, but WHAT can get in?
    The "Traffic Selector" is written to say: "Permit" "TCP" traffic from 205.100.112.50 only through Port 80. (That's the port that web traffic goes over. If you wanted a secure website, you'd add another traffic selector that opens port 443, for example.)
    I'll tell you I'm no genius when it comes to this. I called AdTran and had them configure my router for me. I told them what I wanted done, they remoted into the router and configured it. But then I could go to the web interface and see what they did and then added rules later on when I wanted, for example, to get access to the network via Apple Remote Desktop or VPN into the network on my iPad.
    I'd bet that your router has a maintenance agreement that includes this service and if it doesn't it should have.
    I did find that I still had issues when I tried to set this up originally and it had to do with the ORDER of the policies. I can’t remember exactly what the issue was, but, effectively one of the policies highjacked traffic before the policy that I wanted got triggered. Simply moving them around in the list fixed that issue. So if you have this set up but still can’t access the site, check the order of your rules.
    I don’t know if that helps or not, but I try to think about this stuff conceptually and then get someone to help me with the details. I work with this stuff so infrequently that I forgot how I did something 6 months or a year ago. I’m in the process of creating a wiki for the school which documents all this stuff, but that’s a major undertaking.
    Cheers,
    John

  • How can I save multiple titles under the same DVD?

    I use HandBrake to rip DVD's into iTunes. How can I save multiple titles under the same DVD? For instance, I have a Jimi Hendrix documentary that comes with special features, such as concert performances. I would like to have the main feature and the special features saved in my iTunes under the same title, perhaps as different 'tracks' (kind of like how different songs can be saved under the same album).
    Is there a way for me to do this, or am I chasing phantoms?

    *This response is for iPhoto 11 (v9). If you're using an earlier version, please post back and let us know. Troubleshooting steps are not the same for different versions. To find out which iPhoto you have: iPhoto Menu -> About iPhoto)*
    Duplicate the photo first. (Photos -> Duplicate). This means that you will have multiple copies of the master as well as the edited version.
    If you use versions like this often and wish to have only one master then you can do this with Aperture.
    Regards
    TD

  • How do you use multiple outputs on a VSTi like Kontakt or Battery?

    how do you use multiple outputs on a VSTi like Kontakt or Battery with Logic Pro 7.1? I've heard someting about using AUX busses, but can anyone please provide an actual clear, step by step basic guide?
    I've had Logic 3 months now and just don't know how to do this yet, and have yet to actually find it in the manual!!
    thx

    http://www.sonikmatter.com/wiki/index.php/Tutorial:MultiChanAudioSetup

  • Solaris 11 IPS:  How do you post multiple versions of the same package?

    How do you post multiple versions of the same software package on a single IPS instance(port)? Oracle was able to do it here with versions 151 and 175 of S11:
    http://pkg.oracle.com/solaris/release/
    Unfortunately, based on my searches, no where in the documentation (http://www.oracle.com/technetwork/server-storage/solaris11/technologies/ips-323421.html) does it explain to the development community how this is done. The best I can do is create pkg repo instances on different ports to host each different software version.
    We are trying to deploy an IPS repository for our drivers and utilities that our customers can link to and pull updates from. We have been able to post a software package to the repository using the command:
    pkgsend publish -s http://localhost:1234 -d ./ Appv1.p5m
    This posts the package on the IPS repository instance at port 1234 on the server. However, we would like to post multiple versions of the package on the server at the same URL. Why the same URL? So that our customers and end-users need only point to a single URL to pull down our software rather than having to add a new URL to the publisher list each time we have an update. We want at least 5 of the previous software versions to be available on the server. Posting each version of the application or driver on a different IPS instance on a different port will require customers to add multiple URLs to their publisher list and they also will not be able to initiate remote scans for updates.
    Has anybody been able to do this? Is any documentation forthcoming?
    Edited by: user13489824 on Jun 25, 2012 10:17 AM

    dhduvall: Thanks for your response. Yes, one would think that as long as the version numbers are different, you should be able to accumulate multiple versions of a package in a repository. It looks like Oracle has done it in their S11 repository unfortunately, as far as I know, they have not shared the steps on how to do this. I would like to publish two versions of the same package. I.E. two different manifests with two different fmri.pkg version strings and two different binaries.
    If I publish one package after another like this:
    pkgsend publish -s http://localhost:1234 Appv1.p5m
    pkgsend publish -s http://localhost:1234 Appv2.p5m
    Then only the second package shows up in the repository, as if it over-wrote the first one.
    Running pkgsend with two manifest, like this:
    pkgsend publish -s http://localhost:1234 Appv1.p5m Appv2.p5m
    Will cause pkgsend to combine the packages and manifests as if they were a single package... not what I am trying to do.
    Both approaches are complete without errors but neither achieves what I am trying to do.
    alan.pae: Thank you. Unfortunately, the link didn't really help. I've read Oracle's white papers and IPS developer guide so I'm familiar with the topics covered.
    Lex: Yes, I know. I specified the versions in the pkg.fmri value string.

  • How do I show multiple rollover images on a page inserted dynamically (pulled out of a sql database

    How do I show multiple rollover images on a page inserted dynamically (pulled out of a sql database table) using Dreamweaver’s Repeat Region. Example: I have different products each one associated (through their productID) with two images (one that’s showing in the page and one for the rollover effect) that are pulled from a database using Dreamweaver’s Recordset. So I want to end up with a page containing row after row of images(one for every product).When moused over each image will reveal the second (rollover) image for the same product which in turn can be a link(the image itself ) that when clicked leads to a detailed page with more information about the product the image is associated with. To show row after row with images for the different products in the database table I am using Dreamweaver’s Insert Rollover Image command and then the  Repeat Region – I have no problem to complete the steps, to insert the image and the rollover one at once and set the paths so they are pulled dynamically depending on the productID they are associated with .I have also no problem to apply the Repeat Region so not only the first image associated with the first product in the table is shown but all of them-a routine and standard procedure when using the Repeat Region to dynamically generate and display multiple rows of data. However, when I preview the page the rollover effect is lost –the images are shown but when moused over the second  image does not  show. The problem is caused when the Repeat Region is applied-once again I am allowed to apply it but the rollover stops working, a kind of interference. ANY SOLLUTION PLEASE, ANY WORK AROUND.

    I gotta tell you, using multiple images for rollover effects is going to be a big challenge in your dynamic scenario. 
    If this were my product page, I would use thumbnails with a bit of CSS opacity or filters to desaturate and make them full opacity/color on mouse over.  Nice effect with much less bandwidth. Easily done globally with CSS code.
    Two examples:
    http://alt-web.com/GALLERY/GalleryTest.php
    http://alt-web.com/TEMPLATES/CSS-Semi-liq-photo-sheet.shtml
    Nancy O.

Maybe you are looking for

  • Print Module: Faint shadow around printed image (Mac OS, Canon 9500)

    I am seeing a faint shadow around my prints. On 8.5x11 prints it extends above and below the image as though it's completing the parts of the cell that don't contain the image. On 13x19 prints it extends above and below the image in thin strips, but

  • I continue to get missing msvcr80.dll and error 7 (windows error 126) and cannot thus reinstall itunes.

    I did an update of the Microsoft Framework.net (4), but it did not help.  Cannot reinstall my itunes and this whole thing started when I clicked on my computer to get the latest itunes update when the window came up.

  • IPhoto 11 and mobileme

    I'd like to know if you modify (add faces, change order, delete, edit) photos on an album which syncs with mobileme gallery will it auto syncs the changes to the mobileme gallery also? As far as I can see when I changed the content of an album that i

  • BADI MD_PIR_FLEX_CONS is not working properly

    We have put this Badi MD_PIR_FLEX_CONS in our system , so that PIR in one plant can be consumed from from Stock Transport Orders too We have put the Consumption indicator as 4 in PIR & Mixed MRP Indicator in material is 1 The Badi is running successf

  • Has ANYONE successfully connected a printer with Bluetooth?

    I recently purchased a D-Link 120 and was unsuccessful connecting it to my printer with D-Link's 320. I was told by D-Link the -320 will not work with a multifunction printer. I am set to purchase a new printer with a printer adapter from the same ma