Copy exact structure, data of textflow to its derieved class

Hi All,
I am writing a class inherited the TextFlow ( public class
myclass extends TextFlow {} )
Now in my new class, i want it able to read textFlow from a
xml format file. So we could have a tempoary this way:
After file reading completion event, we could have:
tempFlow = TextFilter.importToFlow(e.target.data,
TextFilter.TEXT_LAYOUT_FORMAT);
Then now i want my class owns this structure and data. (this
= tempFlow)
of course, we can assign this = tempFlow.
Do you know how to do this exact copy?
Thank you for your answer,
Best,
-Hoang Long

Hi,
TextFlow not being marked final is a bug. Sorry about that.
The other classes are marked final and this is an omission.
That said moving elements from one FlowElement to another can
be accomplised fairly simply.
In order to an "exact" copy you'll want to copy the elements.
for (var idx:int = 0; idx < tempFlow.numChildren; idx++)
var elem:FlowElement = tempFlow.getChildAt(idx);
this.addChild(elem.deepCopy());
To just move the elements this will work.
while (tempFlow.numChildren)
this.addChild(tempFlow.getChildAt(0));
Note that's a recent change that addChild doesn't throw if
the parameter already has a parent. The latest code removes the
parameter from its existing parent.
Best Regards,
Richard

