Changing views in Flex

My application is built similar to the Tourde flex-->Data Visualization-->IBM ILog Elixir-->RealTime Dashboard(2) application which has a map on the top portion and 2 datagrids on the bottom. My application does not have a clock shown on the bottom portion. remaining all is almost similar. I have a requirement to switch these views every 6 mins. Every 3 mins the unprocessedatagrid and alldetails grid flip. The layout is attached in the code section below
The three panel sizes remain fixed, it is only what we display in the panel that needs to be changed. The top panel by default is mapPanel having mapCanvas with 60%(height)(width is 100%) of the screen. The remaining 40%(height) is shared by the leftGrid(35% of width) and unprocessedatagrid/alldetailsgrid(65% of width which flip every 3 mins)
After first 6 mins, I wanted to switch the mapCanvas with the leftgrid and leftgrid with mapCanvas.Every 3 mins the unprocessedatagrid and alldetails grid flip as usual. second 6 mins i have to switch unprocessedatagrid with mapPanel and mapPanel with unprocessedatagrid(there is no flip between unprocessedatagrid and alldetailsgrid in this 6 mins, all that is displayed in the mapPanel should be unprocessedatagrid). Next 6 mins change to the initial view(the 3 mins flip between the unprocessedatagrid and alldetails grid starts again) and the cycle goes on like this. I dont get the right grid populated correctly. Let me know how i can acheive this. I am fine to edit the layout if required. I am doing as below. Please let me know a solution for this. I tried using viewStack also, I am not sure if i did anything wrong anywhere.
<mx:states>
          <mx:State name="unprocessedState">
               <mx:RemoveChild target="{ alldetailsgrid}"/>
               <mx:AddChild relativeTo="{detailsPanel}" position="lastChild">
                    <sides:UnprocessedDataGrid id="UnprocessedDataGrid"                     Details="{uItems}"
                         styleName="{styleSel}"
                         width="100%"
                         height="100%"
                         change="currentState = ''"/>
               </mx:AddChild>
          </mx:State>
           <mx:State name="leftUpMapdownProcessed" >
           <mx:RemoveChild target="{ leftGrid }"/>
           <mx:RemoveChild target="{ mapCanvas }"/>                    
           <mx:AddChild  target = "{leftGrid}" relativeTo="{mapPanel}" />          
           <mx:AddChild  target = "{mapCanvas}" relativeTo="{leftPanel}" />          
             <mx:RemoveChild target="{ UnprocessedDataGrid }"/>
             <mx:RemoveChild target="{ alldetailsgrid}"/>
           <mx:AddChild  target = "{alldetailsgrid}" relativeTo="{detailsPanel}" />
          </mx:State>
           <mx:State name="leftUpMapdownUnprocessed" >
           <mx:RemoveChild target="{ leftGrid }"/>
           <mx:RemoveChild target="{ mapCanvas }"/>               
           <mx:AddChild  target = "{leftGrid}" relativeTo="{mapPanel}" />          
           <mx:AddChild  target = "{mapCanvas}" relativeTo="{leftPanel}" />
           <mx:RemoveChild target="{ alldetailsgrid}"/>
           <mx:RemoveChild target="{ UnprocessedDataGrid }"/>     
           <mx:AddChild  target = "{UnprocessedDataGrid}" relativeTo="{detailsPanel}" />
          </mx:State>
           <mx:State name="rightUpMapdownUnprocessed" >
           <mx:RemoveChild target="{ alldetailsgrid}"/>
           <mx:RemoveChild target="{ UnprocessedDataGrid }"/>
           <mx:RemoveChild target="{ mapCanvas }"/>
           <mx:AddChild  target = "{UnprocessedDataGrid}" relativeTo="{mapPanel}" />     
           <mx:AddChild  target = "{mapCanvas}" relativeTo="{detailsPanel}" />     
          </mx:State>
</mx:states>
<!--Main application area-->
  <mx:VBox width="100%"
           height="100%"
           paddingBottom="2"
           paddingLeft="2"
           paddingRight="2"
           paddingTop="2">
