Components inside components (Flash 8)

Hi,
I have an Accordion component which needs to contain a number
of small forms, each of which is built as a MovieClip containing
TextInput, Button, ComboBox, etc.
So, I build my little forms in Flash, make them into
MovieClips, give them a linkage identifier and assign them the AS2
class "mx.core.View", as the documentation says.
Then I use ActionScript to attach these to my Accordion
control, using my_accordion.createChild(). OK, fine. Works nicely.
The problem is that in the next few lines of code I also want
to be able to populate the TextInput and ComboBox components which
reside inside my accordion. I can't do it. Trying to do so fails
silently. Tracing out the path to the Components shows that they
are "there", but if i put some content into, say, one of the
TextInputs up-front (i.e. in the Properties panel inside Flash) and
then try to trace... my_acc.my_form.my_textInput.text... i get
undefined.
So, it looks like the components inside the form inside the
Accordion aren't yet "initialised" when I am trying to get/set
their values. I've seen similar behaviour before, but it's not
clear in the documentation how to get around it.
Anyone help? What is the correct way to use components inside
components like this? I don't want to have to call a second
function or put any code on the timeline or anything like that!
Many thanks,
Andy

Flash only supports a handful of html tags natively, so the
short answer is, no, you can't do that. However, there are a few
xhtml render classes floating around that will render many many
more tags, including iframes. However, these implementations have
VERY specific style and construction limitations, and of course
don't support any scripting, so if you don't have control over the
content, then it's pretty much hopeless.