Similar Messages

  • Samyak Veera - What is Windows 10 exact release date and its futures?

    Hi All,
    My name is Samyak Veera and I am waiting for Window 10. Can Anyone know the exact relaesing date of window 10? I read it some of futures but I want to know complete info about it, is this window is prespective to businesses also
    Thanks
    Samyak Veera

    Hi,
    Yeah, we don't know the exact release time but I recommend you subscribe to our Windows Blog
    http://blogs.windows.com/windows-blog-directory/
    and
    Windows IT Pro Insider
    to get latest news about Windows 10 (TP)
    At this moment, I'd like to share the following links with you for your convenience:
    http://blogs.windows.com/bloggingwindows/2015/01/21/the-next-generation-of-windows-windows-10/
    http://blogs.windows.com/bloggingwindows/2015/01/23/january-build-now-available-to-the-windows-insider-program/
    And if you have any suggestion on the preview build version, please submit the suggestions via "Windows Feedback App"
    Yolanda Zhu
    TechNet Community Support

  • Copy Folder Structure from Explorer into Outlook 2013

    Hi,
    I have just spent approx 3 months designing an Enterprise Classification Scheme, and built a folder structure in Explorer that I want to replicate in Outlook.
    I thought it would have been as simple as copy and pasting from Explorer to an Outlook folder however when I attempt to do so I get the following error:
    "Only files or objects can be attachments. x:\xxxx\xxxxx\xxxxx is a folder structure and cannot be attached."
    Surely there must be a simple way of doing this so I don't have to manually recreate and name 442 folders in Outlook.
    Any advice greatly appreciated.

    I tried the Outlook tool with no luck.  It ran and looked as though it was doing something but no folders were created.
    I did a bit more of a search around and came across a spreadsheet that works perfectly for making folder structures on Network drives.  Anyone up to having a look at the VBA in the  spreadsheet and modifying it to make shared folders in outlook
    2013?
    Sub CreateFolderStructure()
    'Create folder for all vlues in current sheet
    'folders will be created in folder where the excel file was saved
    'folders will be created from first row, first column, until empty row is found
    'Example expected cell structure: (data starting in current sheet, column A, row 1)
    'folder1    subfolder1  subsubfolder1
    'folder2
    'folder3    subfolder3
    '           subfolder4
    'this will result in:
    '<currentpath>\folder1\subfolder1\subsubfolder1
    '<currentpath>\folder2
    '<currentpath>\folder3\subfolder3
    '<currentpath>\folder3\subfolder4
        baseFolder = BrowseForFolder
        If (baseFolder = False) Then
            Exit Sub
        End If
        Set fs = CreateObject("Scripting.FileSystemObject")
        For iRow = 2 To 6500
            pathToCreate = baseFolder
            leafFound = False
            For iColumn = 1 To 6500
                currValue = Trim(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, iColumn).Value, ":", "-"), "*", "-"),
    "?", "-"), Chr(34), "-"), "<", "-"), ">", "-"), "|", "-"), "/", "-"), "\", "-"))
                Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, iColumn).Value = currValue
                If (currValue = "" And leafFound) Then
                    Exit For
                ElseIf (currValue = "") Then
                    parentFolder = FindParentFolder(iRow, iColumn)
                    If (parentFolder = False) Then
                        Exit For
                    Else
                        pathToCreate = pathToCreate & "\" & parentFolder
                        If Not (fs.FolderExists(pathToCreate)) Then
                            CreateDirs (pathToCreate)
                        End If
                    End If
                Else
                    leafFound = True
                    pathToCreate = pathToCreate & "\" & currValue
                    If Not (fs.FolderExists(pathToCreate)) Then
                        CreateDirs (pathToCreate)
                    End If
                End If
            Next
            If (leafFound = False) Then
                Exit For
            End If
        Next
    End Sub
    Function FindParentFolder(row, column)
        For iRow = row To 0 Step -1
            currValue = Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, column).Value
            If (currValue <> "") Then
                FindParentFolder = CStr(currValue)
                Exit Function
            ElseIf (column <> 1) Then
                leftValue = Worksheets(ActiveCell.Worksheet.Name).Cells(iRow, column - 1).Value
                If (leftValue <> "") Then
                    FindParentFolder = False
                    Exit Function
                End If
            End If
        Next
    End Function
    Function BrowseForFolder(Optional OpenAt As Variant) As Variant
         'Function purpose:  To Browser for a user selected folder.
         'If the "OpenAt" path is provided, open the browser at that directory
         'NOTE:  If invalid, it will open at the Desktop level
        Dim ShellApp As Object
         'Create a file browser window at the default folder
        Set ShellApp = CreateObject("Shell.Application"). _
        BrowseForFolder(0, "Please choose a folder", 0, OpenAt)
         'Set the folder to that selected.  (On error in case cancelled)
        On Error Resume Next
        BrowseForFolder = ShellApp.self.Path
        On Error GoTo 0
         'Destroy the Shell Application
        Set ShellApp = Nothing
         'Check for invalid or non-entries and send to the Invalid error
         'handler if found
         'Valid selections can begin L: (where L is a letter) or
         '\\ (as in \\servername\sharename.  All others are invalid
        Select Case Mid(BrowseForFolder, 2, 1)
        Case Is = ":"
            If Left(BrowseForFolder, 1) = ":" Then GoTo Invalid
        Case Is = "\"
            If Not Left(BrowseForFolder, 1) = "\" Then GoTo Invalid
        Case Else
            GoTo Invalid
        End Select
        Exit Function
    Invalid:
         'If it was determined that the selection was invalid, set to False
        BrowseForFolder = False
    End Function
    Sub CreateDirs(MyDirName)
    ' This subroutine creates multiple folders like CMD.EXE's internal MD command.
    ' By default VBScript can only create one level of folders at a time (blows
    ' up otherwise!).
    ' Argument:
    ' MyDirName   [string]   folder(s) to be created, single or
    '                        multi level, absolute or relative,
    '                        "d:\folder\subfolder" format or UNC
    ' Written by Todd Reeves
    ' Modified by Rob van der Woude
    ' http://www.robvanderwoude.com
        Dim arrDirs, i, idxFirst, objFSO, strDir, strDirBuild
        ' Create a file system object
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        ' Convert relative to absolute path
        strDir = objFSO.GetAbsolutePathName(MyDirName)
        ' Split a multi level path in its "components"
        arrDirs = Split(strDir, "\")
        ' Check if the absolute path is UNC or not
        If Left(strDir, 2) = "\\" Then
            strDirBuild = "\\" & arrDirs(2) & "\" & arrDirs(3) & "\"
            idxFirst = 4
        Else
            strDirBuild = arrDirs(0) & "\"
            idxFirst = 1
        End If
        ' Check each (sub)folder and create it if it doesn't exist
        For i = idxFirst To UBound(arrDirs)
            strDirBuild = objFSO.BuildPath(strDirBuild, arrDirs(i))
            If Not objFSO.FolderExists(strDirBuild) Then
                objFSO.CreateFolder strDirBuild
            End If
        Next
        ' Release the file system object
        Set objFSO = Nothing
    End Sub

  • Can I copy time capsule data and use new external HD

    Hi All-
    I've been scouring the net and cant seem to find an answer. Hopefully someone here can help.
    I have a Time Capsule that is nearly filled. It is giving me error messages each night it tries to backup saying that there is too much on my computer to backup.
    So, I went out and bought a 4TB Western Digital external drive. I want to copy all the data from the time capsule onto the new hard drive (so I dont loose any of my older backups) and then have the time capsule use that same WD drive as my new backup.
    I have seen there are ways to copy from time machine drives to new drives, but I was under the impression time machine uses a different kind of backup method than a time capsule. Is that true? Can someone point me to a place that explains how exactly I would copy the drive in the time capsule... (I understand I need to use Disk Util, but I cant get the TC drive to show up in that program)...
    Also, is there a way to instruct time capsule to stop using its own internal drive and use the drive connected to its USB for the backups? I think Apple's answer is no, but I dont know if thats really the case or not...
    Thanks much-
    Daber

    David Bertman wrote:
    The backup was via an ethernet cable from the mac to the TC. (I also have it set up to run via wifi. Would that affect things?) Would there be different symptoms if the backup had stalled midway through?
    Just trying to rule out a bad WIFI connection, and it will be much faster via Ethernet.
    I didnt repair the backups first (I'm not really sure how to do that --- is it through disk utils and repair permissions like a normal drive?) I get nervous messing around with the "Backups.backupdb" files so I generally leave them alone.
    Close. It's +*repair disk+*, not permissions. See #A5 in Time Machine - Troubleshooting (or use the link in *User Tips* at the top of this forum), for a brief explanation and instructions.
    If the backups on the TC were corrupted, that would have been copied to the external HD, potentially causing Time Machine to start a new set.
    But, I did enter time machine and saw that the old backups were there (and when I did your other suggestion of going to the browse option, it now shows two identically named backups -- one from the original TV and one from the new 4tb drive. But when I enter each they are separate backups -- the original one with the older backups and the new one with the single 1 day backup.
    That confirms it -- for whatever reason, Time Machine started a new set.
    You asked if there were two sparce bundles... I dont see any sparce bundles. I'm ONLY seeing the "backup.backups" folders when I mount the drives... Should I be seeing sparce bundles? Could that be an issue?
    The Backups.backupdb folder should be inside a sparse bundle named the same as your computer. All backups done over a network (via Ethernet or WIFI) are done that way; those done to a locally-connected drive have that folder at the top level of the drive.
    If you look at the external HD via the Finder, you'll see them; if you then double-click either, it will mount, and you can see the Backups.backupdb folder inside it. And you're right; be +*very careful+* not to move, change, or delete anything there.
    I'd suggest this: Turn Time Machine off, and use Airport Utility to disconnect the external from the TC (start Airport Utility, click +Manual Setup,+ then Disks in the toolbar, then +Disconnect all Users.+ Each user will then get a message).
    Then connect the external directly to your Mac. Repair the old sparse bundle, per #A5 (it will take a long time, but be much faster this way). If it has errors that Disk Utility can't fix, see the pink box in #A5.
    If there are no problems, or they're fixed, delete the new sparse bundle via the Finder. That may take a while. Then eject the disk, reconnect it to the Time Capsule, and do a "full reset" per #A4 in Troubleshooting. Then re-select the external as your TM volume, and start a backup. Open the external disk via the Finder; if Time Machine again creates a new sparse bundle, you're pretty much stuck with it making a separate set of backups.

  • Copy all subform data and paste into another subform

    Need: I would like to have a button within a subform that allows you to copy all the data (many fields) and then paste it into an empty copy of the subform. Of course the info pasted would fill in all the fields etc.
    Reason: We routinely need to move subform data from page 3 in the document to page 11 (example). Currently we insert a new subform and copy/paste each field from 3 to 11 and then delete 3. It would be great to press a copy button in 3 and insert a new subform and paste.into 11.
    Is this possible?

    Steve's advice is good if this is a runtime question - how a user, filling out a form, can copy data from one section of the form to another.
    If this is a buildtime question - how a developer can duplicate a subform to be used elsewhere in the same form or in a different form, you have the following options:
    Duplicate and move. For one off tasks, select the subform in the Hierarchy pallet, and click Ctrl-D. This creates a copy of the subform, with all its contents, which can then be dragged in the hierarchy to its new position.
    Cut and paste. For one off tasks, select the subform in the Hierarchy pallet, and click Ctrl-C. Select the new position in the Hierarchy and then in the Design View (it seems odd to select the same object twice in different pallets, but this is required for the copied subform to be pasted into the right place). Click Ctrl-V
    Fragment. When the exact same subform is going to be used several times in the same and different forms, create a fragment by selecting the subform in the Deisgn View and drag to the Fragment Library pallet. This creates a fragment XDP file. By dragging the fragment onto forms, you are creating links back to the fragment XDP file. Change the fragment and next time you open a form in Designer it will inherit the changes. Fragments cannot be customised for a specific form.
    Common Object. Similar to fragments, you create a common object by selecting the subform in the Deisgn View and drag to the Object Library pallet. The difference is that when you drag a common object onto a form, it is inserting a copy of the subform. The inserted subform is not linked to the common object and so it can be customised for that form and will not inherit changes to the common object.
    Ben Walsh
    www.avoka.com

  • I recently transferred my ITunes library to an external hard drive.  I made sure to copy all the data from the saved location.  After the transfer I noticed that a lot of albums are missing the first song and some recently purchased albums are missing.

    I recently transferred my ITunes library to an external hard drive.  I made sure to copy all the data from the saved location.  After the transfer I noticed that a lot of albums are missing the first song and some recently purchased albums are missing.  Is there any way to recover the data?  Thanks for any help.

    I may have found an answer here:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive
    They only thing I can assume is that my external hard drive was slow to start and iTunes defaulted to its old directory (see the last paragraph at the link above). However, once my external was recognized shouldn't everything have fixed itself?
    Message was edited by: williamson42
    Message was edited by: williamson42

  • Working with NON-Structured Data

    Dear Colleague,
    I am preparing to build a Forms application (using Oracle 9i Developer Suite, Release 2, version 9.0.2.0.1).
    The application (and Data model) will need to associate SOPs (standard operating procedures) with certain measurements and treatments. It is planned to have the SOPs be, for example, MS Word documents, i.e. the SOPs will be non-structured data.
    What is best practice when handling this situation? Please advise.
    Assume I would like to view, print and (maybe) update the SOPs (Word files).
    1. Should I just store a link to the Word file and a corresponding description or is it better to store the Word file in the DB?
    2. If in the DB, which data type?
    3. If SOP not in the DB, but a file, what is the mechanism for retrieval and display?
    4. Printing the Word file via Forms - how? problems to avoid?
    5. Update of the Word document via Forms - possible? How?
    Best regards,
    Randy

    Hi Vijay,
    sorry
    please rewrite the formula for the button disable as::
    NOTE:: in the formula i have used '<''>'  which nothing but a lessthan symbol and greater than symbol without single quotes (i.e. not equal to)
    BOOL(IF(LEN(@Emp_code) '<''>'0 AND LEN(@Earea)'<''>'0 AND LEN(@Edept)'<''>'0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')<0 ,false,true))
    and make sure you have placed the date picker UI controls for your date functionality.
    this will not work for calender UI control on the form.
    and othe important point is the joining date should be less than ending date then only the button will be enable..
    if you want your joining date should be greater than ending date then write the formaula like this::
    BOOL(IF(LEN(@Emp_code)<>0 AND LEN(@Earea)'<''>'0 AND LEN(@Edept)'<''>'0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')>0 ,false,true))
    i tried this
    its working for me
    Regards
    Srinivas

  • JMS Adapter - data conversion xml- structured data has extra characters

    Further to [Using MQ / JMS adapter with legacy system to talk to SAP;, I am using the Module tab on my receiver JMS Adapter to convert the xml payload to a structured format. It converts to the mainframe ebcdic code set.  I am on PI 7.11, and the MQ Series (which JMS interacts with) is 6.0.  The code I have is comparable to the wiki:[http://wiki.sdn.sap.com/wiki/display/XI/HowTo...ContentconversionmodulewithJ2EEJMS+adapter], i.e. the example at the very bottom of that article.
    The issue we are having is that an extra character gets inserted at the end of each structure (within the message), i.e. our message contains 4 structures, but when we view the structured data on our mainframe system (that arrives from PI), the entire message is shifted by 4 characters... by 1 after the end of each structure.  On the mainframe, this extra character appears as '.'. It must be an end-of-line or something...
    Has anyone had the same issue?  If so, were you able to resolve? I could probably set up my message data type to just be one big declare (thus eliminating the use of structures within it), but that is something I'd rather not do.
    We are in the process of reviewing Note 856346, #6 but not sure if it applies.
    Regards,
    Keith

    Hi,
    check localejbs/SAP XI JMS Adapter/ConvertMessageToBinary Local Enterprise Bean convert_XI2Bin
    this is not CallJMSService.
    And also check the receiver Structure, if it is falt structure its ok, else
    see the below link if it has the complex structure , how to handle..
    See the below links
    /people/alessandro.guarneri/blog/2006/01/04/jms-sender-adapter-handling-too-short-lines
    /people/william.li/blog/2006/11/13/how-to-use-saps-webas-j2ees-jms-queue-in-exchange-infrastructure
    content conversion
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f02d12a7-0201-0010-5780-8bfc7d12f891
    Regards
    Chilla..

  • Short Dump while copying Org structure from ERP to CRM

    Hello Experts:
    We are trying to copy the Org structure from ECC to CRM.
    We have a standard transaction 'CRMC_R3_ORG_GENERATE' to copy the the org structure from ECC or the IMG path:
    SPRO->CRM->Master Data->Organization Management->Data Transfer->Coppy ECC Sales Structure
    We have a multiple assignment scenario where each sales groups are assigned to multiple sales offices and likewise,each sales office is assigned to multiple sales org unit in ECC.
    This can be achieved by turning on the enhanced version.
    In our current business,even though the sales offices and groups are created,but are not having relavance in the business,hence while running in the sandbox system, we ran the program to copy the structures in the standard mode(default) and we could copy it without issues and create the org units for every entity in CRM based on how the number ranges are defined.
    What happens when enhanced version switch is turned on ::
    While we turn the mode to enhanced version, The system automatically::
    - enhances the Function tab page in the ppoma_crm  transaction to include a grid table, in which you maintain multiple assignments of organizational units
    - generates an extra dialog box to the Organization tab page in business transactions for you to select the relevant assignment path for the organizational unit
    - adapts the consistency check in business transactions to take into account organizational units that have been multiple assigned
    Risk factor :
    Once you have switched to the enhanced backend integration version of the organizational model you cannot return to the standard backend integration version. The system will also automatically make changes to the organizational model version in CRM Mobile Sales.
    Also this structure will happen across all the clients in the system,so unfortunately cannot try in a sandbox client also of the new environment.
    We are building our development box,so while running the above step in standard mode,the program gives a short dump due to long execution time even though we have the same amount of data as in our prototype system.
    Also, we increased the idle time value to a very high value.
    When I approached SAP OSS,I was told that it is due to the multiple assignment scenario,hence we need to switch to enhanced version in CRM before we run the copy program ( CRMC_ORG_R3_GENERATE )
    I am not quite sure if the mismatch of the scenarios between CRM and ECC could be causing this short dump as we could run it in standard mode in our prototype/sandbox environment without issues even  with the same data volume as in the new development system .
    I am looking for help from all the experts if they have come across similar issue and your recommendations/feedback if this can be corrected.
    Appreciate your guidance/recommendation on this issue.
    thanks!!

    In CRM Best Practices Building block C05 is the step by step description how to replicate Org. structure and some of employee's master data.
    Follow link - http://help.sap.com/bp_crmv12007/CRM_DE/BBLibrary/html/C05_EN_DE.htm

  • What are  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.

    BW on HANA :  Pre Database Copy and Post data base copy activity list, Pre Migration and Post Migration activity list from SAP BW 7.0 to SAP BW 7.4 SPS6.
    We are trying to copy database from SAP BW7.0 to SAP BW on HANA 7.4 SPS6 so we are in search for list of steps or activities during database copy both pre and post steps.
    Along with the above we are in search of Pre and post migration steps ones database is transferred successfully from oracle to HANA on 7.4 SPS6.
    Kindly help us in getting the exact course of action as requested.
    Thanks and Regards,
    Lavina Joshi

    Hi Lavina,
    try this link for starters: Upgrade and Migration - BW on HANA | SAP HANA
    Points to remember are:
    Preparation:
         -- Hardware Sizing
         -- Preparation of Data Centres
         -- HANA Hardware preparation
         -- System Landscape Readiness (upgrade software downloads, system readiness checks, etc)
         -- House Keeping activities on BW system (data clean up, etc)
    Post Installation:
         -- Sanity checks / Preparation and License checks
         -- JAVA Configurations
         -- Infoprovider conversions 
    Overall Stages are described below:
    # Environmental setup (HANA box)
         -- Initial system checks and Building Activities (system copy, Appln server setups, etc)
    # System readiness
                   - ZBW_HANA_COCKPIT Tool
                   - ZBW_HANA_CHECKLIST Tool
                   - ZBW_ABAP_ANALYZER Tool
                   - ZBW_TRANSFORM_FINDER Tool
                   - SIZING Report
                   - System Clean up Activities
                   - Impact of 7.4 on source system checks
                   - Java Upgrade for portal
    # DMO Stages
                   - Preparation & Pre Migration checks
                   - Execution / Migration
                   - Post Migration Activities
    # Testing Phase
                   - Source system checks/Activities
                   - System and Integration Testing
                   - End to End Testing
                   - Performance testing
                   - Reports
                   - BO reports / Interfaces
    Do let me know if you require any further information.
    Regards,
    Naren

  • Prob creating a new structured data type

    I am trying to create a new structured data type to see it in data type diagram. When i try to right click on structured data type in DATA TYPES, i cant see any option like new structured data type etc. But this is working for distinct as well collection data types but not for structured.
    By default, we are getting SDO_geometry structured data type for every model. We can change its name but cant create a new structured data type from there also.
    What should i do to create a structured data type in data modeler.

    The right click on Structured Types does not open a menu on my Data Modeler either.
    To create a Structured Type, click View on the main menu for the Data Modeler. Then click View Details -> Datatype.
    In the Browser (called Navigator in other Oracle products), right click Datatype Model -> Show. This will show the DataTypes diagrammer.
    Click on the New Structured Type button on the menu bar, then click anywhere on the DataTypes diagrammer, the Structured Type Properties window opens.
    Enter all the details in the Structured Type Properties window to create your data type. Click Ok when finished. Your object type will be represented by a "blue" box on the diagram.
    Jim Keese
    Edited by: user9367840 on Feb 10, 2012 8:30 AM

  • How to copy the all data to another new table

    Hi,
    1) "How can I copy the data from one Data Dictionary Table to another new Table, in Dictionary"?
    for eg.  (<i>In Dictionary,  I have one table named 'sflight' and now I want to copy the all data from 'sflight' to another new table named 'zabc'</i>)
    How can I do this?
    2) What is Logical Unit of Work or LUW.
    Thanks

    HI,
    go to <b>se11</b>, give sflight (Your standard table name) in tables text,
    No go to dictionary objects --> copy --> give new <b>Ztable</b> in <b>to table</b> text.
    Like this you can copy the standard sap table to a new ztable..
    A Logical Unit of Work (LUW or database transaction) is an inseparable sequence of database operations which must be executed either in its entirety or not at all. For the database system, it thus constitutes a unit.
    LUWs help to guarantee database integrity. When an LUW has been successfully concluded, the database is once again in a correct state. If, however, an error occurs within an LUW, all database changes made since the beginning of the LUW are canceled and the database is then in the same state as before the LUW started.
    An LUW begins
    o each time you start a transaction
    o when the database changes of the previous LUW have been confirmed (database commit) or
    o when the database changes of the previous LUW have been cancelled (database rollback)
    An LUW ends
    o when the database changes have been confirmed (database commit) or
    o when the database changes have been canceled (database rollback)
    SAP memory and ABAP memoryUsing SAP memory. User-specific memory retained for the duration of the session. Can only be used for simple field values.
    Using ABAP memory. Can be used to transfer data between internal modi. Can be used to transfer any ABAP/4 variables ( Fields, strings, internal tables, complex objects)
    SAP memoryYou use the SPA/GPA parameters to pass data. These paramters are saved globally in memory. The paramters are indetified by a three-character code.
    In dialog programs you can SET and GET these parameters in the attribute window of the screen field, by marking the SET and GET fields and put the name of the parameter in the ParameterId field.
    In a program ( Dialog or Report ) you can use the GET PARAMETER and SET PARAMETER statements:
    set parameter id 'RV1' field <fieldname>
    get parameter id 'RV1' field <fieldname>
    rewards if useful,
    regards,
    nazeer

  • How to copy a structure with a very long name

    I would like to copy a structure with a very long name (YAM_INBOX_DISPLAY) . How to do that?
    Thank you in advance

    Hi,
    Copying a structure is very simple. In the initial screen on se11 you have an option of copying a structure. Type in the structure name in the DATA TYPE and click on copy. It will suggest you a name which you can always rename and copy it. Max number of characters the structure can be named is 30.
    Reward points if useful

  • How's to select data from structure data object?

    Dear Guru,
    If my data is kept in structure data object (not a table type).  How can I select data from that kind of data object.  Thank you.
    Cheers,

    Hi,
    Data cannot be stored in structure.
    Structure is just like a view , so its a medium with which you can create a view relevant to your needs.
    The fields that we need together , we put in a structure.
    Structure is a medium where we collect all our relevant fields.
    we can include the structure in internal table so that we can actually store data , process data and retrieve data.
    hope this helps.
    thanx,
    dhanashri.

  • Copy the structure of a table to another with another table name.

    how to copy the structure of a table to another with another table name.
    ie. i want a emp table with same values/structure to be copied to another table called my_employee.
    how can this be done?

    create table my_emp as select * from emp;
    If you do not want the data to be copied then do the following:
    create table my_emp as select * from emp
    where 1=2;
    Avanti.

Maybe you are looking for

  • Creating copies onto a new folder?

    Can someone help me? I have a folder of 135 photos and I want to make a virtual copy of each folder and at the same time have that virtual copy placed into a new folder instead of side by side of the original. Is this possible? Any help would be grea

  • Can't see how to access my iTunes wish list on my iPhone?

    Hi, Is there any way to access my iTunes wish list on my iPhone? The advice I've found so far is to look for a 'quick link' which is accessible from a home icon but I can't see any home icon in iTunes on my iPhone?

  • Approval process in KM

    Hi Experts, I need to create an approval process for km documents. if any changes are deletions of the document the author should get a notification. how can this can be done please explain the process in detail. also i to get the notification what r

  • Is it possible to add an RSS feed to a blog created using web apps?

    Is it possible to add an RSS feed to a blog created using web apps? Can RSS feeds be used for items other than an actual blog?

  • How can i fix black screen imac27?

    hello please help me, my imac 27 display is dark after start up, i can hear sounds but dark display.. this happend after shipping it. computer from america,and now i try to use it in europe..