<mx:Panel id="mapPanel"   
      verticalGap="0"
      horizontalGap="0"
      borderAlpha="0"
      width="100%" height="100%"
   headerHeight="0" borderStyle="solid" shadowDistance="0"
   borderThicknessBottom="NaN"
   borderThicknessLeft="0"
   borderThicknessRight="0"
   borderThicknessTop="0"
cornerRadius="0"
>
      <mx:Canvas width="100%"
                 height="100%"
                 borderStyle="solid"
                 borderColor="0x555555"
                 id="mapCanvas">
-------------------------- CREATING MAP HERE---------------------------------------------------
     </mx:Canvas>
</mx:Panel>
<mx:HBox width="100%"
               height="212"
               backgroundColor="#4E597A"
               borderStyle="solid"
               borderColor="#4e597a"
               horizontalGap="0"
               verticalAlign="middle"
               id="bottomBox"
               verticalScrollPolicy="off"
               horizontalScrollPolicy="off"
               >
         <mx:Panel id="leftPanel"   
              verticalGap="0"
      horizontalGap="0"
      borderAlpha="0"
      width="100%" height="212"
      headerHeight="0"
      backgroundColor="#4E597A"
      borderStyle="solid"
      borderColor="#4e597a"
      verticalAlign="middle"
       shadowDistance="0"
   borderThicknessBottom="NaN"
   borderThicknessLeft="0"
   borderThicknessRight="0"
   borderThicknessTop="0"
cornerRadius="0" >      
            <sides:LeftDataGrid id="leftGrid" styleName="{styleSel}" width="100%" height="100%" />            
</mx:Panel>
<mx:Panel id="detailsPanel"    
         verticalGap="0"
      horizontalGap="0"
      borderAlpha="0"
      width="{bottomBox.width - bottomBox.width*.35}" height="212"
      headerHeight="0"
      backgroundColor="#4E597A"
      borderStyle="solid"
      borderColor="#4e597a"
       verticalAlign="middle"
      shadowDistance="0"
   borderThicknessBottom="NaN"
   borderThicknessLeft="0"
   borderThicknessRight="0"
   borderThicknessTop="0"
cornerRadius="0" >
        <sides:DetailsDataGrid id="alldetailsgrid" styleName="{styleSel}" width="100%"  height="100%" Details="{items}"  change="currentState = 'unprocessedState';"/>
</mx:Panel>
     </mx:HBox>
  </mx:VBox>
Actionscript code:
flipTimer = new Timer(3 *60000 ,6);
            flipTimer.addEventListener(TimerEvent.TIMER, onFlipTimer);
