<?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: pop up issue in SO_DOCUMENT_REPOSITORY_MANAGER function  module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610704#M1278529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This link will solve your problem link:[mail a file in app server|https://wiki.sdn.sap.com/wiki/display/Snippets/Sending&lt;EM&gt;Application&lt;/EM&gt;Server&lt;EM&gt;file&lt;/EM&gt;via&lt;EM&gt;emial&lt;/EM&gt;as+attachement] is the exact solution for your post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other reference&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="message" id="7079799"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can read the xml file from Application server in your program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check link:[http://abapreports.blogspot.com/2008/09/upload-xml-file-from-application-server.html]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then send the mail in xml format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for sending mail you can refer program &lt;STRONG&gt;BCS_EXAMPLE_7&lt;/STRONG&gt; and link:[send mail|http://www.liveabap.com/index.php?abapid=51]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Oct 2009 18:24:50 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2009-10-21T18:24:50Z</dc:date>
    <item>
      <title>pop up issue in SO_DOCUMENT_REPOSITORY_MANAGER function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610702#M1278527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN.&lt;/P&gt;&lt;P&gt;I have a requirement that i have 2 collect the XML file from application server send it &lt;/P&gt;&lt;P&gt;as a mail attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can this FM  "SO_DOCUMENT_REPOSITORY_MANAGER " be useful to do so.&lt;/P&gt;&lt;P&gt;it is reading the file from Presentation server but not from Application server.&lt;/P&gt;&lt;P&gt;can it be achieved ? also how to hide the popup for send mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried with classes and FM "SO_NEW_DOCUMENT_ATT_SEND_API1".&lt;/P&gt;&lt;P&gt;but the XML file is not opening in the attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives the error message : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The XML page cannot be displayed &lt;/P&gt;&lt;P&gt;Cannot view XML input using style sheet. Please correct the error and then click the Refresh button,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;can u please guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 13:38:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610702#M1278527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T13:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: pop up issue in SO_DOCUMENT_REPOSITORY_MANAGER function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610703#M1278528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FM SO_OBJECT_SEND with folder_id and object_id from structure document of FM SO_DOCUMENT_REPOSITORY_MANAGER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but first attach the attachments bij applying the following code several times:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
File from the pc to send...
  gv_method = 'ATTCREATEFROMPC'.
  gi_files-text = p_file.
  append gi_files.

  call function 'SO_DOCUMENT_REPOSITORY_MANAGER'
    EXPORTING
      method       = gv_method
      office_user  = gv_owner
      ref_document = gs_ref_document
      new_parent   = gs_new_parent
    IMPORTING
      authority    = gv_authority
    TABLES
      objcont      = gi_objcnt
      objhead      = gi_objhead
      objpara      = gi_objpara
      objparb      = gi_objparb
      recipients   = gi_receivers
      attachments  = gi_attachm
      references   = gi_references
      files        = gi_files
    CHANGING
      document     = gs_document
      header_data  = gs_header.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Léon Hoeneveld&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 15:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610703#M1278528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-21T15:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: pop up issue in SO_DOCUMENT_REPOSITORY_MANAGER function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610704#M1278529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This link will solve your problem link:[mail a file in app server|https://wiki.sdn.sap.com/wiki/display/Snippets/Sending&lt;EM&gt;Application&lt;/EM&gt;Server&lt;EM&gt;file&lt;/EM&gt;via&lt;EM&gt;emial&lt;/EM&gt;as+attachement] is the exact solution for your post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other reference&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="message" id="7079799"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can read the xml file from Application server in your program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check link:[http://abapreports.blogspot.com/2008/09/upload-xml-file-from-application-server.html]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then send the mail in xml format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for sending mail you can refer program &lt;STRONG&gt;BCS_EXAMPLE_7&lt;/STRONG&gt; and link:[send mail|http://www.liveabap.com/index.php?abapid=51]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 18:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610704#M1278529</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-21T18:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: pop up issue in SO_DOCUMENT_REPOSITORY_MANAGER function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610705#M1278530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Old thread &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 18:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610705#M1278530</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-21T18:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: pop up issue in SO_DOCUMENT_REPOSITORY_MANAGER function  module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610706#M1278531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are a lot of similar questions still unanswered. I think the program in your link will solve all the problems.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 09:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-issue-in-so-document-repository-manager-function-module/m-p/5610706#M1278531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T09:13:44Z</dc:date>
    </item>
  </channel>
</rss>

