Using SpinnerList to use pushview?

I have a spinnerList in my application with four Data objects in it. What would I need to do to make it so that the user selects the one they want, then clicks a button, it changes to a different view, corresponding to the item on the spinner list that the user chooses?

Yes that did help a little bit, but I'm not sure how to tell it to play the sound.
What I have is:
in the list:
<s:SpinnerList .... labelField="data" selectedIndex="1" wrapElements="False" id="SoundsList">
         <s:dataProvider>
                     <s:arrayList>
                                  <s:DataItem Label="**********" id="qwerty" soundEffect="{soundeffect}"></s:DataItem>
                                   and so on
                                   Then all of the tags are closed.
FOr The button:
<s:Button ................ Label="***" click="soundEffect(SoundsList.selectedItem.soundEffect)"/>
The error message is on the line of the button tag, it says "Multiple Markers at this line   - 1180: call to a possibly undefined property soundEffect.   - soundsList"
I am assuming that the first error is referring to where it says soundEffect outside the (). I do not see the problem with SoundsList, the program is showing that that and where in says soundEffect inside the () are linked up to the corresponding parts in the spinnerList. Is my problem that I'm using the wrong thing to call the data from the list?

Similar Messages

  • Filter xml data Class and use pushView to populate List (Flex Mobile project)

    I am such noob so I apologize for my ignorance. Trying to learn and work at the same time but i'm stumped been searching and my understanding is not up to snuff just yet.
    I looked at the Mobile Shopping Cart that Adobe has little over my head to grasp and impliment but my project is similar without the cart option basically.
    I'm currently using a single view with 3 states
    <s:states>
    <s:State name="default"/>
    <s:State name="productView"/>
    <s:State name="detailsView"/>
    </s:states>
    Default state has a list that uses a xml file with categoryID number's that correspond with the main products xml file.
    Which when the item is selected it filters and updates the List on the productView and so on to the detailsView.
    Like this:
    Category -> Products-> Details
    I'm using a filterCollection from an .as Class file to complete this here is a small snipet.
    private function productService_resultHandler(event:ResultEvent):void
    var productsArray:Array = new Array();
    var resultData:XMLList = event.result..product;
    for each (var p:XML in resultData) {
    var product:Product = Product.buildProductFromAttributes( p );
         productsArray.push( product );
    products = new ArrayCollection( productsArray );
         products.filterFunction = filterForCategory;
         products.refresh();
    private function filterForCategory(item:Product):Boolean{
    return item.catID == selectedCategory;
    public function filterCollection(id:Number):void{
    selectedCategory = id;
         products.refresh();
    Project works great but incredibly slow on Mobile device iOS. In-between the states I have transition animations and it bogs right down.
    So I was trying to experiment by using pushView and basically do the same but utilize Flex's viewNavigator to see if it speeds things up but I can't get the filter function to push the filtered data to the newView component.
    Or I was thinking of trying to order the events such as seletedItem->transition->filtered Data it seems like it is all happing at once and the app just sits for 3 seconds before the state is updated.
    Any help appreciated or more info needed let me know. THX

    So I will solve this later.
    I was able to stick to the original project layout with states within views instead of view states. Ditched the transition Move effects averaging 1 to 2 seconds on all state changes.
    It is a really basic product view app that all files are local. I'm not super impressed at the first go but it works and into the First Project archieve's and will revisit it on version 2. Which will probably start soon. It's better than hello world!

  • Navigator.pushView()

    I understand that to share data between views in a mobile application you need to pass it using the navigator.pushView() call. I've done that and it works, but now I wonder how I can pass data if the user just presses the physical back button on the mobile device.
    Do I have to capture the keyboard down event like this:
    navigator.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDownHandler);
    and use pushView within the handler? will that cancel the original back button call completely? I wonder if there's a better way.
    The use case is this: you're in the home view, the user presses a button and you gets to another view (using a pushView call). The user then makes some selections, then presses the physical back button to return to the home view. I need to pass the user selection to the home view somehow.

    Hi,
    There is a solution built-in to the Flex Mobile framework. Look at createReturnObject() discussed here in the docs:
    http://help.adobe.com/en_US/flex/mobileapps/WSa122979b4619725672e48c412a3e152164-7fff.html
    Check out the section called "Return data from a view"
    iBrent

  • ADF FACES: bugs in isLaunchingDialog and peekView

    I have a page that I may use as a dialog in one workflow and as a directly navigable page in another. I need the page to configure itself based on whether it was launched as a dialog or not.
    After reading the documentation on AdfFacesContext, it seemed that the isLaunchingDialog method or possibly peekView would offer me access to this data. However, neither of these methods ever seem to return anyting other than false and null, respectively.
    I have two places where a dialog is created (one using an outcome starting with "dialog:" and another is an instance of af:inputSelectText. I have installed NavigationHandlers and ViewHandlers to track the process flow, and at each interesting step I dump the values of the two methods listed above. They are ALWAY false and null. An example of the debug (as simple as it is) is below:
    System.out.println("renderView: launchingDialog=" +AdfFacesContext.getCurrentInstance().isLaunchingDialog());
    System.out.println("renderView: peek.UIRoot=" +AdfFacesContext.getCurrentInstance().peekView());
    Are these methods busted? Is there some trick to using them?
    Is there any other way to determine that the current view is being rendered as a dialog?
    Thanks.

    These methods are both working as intended, sorry to say.
    isLaunchingDialog() is a per-request method we use internally to remember if someone's launched a dialog in this request. It doesn't tell you if a dialog is visible. It's hard to envisage a use for clients.
    Meanwhile, peekView() is going to return null here because the dialog launching code only uses pushView() and popView() on platforms that don't have enough machinery to show a true dialog. With the original window still open, we've no need to call pushView() (and don't).
    At this time, there's no API that you could use to detect whether you're in a dialog at this particular moment.

  • Pushed view unresponsive

    Hi
    I'm targeting iOS.  When switching between views using pushView, the view which comes in is unresponsive to any touch events.  If I instead set this view as firstView then it's fine.  Am I missing something when using pushView which may cause this?
    Thanks,
    Ben

    Not really. Something to do with tuning. I hate to give you another link, but this one says that it limits the # of records using (union all)
    http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=/rzajq/rzajqrctepredicate.htm
    Sorry I can't be of more help.
    Jim P.

  • Using spinnerlist to push a view onto the stack

    how do I make it so that an action occurs when an item in a spinnerlist is selected and a button pressed, more specifically a sound played or another view pushed onto the stack?

    I created a new Adhoc Netconfig job in the following format.
    banner login ^
    This is my test banner.
    Testing, testing, testing.
    ^
    The odd thing is, the job failed, yet the switch did accept the banner command. The new login banner was there when I connected to it.
    Here is the Failed error message;
    Command(s) failed on the device Insufficient no. of interactive responses(or timeout) for command: banner login ^
    I'd obviously like to know why the job said it failed, yet the command did succeed.
    Thanks,
    Mike S.

  • Flex IO error# 2032 when using IE7 for parallel https calls across two servers

    Hi,
    Weeks back I faced a wierd issue in the behaviour of flashplayer running on IE7 which is invoking parallel https calls. I have two SSL enabled servers one is listening on port 443 and the other is listening on port 8443 but both running in the same domain. I developed a flex client (using httpservice class) which sends parallel https requests to these two servers. When the number of parallel requests increases say more than 5 requests to each server, the fault handler was encountered with the error message:
    [RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: https://servlet"]. URL: https://servlet"]
    I used some http tracer tools to check if the request jumps out of the browser but that didnt happen. I am 100% sure that I am using the correct url. I was totally helpless . This worked without any issues in IE8 or Chrome or Firefox. This made me think about increasing the number of concurrent connections for IE7 by modifying the windows registry. But still no difference in the behaviour.
    After breaking my head for a long days, I got one solution which would work. This issue is happening only if we are sending https requests to different ports in the same domain. So rather than moving one among the two servers to a new domain, I got a new DNS name for the same destination. So presently I got two DNS names pointing to the same machine in which both the servers are mounted.
    After this it really worked cool!!! Now that I am using a separate DNS name for the server listening on port 8443 and the old DNS name is used to hit the server listening on 443. And I am happy that its working fine without any issues .
    But can anyone tell me if this is really an IE7 issue or do we have anyother solution to fix this.
    Please share ur thoughts..

    Hi,
    I am building a mobile employee directory and for that I am using Flash Builder 4.6/AIR 3.1.0. I am using RESTful web service to get XML results and to display on my mobile application. I am getting the same below error when accessing the webservice from mobile app (Android - Galaxy Tab 7 inch).
    Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error # 2032"] URL: http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co">http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlabhttp://adfdevp.alshaya.com:7013/RESTEmployeeDetails-http://adfdevp.als haya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlabEmployeeDetails-context-root/jersey/restlab
    The same code is working in Flash Builder 4.6. I have checked Network Monitor to "Disabled" before deploying to mobile. What am i doing wrong here? I am pasting my code below-
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView" xmlns:dao="dao.*"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
       <![CDATA[
        import mx.collections.ArrayCollection;
        import mx.collections.IList;
        import mx.collections.XMLListCollection;
        import mx.events.FlexEvent;
        import mx.rpc.events.FaultEvent;
        import mx.rpc.events.ResultEvent;
        import mx.rpc.xml.SimpleXMLDecoder;
        import mx.utils.ArrayUtil;
        import valueObjects.EmployeeDetail;
        [Bindable]
        private var myXml:XML;
        [Bindable]
        public var resultCollection:IList;
        public function handleXml(event:ResultEvent):void
         var xmlListCollection:XMLListCollection = new XMLListCollection(event.result.children());
         var xmlListCollectionValues:XMLListCollection = new XMLListCollection(event.result.emp.children());
         var resultArray:Array = xmlListCollection.toArray();
         var resultArrayValues:Array = xmlListCollectionValues.toArray();
         var objEmployeeDetails:EmployeeDetail;
         var resultCollection:ArrayCollection = new ArrayCollection();
         var j:int = 0;
         for(var i:int=0;i<resultArray.length;i++){
          objEmployeeDetails = new EmployeeDetail();
          objEmployeeDetails.brand = resultArrayValues[j];
          objEmployeeDetails.division = resultArrayValues[j+1];
          objEmployeeDetails.email = resultArrayValues[j+2];
          objEmployeeDetails.employee_name = resultArrayValues[j+3];
          objEmployeeDetails.employee_number = resultArrayValues[j+4];
          objEmployeeDetails.grade = resultArrayValues[j+5];
          objEmployeeDetails.mobile = resultArrayValues[j+6];
          objEmployeeDetails.position = resultArrayValues[j+7];
          j = j + 8;
          resultCollection.addItem(objEmployeeDetails);
         list.dataProvider = resultCollection;
         //return resultCollection;
        public function handleFault(event:FaultEvent):void
         //Alert.show(event.fault.faultDetail, "Error");             
        protected function sesrchEmployee():void
         xmlRpc.send();
       ]]>
    </fx:Script>
    <fx:Declarations>
       <dao:EmployeeDAO id="srv"/>
       <mx:HTTPService id="xmlRpc"
           url="http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlab"
           result="handleXml(event)"
           fault="handleFault(event)"
           resultFormat="e4x" showBusyCursor="true">
        <mx:request xmlns="">
         <data>{key.text}</data>
         <data>{key1.text}</data>
        </mx:request>
       </mx:HTTPService>
    </fx:Declarations>
    <s:navigationContent/>
    <s:titleContent>
       <s:VGroup width="100%">
       <s:HGroup width="100%">
        <s:Label top="40" paddingTop="10" paddingRight="13" height="29" text="Employee Name:"/>
        <s:TextInput id="key" width="559"/>
       </s:HGroup>
       <s:HGroup width="100%">
        <s:Label height="30" paddingTop="10" text="Employee Number:"/>
        <s:TextInput id="key1" width="100%"/>
       </s:HGroup>
       </s:VGroup>
    </s:titleContent>
    <s:actionContent>
       <s:Button icon="@Embed('assets/search.png')" click="sesrchEmployee()"/> 
    </s:actionContent>
    <s:List id="list" top="0" bottom="0" left="0" right="0" 
        change="navigator.pushView(EmployeeDetails, list.selectedItem)">
       <s:itemRenderer>
        <fx:Component>
         <s:IconItemRenderer label="{data.employee_name}"
              messageField="position">
         </s:IconItemRenderer>
        </fx:Component>
       </s:itemRenderer>
    </s:List>
    </s:View>
    Please help me to resolve this issue as soon as possible. Appreciate your quick response in this regard.
    Thanks,
    Murtaza Ghodawala
    Mobile: +965 97180549
    [email protected]

  • How to pass data between views using Flex for mobile?

    Hi,
      In my 1st view, I have set of images. Each image represents a product category. When I click on an image, it has to show my 2nd view which is a list. This should show all the products linked to this category.
    I saw few examples where the 1st view is a list. Select an item in a list shows the details in the next view.
    But what I need is, I need to know which image is clicked in my 1st view (ie) Home page. This id needs to be passed to my 2nd view to retrieve the data for the clicked image (clicked product category).
    Can anyone help me in this?

    Chellaa2011,
      If I understand you correctly, you can pass data to the next view by passing the second parameter to the pushView method. 
      check out: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/ViewNa vigator.html#pushView()
      I've written similar apps in the past and found that a singleton class alleviates some of these issues.  If you use a singleton to track currently selections all your views can access the same data without having to pass and return data from each other.
    Hope this helps,
    KLee

  • StageWebView not resizing after using soft keyboard

    Viewing web pages in my Adobe Air app using stageWebView works fairly well. However, whenever I use the soft keyboard to enter data into a text field on a form, after I finish and dismiss the soft keyboard my stageWebView remains resized as it was (automatically) to view the soft keyboard. So it is approx 1/2 of the screen when it should be on the whole screen. And the space where the soft keyboard was displayed is blank. No matter what page I navigate to this situation remains until I force close the app and restart.
    How would I fix this?

    Hi,I find a way to solve this problem.
    Frist ,when you click textinput in stagewebview, you should turn back to flex view. You should setfoucs on a textinput which using by flex. 
    Then you can use stagewebviewbriadge which javascritpt can commuicate actionscript each other.You can sent the textinput value using by flex to the textinput using by html.
    Here some main code:
       public var webView:StageWebViewBridge;
       public var boxColor:Sprite = new Sprite();
       public function addedToStageHandler()
        initUI()
       protected function removedFromStageHandler():void
        webView.dispose();
        stage.removeEventListener(SoftKeyboardEvent.SOFT_KEYBOARD_DEACTIVATE,resize1);
        stage.removeEventListener(StageOrientationEvent.ORIENTATION_CHANGE, orientationChangeHandler);
       protected function orientationChangeHandler(event:StageOrientationEvent):void
        resizeWebView();
       protected function resizeWebView():void
        webView.viewPort = new Rectangle(5,100,stage.width-10,stage.height-200);
       private function initUI():void
        stage.addEventListener(StageOrientationEvent.ORIENTATION_CHANGE, orientationChangeHandler);
        stage.addEventListener(SoftKeyboardEvent.SOFT_KEYBOARD_DEACTIVATE,resize1);
        StageWebViewBridge.DEBUGMODE=false;
        StageWebViewBridge.setRootFolder('htmlFiles');
        webView = new StageWebViewBridge();
        webView.stage = this.stage;
        stage_height=stage.height;
        stage_width=stage.width;
        resizeWebView();
        webView.loadURL("http://192.168.1.101/WebForm/Woman.aspx");
        addJavascriptCallBacks();
       private var inputname:String;
       private function resize(str0:String,str:String,str1:String):void
        webView.viewPort = null;
        astext.setFocus();
        inputname=str;
        container.visible=true;
        aslabel.text=decodeURI(str0);
        astext.text=decodeURI(str1);
       private var stage_height:Number;
       private var stage_width:Number;
       private function resize1(e:SoftKeyboardEvent):void
        webView.viewPort = new Rectangle(5,100,stage_width,stage_height-90);
        webView.bridge.call("resizeJS",null,inputname,URLEncodeChange(astext.text,"UTF-8"));
        container.visible=false;
       public function addJavascriptCallBacks():void
        webView.bridge.addCallback("backMain",backMain);
        webView.bridge.addCallback("resize",resize);
       private function backMain(str:String):void
        trace(str)
    //    navigator.pushView(LivingPeopleMainView);
       protected function asbtn_clickHandler(event:MouseEvent):void
        // TODO Auto-generated method stub
        webView.viewPort = new Rectangle(5,100,stage_width,stage_height-90);
        webView.bridge.call("resizeJS",null,inputname,URLEncodeChange(astext.text,"UTF-8"));
        container.visible=false;
       public  function URLEncodeChange(p:String,chartSet:String):String{
        var result:String ="";
        var byte:ByteArray =new ByteArray();
        byte.writeMultiByte(p,chartSet);
        for(var i:int;i<byte.length;i++){
         result += escape(String.fromCharCode(byte[i]));
        return result;
      ]]>
    </fx:Script>
    <s:navigationContent>
      <s:Button label="后退" click="navigator.popView()"/>
    </s:navigationContent>
    <s:VGroup id="container" visible="false">
      <s:HGroup>
       <s:Label id="aslabel">
       </s:Label>
       <s:TextInput id="astext">
       </s:TextInput>
      </s:HGroup>
      <s:Button id="asbtn" label="确定" click="asbtn_clickHandler(event)"/>
    </s:VGroup>
    </s:View>

  • How do I use Edge Web Fonts with Muse?

    How do I use Edge Web Fonts with Muse - is it an update to load, a stand alone, how does it interface with Muse? I've updated to CC but have no info on this.

    Hello,
    Is there a reason why you want to use Edge Web Fonts with Adobe Muse?
    Assuming you wish to improve typography of your web pages, you should know that Muse is fully integrated with Typekit. This allows you to access and apply over 500 web fonts from within Muse. Here's how you do it:
    Select a text component within Muse, and click the Text drop-down.
    Select Add Web Fonts option, to pop-open the Add Web Fonts dialog.
    Browse and apply fonts per your design needs.
    Muse also allows you to create paragraph styles that you can save and apply to chunks of text, a la InDesign. Watch this video for more information: http://tv.adobe.com/watch/muse-feature-tour/using-typekit-with-adobe-muse/
    Also take a look at these help files to see if they help you:
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-1.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-2.html
    http://helpx.adobe.com/muse/tutorials/typography-muse-part-3.html
    Hope this helps!
    Regards,
    Suhas Yogin

  • How can multiple family members use one account?

    My children have iphones, ipads, ipods and mac books, my problem is how do you use home sharing with the devices and not get each others data.  My Husband just added his iphone to the account and got all of my daughters contacts.  I understand they could have there own accounts but if i buy music on itunes and both children want the same song, I don't feel i should have to pay for it twice.  Is there away we can have home sharing on the devices and they can pick and choose what they want? and is this icloud going to make it harder to keep their devices seperate?

    My children have iphones, ipads, ipods and mac books, my problem is how do you use home sharing with the devices and not get each others data.  My Husband just added his iphone to the account and got all of my daughters contacts.  I understand they could have there own accounts but if i buy music on itunes and both children want the same song, I don't feel i should have to pay for it twice.  Is there away we can have home sharing on the devices and they can pick and choose what they want? and is this icloud going to make it harder to keep their devices seperate?

  • Iphoto crashing after using mini-dvi to video adapter

    Hi, IPhoto on my Macbook is crashing. I can open it, then as soon as I scroll down it locks up and I have to force quit.
    This started happening right after I used a Mini-DVI to Video Adapter cable to hook my macbook up to my TV. The adapter/s-video connection worked and I was able to see the video on the tv. But iphoto immediately locked up the computer when I went to slide show and now it locks every time I open it.
    Any ideas?
    Thank you:)
    Dorothy

    It means that the issue resides in your existing Library.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • How do multiple family members use iTunes.? One account or multiple?

    How do multiple family members use iTunes. One account right now but apps gets added to all devices and iTunes messages go to all devices.  Can multiple accounts be setup and still have ability to share purchased items?

    Hey Ajtt!
    I have an article for you that can help inform you about using Apple IDs in a variety of ways:
    Using your Apple ID for Apple services
    http://support.apple.com/kb/ht4895
    Using one Apple ID for iCloud and a different Apple ID for Store Purchases
    You can use different Apple IDs for iCloud and Store purchases and still get all of the benefits of iCloud. Just follow these steps:
    iPhone, iPad, or iPod touch:
    When you first set up your device with iOS 5 or later, enter the Apple ID you want to use with iCloud. If you skipped the setup assistant, sign in to Settings > iCloud and enter the Apple ID you’d like to use with iCloud.
    In Settings > iTunes and App Stores, sign in with the Apple ID you want to use for Store purchases (including iTunes in the Cloud and iTunes Match). You may need to sign out first to change the Apple ID.
    Mac:
    Enter the Apple ID you want to use for iCloud in Apple () menu > System Preferences > iCloud.
    Enter the Apple ID you want to use for Store purchases (including iTunes in the Cloud and iTunes Match) in Store > Sign In. In iTunes 11, you can also click iTunes Store > Quick Links: Account.
    PC (Windows 8):
    Enter the Apple ID you want to use for iCloud in the Control Panel. To access the iCloud Control Panel, move the pointer to the upper-right corner of the screen to show the Charms bar, click the Search charm, and then click the iCloud Control Panel on the left.
    Enter the Apple ID you want to use for Store purchases (including iTunes in the Cloud and iTunes Match) in iTunes. In iTunes 10, select Store > Sign In. In iTunes 11, click iTunes Store > Quick Links: Account.
    PC (Windows 7 and Vista):
    Enter the Apple ID you want to use for iCloud in Control Panel > Network and Internet > iCloud.
    Enter the Apple ID you want to use for Store purchases (including iTunes in the Cloud and iTunes Match) in iTunes 10 in Store > Sign In. In iTunes 11, click iTunes Store > Quick Links: Account.
    Note: Once a device or computer is associated with your Apple ID for your iTunes Store account, you cannot associate that device or computer with another Apple ID for 90 days. Learn more about associating a device or computer to your Apple ID.
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Using SQVI to generate report of open and released delivery schedule lines

    All,
    I'm using SQVI  to generate an excel spreadsheet for some buyers to show open released schedule lines because they are a 1 line item per scheduling agreement company.
    I used the logical database MEPOLDB instead of a table joint and pulled fields from EKKO(vendor, SA #,&purchasing group), EKPO(Material Number), EKEH(schedule line type), and EKET(delivery date, scheduled qty,previous qty).
    Does this sound like I'll get the results I want on paper as long as I use the right selection criteria, because the report I'm getting isn't quite what I expect? I am unable to identify which lines are authorized to ship vs. trade-off zone, planning, etc. in the report thus far.

    Hi Mark,
                 I have faced same requirement. I am not sure about transporting to TST and PROD. I done by this way.
    After generating SQVI program in DEV , I assigned that program  to a transaction and tested in DEV. Later i have regenarated SQVI in Production. then I assigned the generated Program to same transaction in DEV. And transported the Tcode assignment of program to Production..
    About authorization , if its not sensitive report, BASIS can restrict at transaction level.
    Regards,
    Ravi.

  • Using Mini DVI to VGA adapter on MacBook

    I bought the adapter from Apple & hooked up my LCD monitor to the MacBook, but the video I get on the monitor is different that on my laptop. It has an old screen background & the dock but nothing on my desktop shows up. Also, when I'm plugged to the monitor, my dock disappears on the laptop screen. Is there some setting I need to change? It worked fine with my G4 PowerBook.
    Thanks for any help....
    MacBook   Mac OS X (10.4.6)  

    i use the mini dvi-vga adapter in my classroom almost everyday. It sounds like your new monitor is running as a side by side monitor to your display instead of a "replacement" display.
    To get your projector/monitor to basically show whatever is on your macbook screen once you've hooked up press F7....this should make your projector/monitory become your display with your dock & all of your desktop stuff. Your new monitor will completely mirror your display.
    THis should do what you're looking for.

Maybe you are looking for

  • Error message in alert_SID.log & PMON.trc

    OS: Redhat6.2 DB: Oracle Enterprise 8.1.5 getting the error message in alert_SID.log PMON started with pid=2 OER 536879337 in Load Indicator : Error Code = 562604272 ! DBW0 started with pid=3 LGWR started with pid=4 CKPT started with pid=5 SMON start

  • I can't get my ipod to sync with new laptop. I have tried to erase and sync, I have authorized new laptop, and still can't get new songs on ipod. Help

    I had to purchase a new laptop, since my old one crased. I downloaded iTunes, and my library came up. I followed the directions given, synced ipod, authorized computer and was given a pop up that stated 25 of my songs could not be transferred.Go to S

  • Change Quality of Service Message

    Hello, I've a interface IDOC - JDBC. The quality of Service is EOIO. II want to change this quality to EO How can i do it? Where? thank very much,

  • PDF error with GhostScript

    I used GhostScript (GS) to merge 2 PDF files generated by Oracle Reprots 9i and got the following warning/error: **** This file has a corrupted %%EOF marker, or garbage after the %%EOF. **** The file was produced by Oracle PDF driver: **** please not

  • MDT 2012 Format & Partition

    Question is this. Already using Microsoft Deployment Toolikt, but I can not solve one problem. Have a client computer. It has one hard drive, which is divided into 2 partitions (C, D). In C of course is a system, the disk D - all user data. So how to