flipTimer.start();
private function onFlipTimer(event:TimerEvent):void{     
     flipTable();
     count = count+1;          
if(currentState == 'unprocessedState'){               
   if (count == 2){               
     currentState= 'leftUpMapdownUnprocessed';}
   else if (count == 3){          
     currentState= 'leftUpMapdownUnprocessed';}
  }else{
  if (count == 2){          
     currentState = 'leftUpMapdownProcessed';}
  else if (count == 3){          
     currentState = 'leftUpMapdownProcessed';}
if (count ==4 || count == 5){
currentState= 'rightUpMapdownUnprocessed';}
if (count == 6){
     currentState = '';               
        count = 0;
     resetFlip();                    
public function flipTable():void{
if(currentState == 'unprocessedState'){                 
UnprocessedDataGrid.dispatchEvent(new Event(Event.CHANGE));
}else{       
alldetailsgrid.dispatchEvent( new Event( Event.CHANGE ) );

Hi Ramesh,
Transaction variant :--
as per your requirement use t.code SHD0
and then enter the transaction code VA01
and enter the transaction variant BUS2032
and select the programme SAPMV45A
and go CHANGE WITH PROCESSING (F6)
then continue to press ENTER, and change what ever u want to make mandatory or suppress
Reward points if u helpful
Cheers,
Govind.

Similar Messages

  • I have a component like the following and it completely crashes the design view in flex builder

    I have a component like the following and it completely crashes the design view in flex builder.I can see anything in the layout. Everything compliles fine and looks normal in the outline view. Any ideas whats wrong. If I remove the AdvancedDataGridColumnGroup's all looks fine
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Panel x="353" y="34" width="1159" height="505.7" maxWidth="663" allowDrag="true" allowResize="true" allowClose="true" allowMaximize="true" allowMinimize="true" resizeEffect="Resize" moveEffect="Move" close="parent.removeChild(this)" maxHeight="680" layout="absolute" title="Back office list" xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{tradesResult}" width="100%" height="373" sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
            <mx:columns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="Reference" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="clientside" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="bankDealRef" headerText="Bank Ref" width="70" editable="true" wordWrap="true" dataTipFunction="dataTipFuncNotes" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="Premium2" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:columns>
        </mx:AdvancedDataGrid>
    </mx:Panel>

    Nikos,
    When using grouped columns you should change the <mx:columns> to <mx:groupedColumns>, I ran this example in a sandbox app and it works fine.
    EXAMPLE:
    <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{flatData}" width="100%" height="373"
            sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
           <mx:groupedColumns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="customer" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="product" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="revenue" headerText="Bank Ref" width="70" editable="true" wordWrap="true"
                        showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="cost" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:groupedColumns>
        </mx:AdvancedDataGrid>
    HTH,
    Kenny Yates

  • Pop to a particular view in Flex Mobile

    I have a viewnavigator application where few views are added(to the stack). I need to pop to a particular view from one view. Flex provided only popView, popAll and popToFirst options. How can I pop to a particular view in the view stack?

    Until I read your question I hadn't heard of popView, but can't you pop to any view by doing a pushView(the view you want to go to), then a popView() would take you there.

  • How can I change view options for ALL playlists?

    How can I change view options for ALL playlists? With one single click or trick?
    I have a lot playlists and don't want to change every single one of them separatly.
    Thanks for your help. (I use Windows 7)

    There's no FAST way I know of, which is what I think you mean.
    Only the painful SLOW way of one-by-one.
    You could make a new playlist from the main library after you've set the columns up as you like.
    Go to an existing playlist that doesn't have the columns you want, and select all.
    RIght-click > Add to Playlist and send them to the new playlist.
    That's still one-by-one and only works with static playlists, not smart ones.

  • Folder in Change view of object Type

    Hi Guys,
    Can anyone tell me if there is any folder involved in the change view of object type.
    Any input is appreciated.
    Thanks,
    Shilpa

    Hi Shilpy!
    What do you mean with folder?
    Thanks,
    Zsolt

  • Day Limit in Change View "Terms of Payment":Details?

    What does exactly does the Daylimit field in
    "Change View " Terms of payment": Details "means?
    A detail explanation with an EXAMPLE is well appreciated.
    Thanks for your time

    Hi,
    The DayLimit Under Payment Term is Used to specify Perticular date to which you want the " Payment Term" or Condition should apply on the Invoice.  Explain you with simple example.
    Eg: 1.Payment Term 1001
    DayLimit 15
    Discount 2%  
    With the above inputs system Consider only the invoices posted on and before 15th date for 2% discount and for the Invoices posted after 15 of every month the said discount is not calculated or system will not consider the line for discount.
    Eg. Payment Term 1001
    Daylimit 31
    Discount 4%
    with the above inputs system consider's invoices posted from 16 to 31 dates for discount of 4%. 
    So If requirment is like this invoices posted on or before 15 should get 2% discount and invoices posted between 16 to 31 should get 4% discount then you can create the above manner.
    Hope you doupt is cleared .
    Thanks
    Goutam

  • [svn:fx-trunk] 10317: In ASDoc comment, change reference of "Flex Builder" to "Flash Builder"

    Revision: 10317
    Author:   [email protected]
    Date:     2009-09-16 12:56:03 -0700 (Wed, 16 Sep 2009)
    Log Message:
    In ASDoc comment, change reference of "Flex Builder" to "Flash Builder"
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: -
    Tests run: - checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/netmon/NetworkMonitor.as

  • [svn] 2384: The ASC fix for ASC-3414 resulted in a correction of the behavior of E4X filter expression evaluations , but we don't want to introduce this change in a Flex 3.0.x minor release.

    Revision: 2384
    Author: [email protected]
    Date: 2008-07-08 06:23:19 -0700 (Tue, 08 Jul 2008)
    Log Message:
    The ASC fix for ASC-3414 resulted in a correction of the behavior of E4X filter expression evaluations, but we don't want to introduce this change in a Flex 3.0.x minor release. So I'm reverting this fix from the 3.0.x branch of ASC and checking in a new 1.4 downgraded asc.jar to reflect the change. This will be merged to other Flex 3 branches such as 3.0.3 and 3.1.0, but will not be merged to trunk.
    The change in behavior was noticed for Flex 3.0.x when a asc.jar was updated in revision 2108, and re-applied in revision 2129. Reverting this fix will resolve bug SDK-15924.
    QE: Yes
    Doc: No
    Checkintests: Pass
    Reviewer: Erik
    Bugs:
    SDK-15924 - Calling a .NET WebService always returns a fault (after build 2108)
    Other Bugs Referenced:
    ASC-3414 - with block uses local variable instead of object property when -warnings flag on
    Ticket Links:
    http://bugs.adobe.com/jira/browse/ASC-3414
    http://bugs.adobe.com/jira/browse/SDK-15924
    http://bugs.adobe.com/jira/browse/SDK-15924
    http://bugs.adobe.com/jira/browse/ASC-3414
    Modified Paths:
    flex/sdk/branches/3.1.0/lib/asc.jar
    flex/sdk/branches/3.1.0/modules/asc/src/java/macromedia/asc/embedding/LintEvaluator.java

    Yes but there's no point doing it here. As the Terms of Use make quite clear this is a User to User forum. It's Users like you talking to other Users. It's not a channel to communicate with Apple.
    Regards
    TD

  • [svn] 2383: The ASC fix for ASC-3414 resulted in a correction of the behavior of E4X filter expression evaluations , but we don't want to introduce this change in a Flex 3.0.x minor release.

    Revision: 2383
    Author: [email protected]
    Date: 2008-07-08 06:22:40 -0700 (Tue, 08 Jul 2008)
    Log Message:
    The ASC fix for ASC-3414 resulted in a correction of the behavior of E4X filter expression evaluations, but we don't want to introduce this change in a Flex 3.0.x minor release. So I'm reverting this fix from the 3.0.x branch of ASC and checking in a new 1.4 downgraded asc.jar to reflect the change. This will be merged to other Flex 3 branches such as 3.0.3 and 3.1.0, but will not be merged to trunk.
    The change in behavior was noticed for Flex 3.0.x when a asc.jar was updated in revision 2108, and re-applied in revision 2129. Reverting this fix will resolve bug SDK-15924.
    QE: Yes
    Doc: No
    Checkintests: Pass
    Reviewer: Erik
    Bugs:
    SDK-15924 - Calling a .NET WebService always returns a fault (after build 2108)
    Other Bugs Referenced:
    ASC-3414 - with block uses local variable instead of object property when -warnings flag on
    Ticket Links:
    http://bugs.adobe.com/jira/browse/ASC-3414
    http://bugs.adobe.com/jira/browse/SDK-15924
    http://bugs.adobe.com/jira/browse/SDK-15924
    http://bugs.adobe.com/jira/browse/ASC-3414
    Modified Paths:
    flex/sdk/branches/3.0.3/lib/asc.jar
    flex/sdk/branches/3.0.3/modules/asc/src/java/macromedia/asc/embedding/LintEvaluator.java

    Yes but there's no point doing it here. As the Terms of Use make quite clear this is a User to User forum. It's Users like you talking to other Users. It's not a channel to communicate with Apple.
    Regards
    TD

  • [svn] 2377: The ASC fix for ASC-3414 resulted in a correction of the behavior of E4X filter expression evaluations , but we don't want to introduce this change in a Flex 3.0.x minor release.

    Revision: 2377
    Author: [email protected]
    Date: 2008-07-07 14:38:01 -0700 (Mon, 07 Jul 2008)
    Log Message:
    The ASC fix for ASC-3414 resulted in a correction of the behavior of E4X filter expression evaluations, but we don't want to introduce this change in a Flex 3.0.x minor release. So I'm reverting this fix from the 3.0.x branch of ASC and checking in a new 1.4 downgraded asc.jar to reflect the change. This will be merged to other Flex 3 branches such as 3.0.3 and 3.1.0, but will not be merged to trunk.
    The change in behavior was noticed for Flex 3.0.x when a asc.jar was updated in revision 2108, and re-applied in revision 2129. Reverting this fix will resolve bug SDK-15924.
    QE: Yes
    Doc: No
    Checkintests: Pass
    Reviewer: Erik
    Bugs:
    SDK-15924 - Calling a .NET WebService always returns a fault (after build 2108)
    Other Bugs Referenced:
    ASC-3414 - with block uses local variable instead of object property when -warnings flag on
    Ticket Links:
    http://bugs.adobe.com/jira/browse/ASC-3414
    http://bugs.adobe.com/jira/browse/SDK-15924
    http://bugs.adobe.com/jira/browse/SDK-15924
    http://bugs.adobe.com/jira/browse/ASC-3414
    Modified Paths:
    flex/sdk/branches/3.0.x/lib/asc.jar
    flex/sdk/branches/3.0.x/modules/asc/src/java/macromedia/asc/embedding/LintEvaluator.java

    Yes but there's no point doing it here. As the Terms of Use make quite clear this is a User to User forum. It's Users like you talking to other Users. It's not a channel to communicate with Apple.
    Regards
    TD

  • Custom Canvas Shape visible in design view of flex builder

    I have a library which has custom controls. I have a BubbleCanvas class with the following constructor.
          super();
          var style:CSSStyleDeclaration;
          this.setStyle("backgroundImage", canvasBackground);
          this.setStyle("backgroundSize", "100%");
          var btnSave:LinkButton = new LinkButton();
          style = new CSSStyleDeclaration();
          style.setStyle("horizontalCenter", 0);
          style.setStyle("bottom", 20);
          btnSave.label = "save";
          btnSave.styleDeclaration = style;
          btnSave.addEventListener(MouseEvent.CLICK, btnSave_Click);
          this.addChild(btnSave);
          var btnClose:LinkButton = new LinkButton();
          style = new CSSStyleDeclaration();
          style.setStyle("horizontalCenter", 0);
          style.setStyle("top", 5);
          btnClose.label = "close";
          btnClose.styleDeclaration = style;     
          btnClose.addEventListener(MouseEvent.CLICK, btnClose_Click);
          this.addChild(btnClose);
          this.addEventListener(FlexEvent.CREATION_COMPLETE, BubbleForm_CreationComplete);
          this.width = 600;
          this.height = 300;
    canvasBackground is a png image with transparency so that the form is shaped  like a
    conversation bubble.
    Now at run time everything works great, what I would like is to have the  control
    look like a conversation bubble in the design view of flex.
    Oh I only want actionscript code, since the flex sdk controls are all
    actionscript. This is partly acedemic for me.
    Thanks,
    Greg

    > The content is there, but not the 'look' we have created.
    PS how are you referencing the CSS styles? Don’t forget in design view it DW and Contribute will not run any dynamic variables i.e. #stylePath#/this.css you have to use absolute paths. This is sometimes a common issue in deisgn view.

  • How to change view in iPhone from vertical to horizon and vice versa?

    How to change view in iPhone from vertical to horizon and vice versa?

    Not all applications will go from Portrait to Landscape. Changing just requires you to turn the device. However, if you have the orientation lock activated, then it will not change to landscape. To check, look in the status bar and see if you can see a small lock shaped icon near the battery icon. If you do, then orientation lock is activated. To turn it off, swipe upwards from the bottom of the iPhone screen to bring up Control Center. The orientation lock is the last icon on the top row to the right. Tap on it to turn it off. White is on, black is off.

  • I touch keeps blacking out, camera wont change views either

    when we hit an icon it keeps blacking out or returning to main page... camera wont change views either

    Try #2 and #3 in link below. If neither work, you most likely have a hardware issue.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Focus stays when change view

    Hello,
    I have a viewstack with 2 views.
    In view 1 is a textinput.
    In view 2 is an image.
    when i startup my application, view 1 is shown.
    I type an a in the textinput.
    Now i press a button and it goes to view 2.
    I type bcd.
    I close this view to return to view 1, and what i see is in my textinput shows bcd as value.
    I tried to kill the focus when i press the button to change view but it doesn't work.
    Please some help.
    Code i tried:
    this.stage.focus=null;
    Application.application.focusManager.deactivate();
    this.focusmanager=null;
    this.focusEnabled=false;
    this.focusManager.deactivate();

    The button is in a menubar.
    Is there a general place and/or function so i can see wich item in my project received focus?
    Should i do something like creating an eventlistener on the stage that calls a function on each enterframe so i can trace focus?
    I did solve my problem by setting: myMenuBar.focusenabled=true;
    and when i click on the menu i put focus on the menubar by setting; stage.focus=myMenuBar;
    I wonder if this is the best solution, cause when you are inside the second view and you use for example the S for a stroke function inside the second view, but you also created a menu shortcut with the S that saves your project.
    This way the S will save the project because the menubar has focus..
    Or would this be the only solution and youll have to be sure not to use the same key for different functionality?

  • PSE 7 crash when i try to change view from thumb in organizer

    hi.. im new to all this. i just installed pse7 and when i try to change view in the organizer from thumb nail to batch or any other view option it shuts down. also organizer will not generate thumb nails unless i look at them one at a time. also would like to know how to convert raw files to jpg. any help would be great. thanks.

    First, try repairing the catalog:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#_Ref215030515
    Next, recreate the thumbnail cache:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#_Recreate_Organizer_thum bnails
    Then wait until it finishes generating thumbnails (could be hours, depending on how many photos you have).  If you still have problems, post back here.

Maybe you are looking for

  • Can i remap a button on the keyboard? (trying to support copy/paste on mac)

    my app runs cross-platform, and on the mac os x, copy/pasting is accomplished via ctrl+c/v, when the native os wants to use cmd-c/v. (ie in order to copy from a browser and paste into my java app, the user would have to press cmd-c to copy from the m

  • XML PrintSelectedInvoices completes with warning when run as child request

    Hi Friends, I have converted the print selected invoices to xml and it runs fine when run by itself through SRS but it fails when it is submitted as a child request ( when it gets run as a child request when Invoice import and print program is run).

  • G5 powermac tower unable to boot

    Tried to boot up this morning. the screen froze with apple logo showing but no other movement, then after about 3 mins fans start to make noise. Tried to reset PRAM but to no avail. I then connected G5 to my G3 laptop via firewire in target mode and

  • White screen/page shown after logon to Internet Sales

    Hi! We have installed Internet Sales R/3 Edition for B2B and have configured it with XCM according to the documents "CRM Web Application Installation Guide 4.0, SP0" and "Internet Sales R/3 Edition", the latter found on SAP Best Practices. Both Shopa

  • Get row id after EJB create method.

    Hi, does any one know how to get an id of new created by CMP ejb row? When I create new object it's id is 0, when i call ejb create it creates new row in DB and crates new ID by increasing the old one, but how can I get this new ID after create has f