FlashBuilder Burrito - metadata code completion (metadata.xml)

Hello,
I’ve already posted my question on the Flex Coders Yahoo Group, but I think Adobe Forums>Flash Builder>Using Flash Builder http://forums.adobe.com/ http://forums.adobe.com/ is more appropriate for this kind of questions. So, here is my problem:
There is an actionscript framework called Robotlegs ( http://www.robotlegs.org/ ), which uses automated, metadata based Dependency Injection.
The code for an injection could look like this:
[Inject]
public var myDependency:Depedency; //unnamed injection
or this:
[Inject(name="myNamedDependency")]
public var myNamedDependency:NamedDepedency; //named injection
The new, great features in FlashBuilder Burrito allow us to create code templates.
I can add a new pattern like this:
[Inject]
public var ${ myDependency }:${ Depedency };
"Flash Builder also supports metadata tags from third party SWCs if they have the required metadata.xml file embedded in them." (
http://www.adobe.com/devnet/flex/articles/coding_enhancements_burrito.html#articlecontentA dobe_numberedheader_0 )
Under \Adobe Flash Builder Burrito\sdks\4.5.0\frameworks there is a metadata.xml file.
Following that example, I think that I could do something like this:
<?xml version="1.0" encoding="utf-8"?>
<annotations version="1.0">
<metadata name="Inject" description=”the uber cool robotlegs Injection”>
<context name="class" />
<context name="variable" />
<context name="method" />
</metadata>
</annotations>
for a Field Injection, a Method Injection and a Constructor Injection in Robotlegs.
Question
How exactly should the metadata.xml file look like in order to get 
[Inject(name="myNamedDependency")]
public var myNamedDependency:NamedDepedency;
in your code, meaning the [Inject] metadata tag and a template for the variable?
I’d really appreciate your help.
Cheers,
Ondina

There is some output however the tag appears different
Instead of appearing as this
<title>GENERIC TITLE</title>
<title>GENERIC TITLE</title>
It appears as
<title xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2" xmlns:ezicp="http://sampleURL/xsd/ezicp_rootv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">GENERIC TITLE</title>
<title xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2" xmlns:ezicp="http://sampleURL/xsd/ezicp_rootv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">GENERIC TITLE</title>
Not sure where I am going wrong. I used the same code as above with the code you have written below.
Many thanks

Similar Messages

  • Code completion for XML Views

    Hi,
    Can anybody confirm if we have the code completion feature available for XML views? I am using eclipse kepler with most updated UI5 plugins.
    Thanks
    Jayant

    Hi Jayant,
    You can try the following:
    -Create and open an XML View in Eclipse (Kepler, or Indigo)
    -Type the name of the UI5 control, e.g. List and click Ctrl-Space
    -From the list of provided templates, select the name of the UI5 control you want to include
    -Supply attributes you need, remove the unnecessary attributes and format the text (Ctrl-Shift-F).
    To check, if your Eclipse UI5 addon has XML templates, you can go to Window->Preferences->search for "templates"->scroll down to XML>XML Files>Editor>Templates and you will find all available XML templates for UI5 controls.
    hope it helps,
    Vlad

  • Email Notification 11g - Event Metadata xml issue

    Hi,
    I am creating Email Notification for 11g .. For that I have created Event Metadata xml, one java class and pluggin.xml.
    the problem I am facing, I am not able to upload the Event Metadata xml (ISUDnotsigned.xml) using weblogicImportMetadata.sh
    My Event Metadata xml is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <Events xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../metadata/NotificationEvent.xsd">
    <EventType name="ISUD Not Signed">
    <StaticData>
    <Attribute DataType="X2-Entity" EntityName="User" Name="User Login"/>
    <Attribute DataType="91-Entity" EntityName="User Group" Name="User Grp"/>
    </StaticData>
    <Resolver class="com.hssa.oim.emailNotification.ISUDNotSignedNotificationEventResolver">
    <Param DataType="X2-Entity" EntityName="User" Name="usr_login"/>
    </Resolver>
    </EventType>
    </Events>
    the weblogic properties file is as below:
    application_name=OIMMetadata
    metadata_from_loc=/iam/email
    metadata_to_loc=
    metadata_files=/metadata/ISUDnotsigned.xml
    when I am running the weblogicImportMetadata.sh it is saying Transfer complete. but its not reflecting in OIM admin console.. Kindly suggest
    Edited by: boyinabox on Feb 28, 2013 4:50 AM

    it doesn't work because notifications are set from user1 account so USER# is still 1 even when I removed record first.
    This is my aproach based on Ask Tom: On Becoming Others, Limits, and Restoration
    >sqlplus user1
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    SQL> grant execute on sys.dbms_aq to user1;
    Grant succeeded.
    SQL> alter user user3 grant connect through user1;
    User altered.
    SQL> connect user1[user3]
    Enter password:
    Connected.
    SQL> create or replace procedure sched_not_add_q as
      2    reginfo1    sys.aq$_reg_info;
      3    reginfolist sys.aq$_reg_info_list;
      4  begin
      5    reginfo1    := sys.aq$_reg_info('SYS.SCHEDULER$_EVENT_QUEUE:SCHED$_AGT2$_3',
      6                                    1,
      7                                    'plsql://SYS.SCHEDULER$_JOB_EVENT_HANDLER',
      8                                    null);
      9    reginfolist := sys.aq$_reg_info_list(reginfo1);
    10    dbms_aq.register(reginfolist, 1);
    11  end;
    12  /
    Procedure created.
    SQL> exec sched_not_add_q;
    PL/SQL procedure successfully completed.
    SQL> drop procedure sched_not_add_q;
    Procedure dropped.
    SQL> connect user1
    Connected.
    SQL> revoke execute on sys.dbms_aq from user3;
    Revoke succeeded.
    SQL> alter user user3 revoke connect through user1;
    User altered.
    SQL> exit;
    >
    So it works now.

  • Get Metadata XML per HTTP

    Hi all,
    I got the following code which retrieves the metadata.xml file from the local hard disk working, but now I need to load the file with a HTTP request. Is that possible and if so how?
    Here is the code for the local file import:
    SELECT image FROM mytable WHERE id = 1 FOR UPDATE' INTO image;
    meta := XMLTYPE(BFILENAME(dir_name, file_name), NLS_CHARSET_ID('WE8MSWIN1252'));
    image.putMetadata(meta);
    Thank you for your feedback.

    You can use the UTL_HTTP package to access content stored outside the database.
    You could also use create an ORDDoc object, set the source information to HTTP and the URL and then call import. This will import the XML into the clob of the ORDDoc. You can then use the getContent() method to retrieve the lob locator and use that to construct an XMLType.

  • Namespace-URI is wrong in the metadata.xml??

    Dear Captivate-Community,
    I am running into troubles importing SCORM packages from Captivate 6 into our LMS.
    Our LMS  (Viversa 7.1 from VIWIS) interprets SCORM 1.2 very strict.
    It seems that the namespace-URI is wrong in the metadata.xml!
    wrong is...
    Line 4:   xmlns:pkgprop="http://www.scorm.com/ScormEnginePackageProperties"
    correct is:
    Line 4:   xmlns:pkgprop="http://www.scorm.com/xsd/ScormEnginePackageProperties"
    Has anyone else the same experience? I don´t want to change each exported file by hand...
    Thx
    :-) michael

    Hi Michael,
    yes, currently I actually have the same problem, also using the LMS Viversa. The solution from RodWard was very helpful. I change the template in Line 67 and add the "xsd/". Now it works!
    Regards
    Katharina

  • Unable to find the Metadata XML file.

    I am trying to apply the to Bundle Patch. In this process i am trying to upload the patch 13550561 into EM.
    Its shows a column to upload the "Metadata XML file".
    Please let me know which file need to upload in “Metadata XML file". I could not find any in the patch zip with that name.
    Thanks,
    support_dba

    Hi,
    This Metadata XML file needs to be downloaded during the patch download.
    When the "File download" pop up appears, at the bottom of the popup you will find a link "Download Patch Metadata".
    Click on that link, will download the Metadata XML file.
    Hope this clarifies your question.
    Best Regards,
    Venkat

  • [svn:fx-trunk] 12985: Add metadata. xml for the SWC themes so that if Builder imports them they have nice names , etc.

    Revision: 12985
    Revision: 12985
    Author:   [email protected]
    Date:     2009-12-15 23:20:44 -0800 (Tue, 15 Dec 2009)
    Log Message:
    Add metadata.xml for the SWC themes so that if Builder imports them they have nice names, etc.  These need to be updated by the Builder team if we end up changing how sourceLocation works, etc.  Also would be good if we added metadata.xml for the CSS versions.
    Modified Paths:
        flex/sdk/trunk/samples/themes/arcade/build.xml
        flex/sdk/trunk/samples/themes/cobalt/build.xml
        flex/sdk/trunk/samples/themes/graphite/build.xml
        flex/sdk/trunk/samples/themes/zen/build.xml
    Added Paths:
        flex/sdk/trunk/samples/themes/arcade/src/metadata.xml
        flex/sdk/trunk/samples/themes/cobalt/src/metadata.xml
        flex/sdk/trunk/samples/themes/graphite/src/metadata.xml
        flex/sdk/trunk/samples/themes/zen/src/metadata.xml

    Note the last paragraph in the original post which explains how Flickr handles resolution changes without breaking the rectangles. Perhaps a more straightforward approach would be to store both the rectangle coordinates for each rectangle AND the image's width and height at the time the rectangles were created. Then if the image is scaled, the rectangles can be scaled accordingly. For example, if a rectangle is at x=100,y=200,w=50,h=70, the "original dimensions" are 1000x2000, and the image's current dimensions are 500x1000, then an application could assume the image has been scaled down by (500/1000=) 0.50, and so the x,y,w,h of each rectangle could also be multiplied by 0.50 (x=50,y=100,w=25,h=35). I'd recommend storing floating-point values so that multiple scalings don't make the rectangles "creep".
    Of course, it is possible that really the image was cropped rather than scaled, but fairly unlikely you would happen to crop it the same percent in both directions. Even if an image is cropped, someone could manually repair the rectangles by sliding and scaling them until the fit back on the faces (unless most of the faces were cropped off).
    A rectangle-aware application could scale and translate the rectangles during a crop or scaling operation, but other applications could still survive scaling if they at least preserve the XMP tags as-is.

  • Dreamweaver CC crashes on code completion

    Hi,
    I recently upgraded from CS5 to CC and ever since Dreamweaver CC crashes on code completion. When I close a tag and start with '<' followed by a slash, Dreamweaver crashes.

    I have a MacBook Pro 17, 10.7.5, usin DW CC. It has not booted for me once in the three months since I signed up for CC. A waste of money.
    Here is the crash log.
    Process:    
    ReportCrash [1073]
    Path:       
    /System/Library/CoreServices/ReportCrash
    Identifier: 
    ReportCrash
    Version:    
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [199]
    Date/Time:  
    2013-12-04 13:37:34.979 -0500
    OS Version: 
    Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Crashed Thread:  9
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000115afdc48
    VM Regions Near 0x115afdc48:
    MALLOC_LARGE      
    0000000114965000-0000000115716000 [ 13.7M] rw-/rwx SM=PRV 
    -->
    mapped file       
    000000011e747000-000000011e95a000 [ 2124K] r--/r-x SM=ALI  /usr/lib/system/libsystem_c.dylib
    Application Specific Information:
    Analyzing process: Dreamweaver[1063], path: /Applications/Adobe Dreamweaver CC/Adobe Dreamweaver CC.app/Contents/MacOS/Dreamweaver; parent process: launchd[199], path: /sbin/launchd
    objc[1073]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff94930e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff98b64dea nanosleep + 164
    2   libsystem_c.dylib        
    0x00007fff98b64c2c sleep + 61
    3   ReportCrash              
    0x000000010f8a0805 0x10f892000 + 59397
    4   ReportCrash              
    0x000000010f893248 0x10f892000 + 4680
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff949317e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff904f7786 _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff904f6316 _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff94931192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff98bb0594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff98bb1b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff9492f67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff9492ed71 mach_msg + 73
    2   com.apple.CoreSymbolication  
    0x00007fff946035fe CSCppExceptionSafeThread::CSCppExceptionSafeThread(void ( block_pointer)()) + 306
    3   com.apple.CoreSymbolication  
    0x00007fff9461d42e CSExceptionSafeThreadRunBlock + 26
    4   ReportCrash              
    0x000000010f89d61a 0x10f892000 + 46618
    5   ReportCrash              
    0x000000010f89f850 0x10f892000 + 55376
    6   ReportCrash              
    0x000000010f8a0bc2 0x10f892000 + 60354
    7   ReportCrash              
    0x000000010f8a3300 0x10f892000 + 70400
    8   ReportCrash              
    0x000000010f8a2bc5 0x10f892000 + 68549
    9   libsystem_kernel.dylib   
    0x00007fff9492f537 mach_msg_server_once + 427
    10  ReportCrash              
    0x000000010f8a0928 0x10f892000 + 59688
    11  libsystem_c.dylib        
    0x00007fff98bae8bf _pthread_start + 335
    12  libsystem_c.dylib        
    0x00007fff98bb1b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff9492f67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff9492ed71 mach_msg + 73
    2   libsystem_kernel.dylib   
    0x00007fff9492f49a mach_msg_server_once + 270
    3   ReportCrash              
    0x000000010f8a0928 0x10f892000 + 59688
    4   libsystem_c.dylib        
    0x00007fff98bae8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff98bb1b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff94931192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff98bb0594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff98bb1b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff9492f67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff9492ed71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8f67350c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8f67bc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8f67b486 CFRunLoopRunSpecific + 230
    5   com.apple.DebugSymbols   
    0x00007fff96f4b2f2 _ZL20SpotlightQueryThreadPv + 434
    6   libsystem_c.dylib        
    0x00007fff98bae8bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff98bb1b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff94930e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff98b64dea nanosleep + 164
    2   com.apple.CoreSymbolication  
    0x00007fff9461d3bb cleaner_thread_main(void*) + 42
    3   libsystem_c.dylib        
    0x00007fff98bae8bf _pthread_start + 335
    4   libsystem_c.dylib        
    0x00007fff98bb1b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff9492f67a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff9492ed71 mach_msg + 73
    2   com.apple.CoreSymbolication  
    0x00007fff946035fe CSCppExceptionSafeThread::CSCppExceptionSafeThread(void ( block_pointer)()) + 306
    3   com.apple.CoreSymbolication  
    0x00007fff94608043 CSCppSymbolOwnerCache::create_symbol_owner_data(CSCppSymbolOwner*, CSCppDsymData*) + 189
    4   com.apple.CoreSymbolication  
    0x00007fff94607301 CSCppSymbolOwnerCache::data_for_symbol_owner(CSCppSymbolOwner*) + 45
    5   com.apple.CoreSymbolication  
    0x00007fff946072af CSCppSymbolOwner::data() + 23
    6   com.apple.CoreSymbolication  
    0x00007fff9461d513 CSSymbolOwnerGetBaseAddress + 22
    7   ReportCrash              
    0x000000010f89d760 0x10f892000 + 46944
    8   ReportCrash              
    0x000000010f893565 0x10f892000 + 5477
    9   com.apple.CoreSymbolication  
    0x00007fff9461d4c0 CSSymbolicatorForeachSymbolOwnerAtTime + 117
    10  ReportCrash              
    0x000000010f89d70b 0x10f892000 + 46859
    11  ReportCrash              
    0x000000010f8935f6 0x10f892000 + 5622
    12  com.apple.CoreSymbolication  
    0x00007fff946036b4 CSCppExceptionSafeThread::sacrificial_thread_init() + 118
    13  com.apple.CoreSymbolication  
    0x00007fff94647d37 thread_init_trampoline(CSCppExceptionSafeThread*) + 9
    14  libsystem_c.dylib        
    0x00007fff98bae8bf _pthread_start + 335
    15  libsystem_c.dylib        
    0x00007fff98bb1b75 thread_start + 13
    Thread 9 Crashed:
    0   libsystem_c.dylib        
    0x00007fff98c01870 strcmp + 80
    1   com.apple.CoreSymbolication  
    0x00007fff94623c11 void extract_direct_stabs_from_header<SizeAndEndianness<Pointer32, LittleEndian> >(TExtendedMachOHeader<SizeAndEndianness<Pointer32, LittleEndian> >&, TRawSymbolOwnerData<SizeAndEndianness<Pointer32, LittleEndian>::SIZE>&, TNList<SizeAndEndianness<Pointer32, LittleEndian> > const*, unsigned int, TRange<SizeAndEndianness<Pointer32, LittleEndian>::SIZE>) + 807
    2   com.apple.CoreSymbolication  
    0x00007fff9462375d void extract_stabs_data_from_header<SizeAndEndianness<Pointer32, LittleEndian> >(unsigned int, TExtendedMachOHeader<SizeAndEndianness<Pointer32, LittleEndian> >&, TRawSymbolOwnerData<SizeAndEndianness<Pointer32, LittleEndian>::SIZE>&) + 303
    3   com.apple.CoreSymbolication  
    0x00007fff9462250c CSCppSymbolOwnerData* create_symbol_owner_data_arch_specific<SizeAndEndianness<Pointer32, LittleEndian> >(CSCppSymbolOwner*, CSCppDsymData*) + 4780
    4   com.apple.CoreSymbolication  
    0x00007fff94637ab1 create_symbol_owner_data2(CSCppSymbolOwner*, CSCppDsymData*) + 77
    5   com.apple.CoreSymbolication  
    0x00007fff94637a51 __create_symbol_owner_data_block_invoke_0 + 25
    6   com.apple.CoreSymbolication  
    0x00007fff946036b4 CSCppExceptionSafeThread::sacrificial_thread_init() + 118
    7   com.apple.CoreSymbolication  
    0x00007fff94647d37 thread_init_trampoline(CSCppExceptionSafeThread*) + 9
    8   libsystem_c.dylib        
    0x00007fff98bae8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff98bb1b75 thread_start + 13
    Thread 9 crashed with X86 Thread State (64-bit):
      rax: 0x00000000000003b8  rbx: 0x00000001138dcaa8  rcx: 0x0000000000000000  rdx: 0x000000000000003b
      rdi: 0x0000000115afdc48  rsi: 0x0000000113df8390  rbp: 0x0000000111af5010  rsp: 0x0000000111af4af8
       r8: 0x000000000000000b   r9: 0x0000000000000314  r10: 0x0000000000000000  r11: 0x00007f9289631340
      r12: 0x0000000113df8390  r13: 0x0000000115afdc48  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff98c01870  rfl: 0x0000000000010213  cr2: 0x0000000115afdc48
    Logical CPU: 3
    Binary Images:
    0x10f892000 -   
    0x10f8a9fff  ReportCrash (??? - ???) <821EF952-7A90-3EF8-9750-E9E4BB145316> /System/Library/CoreServices/ReportCrash
    0x7fff6f492000 -
    0x7fff6f4c6baf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
    0x7fff8ca4d000 -
    0x7fff8ca4eff7  libsystem_sandbox.dylib (??? - ???) <5459F293-E1F2-33B3-B9B2-2ABB7B915B62> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8d882000 -
    0x7fff8d888fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8d889000 -
    0x7fff8d9f0fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x7fff8dab6000 -
    0x7fff8ddcffff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8de11000 -
    0x7fff8de73ff7  com.apple.Symbolication (1.3 - 91) <98A0662F-26ED-3B10-871B-07747127C7E9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8dfb4000 -
    0x7fff8dfbafff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff8e0e2000 -
    0x7fff8e0f4ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    0x7fff8e101000 -
    0x7fff8e41dfff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x7fff8e5ff000 -
    0x7fff8e5fffff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8e605000 -
    0x7fff8e610ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    0x7fff8e6d0000 -
    0x7fff8e8d2fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
    0x7fff8e9e5000 -
    0x7fff8e9e9fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8eaec000 -
    0x7fff8ebeefff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    0x7fff8ebef000 -
    0x7fff8ec62fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    0x7fff8ec63000 -
    0x7fff8ec68fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
    0x7fff8ec9a000 -
    0x7fff8ed7ee5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    0x7fff8ed8e000 -
    0x7fff8ed93ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff8eeda000 -
    0x7fff8eedbfff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    0x7fff8f612000 -
    0x7fff8f621ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    0x7fff8f643000 -
    0x7fff8f817ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8f8ba000 -
    0x7fff8f8cdff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff8f8ce000 -
    0x7fff8f8dcfff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8f8df000 -
    0x7fff8f8f6fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x7fff8f905000 -
    0x7fff8f940fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    0x7fff90452000 -
    0x7fff904f3fff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x7fff904f4000 -
    0x7fff90502fff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    0x7fff9051b000 -
    0x7fff90538fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    0x7fff906ae000 -
    0x7fff90748ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff90e60000 -
    0x7fff90e61ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    0x7fff9133b000 -
    0x7fff91348ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
    0x7fff91349000 -
    0x7fff91350fff  com.apple.CommerceCore (1.0 - 17.1) <B6BFA182-9DC9-3543-89AE-F82EB9AF1CAB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x7fff92504000 -
    0x7fff92504fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff92629000 -
    0x7fff9262efff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    0x7fff92667000 -
    0x7fff9266cfff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff9266d000 -
    0x7fff9269dff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x7fff926ae000 -
    0x7fff92731fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x7fff93197000 -
    0x7fff931e3ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <131780ED-E8DD-3153-81F2-5FEC4F6554C2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff93287000 -
    0x7fff9328ffff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff93564000 -
    0x7fff93591fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <6E5C8AC3-DBB7-31CB-BEB7-D6ED8E6DE0CE> /usr/lib/libSystem.B.dylib
    0x7fff939b7000 -
    0x7fff93cacff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff93cf4000 -
    0x7fff93d36ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff94187000 -
    0x7fff94188ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    0x7fff94600000 -
    0x7fff94676fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x7fff9491a000 -
    0x7fff9493afff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    0x7fff949a4000 -
    0x7fff94a0fff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff94ab7000 -
    0x7fff94abefff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff94de5000 -
    0x7fff94e01ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x7fff94e02000 -
    0x7fff94e04fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x7fff954eb000 -
    0x7fff954f5ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
    0x7fff95539000 -
    0x7fff95542ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff955fc000 -
    0x7fff9566cfff  com.apple.datadetectorscore (3.0 - 179.4) <4AB32B7F-8EC2-327E-BAC8-80129AA36E7B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x7fff9595f000 -
    0x7fff95961fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
    0x7fff95f21000 -
    0x7fff96028fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    0x7fff96029000 -
    0x7fff9610dff7  com.apple.CoreServices.OSServices (478.50 - 478.50) <3D6AA4EF-C601-36C7-8F3A-A00964F01759> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x7fff96112000 -
    0x7fff96113fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff965be000 -
    0x7fff9660cfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff96787000 -
    0x7fff96794fff  com.apple.CrashReporterSupport (10.7.4 - 353) <6044CFB6-939E-3C73-BFBB-A8BBC096F135> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x7fff96f44000 -
    0x7fff96f7efe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff97855000 -
    0x7fff97961fef  libcrypto.0.9.8.dylib (49.1.0 - compatibility 0.9.8) <FB999E54-C9BC-3A6D-9FE5-BFCC236775ED> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff97bb6000 -
    0x7fff97bb6fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    0x7fff97c29000 -
    0x7fff97c30fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff97c31000 -
    0x7fff97ca7ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
    0x7fff98633000 -
    0x7fff98672fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7fff98673000 -
    0x7fff9869eff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    0x7fff9869f000 -
    0x7fff986a5ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff987dd000 -
    0x7fff987defff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    0x7fff987e7000 -
    0x7fff987ebfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
    0x7fff987ec000 -
    0x7fff98818ff7  com.apple.CoreServicesInternal (113.19 - 113.19) <74532B3B-EDE0-3553-9BED-F02B9CDF1FF7> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x7fff9884f000 -
    0x7fff98850fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
    0x7fff988d4000 -
    0x7fff988e6ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff98b60000 -
    0x7fff98c3dfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    0x7fff993e7000 -
    0x7fff993f5ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    thread_set_state: 0
      Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
      Calls made by all processes on this machine:
    task_for_pid: 25000
    thread_create: 3
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=77.9M resident=54.7M(70%) swapped_out_or_unallocated=23.2M(30%)
    Writable regions: Total=121.2M written=43.7M(36%) resident=45.0M(37%) swapped_out=0K(0%) unallocated=76.1M(63%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    MALLOC                       
    107.8M
    MALLOC guard page               
    48K
    MALLOC_LARGE (reserved)        
    448K   
    reserved VM address space (unallocated)
    Mach message                    
    24K
    STACK GUARD                   
    56.0M
    Stack                         
    12.6M
    VM_ALLOCATE                     
    44K
    __DATA                        
    3260K
    __LINKEDIT                    
    49.1M
    __TEXT                        
    28.8M
    __UNICODE                      
    544K
    mapped file                   
    68.5M
    shared memory                  
    320K
    ===========                 
    =======
    TOTAL                        
    327.4M
    TOTAL, minus reserved VM space
    327.0M

  • Mapping complete input XML structure into one field on target

    Hi,
    I have a scenario where I need to map the complete input XML structure as it is, into one field on target side. so can we achieve this in Graphical Mapping? If yes, please share your valuable info.
    Regards,
    Shiva.

    Hello,
    this is the java map code.just compile it and made a .zip file import it and use it Interface Mapping.
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.AbstractTrace;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import java.util.Map;
    import java.io.*;
    public class PayloadToXMLField1 implements StreamTransformation {
        String strXML = new String();
       //Declare the XML tag for your XML message
       String StartXMLTag = "<DocumentBody>";
       String EndXMLTag = "</DocumentBody>";
       //String StartXMLTag1 = "<Code>";
       //String EndXMLTag1 = "</Code>";
        AbstractTrace trace;
        private Map param = null;
        public void setParameter(Map param) {
            this.param = param;
        public void execute(InputStream in, OutputStream out) {
            trace =
                (AbstractTrace) param.get(
                    StreamTransformationConstants.MAPPING_TRACE);
            trace.addInfo("Process Started");
            try {
                StringBuffer strbuffer = new StringBuffer();
                byte[] b = new byte[4096];
                for (int n;(n = in.read(b)) != -1;) {
                    strbuffer.append(new String(b, 0, n));
                strXML = strbuffer.toString();
            } catch (Exception e) {
                System.out.println("Exception Occurred");
            String outputPayload =
                StartXMLTag
             + "<![CDATA["
             + strXML
             + "]]>"
             + EndXMLTag;
            try {
                out.write(outputPayload.getBytes());
             trace.addInfo("Process Completed");;
            } catch (Exception e) {
                trace.addInfo("Process Terminated: Error in writing out payload");;

  • Code completion deletes text

    I'm wondering if there is any way I can prevent JDeveloper from deleting text already in my document when it does code completion. In particular I'm dealing with XML files...
    Consider this text-editing task:
    I have this test:
    Today is a wonderful day.
    I want to mark this text up to look like:
    Today is a <bold>wonderful</bold> day.
    If I locate my cursor (marked by ^) next to wonderful:
    Today is a ^wonderful day.
    And then enter the &lt; character followed by the b character Jdeveloper pops up a menu of the possible choices ( bold )...
    If I then select that choice ( press 'enter' ) it assumes that I'm replacing the tag <bwonderful with the tag <bold> and deletes the text wonderful. The end text and cursor position I get is:
    Today is a &lt;bold^ day
    Is there any way to configure JDeveloper to have the behavior I desire:
    Today is a &lt;bold^wonderful day
    I find that because of JDeveloper's deletion of text, I end up having to think about whether I would rather type the tag name manually ( not use completion) or retype the following text ( use completion ) every time I insert a tag into my xml documents.

    I'm using the December release of JDeveloper:
    Studio Edition Version 11.1.1.0.1
    Build JDEVADF_MAIN.BOXER_GENERIC_081203.1854.5188
    If there is a space, then it doesn't replace the text, as in the example you show:
    Today is a ^ wonderful day
    works correctly giving:
    Today is a <bold^ wonderful day
    It also works well if you're inserting in front of a tag:
    Today is ^<bold>wonderful</bold> day
    can easily be changed to
    Today is <blink^<bold>wonderful</bold> day
    where code completion lists the tag <blink>

  • Code completion user commands helplink

    Hello
    I am currently working on code completion for user commands in version 2012.  I have an XML file in which I have the descriptions for all the hover text and associated help links.  Everything is working correctly except for the help links.  They seem to be always looking to go to the diadem.chm help file.  I was wondering if there was any way to redirect where they point or am I missing something?  Thanks. 
    Ben

    Hi Carmen
    Actually I'm really not using an external program per se.  I guess I need to clarify what I am doing better.  Sorry about that.    
    Look at the help file for ScriptCmdRegister here for an example.  A shorter version without an example is spelled out below if you wish.  
    I am creating a VBS user command script containing classes of objects that I add using scriptcmdadd.  I am then registering the TLB file using scriptcmdregister resulting from compiling an ODL file.  After compilation, the ODL file is no longer needed.  I have a third/fourth file to go along with these which is an XML file that I got from a coworker.  The XML file contains the descriptions, helplinks, and datatypes that appear when code completion comes up, just as there is in DIAdem when you type View.ActiveSheet.etc.  
    However, you notice in DIAdem that there is a help link, which is what I cannot get working because when I insert anything into the xml file where the help link would go, it throws an error because it is trying to point to the DIAdem.chm help file no matter what.  This is what I wish to redirect so it can go to my own chm/html help file, if it is possible or supported that is.  Thanks
    Ben

  • Code Completion on portal jsps & htmlb

    Hello,
    what I have to do to use the code completion within a portal JSP file ?
    The htmlb taglib is referenced in te portalapp.xml as follows:
    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    Are there other settings needed for the project in the NDS ? The help is only referencing the standard web.xml
    Thanks.

    Hi Christian,
        You have to add a reference in JSP as well. Here is a sample portalapp.xml and a .jsp page.
    <b>Portalapp.xml</b>
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
        </application-config>
      <components>
        <component name="display">
          <component-config>
            <property name="ClassName" value="nasa.ifmp.testjsp.display"/>
            <property name="SecurityZone" value="nasa.ifmp.testjsp/high_safety"/>
          </component-config>
          <component-profile>
            <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    <b>
    JSP Page</b>
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <hbj:content
         id="myContext">
    <script LANGUAGE="JavaScript" TYPE="text/JavaScript">      
    function alertSelectedRadio(){
    var funcName = htmlb_formid+"_getHtmlbElementId";
    func = window[funcName];
    alert(func);
    var radiobutton = eval(func(htmlb_radiobuttonmodifier+"radiobutton"));
    alert(radiobutton);
    </script>
         <hbj:document>
              <hbj:documentHead
                   title="test">
              </hbj:documentHead>
              <hbj:documentBody>
                   <hbj:form
                        id="simpleForm">
                        <hbj:radioButtonGroup
                             id="TestRadioGroup"
                             columnCount="2"
                             selection="rb_fem">
                             <hbj:radioButton
                                  id="TestRadioButton1"
                                  text="female"
                                  key="rb_fem"
                                  tooltip="I am female"
                                  jsObjectNeeded="TRUE"
                                  disabled="false"
                                  />
                             <hbj:radioButton
                                  id="TestRadioButton2"
                                  text="male"
                                  key="rb_male"
                                  tooltip="I am male"
                                  jsObjectNeeded="TRUE"
                                  disabled="false"
                                  />
                        </hbj:radioButtonGroup>
                        <br>
                        <hbj:button
                             id="SubButton"
                             text="Submit"
                             tooltip="Sends your info"
                            onClientClick="alertSelectedRadio()"
                             width="30px"
                             design="EMPHASIZED"
                             jsObjectNeeded="true">
                        </hbj:button>
                   </hbj:form>
              </hbj:documentBody>
         </hbj:document>
    </hbj:content>

  • Re: bug in html:link code completion

    You are right, code completion does not work in this case. But, the
    html:link Smart Editor (in the Link Parameter group) allows you to select a
    bean name/property for the paramName/paramProperty attributes.
    M7 Support
    "Michael Mok" <[email protected]> wrote in message
    news:418d8f37$[email protected]..
    Hi thereI have a form containing an object eg
    StudentForm
    Student student;
    public Student getStudent();
    public void setStudent();
    In the JSP page, I type in
    html:link action="/editStudent" paramName="" paramProperty=""
    Edit
    /html:link
    Nitrox does not display any thing when I "Cntrl-Space" on paramName=""
    neither on paramProperty=""
    Hoepe this bug can be fixed in 2.0.
    Regards
    Michael Mok

    Please send a test case. I'm unable to reproduce this in a simple project in 9.0.3.1 or 9.0.3.2.
    Is there entity inheritance involved?
    Do your entity XML files mention _superAttr anywhere in them? If so, you might be hitting a known issue with 9.0.3 relating to entity inheritance at design time and the accessor attributes.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Is there any way to fix the slow code completion in Netbeans 5.5+

    Netbeans 5.5 or Netbeans 5.5.1
    Is there any possible fix for the slow code completion within the editor? I've googled this issue and haven't found much of anything relevant.
    While, not used all the time - a faster than what it is now code completion would be helpful.
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    helloWorld
    Thanks for the response and useful response.
    :P
    I'm not a decent machine now and I guess I'll just keep on typing.
    --Todd                                                                                                                                                                                                                                                                                       

  • Code completion particular not working

    Hello,
    in my program there are serveral internal classes. Each class has its own include file. Code completion seems not working for internal classes in other include files.
    example:
    lcl_class1 in includec01   (first included)
         class-methods static1_1
         methods method1_1
    lcl_class2 in includec02   (second included)
         class-methods static1_1
         methods method1_1
    problem:
    While development in lcl_class2 there are no code completion for lcl_class1.
    No code completation for lcl_class1=>static1_1
    but if you declarate "data lo_myclass type ref to lcl_class1." code completion is working fine for public member methods and attributes in the same file.
    In Functiongroups all working fine.
    Best Regards
    Markus Bauernschmitt
    Und da hier eh die meisten deutschsprachig sind und mein Englisch grausam ist, nachfolgend die Erklärung nochmal auf deutsch.... ;-)
    In meinen Programmen findet die Codevervollständigung keine interne Klassen aus vorangegangenen include Dateien. Dadurch werden weder die Klassen selbst noch die statischen Methoden angezeigt. Gebe ich eine statische Methode ein und möchte die Hilfe anzeigen (F2) erscheint die Fehlermeldung "Codeinformationen sind nicht verfügbar".
    Dieses Problem tritt nicht auf, falls die Deklaration einer Variablen in der gleichen Include Datei erfolgt.
    Deklaration einer Variablen in der aktuellen Include Datei -> Dokumentation der öffentlichen (nicht statische) Methoden und Attribute funktioniert
    Zugriff auf öffentliche (statische oder nicht statische) Methoden und Attribute von globalen Variablen (deklariert in einer anderen Datei) funktioniert dagegen nicht.
    Es sind nur anscheinend nur Programme betroffen. Bei Funktionsgruppen (getestet am Beispiel "ldemo_cr_car_rental_screen") trat der Fehler nicht auf.

    Hi Dominik,
    thank you for your answer. The internal classes are already simple and lightweight. In my understanding of OO I keep classes private as possible and so I create this specific "one program helper classes" in the smallest reasonable scope.
    However, this is a architektur decission. But the pivotal question is: Why working this kind of code completion in function groups but not in programs.
    Some additional information.
    - Code completion working in "START-OF-SELECTION."
    - In Functiongroup includes (Testcase lcl_class1 show as public type and lcl_class2 show as local public class.
    Best regards
    Markus

Maybe you are looking for

  • How do you reset your passcode so that you can get back into your iphone if you forgot it?

    i changed my passcode to get into my iphone and i went away and when i got back i had forgot my passcode, and i really need to get into my iphone how do i get into it even though i have forgot my passcode?

  • How to turn waste into a sundry stock item in SAP B1

    G'day folks, This is my first post ot the SAP B1 forum, and probably wont be the last. So far I've used this forum to resolve most problems, but I have an issue with I havn't seen to date on any thread. Two of the 6 companies I'm implementing in SAP

  • PI 7.4: wrong logical system

    I am configuring a managed system (SAP Netweaver 7.4) which will be used as PI Development system. However, in step 10 "Create Logical Components" (Solution Manager 7.1), the development system that appears is BWD:001, which correspond to another sys

  • Why my project masks are rounded and expanded by default?

    Hi everyone, i promise i've searched the forums for this question, but i haven't found nothing about. In one single project of mine i have masks that acts crazy (sorry for my english): when i drag a square mask, or i close a drawed one, the mask it's

  • Any way to give Help Desk Users access to tickets by Category?

    As far as I know, there's just no way to do this.  The user roles are not very flexible and really don't provide any middle ground by design.  You can either see all tickets or you can see only tickets assigned to you.