<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: help to define deep structure in export parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934371#M1333490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Guilherme&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how i declare it in didc since i need to export the table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;ricardos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Jul 2009 16:05:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-12T16:05:07Z</dc:date>
    <item>
      <title>help to define deep structure in export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934369#M1333488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ALL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to build FM that the export parameters is type deep structure ,&lt;/P&gt;&lt;P&gt;i.e. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to retrieve for every employee 1 line with the employee number and table with all employee &lt;/P&gt;&lt;P&gt;address&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;employee number   address   &amp;lt;-  the parameter address i want to get i one line 
123                                abcd
                                     cccc
                                     aaaa

employee number   address 
456                                cddd
                                     wwww
                                     bbbb&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to get the parameter adress in one nested line i.e if i have 10 employee i just &lt;/P&gt;&lt;P&gt;have 10 entries and when i double click on address i get the address of the employee (one or more).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try to create in export parameter a table type with structure with fields:&lt;/P&gt;&lt;P&gt;1. employee   type char 10&lt;/P&gt;&lt;P&gt;2. address like structure of address &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i do loop and append the address like wa_type-address-address but it's not working,&lt;/P&gt;&lt;P&gt;i still get table with lines that dependent on the user address &lt;/P&gt;&lt;P&gt;what I miss here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Ricardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jul 2009 15:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934369#M1333488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-12T15:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: help to define deep structure in export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934370#M1333489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are missig table declaration of addres.&lt;/P&gt;&lt;P&gt;You should do like following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES:
 ys_address type table of address,
 BEGIN OF yt_address,
  employee type c(10),
  addres type address,
END OF yt_address.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or you can define directly addres type table of address inside begin yt_address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to create this correct structures with table type in Data Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Frisoni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jul 2009 15:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934370#M1333489</guid>
      <dc:creator>guilherme_frisoni</dc:creator>
      <dc:date>2009-07-12T15:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: help to define deep structure in export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934371#M1333490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Guilherme&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how i declare it in didc since i need to export the table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;ricardos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jul 2009 16:05:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934371#M1333490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-12T16:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: help to define deep structure in export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934372#M1333491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create in DDIC a TT (ZADDRESS_TT) with this line structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADDRESS TYPE CHAR128&lt;/P&gt;&lt;P&gt;.... any other field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then create a New TT (ZEMPLOYER_TT) with line structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EmployerId TYPE INT4 &amp;lt;-- everything you prefer&lt;/P&gt;&lt;P&gt;Addresses TYPE ADDRESS_TT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in FM export use EMPLOYER_TT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ivan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jul 2009 16:31:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934372#M1333491</guid>
      <dc:creator>_IvanFemia_</dc:creator>
      <dc:date>2009-07-12T16:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: help to define deep structure in export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934373#M1333492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For information, instead of using DDIC to declare types of FM parameters, you may also use Type Groups (some would say it's also DDIC but it's easier to create as a source) or use Types in global classes. Of course, you may declare table types also this way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jul 2009 16:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934373#M1333492</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2009-07-12T16:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: help to define deep structure in export parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934374#M1333493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should declare a table type in DDIC for the address field, where you declare address field.&lt;/P&gt;&lt;P&gt;Then you declare a structure with employee field and the table declared before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Frisoni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jul 2009 16:51:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-to-define-deep-structure-in-export-parameter/m-p/5934374#M1333493</guid>
      <dc:creator>guilherme_frisoni</dc:creator>
      <dc:date>2009-07-12T16:51:53Z</dc:date>
    </item>
  </channel>
</rss>

