Read content of a Z Class Element

Hello,
I have ZCL_WF_MATMAS CL it is contain MATMAS element. I want to read data of this element. But I couldn't find correct FM.
I also tryed SWW_WI_CONTAINER_READ_OBJECTS, SAP_WAPI_READ_CONTAINER etc. But I couldn't find correct FM for this...
How can I see my Z class data in workitem...
Thanks
Mehmet Avsar

Hi,
Do you have the object key (=material number, 00100?) already available in your code? If yes, then you need to instantiante the object:
data: matmas type ref to ZCL_WF_MATMAS.
create object matmas
  exporting
    <here the instantiation parameters> .
Then you will be able to refer to the object's attribute like this:
your_variable = matmas-><put here the attribute's name>
In your_variable you'll have the value. Or course this last line is kind of an unnecessary step, because you already have the attribute in matmas-><attribute_name>.
Or did I understood you incorrectly? If yes, then you really should pay attention into the way you describe your problems here in SDN.
Kind regards,
Karri

Similar Messages

  • Invalid element 'servlet' in content of 'web-app', expected elements [.....

    I'm receiving the following error when I build a web app.
    Invalid element 'servlet' in content of 'web-app', expected elements [.....
    I have been trying to configure cactus struts testing as described here:
    http://jakarta.apache.org/cactus/integration/howto_config.html.
    I've a feeling it's a problem with my web.xml file (perhaps the order I have defined the elements) can anyone help?
    My web.xml is as follows
    <web-app>
    <description>web.xml file for Scorecards Application</description>
    <filter>
    <filter-name>FilterRedirector</filter-name>
    <filter-class>org.apache.cactus.server.FilterTestRedirector</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>FilterRedirector</filter-name>
    <url-pattern>/FilterRedirector</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>ServletRedirector</servlet-name>
    <servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-class>
    </servlet>
    <servlet>
    <servlet-name>JspRedirector</servlet-name>
    <jsp-file>/jspRedirector.jsp</jsp-file>
    </servlet>
    <servlet-mapping>
    <servlet-name>ServletRedirector</servlet-name>
    <url-pattern>/ServletRedirector</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>JspRedirector</servlet-name>
    <url-pattern>/JspRedirector</url-pattern>
    </servlet-mapping>
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/config/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>debug</param-name>
    <param-value>2</param-value>
    </init-param>
    <init-param>
    <param-name>detail</param-name>
    <param-value>2</param-value>
    </init-param>
    <init-param>
    <param-name>validate</param-name>
    <param-value>true</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>30</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
    <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
    </taglib>
    <resource-ref>
    <description>SCR Production Data Connection</description>
    <res-ref-name>jdbc/SCRproductionDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    ------------------------------------------------------------------------------

    I don't think you are allowed to mix the servlet mapping entries in among the servlet entries. You should do all the servlet entries and then all the servlet mapping entries.

  • How to read contents of more than 2 files.

    hi all
    help me.
    How to read contents of more than 2 files.
    For reading a file contents we uses normally FileInputStream
    For reading two file contents we uses normally SequenceInputStream
    But which class we have to use for reading contents of more than 2 files at a time
    thanks in advance.

    SequenceInputStream can be used for reading any number of input streams (not at once, but one after the other).
    This involves making an Enumeration that returns the input streams you want to read. Depending on what you want to do, it might be just as easy to read them one after another.
    Or consider making a Vector of your input streams and using its elements() method. Like this:(untested)Vector<InputStream> inVec = new Vector<InputStream>();
    inVec.add(new FileInputStream("foo.dat"));
    inVec.add(new FileInputStream("bar.dat"));
    inVec.add(new FileInputStream("baz.dat"));
    // later...
    SequenceInputStream in = new SequenceInputStream(inVec.elements());

  • Invalid content was found starting with element 'url-pattern'

    Hi,it looks there is something wrong with my web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>TestAA</display-name>
    <welcome-file-list>
    <welcome-file>index.jsf</welcome-file>
    </welcome-file-list>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <security-constraint>
         <web-resource-collection>
              <url-pattern>/secure/*</url-pattern> ...................................................................error here
    </web-resource-collection>
         <auth-constraint>
              <role-name>retuser</role-name>
         </auth-constraint>
         </security-constraint>
    <login-config>
         <auth-method>FROM</auth-method>
         <form-login-config>
              <form-login-page>/login.xhtml</form-login-page>
              <form-error-page>/loginError.xhtml</form-error-page>
         </form-login-config>
    </login-config>
    </web-app>
    error message:
    cvc-complex-type.2.4.a: Invalid content was found starting with element 'url-pattern'. One of '{"http://java.sun.com/xml/ns/javaee":web-resource-name}' is expected.

    Hi Linyin,
    Please refer to: http://middlewaremagic.com/weblogic/?p=2034
    The Problem is missing element *<web-resource-name>* in your *"web.xml"* file..... which must be a Unique name of your Resource set which u want to make secure.....
    Example:
    <security-constraint>
    <web-resource-collection>
    *<web-resource-name>MySecureResource</web-resource-name>* <----------This line should come Just above <url-pattern>
    <url-pattern>/secure/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>retuser</role-name>
    </auth-constraint>
    </security-constraint>
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic (Middleware Magic Is Here)

  • Process:         Cubase LE AI Elements 7 [1740] Path:            /Applications/Cubase LE AI Elements 7.app/Contents/MacOS/Cubase LE AI Elements 7 Identifier:      com.steinberg.cubase.soft Version:         7.0.6.2231 (7.0.6.2231) Code Type:       X86 (Nat

    Help me, I'm not open in Cubase, i have alwais this message:(
    Process:         Cubase LE AI Elements 7 [1740]
    Path:            /Applications/Cubase LE AI Elements 7.app/Contents/MacOS/Cubase LE AI Elements 7
    Identifier:      com.steinberg.cubase.soft
    Version:         7.0.6.2231 (7.0.6.2231)
    Code Type:       X86 (Native)
    Parent Process:  launchd [220]
    Date/Time:       2013-12-30 19:22:49.157 +0000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          84787 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  450 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      32EE9DCB-AE98-4D3C-A269-26906BFD0309
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  27
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x980daafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x980db267 mach_msg + 68
    2   libSystem.B.dylib                       0x980ef20a thread_info + 143
    3   ...lodyneEssentialRewireDevice          0x2e204771 GNThread::getThreadPriority() + 65
    4   ...lodyneEssentialRewireDevice          0x2e204ad0 GNThread::setThreadPriority(int) + 178
    5   ...lodyneEssentialRewireDevice          0x2e222d44 GNMessagePort::registerMessagePortWithName(GNString*, GNData* (*)(GNMessagePort*, GNData*), int, int, GNDictionary*) + 304
    6   ...lodyneEssentialRewireDevice          0x2e1c4dbe GNReWire2AudioDeviceHost::create() + 172
    7   ...lodyneEssentialRewireDevice          0x2e1c2f3f RWDEFOpenDevice + 89
    8   ...opellerheads.rewire.library          0x1dbc87ec 0x1dbab000 + 120812
    9   ...opellerheads.rewire.library          0x1dbc8a06 0x1dbab000 + 121350
    10  ...opellerheads.rewire.library          0x1dbce88b RWIsReWireMixerAppRunningImp + 6811
    11  ...opellerheads.rewire.library          0x1dbcc9dd RWM2OpenDeviceImp + 77
    12  com.steinberg.cubase.soft               0x00964e2f 0x1000 + 9846319
    13  com.steinberg.cubase.soft               0x0022dd50 0x1000 + 2280784
    14  com.steinberg.cubase.soft               0x00587e68 0x1000 + 5795432
    15  com.steinberg.cubase.soft               0x00abc045 0x1000 + 11251781
    16  com.steinberg.cubase.soft               0x0112eb8e CzplfFFT_If::~CzplfFFT_If() + 828302
    17  com.steinberg.cubase.soft               0x00abc626 0x1000 + 11253286
    18  com.steinberg.cubase.soft               0x00dee454 0x1000 + 14603348
    19  com.steinberg.cubase.soft               0x000029a5 0x1000 + 6565
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x98101382 kevent + 10
    1   libSystem.B.dylib                       0x98101a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x98100f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x98100cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x98100781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x981005c6 start_wqthread + 30
    Thread 2:  CRASH THREAD
    0   libSystem.B.dylib                       0x980dab4e semaphore_timedwait_trap + 10
    1   com.steinberg.cubase.soft               0x014890f2 CzplfFFT_If::~CzplfFFT_If() + 4344050
    2   com.steinberg.cubase.soft               0x0059d332 0x1000 + 5882674
    3   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 3:
    0   libSystem.B.dylib                       0x980dab5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x981086e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x981375a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x900067a6 CVDisplayLink::waitUntil(unsigned long long) + 386
    4   com.apple.CoreVideo                     0x900055eb CVDisplayLink::runIOThread() + 741
    5   com.apple.CoreVideo                     0x900052ea startIOThread(void*) + 156
    6   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    7   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x98108aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x981349c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x98134903 usleep$UNIX2003 + 61
    3   com.apple.AppKit                        0x937cde2d -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation                    0x96b154c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x96b15474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    7   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x98100412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x981009a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x981005c6 start_wqthread + 30
    Thread 6:
    0   libSystem.B.dylib                       0x980daafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x980db267 mach_msg + 68
    2   com.apple.CoreFoundation                0x9250c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x9250b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x9250b1f1 CFRunLoopRunInMode + 97
    5   com.apple.audio.CoreAudio               0x943af96c HALRunLoop::OwnThread(void*) + 162
    6   com.apple.audio.CoreAudio               0x9439b488 CAPThread::Entry(CAPThread*) + 140
    7   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    8   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x980daafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x980db267 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x032cc0c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x032ea97a MIDIProcess::RunMIDIInThread() + 150
    4   com.apple.audio.midi.CoreMIDI           0x032cd2d9 XThread::RunHelper(void*) + 17
    5   com.apple.audio.midi.CoreMIDI           0x032ccca6 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    7   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 8:  Video Diascope
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x253aa61a ownGetReg + 1055194
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 9:  Remote Receive
    0   libSystem.B.dylib                       0x981a143a sem_wait$UNIX2003 + 10
    1   com.steinberg.videoengine               0x253713c4 ownGetReg + 821124
    2   com.steinberg.videoengine               0x2536e7b8 ownGetReg + 809848
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 10:  Remote Call
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x253753a0 ownGetReg + 837472
    3   com.steinberg.videoengine               0x253754e4 ownGetReg + 837796
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 11:  Remote TimeOut
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x25376057 ownGetReg + 840727
    3   com.steinberg.videoengine               0x253760f4 ownGetReg + 840884
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 12:
    0   libSystem.B.dylib                       0x980dac0e mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore          0x909be7f0 MPDelayUntil + 43
    2   ...ple.CoreServices.CarbonCore          0x909ce226 Delay + 107
    3   ...opellerheads.rewire.library          0x1dbd5274 RWIsReWireMixerAppRunningImp + 33924
    4   ...opellerheads.rewire.library          0x1dbe3208 RWIsReWireMixerAppRunningImp + 91160
    5   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    6   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 13:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 14:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 15:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 16:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 17:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 18:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 19:  VST Preloader
    0   libSystem.B.dylib                       0x980dab4e semaphore_timedwait_trap + 10
    1   com.steinberg.cubase.soft               0x014890f2 CzplfFFT_If::~CzplfFFT_If() + 4344050
    2   com.steinberg.cubase.soft               0x01488fbc CzplfFFT_If::~CzplfFFT_If() + 4343740
    3   com.steinberg.cubase.soft               0x00ae7520 0x1000 + 11429152
    4   com.steinberg.cubase.soft               0x00ae6bbc 0x1000 + 11426748
    5   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    6   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 20:  Baios Processing Thread
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.baios                     0x1cadd6d8 bundleExit + 147688
    2   com.steinberg.baios                     0x1cac6423 bundleExit + 52787
    3   com.steinberg.baios                     0x1cadc624 bundleExit + 143412
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 21:  Timer
    0   libSystem.B.dylib                       0x980dab4e semaphore_timedwait_trap + 10
    1   com.steinberg.cubase.soft               0x014890f2 CzplfFFT_If::~CzplfFFT_If() + 4344050
    2   com.steinberg.cubase.soft               0x01488fbc CzplfFFT_If::~CzplfFFT_If() + 4343740
    3   com.steinberg.cubase.soft               0x008ca6eb 0x1000 + 9213675
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 22:  Remote Receive
    0   libSystem.B.dylib                       0x981a143a sem_wait$UNIX2003 + 10
    1   com.steinberg.videoengine               0x253713c4 ownGetReg + 821124
    2   com.steinberg.videoengine               0x2536e7b8 ownGetReg + 809848
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 23:  Remote Call
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x253753a0 ownGetReg + 837472
    3   com.steinberg.videoengine               0x253754e4 ownGetReg + 837796
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 24:  Remote TimeOut
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x25376057 ownGetReg + 840727
    3   com.steinberg.videoengine               0x253760f4 ownGetReg + 840884
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 25:  Video Playback
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x2526b1c0 bundleExit + 9456
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 26:  Video Buffer
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x2526b1c0 bundleExit + 9456
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 27 Crashed:
    0   ???                                     0000000000 0 + 0
    1   ...lodyneEssentialRewireDevice          0x2e2048ea GNThreadHandler(void*) + 94
    2   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    3   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 27 crashed with X86 Thread State (32-bit):
      eax: 0x208ba6e0  ebx: 0x2e222988  ecx: 0x208ba664  edx: 0x208ba520
      edi: 0x208ba660  esi: 0xb0519000  ebp: 0xb0518f48  esp: 0xb0518f1c
       ss: 0x0000001f  efl: 0x00010206  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x2fefff7 +com.steinberg.cubase.soft 7.0.6.2231 (7.0.6.2231) <E343EF35-055F-32B9-82C6-32372659F679> /Applications/Cubase LE AI Elements 7.app/Contents/MacOS/Cubase LE AI Elements 7
    0x32bc000 -  0x3308ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1570a000 - 0x15786ff3 +com.eLicenser.POSAccess-DLL ??? (1.4.0.9) <9FEB2066-B500-305F-8C6C-182F3BD62666> /Library/Application Support/eLicenser/pos/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x193a8000 - 0x193ccfe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x19bfc000 - 0x19d75ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x19da7000 - 0x1a1acfe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1a943000 - 0x1a95cffb +com.steinberg.CoreAudio2ASIO 2.2.7.16 (2.2.7.16) <AE0AA1C2-C2D7-3121-BEEE-6EDAF8C98492> /Applications/Cubase LE AI Elements 7.app/Contents/Components/coreaudio2asio.bundle/Contents/MacOS/coreaudio2asio
    0x1a967000 - 0x1a96bff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1a970000 - 0x1a976ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1a97b000 - 0x1a999fc3 +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.3 (7.3f117) /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x1adf8000 - 0x1ae01ff7  jp.co.yamaha.YamahaSteinbergUSBBulk 1.7.0 (1.7.0f1) <8E56A5E8-AFBC-E239-555A-9FA67C4B7777> /System/Library/Extensions/YamahaSteinbergUSBAudio.kext/Contents/PlugIns/Yamaha SteinbergUSBBulk.bundle/Contents/MacOS/YamahaSteinbergUSBBulk
    0x1cab1000 - 0x1cb4dff7 +com.steinberg.baios 2.2.2.320 (2.2.2.320) <FF71ACEC-5E0C-33C6-AA56-EE603BA9D3D0> /Applications/Cubase LE AI Elements 7.app/Contents/Components/baios.bundle/Contents/MacOS/baios
    0x1dbab000 - 0x1dc32fff +se.propellerheads.rewire.library 1.8.2 build 127 (1.8.2) <17CB1860-29BA-0AA9-332A-E8457724A75B> /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1e700000 - 0x1e777ffb +com.steinberg.VSTPlugManager 2.2.3.117 (2.2.3.117) <18FF6ADF-61BF-20D5-AA6E-893C25D008A0> /Applications/Cubase LE AI Elements 7.app/Contents/Components/VSTPlugManager.bundle/Contents/MacOS/VSTPlugManager
    0x25267000 - 0x254e2ffb +com.steinberg.videoengine 1.4.6.806 (1.4.6.806) <FCADB1B7-08AA-328C-A7E9-F0FC0DC6A4A9> /Applications/Cubase LE AI Elements 7.app/Contents/Components/videoengine.bundle/Contents/MacOS/videoengine
    0x2cf99000 - 0x2ddf1fe3 +com.steinberg.vst3.pluginset.cubase 4.0.6.206 (4.0.6.206) <A65DBABC-9264-33E1-A96E-01E0F9656DE6> /Applications/Cubase LE AI Elements 7.app/Contents/VST3/Cubase LE AI Elements Plug-in Set.vst3/Contents/MacOS/Cubase LE AI Elements Plug-in Set
    0x2e1c1000 - 0x2e25fff7 +com.celemony.MelodyneEssentialRewireDevice 1.5.3.0 (1.5.3.0) <2CDBD471-D01E-4AFE-A1CE-C3BBB7D7FFDD> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x40000000 - 0x40029ff3 +com.yamaha.asiosetup_ysdriver_extension_bundle 1.2.2 (1.2.2.9) <63ACEEDC-A917-9B20-BEF5-59BBEA089EC0> /Library/Application Support/Steinberg/Components/asiosetup_ysdriver_extension.bundle/Contents/MacOS /asiosetup_ysdriver_extension
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90022ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90023000 - 0x90103fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90104000 - 0x901acffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x901cf000 - 0x901cfff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x901d0000 - 0x901d0ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x901d1000 - 0x901d4ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x901d5000 - 0x905ebff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x905f7000 - 0x9061fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x9067b000 - 0x9067cff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9067d000 - 0x90718fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90719000 - 0x90725ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x90888000 - 0x9089cfe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x908ef000 - 0x908f3ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x908f4000 - 0x90c14ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e1f000 - 0x90e31ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90e32000 - 0x90e6fff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90e70000 - 0x90f72fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <EB34F049-D9E1-BF19-CF03-B26A0352D40C> /usr/lib/libcrypto.0.9.8.dylib
    0x90f73000 - 0x9126dfef  com.apple.QuickTime 7.6.6 (1800) <D3538A45-5F4B-262A-06AB-64C1EBAC4A33> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x912ce000 - 0x912e3fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x912ec000 - 0x9130efef  com.apple.DirectoryService.Framework 3.6 (621.16) <5566E769-6459-78A7-DD2C-1D3068BD3932> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9130f000 - 0x91330fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91331000 - 0x914f4feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <AE641FAD-DF38-AE31-B45B-85AEE7AF3A45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x914f5000 - 0x914f8fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x914f9000 - 0x9175fff7  com.apple.security 6.1.2 (55002) <E88E133F-5FB3-446F-B753-2B8AD577B46A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91760000 - 0x91acbff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91b05000 - 0x91b85feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91bc5000 - 0x91ee9fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91ef0000 - 0x91f2dff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91fce000 - 0x92012fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92013000 - 0x924ceff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x924cf000 - 0x9264afe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92685000 - 0x92693fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x92e0f000 - 0x92e2bfe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92edd000 - 0x92eebff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92eec000 - 0x92ef0ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92f02000 - 0x92f03ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92f04000 - 0x92f18ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92fba000 - 0x93035fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93061000 - 0x9316dfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x932d0000 - 0x93389fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x933ee000 - 0x93429ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9342a000 - 0x93470ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x93471000 - 0x93509fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93599000 - 0x9361bffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9361c000 - 0x93effff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93f00000 - 0x9402dffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9402e000 - 0x9406fff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94070000 - 0x9408ffe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x94273000 - 0x94291fe7  libPng.dylib ??? (???) <6C0B95D7-9634-E044-0B79-F1DD56961C33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x942cd000 - 0x9437afe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x9437b000 - 0x943f5fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x944b9000 - 0x944bcff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94744000 - 0x94744ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94745000 - 0x94776ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94777000 - 0x947aaff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x947ab000 - 0x947b6ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947b7000 - 0x947b7ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x947cb000 - 0x947d8ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x947d9000 - 0x94c2afef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94c3c000 - 0x94c40ff7  libGIF.dylib ??? (???) <2251F789-B187-0837-6E38-A0E5C7C4FA3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94cfc000 - 0x94d66fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94d67000 - 0x94dc4ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94dcd000 - 0x94dd6ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94dd7000 - 0x94ea8fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x94ea9000 - 0x94fd2fe7  com.apple.WebKit 6534.59 (6534.59.10) <73348DE8-9C7D-3BD9-8E9D-86E5BE67B1D1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96554000 - 0x96596ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x967be000 - 0x96811ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96812000 - 0x96862fe7  libTIFF.dylib ??? (???) <AB182CEC-188A-F2BC-21E1-0059FD3B2598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96863000 - 0x9686dffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9686e000 - 0x96892ff7  libJPEG.dylib ??? (???) <50E17B4D-63D6-24D3-702F-6A6E912A55EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96a30000 - 0x96aecfff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96aed000 - 0x96afeff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96aff000 - 0x96d70fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96da7000 - 0x97596557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x975dc000 - 0x975deff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x975ea000 - 0x97624ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x97741000 - 0x9781bfff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9781c000 - 0x9781cff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97985000 - 0x979d2feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97ccd000 - 0x97e4ffe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <60FF302E-5FAE-749B-BC70-0496DC2FBF2D> /usr/lib/libicucore.A.dylib
    0x97e50000 - 0x97eb4ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97eb5000 - 0x97fb5fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x97fb6000 - 0x98062fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x98063000 - 0x98069fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9807d000 - 0x980cdff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x980da000 - 0x98281ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x98282000 - 0x982e3fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x982eb000 - 0x9832fff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x983ee000 - 0x98531fef  com.apple.QTKit 7.7 (1800) <9DD27495-3020-0928-B3F2-D418C336E163> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98627000 - 0x9864dffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9864e000 - 0x98a83ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98a84000 - 0x98a84ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98a85000 - 0x98a8bfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x98a8c000 - 0x98d39fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <7F623AA5-A11B-4C26-D2FD-EB5B9DE73F85> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98d3a000 - 0x98d3dff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98d3e000 - 0x98d3eff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98d3f000 - 0x98ddcfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98ddd000 - 0x98de8ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98dec000 - 0x98e2fff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98e8c000 - 0x98e96fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98e97000 - 0x98ecafff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98ed8000 - 0x98edaff7  libRadiance.dylib ??? (???) <090420B3-CB65-9F7B-5349-D42F2F9693B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x98feb000 - 0x98ffbff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x98ffc000 - 0x99001ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x99002000 - 0x99009ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9900a000 - 0x99051ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x996ba000 - 0x99768ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x997a0000 - 0x9986bfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9986c000 - 0x9a5e4fe7  com.apple.WebCore 6534.59 (6534.59.6) <5C71C61C-0657-1B0E-397F-4D0A81872C93> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9a674000 - 0x9a6e3ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9a6e4000 - 0x9a704fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9a77f000 - 0x9a8bcfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a8bd000 - 0x9a900ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9a901000 - 0x9aa2ffe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9aa3e000 - 0x9aad0fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9ab1a000 - 0x9ab1aff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9ab1b000 - 0x9ab33ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9ab34000 - 0x9abecfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 232,89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868, 71,3 MB
    USB Device: Steinberg UR22, 0x0499  (Yamaha Corporation), 0x1509, 0x24100000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3

    Please help me my icloud is
    Forget password
    Activate iphone
    this iphone is currently linked to an apple id
    MD298AE/A    iphone 5 white 16GB
    Designed by Apple in Califomia Assembled in China
    Other items as marked thereon Model A1429
    (1P) part No :MD298AE/A
    UPC
    8 8590963648
    IMEI/MEID 01**********450
    (S) Serial No. F2*******TWF
    TRA ID : 0016422/08
    TA: ER0096265/12    03/2013       CE0682!
    <Personal Information Edited by Host>

  • ALV GRID Problem with reading contents

    Hi there! I'm quite new with ABAP and I have some problems with the syntax of it. Maybe I should first describe my aim and then I'll show you my code.
    1. I read contents from two database tables, called 'zbc_dan_registry' and 'zbc_dan_category'.
    'zbc_dan_registry' has 2 columns: name, value.
    zbc_dan_category' has 1 column: category.
    Now I want to have an ALV Grid, that displays the contents of 'zbc_dan_registry' and one additional column with dropdown fields, where the user can select a category for each row. This is, what my code already does.
    Now I want to save the contents of the whole table in a new table 'zbc_dan_registrz' (you see: 'registrz', not 'registry'!) with 3 columns:
    name, category, value.
    My problem is, how can I read the contents of the ALV Grid, with the user selected category for each row, and save them in an internal table? I've tried to adapt the code of "BCALV_EDIT_04", but I don't get it running.
    Some detailled help would be great, you know, I'm really working hard to understand ABAP, but it's really hard for me. Thanks for your support and help!!
    Here's my code so far:
    *& Report  ZBC400_DAN_TESTNO4
    REPORT  ZBC400_DAN_TESTNO4.
    DATA: lt_registrz TYPE TABLE OF zbc_dan_regstrz WITH HEADER LINE,
          lt_category TYPE TABLE OF zbc_dan_category WITH HEADER LINE,
          ls_category TYPE zbc_dan_category, "Struktur Kategorie
          ok_code LIKE sy-ucomm,
          container_r TYPE REF TO cl_gui_custom_container,
          grid_r TYPE REF TO cl_gui_alv_grid,
          gc_custom_control_name TYPE scrfname VALUE 'CONTAINER_REG',
          fieldcat_r TYPE lvc_t_fcat,
          layout_r TYPE lvc_s_layo,
          lt_ddval TYPE lvc_t_drop,
          ls_ddval TYPE lvc_s_drop,
          c TYPE i.
    CLASS lcl_event_receiver DEFINITION DEFERRED.
      DATA g_verifier TYPE REF TO lcl_event_receiver.
      DATA: BEGIN OF gt_outtab OCCURS 0.
        INCLUDE STRUCTURE zbc_dan_regstrz.
        DATA: celltab TYPE lvc_t_styl.
      DATA: END OF gt_outtab.
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
      TYPES: BEGIN OF lt_registrz_key.         "Struktur mit den Schlüsseln der Tabelle 'Registry'
        TYPES:  name TYPE zbc_dan_name,
                value TYPE zbc_dan_value,
                category TYPE zbc_dan_cat.
      TYPES: END OF lt_registrz_key.
      TYPES:  ls_registrz_keys TYPE STANDARD TABLE OF lt_registrz_key,
              ls_registrz_table TYPE STANDARD TABLE OF zbc_dan_regstrz.
      METHODS: get_inserted_rows EXPORTING inserted_rows TYPE ls_registrz_keys.
      METHODS: refresh_delta_tables.
      METHODS: handle_data_changed FOR EVENT data_changed OF cl_gui_alv_grid IMPORTING er_data_changed.
    *  METHODS: get_inserted_rows EXPORTING inserted_rows TYPE registrz_keys.
    *  METHODS: refresh_delta_tables.
      PRIVATE SECTION.
      DATA: inserted_rows TYPE ls_registrz_keys.
      DATA: error_in_data TYPE c.
      METHODS: get_cell_values IMPORTING row_id TYPE int4 pr_data_changed TYPE REF TO cl_alv_changed_data_protocol EXPORTING key TYPE lt_registrz_key.
    ENDCLASS.
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_data_changed.
        DATA: ls_good TYPE lvc_s_modi,
              ls_new TYPE lvc_s_moce.
        error_in_data = space.
        IF error_in_data = 'X'.
          CALL METHOD er_data_changed->display_protocol.
        ENDIF.
      ENDMETHOD.
      METHOD get_cell_values.
        CALL METHOD pr_data_changed->get_cell_value
          EXPORTING i_row_id = row_id i_fieldname = 'NAME'
            IMPORTING e_value = key-name.
        CALL METHOD pr_data_changed->get_cell_value
          EXPORTING i_row_id = row_id i_fieldname = 'VALUE'
            IMPORTING e_value = key-value.
        CALL METHOD pr_data_changed->get_cell_value
          EXPORTING i_row_id = row_id i_fieldname = 'CATEGORY'
            IMPORTING e_value = key-category.
      ENDMETHOD.
      METHOD get_inserted_rows.
        inserted_rows = me->inserted_rows.
      ENDMETHOD.
      METHOD refresh_delta_tables.
        clear me->inserted_rows[].
      ENDMETHOD.
    ENDCLASS.
    START-OF-SELECTION.
        SELECT client name value
          INTO CORRESPONDING FIELDS OF TABLE lt_registrz FROM zbc_dan_regstry.
        SELECT category INTO CORRESPONDING FIELDS OF TABLE lt_category FROM zbc_dan_category.
    CALL SCREEN 0100.
    MODULE user_command_0100 INPUT.
      CASE ok_code.
        WHEN 'BACK'.
          SET SCREEN 0.
          MESSAGE ID 'BC400' TYPE 'S' NUMBER '057'.
        WHEN 'SAVE'.
          PERFORM save_data.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.
    MODULE clear_ok_code OUTPUT.
      CLEAR ok_code.
    ENDMODULE.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'DYNPRO100'.
      SET TITLEBAR 'D0100'.
    ENDMODULE.
    MODULE display_alv OUTPUT.
      PERFORM display_alv.
    ENDMODULE.
    FORM display_alv.
    IF grid_r IS INITIAL.
    *----Creating custom container instance
      CREATE OBJECT container_r
      EXPORTING
        container_name = gc_custom_control_name
      EXCEPTIONS
        cntl_error = 1
        cntl_system_error = 2
        create_error = 3
        lifetime_error = 4
        lifetime_dynpro_dynpro_link = 5
        others = 6.
        IF sy-subrc <> 0.
    *--Exception handling
        ENDIF.
    *----Creating ALV Grid instance
        CREATE OBJECT grid_r
        EXPORTING
          i_parent = container_r
        EXCEPTIONS
          error_cntl_create = 1
          error_cntl_init = 2
          error_cntl_link = 3
          error_dp_create = 4
          others = 5.
          IF sy-subrc <> 0.
    *--Exception handling
          ENDIF.
          CREATE OBJECT g_verifier.
          SET HANDLER g_verifier->handle_data_changed FOR grid_r.
    *----Preparing field catalog.
          PERFORM prepare_field_catalog CHANGING fieldcat_r.
    *----Preparing layout structure
          PERFORM prepare_layout CHANGING layout_r.
    *----Here will be additional preparations
    *--e.g. initial sorting criteria, initial filtering criteria, excluding
    *--functions
          CALL METHOD grid_r->set_table_for_first_display
          EXPORTING
    * I_BUFFER_ACTIVE =
    * I_CONSISTENCY_CHECK =
    * I_STRUCTURE_NAME =
    * IS_VARIANT =
    * I_SAVE =
    * I_DEFAULT = 'X'
            is_layout = layout_r
    * IS_PRINT =
    * IT_SPECIAL_GROUPS =
    * IT_TOOLBAR_EXCLUDING =
    * IT_HYPERLINK =
          CHANGING
            it_outtab = lt_registrz[]
            it_fieldcatalog = fieldcat_r
    * IT_SORT =
    * IT_FILTER =
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error = 2
            too_many_lines = 3
            OTHERS = 4.
          IF sy-subrc <> 0.
    *--Exception handling
          ENDIF.
          ELSE.
            CALL METHOD grid_r->refresh_table_display
    * EXPORTING
    * IS_STABLE =
    * I_SOFT_REFRESH =
          EXCEPTIONS
            finished = 1
            OTHERS = 2.
          IF sy-subrc <> 0.
    *--Exception handling
          ENDIF.
        ENDIF.
        CALL METHOD grid_r->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_enter.
        CALL METHOD grid_r->register_edit_event
          EXPORTING
            i_event_id = cl_gui_alv_grid=>mc_evt_modified.
    ENDFORM.
    FORM prepare_field_catalog CHANGING pt_fieldcat TYPE lvc_t_fcat.
      DATA ls_fcat TYPE lvc_s_fcat.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
      EXPORTING
        i_structure_name = 'ZBC_DAN_REGSTR2'
      CHANGING
        ct_fieldcat = pt_fieldcat[]
      EXCEPTIONS
        inconsistent_interface = 1
        program_error = 2
        OTHERS = 3.
      IF sy-subrc <> 0.
    *--Exception handling
      ENDIF.
      LOOP AT pt_fieldcat INTO ls_fcat.
        CASE ls_fcat-fieldname.
          WHEN 'NAME'.
            ls_fcat-coltext = 'Name'.
            ls_fcat-outputlen = '40'.
            MODIFY pt_fieldcat FROM ls_fcat.
          WHEN 'VALUE'.
            ls_fcat-coltext = 'Wert'.
            ls_fcat-outputlen = '30'.
            MODIFY pt_fieldcat FROM ls_fcat.
          WHEN 'CATEGORY'.
              LOOP AT lt_category into ls_category.
                ls_ddval-handle = 1.
                ls_ddval-value = ls_category-category.
    *            ls_ddval-style = cl_gui_alv_grid=>mc_style_enabled.
                APPEND ls_ddval TO lt_ddval.
             ENDLOOP.
             CALL METHOD grid_r->set_drop_down_table
                EXPORTING it_drop_down = lt_ddval.
            ls_fcat-edit = 'X'.
            ls_fcat-drdn_hndl = '1'.
            ls_fcat-coltext = 'Kategorie'.
            MODIFY pt_fieldcat FROM ls_fcat.
        ENDCASE.
      ENDLOOP.
    ENDFORM.
    FORM prepare_layout CHANGING ps_layout TYPE lvc_s_layo.
      ps_layout-zebra = 'X'.
      ps_layout-grid_title = 'Kategorie zur Registry hinzufügen'.
      ps_layout-smalltitle = 'X'.
    ENDFORM.
    FORM save_data.
      DATA: ls_ins_keys TYPE g_verifier->ls_registrz_keys,
            ls_ins_key TYPE g_verifier->lt_registrz_key,
            ls_registrz TYPE zbc_dan_regstrz,
            ls_outtab LIKE LINE OF gt_outtab,
            lt_instab TYPE TABLE OF zbc_dan_regstrz.
      CALL METHOD g_verifier->get_inserted_rows IMPORTING inserted_rows = ls_ins_keys.
      LOOP AT ls_ins_keys INTO ls_ins_key.
        READ TABLE gt_outtab INTO ls_outtab
        WITH KEY  name = ls_ins_key-name
                  value = ls_ins_key-value
                  category = ls_ins_key-category.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING ls_outtab TO ls_registrz.
          APPEND ls_registrz TO lt_instab.
        ENDIF.
      ENDLOOP.
      INSERT zbc_dan_regstrz FROM TABLE lt_instab.
      CALL METHOD g_verifier->refresh_delta_tables.
      ENDFORM.

    Hi Hans,
    You raised the Question in the Webdynpro ABAP forum. Here its very diffcult to get the answer from this forum. Please close it here and raise the same question in ABAP General Forum there you will get faster and so many anwsers.
    Please close the question here.
    Warm Regards,
    Vijay

  • Xpath expression to read contents

    requesting to help to write an xpath expression to read contents of the below xml.
    i/p doc
    <transaction tid='00000000000000001852' ts='2012-05-10 08:43:15.000631' ops='2' commitTs='2012-05-10 08:43:15.000631'>
    <operation table='INTEREST_ACCRUAL_TERMS' type='UPDATE_FIELDCOMP' pos='00000000000000001852' numCols='20'>
    <col name='INTEREST_ACCRUAL_TERMS_ID' index='0'>
    <before missing='true'/>
    <after><![CDATA[23287]]></after>
    </col>
    <col name='INSTRUMENT_ID' index='1'>
    <before missing='true'/>
    <after><![CDATA[23287]]></after>
    </col>
    <col name='SWAP_LEG_ID' index='2'>
    <before missing='true'/>
    <after isNull='true'/>
    </col>
    <col name='PAYMNT_BUS_DAY_CONVEN_CD' index='3'>
    <before missing='true'/>
    <after isNull='true'/>
    </col>
    <col name='ACCRUAL_CALC_METHOD_CD' index='4'>
    <before missing='true'/>
    <after><![CDATA[M]]></after>
    </col>
    </operation>
    <operation table='INTEREST_ACCRUAL_TERMS' type='UPDATE_FIELDCOMP' pos='00000000000000002255' numCols='20'>
    <col name='INTEREST_ACCRUAL_TERMS_ID' index='0'>
    <before missing='true'/>
    <after><![CDATA[23288]]></after>
    </col>
    <col name='INSTRUMENT_ID' index='1'>
    <before missing='true'/>
    <after><![CDATA[23288]]></after>
    </col>
    <col name='SWAP_LEG_ID' index='2'>
    <before missing='true'/>
    <after isNull='true'/>
    </col>
    <col name='PAYMNT_BUS_DAY_CONVEN_CD' index='3'>
    <before missing='true'/>
    <after isNull='true'/>
    </col>
    <col name='ACCRUAL_CALC_METHOD_CD' index='4'>
    <before missing='true'/>
    <after><![CDATA[M]]></after>
    </col>
    </operation>
    </transaction>
    Expecting result from the xml doc:
    <xml>
    <INTEREST_ACCRUAL_TERMS_ID>23287</INTEREST_ACCRUAL_TERMS_ID>
    <INSTRUMENT_ID>23287</INSTRUMENT_ID>
    <SWAP_LEG_ID/>
    <PAYMNT_BUS_DAY_CONVEN_CD/
    <ACCRUAL_CALC_METHOD_CD> M</ACCRUAL_CALC_METHOD_CD>
    </xml>
    <xml>
    <INTEREST_ACCRUAL_TERMS_ID>23288</INTEREST_ACCRUAL_TERMS_ID>
    <INSTRUMENT_ID>23288</INSTRUMENT_ID>
    <SWAP_LEG_ID/>
    <PAYMNT_BUS_DAY_CONVEN_CD/
    <ACCRUAL_CALC_METHOD_CD> M</ACCRUAL_CALC_METHOD_CD>
    </xml>

    Assuming the document resides in an XMLType table :
    SQL> select xmlserialize(document
      2           x.result_doc
      3           as clob indent -- for display purpose only
      4         )
      5  from tmp_xml t
      6     , xmltable(
      7        'for $i in /transaction/operation
      8         return <xml>
      9         {
    10           for $j in $i/col
    11           order by xs:integer($j/@index)
    12           return element { $j/@name } { data($j/after) }
    13         }
    14         </xml>'
    15        passing t.object_value
    16        columns result_doc xmltype path '.'
    17       ) x
    18  ;
    XMLSERIALIZE(DOCUMENTX.RESULT_
    <xml>
      <INTEREST_ACCRUAL_TERMS_ID>23287</INTEREST_ACCRUAL_TERMS_ID>
      <INSTRUMENT_ID>23287</INSTRUMENT_ID>
      <SWAP_LEG_ID/>
      <PAYMNT_BUS_DAY_CONVEN_CD/>
      <ACCRUAL_CALC_METHOD_CD>M</ACCRUAL_CALC_METHOD_CD>
    </xml>
    <xml>
      <INTEREST_ACCRUAL_TERMS_ID>23288</INTEREST_ACCRUAL_TERMS_ID>
      <INSTRUMENT_ID>23288</INSTRUMENT_ID>
      <SWAP_LEG_ID/>
      <PAYMNT_BUS_DAY_CONVEN_CD/>
      <ACCRUAL_CALC_METHOD_CD>M</ACCRUAL_CALC_METHOD_CD>
    </xml>
    Please post more specific details if that's not what you want (database version, origin of the doc etc.).

  • Read content of web

    I want to create one class can read content(rows, columns of table) of dynamic web. but I can't.
    Help me!

    You may find this java.net.URL tutorial useful: http://java.sun.com/docs/books/tutorial/networking/urls/index.html

  • Locating the contents of WEB-INF/classes

    Hi,
    We have a web-app deployed as a WAR file (unexploded) and we want to be able to the contents of WEB-INF/classes (ie properties). However when I try and access these files via a web browser, I receive a 404. I tried putting a simple HTML page in there which also gave a 404. I also tried the same method with a simple dummy WAR and was able to retrieve the HTML opage in WEB-INF/classes.
    Is there some setting which allows the contents of WEB-INF/classes to be read, or not to be read?
    The java version is J2SDK 1.4.2-05, and the app server is JRun 4 updater 4.
    Thanks,
    Jon Daniels

    No - fundamentally what we are aiming for is to have the unexploded WAR app read properties (i.e. log4j.properties, etc) from the WEB-INF/classes folder. To simulate this I attempted to access properties via a web browser; however I'm not sure that's the best way to test, so to rephrase: the problem is that my WAR-file based web-app is not loading properties files from the WEB-INF/lib classes directory.

  • How to read contents of an array into a variable?

    Gurus,
    I'm trying to read contents of a table or array into a varray variable. I want to know the syntax of how to accomplish the same. Please help
    Here is what i have,
    v_sub_query varray(10) of varchar2;
    v_sub_query should read contents of an array and hold values. I'm trying to do this and then use each values of v_sub_query(index) into a dynamic sql statement.
    thanks
    SS

    Sign is definately not king when it comes to PL/SQL as his advice is flawed. Row-by-row processing simply causes a lot of context switches from the PL/SQL engine to the SQL engine and back. And this results in a significant performance impact. Never mind that this style of 80's COBOL processing it sadly outdated in the 21st century when dealing with a modern RDBMS likle Oracle.
    The correct way to populate an array in PL/SQL with SQL data, is to bulk collect it. However, a varray data type is not the best suited data type for this - as they are fixed sized. Dynamic arrays are more flexible.
    Simple example:SQL> declare
      2    type TStrings is table of varchar2(30);
      3    cursor c is select object_name from all_objects order by 1;
      4    v_NameTable      TStrings;
      5  begin
      6    open c;
      7    loop
      8      fetch c bulk collect into v_NameTable limit 100;  -- fetch 100 rows at a time
      9      -- process the array
    10      for i in 1..v_NameTable.Count
    11      loop
    12          -- process element v_NameTable(i)
    13          null;
    14      end loop;
    15      exit when c%NOTFOUND;
    16    end loop;
    17    close c;
    18* end;
    SQL> /Refer to the Chapter 5. Using PL/SQL Collections and Records of the Oracle® Database PL/SQL User's Guide and Reference guide.
    As for dynamic SQL - remember to use bind variables. Do not hardcode the array values into the SQL statement as the resulting SQL will not be sharable and will cause performance problems with SQL parsing and shared pool memory fragmentation and malloc errors.

  • How to read contents of a property file sequentially

    hello all,
    please can any one tell me how to read contents of a property file sequentially.
    i saw most of the classes provided by JAVA API, which get All keys and there return type is enumeration which dosent preserve , or may the getKeys() method of those classes do not preserve the sequential order.
    Kindly do let me know if anyone has done this before.
    Thanks.

    The best solution is that you redesign your program so that it does not depend on the order of the entries in the properties file.
    If you really want to stay with your design, you will have to read the properties file yourself, line by line, just like you would read any other text file, and parse the content of each line yourself.
    BufferedReader in = new BufferedReader(new FileReader("stuff.properties"));
    String line;
    while ((line = in.readLine()) != null) {
        // Parse the line, use e.g. String.split() to split it around the '='
    in.close();

  • On closing Photoshop CC, I am getting an error message on screen that read's "Selective Palette error: no element found at line 1. Are you able to assist with this problem?

    Can anyone shed some light on this error message I am getting upon closing Photoshop CC
    I am getting an error message on screen that read's "Selective Palette error: no element found at line 1. Are you able to assist with this problem?

    Same issue here in WI and for me it was at 6:36p CST.
    I'm changed my password, removed iCloud from my phone ... tried 3G and WIFI with no luck. I also cannot check it on my Mac or iPad. I was able to get contacts and calenders back on my phone but no mail yet.
    Did the whole Apple support thing and apparently I'm part of the 1%
    EDIT: Question: are all of you former MobileMe users as well? Just wondering because I know there were going to be some changes as they completely move MobileMe over to iCloud and drop the "extra" services. I just can't remember if it was just a single cut off date or a series of dates. THAT email is stuck in my iCloud folders.

  • Error message on Itunes. Cannot read contents of Ipod....

    I forgot to eject my sons Ipod touch before I unplugged it from the USB. Nowwhen I plug it in it tells me itunes cannot read contents of ipod must restore to factory settings.. Please help?! I've tried restarting my computer and Ipod. I've updated Itunes. I used a different cord and I went into settings and reset everything. I'm affraid to restore th Ipod because he has bought games that I don't want him to loose.... Any suggestions?

    That happens when you do not eject the iPod and the iPod is syncing.or upddating.
    Connect the iOS device to your computer and restore via iTunes. Place the iOS device in Recovery Mode if necessary to allow the restore.
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • ITunes 11.1.3.8 won't read contents of any device

    Using Win8, iTunes won't read contents of any device. using 11.1.13.8
    Have seen many fixes for it.
    Need help. Newer computer with new install. New iPhone and iPad Retna
    Please help if you can.
    Thanks

    What do you mean "iTunes won't read contents"?
    What specifically is happening?
    Was the ENTIRE iTunes folder copied from the old computer to the new computer?  iDevices are not and have never been backup devices or a way to move content to a new computer.

  • Read contents of file into outputstream

    Can anyone suggest that what are the best methods to read contents of a file (better cater to both conditions: big file size and small file size) into outputstream and send through socket...
    Thanks.

    Thanks for the answer. But I would like to ask the following question:
    I have a VB application which generates a file. I have a Java application which read the contents of the file.
    is it possible that VB side calls the read() (file) and send() (through socket to destination) methods in Java application once the file is generated? Actually my objective is VB is responsible for generating a file for Java application to read data from and then send the data (not file) to destination....If it is impossible to achieve, any alternative to achieve this?
    Thanks
    Edited by: whkhoo on Jun 15, 2008 8:45 PM

Maybe you are looking for

  • Prelude source file is missing

    Hi... I'm trying to add preludes at both the module and member level to a C++ GUI project.... and keep getting this annoying error "Code editing problem: the prelude source file is missing". Has anybody solved this one ? I can't find a way to generat

  • How to set password on email body in custom Email Template

    Hy, I have a Email Template customized in Email Definition>Design Console. I need send this 'Email Template' with the password user, but I don't know how to set the variable 'password' in the body of email. I searched in Varables>Targets>Variables, b

  • How can i install a printer driver?

    after sucessful download - i can't choose the driver out of the downloads, when istalling my printer

  • Sun Portal Server 6 compatibility with Web Server 6.1 SP - 8

    Hi, Our client is running on Sun One Portal Server Version 6.0, which is deployed on Sun One Web Server ver 6.0, there is a request from the hosting provider to upgrade the web container to Web Server 6.1 SP8. My question is � Is Sun One Portal 6.0 (

  • Crash on Photoshop, Illustrator, Dreamweaver startup help.

    Hello there, I am having some problems with my CS3 program.  Earlier this morning, I successfully accessed my dreamweaver and illustrator programs.  About an hour later, I attempted to access photoshop.  After the initial loading screen, I get the ma