Structure of the varrays

i created a varray.
how i will display structure of the varrays.is there any view associated that?

Hello
Care to give a bit more information??????
SQL> create type vt_number is varray(10) of number
  2  /
Type created.
SQL> desc vt_number
vt_number VARRAY(10) OF NUMBER
SQL> create table dt_test_varray(id number, varray_column vt_number);
Table created.
SQL> insert into dt_test_varray values(1, vt_number(1,2,3,4,5,6,7,8,9,0));
1 row created.
SQL> select * from dt_test_varray
  2  /
        ID
VARRAY_COLUMN
         1
VT_NUMBER(1, 2, 3, 4, 5, 6, 7, 8, 9, 0)
SQL> select * from table(select varray_column from dt_test_varray);
COLUMN_VALUE
           1
           2
           3
           4
           5
           6
           7
           8
           9
           0
10 rows selected.
SQL> select a.id,b.* from dt_test_varray a, TABLE(a.varray_column) b;
        ID COLUMN_VALUE
         1            1
         1            2
         1            3
         1            4
         1            5
         1            6
         1            7
         1            8
         1            9
         1            0HTH
David

Similar Messages

  • How to  add new  fields or structure in  the Satandard Receiver Strucutre.

    Hi,
    I have a requirement, that  ECC to SNC . IDoc with new segment needs to be placed in the target SAP Standard Structure. How to achieve this.
    Regards,
    Srinivas.

    Hi Michal,
    Thanks for your response.
    Here is the complete requirement.
    Customer asked to have a structure in DeliveryScheduleNotification to populate ZSEGMENT values from IDoc.
    I have added new structure to the Data type in a separate SWCV and new Name Space.
    Maintained Dependency with SNC.
    I am not able to see any  interface under my SWCV  while doing  Interface determination Step in ID.
    Please help me.
    Thanks in Advance.
    sreeni
    Edited by: Sreenivas Reddy on Jun 6, 2009 2:16 PM

  • Can I have multiple event structures with the same event cases?

    Hello, 
    I'm doing an application that reproduces the front panel of the HP6675A power supply. To achieve this, I have done a state machine with different states
    (initialize, measures, voltage, current, ocp, ov, store, recall, etc). In each state, should have an event structure that catches the events of the buttons, like for example: if the current state is the Voltage mode and the user press the current button the next state will be the Current mode. For this in each state of the state machine should be the same event structure with the same events.
    My problem is that the Vi doesn't work properly when I have multiple event structures with the same event cases. There are some possibily to do this, and how? Or is impossible to have multiple events? I have been reading some posts, but I don't find solutions. 
    Any help is appreciated.
    Thank you very much.
    Solved!
    Go to Solution.

    natasftw wrote:
    Or as others mentioned, make two parallel loops.  In one loop, have your state machine.  In the other, have just the Event Handler.  Pass the events from the handler to the state machine by way of queues.
    A proper state machine will not need the second loop.  The "Wait For Event" or "Idle" state (whatever you want to call it) is all you really need in order to catch the user button presses.  The setup is almost there.  Maybe add a shift register to keep track of which state to go to in the case of a timeout on the Event Structure.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • The row structure of the table BANFTAB is incorrect

    Dear Experts,
    I get right here the error message
    The row structure of the table BANFTAB is incorrect
    ZBANFN is a table type and has the line tab BANFN.
    Can you pls tell me what is wrong here ?
    FUNCTION Z_CHANGE_EBAKZ_FLAG.
    *"*"Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(BANFTAB) TYPE  ZBANFN
      data lt_eban type table of eban.
      data ls_eban type eban.
      SELECT * FROM eban into table lt_eban where BANFN IN BANFTAB AND EBAKZ EQ 'X'.
      IF SY-SUBRC IS INITIAL.
        LOOP AT lt_eban INTO ls_eban .
          ls_eban-EBAKZ = ' '.
          modify eban from ls_eban.
        ENDLOOP.
      ENDIF.
    ENDFUNCTION.

    Hello,
    You have to use a ranges table in this case.
    FUNCTION Z_CHANGE_EBAKZ_FLAG.
    *"*"Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(BANFTAB) TYPE  ZBANFN
      data:lt_eban type table of eban.
      data:ls_eban type eban.
    data:
    l_r_banfn type range of banfn,
    l_wa_banfn like line of l_r_banfn,
    l_wa_banftab like likne of BANFTAB.
    loop at banftab into l_wa_banftab.
    l_wa_banfn-sign = 'I'.
    l_wa_banfn-option = 'EQ'.
    l_wa_banfn-low = l_wa_banftab-banfn.
    append l_wa_banfn into l_r_banfn.
    clear l_wa_banfn.
    endloop.
      SELECT * FROM eban into table lt_eban
      where
      BANFN IN L_R_BANFN "BANFN IN BANFTAB
    AND EBAKZ EQ 'X'.
      IF SY-SUBRC IS INITIAL.
        LOOP AT lt_eban INTO ls_eban .
          ls_eban-EBAKZ = ' '.
          modify eban from ls_eban.
        ENDLOOP.
      ENDIF.
    ENDFUNCTION.
    or you can use FOR ALL ENTRIES :
    FUNCTION Z_CHANGE_EBAKZ_FLAG.
    *"*"Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(BANFTAB) TYPE  ZBANFN
      data lt_eban type table of eban.
      data ls_eban type eban.
      SELECT * FROM eban into table lt_eban
      FOR ALL ENTRIES IN BANFTAB "--> Add this
      where BANFN = BANFTAB-BANFN
      AND EBAKZ EQ 'X'.
      IF SY-SUBRC IS INITIAL.
        LOOP AT lt_eban INTO ls_eban .
          ls_eban-EBAKZ = ' '.
          modify eban from ls_eban.
        ENDLOOP.
      ENDIF.
    ENDFUNCTION.
    Try this & let me know in case of any issues.
    BR,
    Suhas
    Edited by: Suhas Saha on Feb 10, 2009 5:43 PM

  • How I create a structure in the ABAP DICTIONARY?

    I need a structure for a FORM, how can I create a structure in the ABAP DICTIONARY?
    Thanks!!

    Hi Carlos,
    Go to SE11(ABAP Dictionary).
    Select the Data Type radio button.
    Specify the name for your structure.
    Note structure in customer namespace should start with Z or Y.
    Press the create button.
    Then in the next dialog box select the structure radio button.
    Then you will get in to the structure screen.
    Give a meaningful description for your structure.
    Add the relevant fields and finally activate.
    Regards,
    Abdul

  • Repeating structure through the receiver file adapter

    I wanted to ask wheter it is possible to create repeating structure through the SAP xi receiver file adapter. What I'm trying to accomplish is this:
    Item1
    Item2
    Item1
    Item2
    (variable number of times).
    I can accomplish the following:
    Item1
    Item1
    Item2
    Item2
    What I could do is have the Item1 and Item2 fields in the same segment in the design time, but this would mean the file adapter would write all the items on a single line instead of two.
    There is no way to define line breaks between the the receiver file adapter field parameters ?
    There is no way to support nested structures in the recordset definition ie. Item1.Item2 ?

    Henri,
    What Vishal means is following:
    Add sequences of the tag <recordset> between pairs of item1, item2:
    <documentName>
       <<b>recordset</b>>
         <item1>
           <field-item1>column-value</field-item1>
           <field-item1>column-value</field-item1>
           <field-item1>column-value</field-item1>
         </item1>
         <item2>
           <field-item2>column-value</field-item2>
           <field-item2>column-value</field-item2>
           <field-item2>column-value</field-item2>
         </item2>
       </<b>recordset</b>>
       <<b>recordset</b>>
         <item1>
           <field-item1>column-value</field-item1>
           <field-item1>column-value</field-item1>
           <field-item1>column-value</field-item1>
         </item1>
         <item2>
           <field-item2>column-value</field-item2>
           <field-item2>column-value</field-item2>
           <field-item2>column-value</field-item2>
         </item2>
       </<b>recordset</b>>
    </documentName>
    A similar problem with header and items is in this thread:
    Repeating structure through the receiver file adapter
    Hope that helps,
    Stefan

  • The structure in the query

    HI,BW experts, I have a question about the structure of the query :is there only one key figure in the query?in my query ,i have a key figure structure already, could I create another key figure structure,and how to ?
    Thanks for your help.

    Hi Cindy
    If your query already has a structure then why you want to create a new one? add new key figures to the exisiting structure.
    If you have to create new structure for key figures then
    GO to Query change in Query designer & in Columns section do right mouse click and select structure. This will add new structure and then you can add new key figures to that if you need.
    Hope this helps
    Regards
    Pradip

  • How to replace the structure in the BI Query

    Hi Guys
    We have a query and we have a structure in the ROWS section. We want to replace this structure with another one which is aviable in the query.
    For some reason i am able to remove the structure from the ROWS section but i am unable to drag a new structure in the ROWS section. Any idea what i am doing wrong. We are on BI 7.0 version.

    Hi Pravender,
    Thanks for the quick response. I have tried that option and it does not work.
    I am able to remove the existing structure from the ROWS section of the query and able to save the query. When i go back and try to drag and drop the new structure it does not allow me to drag and drop the new structure availble in the query.
    apologies for my ignorance. I am new to BI so i might be doing something wrong. Does the structure needs to have any specific properties to be able to drag and drop? I have more than 10 structures availble in the query but i am unable to drag and drop anyone in the ROWS section.

  • How do I create a physical structure in the data dictionary ?

    Hi all,
    How can I create a data structure using ABAP ? (prefrebly by using a class)
    I want to create a physical data dictionary structure, just like using se11 (data type -> structure).
    Thanx ahead.
    -Tonni

    To create a dynamic table at runtime I use the code below.
    DATA: gt_fcat          TYPE slis_t_fieldcat_alv,
          gs_fcat          LIKE LINE OF gt_fcat,
          gt_fieldcat      TYPE lvc_t_fcat,
          gs_fieldcat      LIKE LINE OF gt_fieldcat. 
    CLEAR: gt_fieldcat, gt_fieldcat[], gs_fieldcat.
      gs_fieldcat-fieldname     = 'SIGN'.
      gs_fieldcat-ref_field     = 'XMSTU'.
      gs_fieldcat-ref_table     = 'T007A'.
      gs_fieldcat-fix_column    = space.
      gs_fieldcat-no_zero       = space.
      APPEND gs_fieldcat TO gt_fieldcat.
      gs_fieldcat-fieldname     = 'OPTION'.
      gs_fieldcat-ref_field     = 'SEQN'.
      gs_fieldcat-ref_table     = 'T159W'.
      gs_fieldcat-fix_column    = space.
      gs_fieldcat-no_zero       = space.
      APPEND gs_fieldcat TO gt_fieldcat.
    Create a new Table
      CLEAR : gt_range2.
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = gt_fieldcat
        IMPORTING
          ep_table        = gt_range2.
    Create a new Line with the same structure of the table.
      ASSIGN gt_range2->* TO <range>.
    To create a structure like this table I use
      CREATE DATA gs_range2 LIKE LINE OF <range>.
      ASSIGN gs_range2->* TO <range1>.

  • Getting the name of the varray

    Getting the original name of the Varray:
    9.2.0.6
    I have a simple procedure which does work but I would like to tighten it up.
    procedure printVarray(u IN numUsed, varrayName IN VARCHAR2 DEFAULT NULL) is
    begin
    IF varrayName IS NOT NULL THEN
         dbms_output.put_line('Working on Varray ' || varrayName);
         for i in u.first..u.last loop
    dbms_output.put_line('u[' || i || '] = ' || u(i).num || ' '
    || u(i).cnt);
    end loop;
              dbms_output.put_line(' ');
    END IF;          
    end printVarray;
    assuming u1 , u2, u3 & u4 are initialized and has values then
    I can from a block do
    begin
    printVarray(u1,'u1');
    printVarray(u2,'u2');
    printVarray(u3,'u3');
    printVarray(u4,'u4');
    end;
    and get the output I would expect:
    ... lines not show above
    Working on Varray u3
    u[1] = 1 2
    u[2] = 2 3
    u[3] = 3 4
    u[4] = 4 3
    Working on Varray u4
    u[1] = 1 1
    u[2] = 2 2
    u[3] = 3 3
    u[4] = 4 3
    My question is how can I do away with passing the name of the original varray
    to the procedure printVarray and still have it print the name of the original
    varray?
    Thanks

    Not possible in PL/SQL dynamically if you're thinking alone those lines. You will need to pass a separate (manual) varchar2 parameter containing the name of the variable - as your printVarray() proc is currently doing.
    You can simply change the DBMS_OUTPUT to:
    dbms_output.put_line( varrayName||'[' || i || '] = ' || u(i).num || ' '
    || u(i).cnt);

  • How to determine the screen structure of the detail area of a screen...

    Hi all,
              How to determine the screen structure of the detail area of a screen?

    Hi,
    go to se38,
    loop at SCREEN.
    endloop.
    put the cursor on SCREEN and press F1, then u can seee it.
    Regards,
    Pavan
    Edited by: vishnu Pavan on Mar 23, 2009 11:03 AM

  • How to get the document structure with the document number"?"

    Hello experts,
    I have now a big trouble. There is a document with the number '?' in our syste. And for this document a document structure was builded. Now I can't acess the document structure, because the system doesn't accept '?' as a document number...
    Can you help me?
    Thanks a lot!
    best regards,
    Ying

    Hi Sarita,
    thank you very much! My problem is now solved, and the documents in the structure are free again _
    best regards,
    Ying

  • Assign specific metadata for folder structures in the Content Server

    Assign specific metadata for folder structures in the Content Server
    Hi to all,
    I working with Oracle Content Server 10g and Desktop Integration Suite and I will like to know how can I restrict or enable some specific metadatas from the default metadata, for differents content folder. This is different from the function: Information Field Inherit Configuration.
    tnks!

    I am a bit unclear about your question:
    - do you ask about metadata assigned to folders, or
    - do you ask about metadata assigned to items in folders?
    Starting from #2, if you forget about folders, there is standard functionality that you can use to restrict, enable, ... metadata for an item. Read this chapter: http://docs.oracle.com/cd/E21764_01/doc.1111/e10978/c04_metadata.htm#sthref288 to get full details.
    I am not sure whether you can use anything of this functionality (profiles, option lists, etc.) when you check in a new folder. I doubt it, though. The logic of folders is slightly different - whilst e.g. profiles correspond to "content item", you don't find such a correspondence in folder's hierarchy (why a folder could not contain various content types, for instance?)
    Last question is, from where you want to use this functionality - even for items. In 10g, Desktop Integration Suite's functionality was rather limited (often it was supposed that a user will just 'throw' an item to a folder, and metadata will be inherited from folders). You might have to upgrade your DIS to 11g; it should work even with 10g Content Server, but make sure you verify it before mass upgrade. In 11g, DIS should offer profiles, etc. with full capabilities.

  • 2 structures in the column,structure not displaying in the output(RSRT)

    Hello BI Folks,
               I have a requirement where the user enters the input(text variable)
    say 03/2011 then the report output should be Jan,Feb,Mar.
    say  05/2011 then the output should be Jan,Feb,Mar,Apr,May,likewise.
    The report output should be:(if the text variable is---02/2011)
    Brand          Jan              Feb                     Mar                      April                      May                       June                  July                 Aug             Sept           Oct                Nov           Dec
              Sales Foc Sales Foc  Sales Foc  Sales Foc  Sales Foc  Sales Foc Sales Foc Sales  Foc Sales  Foc Sales  Foc Sales  Foc
      A      455    56     38      
      B                03     32
      C
      D       90      2      75     69
    I am acheievin this by using creating 2 structures in the columns.
    1 structure is for jan-dec & another structure for the KPIs(sales,FOC).
    I am writing customer exit to read the text variable & get the data for the variable read.
    lo_year = sy-datum+0(4).
    lmon =sy-datum+4(2).
    READ TABLE i_t_var_range INTO loc_var_range WITH KEY vnam = 'text_variable'.
    l_s_range-low = loc_var_range-low.
    ln_value = l_s_range-low+4(2).
    DO ln_value TIMES.
      l_counter = l_counter + 1.
      CONCATENATE 'customer_exit_mons' l_counter INTO lv_text.
      CASE i_vnam.
        WHEN lv_text.
          IF i_step = 2.
            CONCATENATE lo_year lmon '01' INTO lv_startdate.
         **  Call a function module to arrive the enddate.
            CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
              EXPORTING
                day_in            = lv_startdate
              IMPORTING
                last_day_of_month = lv_enddate.
            l_s_range-low = lv_startdate.
            l_s_range-high = lv_enddate.
            l_s_range-sign = 'I'.
            l_s_range-opt = 'EQ'.
            APPEND l_s_range TO e_t_range.
            CLEAR l_s_range.
          ENDIF.                                                "End IF
      ENDCASE.                                                  " End Case
      lmon = lmon + 1.
    ENDDO.                                                       " End of Do loop
    CLEAR: ln_value , lv_text .
    The problem is i am not getting the query ouput atleast not the query structure.Is there any other way to achieve this type of output.
    Note:--The text variable wil be based on 0calmonth.
               The custmer exit variables Jan-dec is based on 0calday.
    Edited by: shreyaJ on Nov 18, 2011 11:49 AM

    Hi crazymatts,
    Thanks for ur reply.
    There is no data in the text variable (0CALMONTH).
    But i think the structure atleast gets displayed in the output,am not gettin even that.
    And there is no reference characteristics on the text variable.Its a manual input variable which i will be using in my code.
    Thanks,
    Shreya J.
    Edited by: shreyaJ on Nov 23, 2011 8:12 AM

  • What is the directory structure of the SDK ?

    What is the structure of the SDK folders ?
    There is no introductory file inside the SDK such as a manifest that gives any idea of what the contents are and their relative value and level of prereqs.
    Why does the SDK have any of the bloated html docs and zips ? cant the adobe provide pdfs which can do the same ?
    I need a tour of the SDK, preferably a quick and dirty description or a video tut. Adobe CORPORATION should have provided it - than leaving an empty stub to be filled by a trail of charghing consultants and lost patsies.
    Will this sdk for 9.x work for 8.x acrobat writer ?
    C:\temp\SDK\SDK91_V2_WIN
    \---Adobe
        \---Acrobat 9 SDK
            \---Version 1
                +---ActionScriptSupport
                |   +---AcrobatAPI
                |   |       AcrobatAPI.swc
                |   |      
                |   +---Navs
                |   |   |   ApplyColorPalette.nav
                |   |   |   CheckPermission.nav
                |   |   |   DragOut.nav
                |   |   |   DragWithin.nav
                |   |   |   GetLocalizedString.nav
                |   |   |   ReadWriteResources.nav
                |   |   |   RichMediaAPITest.nav
                |   |   |   SimpleSort.nav
                |   |   |   Starter.nav
                |   |   |   TileView.nav
                |   |   |   TrivialDragDrop.nav
                |   |   |  
                |   |   +---ApplyColorPalette
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---CheckPermission
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---DragOut
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---DragWithin
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---GetLocalizedString
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---ReadWriteResources
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---RichMediaAPITest
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---SimpleSort
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---Starter
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   +---TileView
                |   |   |       locales.xml
                |   |   |       navigator.xml
                |   |   |       strings.asfx
                |   |   |      
                |   |   \---TrivialDragDrop
                |   |           locales.xml
                |   |           navigator.xml
                |   |           strings.asfx
                |   |          
                |   \---Samples
                |       |   .actionScriptProperties
                |       |   .flexProperties
                |       |   .project
                |       |  
                |       \---src
                |           |   ApplyColorPalette.mxml
                |           |   CheckPermission.mxml
                |           |   DragOut.mxml
                |           |   DragWithin.mxml
                |           |   GetLocalizedString.mxml
                |           |   ReadWriteResources.mxml
                |           |   RichMediaAPITest.mxml
                |           |   SimpleSort.mxml
                |           |   Starter.mxml
                |           |   TileView.mxml
                |           |   TrivialDragDrop.mxml
                |           |  
                |           +---assets
                |           |       A_Folder_48x48_N.png
                |           |       catalog.txt
                |           |      
                |           +---controller
                |           |       AcroSdkSort.as
                |           |       BreadCrumbsData.as
                |           |       Commands.as
                |           |       Controller.as
                |           |       EventSupport.as
                |           |       SelectionManager.as
                |           |      
                |           +---css
                |           |       main.css
                |           |      
                |           +---parts
                |           |       AcroDragList1.as
                |           |       AcroDragList2.as
                |           |       AcroSdkTileList.as
                |           |       AttachmentThumbnail.as
                |           |       BaseCard.as
                |           |       BreadCrumbs.as
                |           |       Card.mxml
                |           |      
                |           \---utils
                |                   BindingSupport.as
                |                   DataUtils.as
                |                   LogUtil.as
                |                  
                +---Documentation
                |       Acrobat9_1_HTMLHelp.zip
                |       Navigator_SDK9_1_HTMLHelp.zip
                |       pdf_reference.pdf
                |       U3DElements.pdf
                |      
                +---InterAppCommunicationSupport
                |   +---All
                |   |       All.sln
                |   |      
                |   +---C#Samples
                |   |   +---BasicIacCS
                |   |   |   |   BasicIacCS.sln
                |   |   |   |  
                |   |   |   \---BasicIacCS
                |   |   |           App.ico
                |   |   |           AssemblyInfo.cs
                |   |   |           BasicIacCS.cs
                |   |   |           BasicIacCS.csproj
                |   |   |           BasicIacCS.resx
                |   |   |          
                |   |   +---BasicIacOCXCS
                |   |   |   |   BasicIacOCXCS.sln
                |   |   |   |  
                |   |   |   \---BasicIacOCXCS
                |   |   |           App.ico
                |   |   |           AssemblyInfo.cs
                |   |   |           BasicIacOCXCS.cs
                |   |   |           BasicIacOCXCS.csproj
                |   |   |           BasicIacOCXCS.resx
                |   |   |          
                |   |   +---FillFormCS
                |   |   |   |   FillFormCS.sln
                |   |   |   |  
                |   |   |   \---FillFormCS
                |   |   |           App.ico
                |   |   |           AssemblyInfo.cs
                |   |   |           FillFormCS.cs
                |   |   |           FillFormCS.csproj
                |   |   |          
                |   |   \---JSObjectControlCS
                |   |       |   JSObjectControlCS.sln
                |   |       |   JSObjectControlCS.suo
                |   |       |  
                |   |       \---JSObjectControlCS
                |   |           |   Form1.cs
                |   |           |   Form1.Designer.cs
                |   |           |   Form1.resx
                |   |           |   JSObjectControlCS.csproj
                |   |           |   Program.cs
                |   |           |  
                |   |           \---Properties
                |   |                   AssemblyInfo.cs
                |   |                   Resources.Designer.cs
                |   |                   Resources.resx
                |   |                   Settings.Designer.cs
                |   |                   Settings.settings
                |   |                  
                |   +---CSamples
                |   |   +---ActiveViewVC
                |   |   |   |   ActiveView.clw
                |   |   |   |   ActiveView.rc
                |   |   |   |   ActiveViewVC.sln
                |   |   |   |   ActiveViewVC.vcproj
                |   |   |   |   resource.h
                |   |   |   |  
                |   |   |   +---res
                |   |   |   |       ActiveView.ico
                |   |   |   |       ActiveView.rc2
                |   |   |   |       ActiveViewdoc.ico
                |   |   |   |       toolbar.bmp
                |   |   |   |      
                |   |   |   \---sources
                |   |   |           ActiveView.cpp
                |   |   |           ActiveView.h
                |   |   |           ActiveViewDoc.cpp
                |   |   |           ActiveViewDoc.h
                |   |   |           ActiveViewVw.cpp
                |   |   |           ActiveViewVw.h
                |   |   |           MainFrm.cpp
                |   |   |           MainFrm.h
                |   |   |           stdafx.cpp
                |   |   |           stdafx.h
                |   |   |          
                |   |   +---BasicIacVC
                |   |   |       acrobat.cpp
                |   |   |       acrobat.h
                |   |   |       BasicIacVC.cpp
                |   |   |       BasicIacVC.h
                |   |   |       BasicIacVC.sln
                |   |   |       BasicIacVC.vcproj
                |   |   |       Resource.h
                |   |   |       StdAfx.cpp
                |   |   |       StdAfx.h
                |   |   |      
                |   |   +---DdeopenVC
                |   |   |   |   DdeOpenVC.sln
                |   |   |   |   DdeOpenVC.vcproj
                |   |   |   |  
                |   |   |   \---sources
                |   |   |           DdeOpen.cpp
                |   |   |          
                |   |   +---DistillerCtrlVC
                |   |   |   |   DistillerCtrl.clw
                |   |   |   |   DistillerCtrl.rc
                |   |   |   |   DistillerCtrlVC.sln
                |   |   |   |   DistillerCtrlVC.vcproj
                |   |   |   |   resource.h
                |   |   |   |  
                |   |   |   +---Res
                |   |   |   |       DistillerCtrl.ico
                |   |   |   |       DistillerCtrl.rc2
                |   |   |   |      
                |   |   |   \---Sources
                |   |   |           DistillerCtrl.cpp
                |   |   |           DistillerCtrl.h
                |   |   |           DistillerCtrlDlg.cpp
                |   |   |           DistillerCtrlDlg.h
                |   |   |           PdfEventSink.cpp
                |   |   |           PdfEventSink.h
                |   |   |           StdAfx.cpp
                |   |   |           StdAfx.h
                |   |   |          
                |   |   +---DistillerCtrlWMVC
                |   |   |   |   DistillerCtrl.clw
                |   |   |   |   DistillerCtrl.rc
                |   |   |   |   DistillerCtrlWMVC.sln
                |   |   |   |   DistillerCtrlWMVC.vcproj
                |   |   |   |   resource.h
                |   |   |   |  
                |   |   |   +---Res
                |   |   |   |       DistillerCtrl.ico
                |   |   |   |       DistillerCtrl.rc2
                |   |   |   |      
                |   |   |   \---Sources
                |   |   |           DistillerCtrl.cpp
                |   |   |           DistillerCtrl.h
                |   |   |           DistillerCtrlDlg.cpp
                |   |   |           DistillerCtrlDlg.h
                |   |   |           StdAfx.cpp
                |   |   |           StdAfx.h
                |   |   |          
                |   |   +---ReadCADFileVC
                |   |   |   |   ReadCADFile.vcproj
                |   |   |   |   ReadCADFileVC.sln
                |   |   |   |  
                |   |   |   \---sources
                |   |   |           ReadCADFileVC.cpp
                |   |   |           ReadCADFileVC.h
                |   |   |           stdafx.cpp
                |   |   |           stdafx.h
                |   |   |          
                |   |   +---ReadPdfPrcVC
                |   |   |   |   ReadPdfPrcVC.sln
                |   |   |   |  
                |   |   |   +---ReadPdfPrc
                |   |   |   |   |   ReadPdfPrc.sln
                |   |   |   |   |   ReadPdfPrc.vcproj
                |   |   |   |   |  
                |   |   |   |   \---sources
                |   |   |   |           ReadPdfPrc.cpp
                |   |   |   |           ReadPdfPrc.h
                |   |   |   |           stdafx.cpp
                |   |   |   |           stdafx.h
                |   |   |   |          
                |   |   |   +---ReadPdfPrcHelper
                |   |   |   |   +---sources
                |   |   |   |   |       ReadPdfPrcHelper.cpp
                |   |   |   |   |       ReadPRC.cpp
                |   |   |   |   |      
                |   |   |   |   \---win32
                |   |   |   |           ReadPdfPrcHelper.sln
                |   |   |   |           ReadPdfPrcHelper.vcproj
                |   |   |   |          
                |   |   |   \---SampleFile
                |   |   |           mower_carb.pdf
                |   |   |          
                |   |   +---RemoteControlAcrobatVC
                |   |   |   |   RemoteControlAcrobat.clw
                |   |   |   |   RemoteControlAcrobat.rc
                |   |   |   |   RemoteControlAcrobat.rgs
                |   |   |   |   RemoteControlAcrobatVC.sln
                |   |   |   |   RemoteControlAcrobatVC.vcproj
                |   |   |   |   RemoteControlAcrobat_i.c
                |   |   |   |   RemoteControlAcrobat_i.h
                |   |   |   |   Resource.h
                |   |   |   |  
                |   |   |   +---res
                |   |   |   |       RemoteControlAcrobat.ico
                |   |   |   |       RemoteControlAcrobat.rc2
                |   |   |   |       RemoteControlAcrobatDoc.ico
                |   |   |   |       Toolbar.bmp
                |   |   |   |      
                |   |   |   \---sources
                |   |   |           acrobat.cpp
                |   |   |           acrobat.h
                |   |   |           FindTextDlg.cpp
                |   |   |           FindTextDlg.h
                |   |   |           MainFrm.cpp
                |   |   |           MainFrm.h
                |   |   |           PageNumDlg.cpp
                |   |   |           PageNumDlg.h
                |   |   |           RemoteControlAcrobat.cpp
                |   |   |           RemoteControlAcrobat.h
                |   |   |           RemoteControlAcrobatDoc.cpp
                |   |   |           RemoteControlAcrobatDoc.h
                |   |   |           RemoteControlAcrobatView.cpp
                |   |   |           RemoteControlAcrobatView.h
                |   |   |           StdAfx.cpp
                |   |   |           StdAfx.h
                |   |   |          
                |   |   +---StaticViewVC
                |   |   |   |   resource.h
                |   |   |   |   StaticView.clw
                |   |   |   |   StaticView.rc
                |   |   |   |   StaticViewVC.sln
                |   |   |   |   StaticViewVC.vcproj
                |   |   |   |  
                |   |   |   +---res
                |   |   |   |       StaticView.ico
                |   |   |   |       StaticView.rc2
                |   |   |   |       StaticViewDoc.ico
                |   |   |   |       Toolbar.bmp
                |   |   |   |      
                |   |   |   \---sources
                |   |   |           EditBox.cpp
                |   |   |           EditBox.h
                |   |   |           MainFrm.cpp
                |   |   |           MainFrm.h
                |   |   |           StaticView.cpp
                |   |   |           StaticView.h
                |   |   |           StaticViewDoc.cpp
                |   |   |           StaticViewDoc.h
                |   |   |           StaticViewVw.cpp
                |   |   |           StaticViewVw.h
                |   |   |           stdafx.cpp
                |   |   |           stdafx.h
                |   |   |           ZoomSet.cpp
                |   |   |           ZoomSet.h
                |   |   |           ZoomSeto.cpp
                |   |   |           ZoomSeto.h
                |   |   |          
                |   |   \---WritePdfPrcVC
                |   |       |   WritePdfPrcVC.sln
                |   |       |   WritePdfPrcVC.vcproj
                |   |       |  
                |   |       \---sources
                |   |               stdafx.cpp
                |   |               stdafx.h
                |   |               WritePdfPrcVC.cpp
                |   |               WritePdfPrcVC.h
                |   |              
                |   +---Headers
                |   |   |   acrobat.tlb
                |   |   |   acrodistx.tlb
                |   |   |  
                |   |   +---Visual Basic
                |   |   |       iac.bas
                |   |   |      
                |   |   \---Visual C
                |   |           acrobat.cpp
                |   |           acrobat.h
                |   |           acrodistx.cpp
                |   |           acrodistx.h
                |   |           distctrl.h
                |   |           iac.h
                |   |           srchdde.h
                |   |          
                |   +---HTMLSamples
                |   |   \---AcroPDFInHTML
                |   |           Frameset1.htm
                |   |           HTMLPage1.htm
                |   |           HTMLPage2.htm
                |   |           objecttag_demo.htm
                |   |          
                |   +---TestFiles
                |   |       data.txt
                |   |       FormSample.pdf
                |   |       FormsAutomation.pdf
                |   |       readme.ps
                |   |       SampleForm.pdf
                |   |       SamplePDF01.pdf
                |   |       simple.pdf
                |   |       Stamp.pdf
                |   |       TestForm.pdf
                |   |       TwoColumnTaggedDoc.pdf
                |   |      
                |   \---VBSamples
                |       +---AcrobatActiveXVB
                |       |   |   AcrobatActiveXVB.sln
                |       |   |  
                |       |   \---AcrobatActiveXVB
                |       |           AcrobatActiveXVB.vbproj
                |       |           AssemblyInfo.vb
                |       |           Form1.resx
                |       |           Form1.vb
                |       |           Form2.resx
                |       |           Form2.vb
                |       |           Form3.resx
                |       |           Form3.vb
                |       |           Form4.resx
                |       |           Form4.vb
                |       |           UserControl1.resx
                |       |           UserControl1.vb
                |       |          
                |       +---ActiveViewVB
                |       |   |   ActiveViewVB.sln
                |       |   |  
                |       |   \---ActiveView
                |       |           ActiveView.vb
                |       |           ActiveViewVB.vbproj
                |       |           AssemblyInfo.vb
                |       |           DocInfo.resX
                |       |           DocInfo.vb
                |       |           FileOpen.vb
                |       |           frmMDI.resX
                |       |           frmMDI.vb
                |       |           Iac.vb
                |       |           PDFView.resX
                |       |           PDFView.vb
                |       |           print.resX
                |       |           print.vb
                |       |          
                |       +---AdobePDFSilentVB
                |       |   |   AdobePDFSilent.sln
                |       |   |  
                |       |   \---AdobePDFSilent
                |       |           AdobePDFSilent.vb
                |       |           AdobePDFSilent.vbproj
                |       |           AssemblyInfo.vb
                |       |           frmMain.resx
                |       |           frmMain.vb
                |       |           Globals.vb
                |       |          
                |       +---BasicIacJsoVB
                |       |   |   BasicIacJsoVB.sln
                |       |   |  
                |       |   \---BasicIacVBJso
                |       |           AssemblyInfo.vb
                |       |           BasicIacJsoVB.vbproj
                |       |           BasicIacVBJso.vb
                |       |          
                |       +---BasicIacVB
                |       |   |   BasicIacVB.sln
                |       |   |  
                |       |   \---BasicIacVB
                |       |           AssemblyInfo.vb
                |       |           BasicIacVB.resX
                |       |           BasicIacVB.vb
                |       |           BasicIacVB.vbproj
                |       |          
                |       +---DistillerCtrlVB
                |       |   |   DistillerCtrlVB.sln
                |       |   |  
                |       |   \---DistillerCtrlVB
                |       |           AssemblyInfo.vb
                |       |           DistillerCtrlVB.vbproj
                |       |           FileSystemUtils.vb
                |       |           MainFrm.resX
                |       |           MainFrm.vb
                |       |           RegistryUtils.vb
                |       |          
                |       +---ExecuteScriptIacVB
                |       |   |   ExecuteScriptIacVB.sln
                |       |   |  
                |       |   \---ExecuteScriptIacVB
                |       |           AssemblyInfo.vb
                |       |           ExecuteJSForm.resX
                |       |           ExecuteJSForm.vb
                |       |           ExecuteScriptIacVB.vbproj
                |       |          
                |       +---FormsAutomationVB
                |       |   |   FormsAutomation.sln
                |       |   |  
                |       |   \---FormsAutomation
                |       |           AssemblyInfo.vb
                |       |           FormsAutomation.resx
                |       |           FormsAutomation.vb
                |       |           FormsAutomation.vbproj
                |       |          
                |       +---JSObjectAccessVB
                |       |   |   JSObjectAccessVB.sln
                |       |   |  
                |       |   \---JSObjectAccessVB
                |       |           AssemblyInfo.vb
                |       |           JSObjectAccessVB.vb
                |       |           JSObjectAccessVB.vbproj
                |       |          
                |       +---JSOFindWordVB
                |       |   |   JSOFindWordVB.sln
                |       |   |  
                |       |   \---JSOFindWordVB
                |       |           AssemblyInfo.vb
                |       |           FindWord.resx
                |       |           FindWord.vb
                |       |           JSOFindWordVB.vbproj
                |       |          
                |       +---SearchPdfVB
                |       |   |   DdeProxy.dll
                |       |   |   SearchPdfVB.sln
                |       |   |  
                |       |   +---DdeProxy
                |       |   |   |   DdeProxy.sln
                |       |   |   |   DdeProxy.vcproj
                |       |   |   |  
                |       |   |   \---sources
                |       |   |           DdeProxy.cpp
                |       |   |           DdeProxy.h
                |       |   |           DdeSrch.cpp
                |       |   |          
                |       |   \---SearchPdfVB
                |       |           AssemblyInfo.vb
                |       |           FileSystemUtils.vb
                |       |           IndexFrm.resX
                |       |           IndexFrm.vb
                |       |           MainFrm.resX
                |       |           MainFrm.vb
                |       |           QueryFrm.resX
                |       |           QueryFrm.vb
                |       |           SearchPdfUtils.vb
                |       |           SearchPdfVB.vbproj
                |       |          
                |       +---StaticViewVB
                |       |   |   StaticViewVB.sln
                |       |   |  
                |       |   \---StaticViewVB
                |       |           AssemblyInfo.vb
                |       |           DocInfo.resX
                |       |           DocInfo.vb
                |       |           DRAWBAS.vb
                |       |           FileOpen.vb
                |       |           Iac.vb
                |       |           PDFView.resX
                |       |           PDFView.vb
                |       |           StaticView.resX
                |       |           StaticView.vb
                |       |           StaticViewVB.vbproj
                |       |          
                |       \---WatermarkJsoVB
                |           |   WatermarkJsoVB.sln
                |           |  
                |           \---WatermarkJsoVB
                |                   AssemblyInfo.vb
                |                   WatermarkJsoVB.vb
                |                   WatermarkJsoVB.vbproj
                |                  
                +---JavaScriptSupport
                |       Acrobat SDK JavaScript Samples Portfolio.pdf
                |      
                +---NonAdobeSupport
                |   \---TinyXML
                |           tinystr.cpp
                |           tinystr.h
                |           tinyxml.cpp
                |           tinyxml.h
                |           tinyxmlerror.cpp
                |           tinyxmlparser.cpp
                |          
                +---OtherSupport
                |   \---SaveAsXML
                |       |   MappingTable.dtd
                |       |   SDKBookmarkExtraction.xml
                |       |   SDKDocInfoExtraction.xml
                |       |   SDKImageExtraction.xml
                |       |   SDKTextExtraction.xml
                |       |  
                |       \---Advanced
                |               HTML-3-20-Access.xml
                |               HTML-3-20-CSS-1-00.xml
                |               HTML-3-20-CSS-2-00.xml
                |               MappingTable.dtd
                |               OEB-1-00-doc-paged.xml
                |               OEB-1-00-doc.xml
                |               XHTML-1-00-CSS-1-00.xml
                |               XHTML-1-00-CSS-2-00.xml
                |               XML-1-00-Full-Info.xml
                |               XML-1-00-with-all-attrs.xml
                |              
                \---PluginSupport
                    +---Headers
                    |   +---3D
                    |   |       A3DSDK.h
                    |   |       A3DSDKBase.h
                    |   |       A3DSDKDraw.h
                    |   |       A3DSDKErrorCodes.h
                    |   |       A3DSDKGeometry.h
                    |   |       A3DSDKGeometryCrv.h
                    |   |       A3DSDKGeometrySrf.h
                    |   |       A3DSDKGlobalData.h
                    |   |       A3DSDKGraphics.h
                    |   |       A3DSDKMarkup.h
                    |   |       A3DSDKMath.h
                    |   |       A3DSDKMisc.h
                    |   |       A3DSDKRepItems.h
                    |   |       A3DSDKRootEntities.h
                    |   |       A3DSDKStructure.h
                    |   |       A3DSDKTessellation.h
                    |   |       A3DSDKTexture.h
                    |   |       A3DSDKTools.h
                    |   |       A3DSDKTopology.h
                    |   |       A3DSDKTypes.h
                    |   |      
                    |   +---API
                    |   |       acroassert.h
                    |   |       AcroColorCalls.h
                    |   |       AcroColorExpT.h
                    |   |       AcroColorHFT.h
                    |   |       AcroColorProcs.h
                    |   |       AcroColorVers.h
                    |   |       AcroErr.h
                    |   |       AFTTS_Sel.h
                    |   |       AF_ExpT.h
                    |   |       AF_Sel.h
                    |   |       ASCalls.h
                    |   |       ASExpT.h
                    |   |       ASExtraCalls.h
                    |   |       ASExtraExpT.h
                    |   |       ASExtraProcs.h
                    |   |       ASExtraVers.h
                    |   |       ASFileE.h
                    |   |       ASFileEASF.h
                    |   |       ASGenE.h
                    |   |       ASGenEASF.h
                    |   |       ASKey.h
                    |   |       ASProcs.h
                    |   |       ASRaiseAware.h
                    |   |       AVCalls.h
                    |   |       AVCompat.cpp
                    |   |       AVCompat.h
                    |   |       AVExpT.h
                    |   |       AVExpTObsolete1.h
                    |   |       AVExpTObsolete2.h
                    |   |       AVPrefsD.h
                    |   |       AVProcs.h
                    |   |       AVVers.h
                    |   |       cathft.h
                    |   |       catprocs.h
                    |   |       CAVAlert.h
                    |   |       ConsExpT.h
                    |   |       ConsHFT.h
                    |   |       ConsHFTProcs.h
                    |   |       ConsObTp.h
                    |   |       CorCalls.h
                    |   |       CoreExpT.h
                    |   |       CorProcs.h
                    |   |       CosCalls.h
                    |   |       CosExpT.h
                    |   |       CosGenE.h
                    |   |       CosGenEASF.h
                    |   |       CosProcs.h
                    |   |       CosSynE.h
                    |   |       CosSynEASF.h
                    |   |       DigSigHFT.h
                    |   |       DigSigHFTProcs.h
                    |   |       DirectoryHFT.h
                    |   |       EncConvE.h
                    |   |       Environ.h
                    |   |       EReturnValidator.h
                    |   |       FontSvrE.h
                    |   |       FontSvrEASF.h
                    |   |       FormsHFT.h
                    |   |       FormsHFTProcs.h
                    |   |       HFTLibrary.h
                    |   |       Library.h
                    |   |       MacCalls.h
                    |   |       MacPlatform.h
                    |   |       MacProcs.h
                    |   |       NSelExpT.h
                    |   |       PageE.h
                    |   |       PageEASF.h
                    |   |       PagePDECntCalls.h
                    |   |       PDBasicExpT.h
                    |   |       PDBatesCalls.h
                    |   |       PDBatesExpT.h
                    |   |       PDBatesProcs.h
                    |   |       PDCalls.h
                    |   |       PDClassDefs.h
                    |   |       PDClasses.h
                    |   |       PDDocE.h
                    |   |       PDDocEASF.h
                    |   |       PDExpT.h
                    |   |       PDFErrorCodes.h
                    |   |       PDFXE.h
                    |   |       PDFXEASF.h
                    |   |       PDMetadataCalls.h
                    |   |       PDMetadataError.h
                    |   |       PDMetadataErrorASF.h
                    |   |       PDMetadataExpT.h
                    |   |       PDMetadataHFTVers.h
                    |   |       PDMetadataProcs.h
                    |   |       PDModE.h
                    |   |       PDModEASF.h
                    |   |       PDPageE.h
                    |   |       PDPageEASF.h
                    |   |       PDProcs.h
                    |   |       PDSError.h
                    |   |       PDSErrorASF.h
                    |   |       PDSExpT.h
                    |   |       PDSReadCalls.h
                    |   |       PDSReadHFTVers.h
                    |   |       PDSReadProcs.h
                    |   |       PDSWriteCalls.h
                    |   |       PDSWriteHFTVers.h
                    |   |       PDSWriteProcs.h
                    |   |       PDSysFont.h
                    |   |       PDSysFontExpT.h
                    |   |       PDSysFT.h
                    |   |       PEError.h
                    |   |       PEErrorASF.h
                    |   |       PEExpT.h
                    |   |       PERCalls.h
                    |   |       PERProcs.h
                    |   |       PETypes.h
                    |   |       PEVers.h
                    |   |       PEWCalls.h
                    |   |       PEWProcs.h
                    |   |       PgCntProcs.h
                    |   |       PICommon.h
                    |   |       PICrypt.h
                    |   |       PIExcept.h
                    |   |       PIHeaders.c
                    |   |       PIHeaders.pch
                    |   |       PIMain.c
                    |   |       PIMain.h
                    |   |       PIPokes.h
                    |   |       PIPrefix.h
                    |   |       PIRequir.h
                    |   |       PIVersn.h
                    |   |       Plugin.h
                    |   |       PSFCalls.h
                    |   |       PSFProcs.h
                    |   |       PubSecHFT.h
                    |   |       PubSecHFTProcs.h
                    |   |       RasterE.h
                    |   |       RasterEASF.h
                    |   |       SafeResources.cpp
                    |   |       SafeResources.h
                    |   |       SmartPDPage.h
                    |   |       SpellerHFT.h
                    |   |       SpellerHFTProcs.h
                    |   |       Speller_Sel.h
                    |   |       SrchClls.h
                    |   |       SrchHFT.h
                    |   |       SrchPrcs.h
                    |   |       SrchType.h
                    |   |       StAcroResourceContext.h
                    |   |       ToolkitInitE.h
                    |   |       ToolkitInitEASF.h
                    |   |       TtsHFT.h
                    |   |       TtsHFTProcs.h
                    |   |       UnixCalls.h
                    |   |       UnixPlatform.h
                    |   |       UnixProcs.h
                    |   |       WinCalls.h
                    |   |       WinExpT.h
                    |   |       WinPltfm.h
                    |   |       winprocs.h
                    |   |       WLHFT.h
                    |   |       WLHFTProcs.h
                    |   |       XtnMgrE.h
                    |   |       XtnMgrEASF.h
                    |   |      
                    |   \---SDK
                    |           ASDataStream.h
                    |           ASDebug.h
                    |           ASFunctionLogger.h
                    |           ASHelp.h
                    |           ASLib.h
                    |           ASNameSpace.h
                    |           ASTypes.h
                    |           ASZStringSuite.h
                    |           AVCmdDefs.h
                    |           DebugWindowHFT.h
                    |           IASfixed.hpp
                    |           IASPoint.hpp
                    |           IASRect.hpp
                    |           IASTypes.hpp
                    |           MacPIHeaders.h
                    |           PIHeaders++.pch
                    |           PIHeaders.h
                    |           SimpleUnicode.h
                    |           StAcroResourceContext.h
                    |           UnicodeAPI.h
                    |           UnixPIHeaders.h
                    |           WinPIHeaders.h
                    |           wxInit.cpp
                    |           wxInit.h
                    |          
                    +---Samples
                    |   |   AcroDspOptions.rsp
                    |   |  
                    |   +---All
                    |   |       All.sln
                    |   |      
                    |   +---BasicPlugin
                    |   |   +---sources
                    |   |   |       BasicPlugin.cpp
                    |   |   |       BasicPluginInit.cpp
                    |   |   |      
                    |   |   \---win32
                    |   |           BasicPlugin.sln
                    |   |           BasicPlugin.vcproj
                    |   |          
                    |   +---BatesNumbering
                    |   |   +---sources
                    |   |   |       BatesNumbering.cpp
                    |   |   |       BatesNumberingInit.cpp
                    |   |   |      
                    |   |   \---win32
                    |   |           BatesNumbering.sln
                    |   |           BatesNumbering.vcproj
                    |   |          
                    |   +---CAPISamples
                    |   |   +---Common
                    |   |   |   \---sources
                    |   |   |           sampleCommon.cpp
                    |   |   |           sampleCommon.h
                    |   |   |           sampleHandles.h
                    |   |   |           sampleTypes.h
                    |   |   |          
                    |   |   +---MsSignedSampleCsp
                    |   |   |       SampleCsp.dll
                    |   |   |      
                    |   |   +---SampleCsp
                    |   |   |   +---sources
                    |   |   |   |       csp.sig
                    |   |   |   |       cspdk.h
                    |   |   |   |       SampleCsp.def
                    |   |   |   |       scspContainer.cpp
                    |   |   |   |       scspContainer.h
                    |   |   |   |       scspContainerFactory.cpp
                    |   |   |   |       scspContainerFactory.h
                    |   |   |   |       scspContainerMgr.h
                    |   |   |   |       scspEntryPoints.cpp
                    |   |   |   |       scspExportDefine.h
                    |   |   |   |       scspGlobalData.cpp
                    |   |   |   |       scspGlobalData.h
                    |   |   |   |       scspHandleMgr.h
                    |   |   |   |       scspMain.cpp
                    |   |   |   |       scspPin.ico
                    |   |   |   |       scspPinDialog.cpp
                    |   |   |   |       scspPinDialog.h
                    |   |   |   |       scspResources.aps
                    |   |   |   |       scspResources.h
                    |   |   |   |       scspResources.rc
                    |   |   |   |       stdafx.cpp
                    |   |   |   |       stdafx.h
                    |   |   |   |      
                    |   |   |   \---win32
                    |   |   |           SampleCsp.vcproj
                    |   |   |           SampleCsp.vcproj.ADOBENET.chirag.user
                    |   |   |          
                    |   |   +---SampleRegistrar
                    |   |   |   +---sources
                    |   |   |   |       SampleRegistrar.cpp
                    |   |   |   |       stdafx.cpp
                    |   |   |   |       stdafx.h
                    |   |   |   |      
                    |   |   |   \---win32
                    |   |   |           SampleRegistrar.vcproj
                    |   |   |           SampleRegistrar.vcproj.ADOBENET.chirag.user
                    |   |   |          
                    |   |   \---win32
                    |   |           CapiSamples.sln
                    |   |          
                    |   +---DdeServer
                    |   |   +---sources
                    |   |   |       DdeServer.cpp
                    |   |   |       DdeServerInit.cpp
                    |   |   |      
                    |   |   \---win32
                    |   |       |   DdeServer.sln
                    |   |       |   DdeServer.vcproj
                    |   |       |   DdeServer.vcproj.ADOBENET.chirag.user
                    |   |       |  
                    |   |       \---ClientApp
                    |   |           |   ClientApp.clw
                    |   |           |   ClientApp.rc
                    |   |           |   ClientApp.vcproj
                    |   |           |   ClientApp.vcproj.ADOBENET.chirag.user
                    |   |           |   resource.h
                    |   |           |  
                    |   |           +---res
                    |   |           |       ClientApp.ico
                    |   |           |       ClientApp.rc2
                    |   |           |      
                    |   |           \---sources
                    |   |                   ClientApp.cpp
                    |   |                   ClientApp.h
                    |   |                   ClientAppDlg.cpp
                    |   |                   ClientAppDlg.h
                    |   |                   StdAfx.cpp
                    |   |                   StdAfx.h
                    |   |                  
                    |   +---DMSIntegration
                    |   |   +---sources
                    |   |   |       DMSIntegration.cpp
                    |   |   |       DMSIntegrationIinit.cpp
                    |   |   |      
                    |   |   \---win32
                    |   |           DMSIntegration.sln
                    |   |           DMSIntegration.vcproj
                    |   |           DMSIntegration.vcproj.ADOBENET.chirag.user
                    |   |          
                    |   +---DocSign
                    |   |   +---sources
                    |   |   |       DocSign.h
                    |   |   |       DocSignInit.cpp
                    |   |   |       DSEngine.cpp
                    |   |   |       DSEngine.h
                    |   |   |       DSHandler.cpp
                    |   |   |       DSHandler.h
                    |   |   |       DSSigVal.cpp
                    |   |   |       DSSigVal.h
                    |   |   |       DSUser.h
                    |   |   |      
                    |   |   \---win32
                    |   |           DocSign.sln
                    |   |           DocSign.vcproj
                    |   |           DocSign.vcproj.ADOBENET.chirag.user
                    |   |          
                    |   +---Embed3dData
                    |   |   +---ExampleFiles
                    |   |   |       AnnotPosterSample.pdf
                    |   |   |       truck3.u3d
                    |   |   |      
                    |   |   +---sources
                    |   |   |       Embed3dData.cpp
                    |   |   |       Embed3dDataInit.cpp
                    |   |   |      
                

    Hi dying veteran,
    Maybe you missed the Index page?  Did you know you can use that doc online, it's easier to navigate it online.
    Adobe used to publish the SDK as a PDF but stopped after version 8.  I'm sure if you ask them nicely they'll bring it back.......
    Hope this helps,
    Dimitri
    WindJack Solutions
    www.windjack.com
    www.pdfscripting.com

Maybe you are looking for

  • AR Aging - FAGLL03 - BP Names not available in Layout Column Fields list

    Hi friends, For AR Aging we use FAGLL03 [G/L Account Line Items] for some listed AR GL Accounts with the Baseline Date as the basis to manually age in four periods at the end of Month closing. In the FAGLL03 extract, though BP Number under Vendor Col

  • Safari killing CPU

    Version 4.0.3 (5531.9) Safari. When watching UTube CPU usage is at 94%-100%. This has never happened before the new recent update. My fans start running and Powerbook g4 gets real hot. What would be the cause of this. I love my mac and do not plannin

  • Can i log and download from UK if i am registered in the USA

    i want to download songs from the UK itunes- can I? It won't let me log in with my usa password

  • Organizing iPhone icons

    I have a lot of applications on my iPhone. When they download there doesn't appear to be any rhyme or reason for where the icons appear on my phone. I want to organize the icons in some logical fashion so that I am not always flipping back and forth

  • Having issues with starting systemd as user.

    I am trying to process through the steps for configuring SABnzbd for local user configs but after rebooting from completing the steps here. I double checked my work but I still get an error when I am trying to start the service as me. This is what I