Similar Messages

  • Components inside components - Bad design?

    Is it bad practice/design to nest components inside components using Flex 4? Should I simply be creating components and inserting them into my main application as below, or doesn't it matter?
    <com:MyComp1>
        <com:MyComp2>        <com:MyComp3>
                <s:Label text="This is a test."/>        </com:MyComp3>
        </com:MyComp2></com:MyComp1>

    It all depends. Knowing nothing about the components, all I can say is that it depends on the complexity of the components individually and collectively as well as what level of reuse you may desire.

  • AS: Accessing Components inside Components

    I'd like to apply an action to a UI Component. This UI Component is in a TabNavigator. Using actionScript, how can I communicate to that UI Component?
    The progression looks like this:
    TabNavigator > NavigatorContent > Border > Group > UI Component
    Thanks!

    Solved my own problem!
    <mx:TabNavigator x="10" y="10" width="980" height="748" id="playerTabNav" creationPolicy="all">
    The children of a TabNavigator aren't created until they're needed.Only the contents of the first tab are actually created, because they're part of what's needed when the TabNavigator is first displayed. The contents of the second tab won't be instantiated until they need to be displayed, which is when the second tab is clicked on.
    To force the contents of the other tabs to be instantiated, the creationPolicy property of the TabNavigator is changed to be "all". This will cause all of the different tabs to be instantiated, regardless of having been clicked on.

  • Programmatically refresh components inside a specific row of an af:table

    How to programmatically refresh components inside a specific row of an af:table without refreshing the whole table ?_
    I have an af:table displaying a read-only view object. There is an edit button inside the table calling an af:popup, where the user can update some informations and click a submit button to validate his changes.
    The action property of this button is a method in a backing been where
    -     1 : A stored procedure is called to update several tables (related to my read-only VO).
    -     2 : The VO is re-queried (VO. refreshQueryKeepingCurrentRow() )
    -     3 : The whole table is refreshed (AdfFacesContext.getCurrentInstance().addPartialTarget(myTable) )
    Is it possible to programmatically refresh some components of the current row of the table without refreshing the whole table (point 3)?
    I’ve tried to play with the “partialTrigger” property of af:outputText (table:column:outputText), without success.
    Thanks
    Nicolas

    "+do you happen to want to refresh following an action on the row? Like a link/button click?+" : NO
    There is a table on my page. The user select a row and click on an edit button. This edit button call a popup where the user can modify some information (not directly on the viewObject. All fields in the popup are dummy fields bind to attributes in my backing bean) and then he click on a submit button.
    The submit button action execute a method "submitInformation" in a backing been.
    public String submitInformation(){
            Map<String, Object> params = new HashMap<String, Object>();
            params.put("pManNo", xManNo.getValue()); //xManNo is an attribute of the backing bean
            params.put("pDate", xPeriod.getValue()); //xPeriod is an attribute of the backing bean
            // Execute Operation
            OperationBinding oper = ADFUtils.findOperation("serviceSubmitInfo");
            oper.getParamsMap().putAll(params);
            String results = (String)oper.execute();
            // Close Popup & Refresh Row if OK
            if(!StringUtils.isStringEmpty(results) && results.equals("TRUE")){
                 closePopup("pt1:popAbs");
                 refreshMyCol();
    }The serviceSubmitInfo method is defined in my serviceImpl
        public String serviceSubmitInfo (String pManNo, String pPeriod, ......){
             String results =
                callStoredFunction("? :=myDatabaseFunction(?, ?, ?, ?)",
                                   new Object[] { pManNo, pPeriod, ...... });
              // Commit
              getDBTransaction().commit();
              // Refresh VO (re-query & set currentRow)
              getMyVO().refreshQueryKeepingCurrentRow();         
              return results; // TRUE if ok
        }I want the " refreshMyCol()" method to refresh only the current row and not the whole table...
    Regards
    Nicolas

  • When we will be able to use AJAX components inside a portlet?

    Hi
    Thank you for reading my post
    when we will be able to use AJAX components inside a portlet?
    thanks

    I noticed the failure of the portlet to load its needed JavaScript files. Are there additional problems with the Ajax components running inside a portlet? Using the weblets project seemed like one approach to dealing with the resource loading problem.
    ...Kevin

  • Alignment of the components inside tab in JTabbedPane

    I want to align the components inside the tab in tabbedpane.
    I have three tabs in the tabbed pane For each tab I added the components on the panel and added the panel as a tab.
    But as the number of components on each tab are not same the components inside the tab doesn't get aligned properly.
    The components gets aligned in the center and I want to align them at top. How can I do that?
    Please help..

    How does
    the number of components on each tab are not samerelates to
    the components inside the tab doesn't get aligned properly. The components gets aligned in the center and I want to align them at top??

  • How to setBounds for components inside JLayeredPane

    Hello,
    Please help me find a solution to the following: I'm trying to construct a JPanel inside which there is a JLayeredPane. In the JLayeredPane there is (among others) a JScrollPane with a view onto a table. When the top panel resizes, I need to track the new size of the JLayeredPane and setBounds for the components inside the JLayeredPane for them to render correctly filling out the entire space available. I don't want to setBounds to a high threshold because on one of the layers there is a JScrollPane which needs to precisely fill the entire area of JLayeredPane to show the scroll controlls in their correct position. Here is a much simplified sample code:
    jLayeredPane.addComponentListener(new ComponentAdapter() {
    public void componentResized(ComponentEvent e) {
    setScrollPaneBounds();
    public void componentShown(ComponentEvent e) {
    setScrollPaneBounds();
    private void setScrollPaneBounds() {
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    Dimension size = jLayeredPane.getSize();
    myJScrollPane.setBounds(0, 0, size.width, size.height);
    The problem in the above code is that the behaviour is random, when I resize the frame the myJScrollPane.setBounds sometimes sets the bounds, and other times it does not. Also I see the rendering of the JScrollPane 'leading' other changes higher up in the component hierarchy.
    Please help me solve these problems.
    Thanks.

    Thanks for suggestion, but that doesn't change anything. The biggest problem is the order of events. In the JFrame there is some complex layout with nested JSplitPane (2) and when I resize the window this little JLayeredPane seems to redraw FIRST and should be one of the last as it is deep in the component tree. When I take away the ComponentListener I have installed onto the JScrollPane, then event sequence is all good, but the setBounds on the JScrollPane is never called and the sizing becomes incorrect.
    Marcin.
    - CryptoHeaven Team

  • Taking the Customer Components inside plant for Production process

    Hi All,
    I have got one Businee Scenario for i need to map in SAP.
    Scenario: Customer is sending the Components for making the finished goods. In this case Business will be using the customeru2019s components for production process.
    Now, How to take the components inside the plant for the Production Processing
    In this below points needs to be consider:
    1.     Components Stock should be Stock of this Production Plant
    2.     Components valuation should not effected of production Plant
    3.     These components should be used for the Production
    Please suggest the Suitable Process in SAP.
    Regards
    Vinay

    Try this..
    You can have the BOM of the Finl material with the customers materials as the COMPONENTS...
    Then in cs02 ,double click the item numbers (components) and uncheck the costing relevency indicator..
    This will make the accountability in stock and not in valuation..
    hope this helps..
    karthick

  • Can all input components inside a PanelGrid be made readonly.?

    I have bunch of html input components inside a panel group.. I want all of them to be readOnly based on my condition.
    I have an option of adding readOnly attribute to add individually to all the input components . But , i am looking for some thing more than this.. Can the complete panelGrid be made readonly like with out adding readOnly= true to components inside panel grid..
    thanks.
    cnu

    Try this. This is not a straight forward way.
    JSF Code
    <h:panelGrid id='readOnlyGrid'>
                   <h:inputText disabled="#{employee.test1}" value="#{employee.name}"></h:inputText>
                   <h:inputText disabled="#{employee.test2}" value="#{employee.age}"></h:inputText>
                   <h:inputText disabled="#{employee.test3}" value="#{employee.name}"></h:inputText>
              </h:panelGrid>
    Javascript
    function makeReadOnlyGrid() {
           var grid = document.getElementById('myForm:readOnlyGrid');
           var inpObjs = grid.getElementsByTagName('INPUT');
           for(var i=0;i<inpObjs.length;++i) {
                inpObjs.readOnly = inpObjs[i].disabled;
              inpObjs[i].disabled = false;
    }Call this javascript function like this:
    Before closing the body tagwindow.onload=makeReadOnlyGrid;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to put a video player swf file inside a flash file

    i want to know how i can put a flash file inside a flash wbsite. i have found a tutorial http://www.ehow.com/how_4906532_within-another-flash-swf-file.html that says something like that but in this tutorial if i understand correctly it creates a new flash project and add another swf inside. i have my website created and i just want to add video gallery, image gallery etc that are already swf. how i can do that?

    You can use swf inside of another swf.
    If you are using Actionscript2 then learn about LoadMovie
    And for AS3 it is Loader.

  • Flash file inside a Flash File

    I know this may see a stupid question... But I've looked
    everywhere and haven't found an answer. How do I add a flash file
    inside another flash file? I'm interested in creating an all flash
    website, but am kinda stuck when it comes to switching pages on the
    site. What's the easiest way to do this?

    Hello Ben J.,
    loadMovie is your new best friend.
    The best way to use this is to create an empty movie symbol,
    put it on the
    timeline and give it an instance name (placeHolder for
    example). Then you
    can load another swf into that placeHolder clip with the
    following script:
    placeHolder.loadMovie("whatever.swf");
    This is a GREAT way to cut down on the initial load time of a
    site because
    you only load what you need when you need it.
    You can really have some fun when you start controlling
    objects on the main
    timeline from your loaded movies and vice versa.
    Good luck!
    Jesse H.
    Adobe Community Expert
    My site:
    http://www.jharding.com
    Free Blog Radio:
    http://www.tornadostream.com
    > I know this may see a stupid question... But I've looked
    everywhere
    > and haven't found an answer. How do I add a flash file
    inside another
    > flash file? I'm interested in creating an all flash
    website, but am
    > kinda stuck when it comes to switching pages on the
    site. What's the
    > easiest way to do this?
    >

  • Is It possible to load Html page inside Adobe Flash...?

    Hi Everyone!
    Is It possible to load Html page Inside Adobe Flash CS5.
    Any help would be a great help...!
    Originally, i wanted to bring in through <IFRAME> but i don't see that flash understands that.
    Thanks in advance!
    -yajiv

    Not exactly sure how you where planning to display that HTML content in relation to the overall page, but given the limitations of Flash... that may just not be possible...
    But, it would be a simple matter to display an HTML iframe over the top of or behind a Flash .swf... So while the iframe would not be a part of the .swf, it certainly could be designed to make it look as though it were.
    Controling the stacking order or layering of content on a Web page is accomplished through z-indexing. Correctly positioned and z-indexed, the iframe could apear over the top of the .swf... the .swf in effect being the background... OR the iframe could appear behind the .swf and with a transparent section in the .swf, the iframe would appear through that hole. If there is navigation or links in the iframe, they will be blocked by the .swf though.
    http://www.w3schools.com/cssref/pr_pos_z-index.asp
    But this may be an option....
    Best wishes,
    Adninjastrator

  • Is It possible to load Html page inside Adobe Flash Professional..?

    Hi Everyone,
         Is It possible to load Html page inside Adobe Flash Professional or Adobe Flex. Thanks in Advance.
    -Vijay

    probably not the way you are thinking.
    flash textfields and their extensions have a limited number of html tags they can parse so, in general, html from most web pages will not display, as expected in flash.

  • Loading a flash inside another flash

    i want to know how i can load a flash inside another flash
    container

    damatrixhasu wrote:
    > i want to know how i can load a flash inside another
    flash container
    go to help - search for 'loadmovie'
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Editing swfobject.js code so hyperlinks inside the flash widget open in a new window

    0down votefavorite
    I have a flash calendar widget (code shown directly below) and I do not have access to anything other than the compiled .swf file (no access to .fla).
    The widget contains some hyperlinks to other websites, these links are dynamic and changes based on a number of things.
    There is also a corresponding swfobject.js file that is used to add functionality to the flash widget. The swfobject.js code is shown further down this post.
    Currently, the way the code is now, when I click any of the hyperlinks that are available to me in the widget, the destination website that hyperlink takes me to opens in THE SAME PAGE as the flash widget which is a big problem.
    I need to edit the code below so that any hyperlinks that are clicked inside of the flash widget open in a brand new browser window and do not take the user away from the original widget other than opening a new page with new content.
    Because the hyperlinks that are available are always changing, the swfobject code below uses some functions and parameters.
    I am hoping you can show me exactly what code I must insert, and exactly where I must insert it, in order to alter the behavior that happens so that when a user clicks one of the hyperlinks inside the flash widget, so that the content at the other end of the hyperlink opens in a new window, instead of opening in the same window.
    See code below.
    Thank you in advance for any help you can provide
    Flash Widget Code
    <!-- Embedded Calendar --> <div id="activecontent"> <script type="text/javascript" src="swfobject.js"></script> <div id="awccalendar"></div> <script type="text/javascript"> var so = new SWFObject("awc.swf", "awccalendar2", "700", "180", "8", "#ffffff"); so.addVariable('calendarid', '0'); so.addVariable('appurl', ''); // Flash Widget Initial Date should be ddmmyyyy so.addVariable('ldate', '20052014'); so.write('awccalendar'); </script> </div>  <!-- Embedded Calendar -->
    SWFOBJECT.JS CODE
    /** * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/ * * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * */ if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(

    In that case, I will have no choice but to decompile the .swf to get the .fla because the original .fla is un-obtainable. Unless there is a way to edit the contents of the .swf file without decompiling it.
    I can see the code inside via various decompile tools and it seems that I would need to add the equivalent of <src target=_blank> to some of the lines I have shown below.
    obj_xml.load(appurl + "loadconfig.aspx?calendarid=" + calendarid);  -- need to edit this so it opens in a new window using something similar to target = _blank
    dest_page = appurl + "default.aspx"; -- need to edit this so it opens in a new window using something similar to target = _blank
    I know a lot of decompile tools can get you the code and the .fla but once you edit and re-compile and attempt to replace the original with the new & updated file, the decompiler did not necessarily generate the properly formatted flash pro project file, so compiling it back into an operational .swf often ends in failure.
    Do you know or can you recommend a tool that has a very good track record of re-compiling the decompiled modified.fla into a workable and usable .swf?

Maybe you are looking for

  • Possible to import iMovie HD to iMovie '08?

    I made a video in iMovie HD (not, I believe iMovie 6) on a PowerBook G4. We got this new computer as it has enough memory etc for Final Cut Express. My problem: Ultimately I would like to have the movie in Final Cut Express. I cannot seem to import t

  • Camera not recognised

    I have a JVC Model GZ-MG27-E Video camera with USB 2.0 output (no fire-wire) This camera type is not on the list of recognised cameras for Final Cut Express HD 1) Is there a software patch available that will enable it to be recognised? 2) Does Final

  • Music in library, but not showing up under "music"

    For some reason, if I click on "Music" I see the screen that you get with a fresh iTunes library, but my music is all still there. How do I fix this screen so I can navigate the music in my library?

  • BAPI for T.Code F-02

    Hi Dear Friends, Thanks in Advance. Is there any BAPI for the Transaction F-02. Regards; Sridhar.J

  • Change of user name

    Hi all, I just bought a Macbook pro. I was wondering if anyone knew how to change the user name of the computer. The one associated to the little house icon. I have been trying unsuccessfully to do it! A part that I'm really enjoying my new computer!