XML Layout to be attached to a SRS Report called from back end.

Hi,
I have got a set of reports which I will have to call from the back end using FND_REQUEST.SUBMIT_REQUEST packaged function.
In that, some are having a XML layout. When being submitted these requests do not get the XML layout called; hence, the display fails with error 'Unable to find published output for this request'.
Kindly help me on how to refer the XML layout during the calling of the backend function.
Thanks,
L. Mukunthan

Hi,
Sorry for the delay.
Answers to your Q's as below:
1. how is your concurrent report defined ? is the concurrent program output format XML ?
YES
2. In the report itself (rdf), under report properties - XML setting section, is the XML Prolog value set ?
XML Prolog value set: <?xml version="1.0"?>
3. Have you validated that the report query(ies) is(are) working in SQL*PLS/Toad/SQL Developer ?
This is a report registered and working fine, when run manually. Only submission from back end omits the layout. Hence, being unable to publish the output.
4. If the report query is working and everything is correctly setup, have you look on the server if XML is generated ?
Yes. Output is getting generated. Only issue is the attachment of the layout template.
Please advise.
Thanks,
L. Mukunthan

Similar Messages

  • Issue when submitting XML report from back end.

    Hi All,
    I have a customized XXPrinted Purchase Order Report where I am submitting it from back end as below.
    l_var := fnd_request.add_layout (template_appl_name =>'XX Custom',
    template_code =>'XX_PRINTED_PO',
    template_language =>'English',
    template_territory =>null,
    output_format =>'PDF');
    l_request_id :=fnd_request.submit_request
    (application => 'XX',
    program => 'XX_PRINTED_PO',
    When I am executing this block in PO approval workflow with the customized function XXPO_COMMUNICATION_PVT.fax_po
    It is submitting the report but output is showing in xml data (not in pdf)
    Please let me know if I am missing anything.
    Thanks in advance.

    Please post the details of the application release, database version and OS.
    Can you post the concurrent request log file here?
    Can you find any errors in the OPP log file ($APPLCSF/$APPLLOG/FNDOPP*)?
    How to Use FND_REQUEST.ADD_LAYOUT When Submitting a Concurrent Request Via a PL/SQL Procedure [ID 308658.1]
    Thanks,
    Hussein

  • XML file with an attached MIME encoded ZIP file

    Hi all,
    I'm new to SAP WAS and MIME encoding/decoding, and I'm trying to generate an XML file with an attachment which is also MIME encoded.
    1) I have dummy files (1.jpg, 2.jpg) and I'm trying to zip these files into one zip file (files.zip).
    2) I'm trying to MIME encode/decode this zip file.
    3) I'm trying to attach this MIME encoded zip file to existing XML file.
    Which FMs could I use to accomplish this?  Your help is very appreciated.
    Thank you.
    below is a file example that I'm trying to generate.
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="--XXXXboundary text"
    Content-Transfer-Encoding: 7bit
    This is a multi-part message in MIME format.
    --XXXXboundary text
    Content-Type: text/xml;
         charset="utf-8"
    Content-Transfer-Encoding: 8bit
    <?xml version="1.0" encoding="utf-8"?>
    <abc/>
    <def/>
    --XXXXboundary text
    Content-Type: application/octet-stream;       name="files.zip"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment
    UEsDBBQAAAAIAI9EejAs5k34H84DAAYgBAAMAAAAMDAyMjQ5MTEucGRmnLsJWBNJ2zb6jmJIIIFE
    BAMIJGEVBSKGRRAhEGQNoGwKYoiAEnYRUFGIkBAQFzYXRNHAAEGQZRy2ATFDUAHfGScSIUwQMMrM
    ECGADptA0n/jzLtc//dd51znVAKdru6uqn7q6fu5764qQz

    Just create an applet (extend JApplet)... add a JTextArea to it....fill the text area with the text from an XML doc.
    To get the text of the XML doc just do something like..
    File xmlFile = new File("<path to xml file>");
    FileInputStream fis = new FileInputStream(xmlFile);
    byte[] bytes = new byte[(int) xmlFile.length()];
    fis.read(bytes);
    fis.close();
    String xmlText = new String(xmlBytes);
    textArea.setText(xmlText);
    ...try something like that (assuming..i understand what it is u want)

  • Printing the file type attachment (PDF) in the report (XMLP) output

    Requirement
    Data Source: RDF
    Layout type: RTF (XML publisher)
    Requirement is to print the attachment on the sale order header of data type ‘File’. The attachment file type is PDF. Please refer the below screen shot for details.
    Responsibility: Order Management Super User
    Path: Orders, Returns - Sales Orders
    Open sales order record, and on sales order header form choose: View - Attachments from toolbar (or click on Attachment-icon).
    Attachment Data Type
    Default attachment data type is defined for each attachment category. This default value can be updated, when attachment is created on a transaction.
    If attachment File Type is 'File', print constant text 'See attached document' on the position defined for it on the layout. The attachment file is then printed to the end of the document (last page of the document). This additional page should contain reference to the sales order number being printed.
    Is it possible to print the attachment of data type ‘File’ in the XMLP report?

    Requirement
    Data Source: RDF
    Layout type: RTF (XML publisher)
    Requirement is to print the attachment on the sale order header of data type ‘File’. The attachment file type is PDF. Please refer the below screen shot for details.
    Responsibility: Order Management Super User
    Path: Orders, Returns - Sales Orders
    Open sales order record, and on sales order header form choose: View - Attachments from toolbar (or click on Attachment-icon).
    Attachment Data Type
    Default attachment data type is defined for each attachment category. This default value can be updated, when attachment is created on a transaction.
    If attachment File Type is 'File', print constant text 'See attached document' on the position defined for it on the layout. The attachment file is then printed to the end of the document (last page of the document). This additional page should contain reference to the sales order number being printed.
    Is it possible to print the attachment of data type ‘File’ in the XMLP report?

  • Problem calling XML Report Publisher from Oracle Reports

    Hi,
    I'm facing a problem in calling XML Report Publisher from Oracle Reports.
    Basically, I'm trying to customise Dunning Letter program. The program which is submitted calls another program. I have customised the second program and added a call to a stored procedure which in turn calls XML Report Publisher.I have created a template and attached it to the second program as well.
    The procedure code is as follows.
    v_request_id := FND_REQUEST.SUBMIT_REQUEST(application => 'AR'
    ,program => 'ARDLP_NON_SRS'
    ,description => 'Dunning Letter Print from Dunning Letter Generate'
    ,sub_request => FALSE
    l_status := fnd_concurrent.WAIT_FOR_REQUEST
    ( REQUEST_ID => v_request_id,
    INTERVAL => 15,
    MAX_WAIT => 180,
    PHASE => l_phase,
    STATUS => l_status_code,
    DEV_PHASE => l_dev_phase,
    DEV_STATUS => l_dev_status,
    MESSAGE => l_message );
    v_xml_req_id := FND_REQUEST.submit_request(application => 'XDO',
    program => 'XDOREPPB',
              argument1 => v_request_id,
    argument2 => 'FLS DE AR Dunning Letter Print - German',
    argument3 => 603, -- changed 665 -- was 551,
    argument4     => NULL,
    argument5 => 'N',
    argument6     => 'RTF',
              argument7     => 'PDF');
    Now, there are two problems I'm facing...
    1. when the second program('Dunning Letter Print from Dunning Letter Generate') gets called it executes this procedure ... logically the 'Dunning Letter Print from Dunning Letter Generate' should get called twice ... second time from the procedure. Its getting called multiple times .. as many as 15 - 20 times.
    2. The Xml Report Publisher program ultimately gets called but its erroring out with the following error:
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4 ) OR (L.LANGUAGE = :5 AND L.TERRITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
    I have checked from database that the XDO_LOBS/ XDO_TEMPLATES_B table has corresponding registration data.
    I don't know what's creating the problem.
    If anyone has customised the Dunning Letter program before or having any idea about this problem, please help me out ..
    Thanks

    satrajit,
    Now I am getting the same error you got, Can you please tell me the solution you found?.
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE L.LOB_TYPE = :1 AND L.APPLICATION_SHORT_NAME= :2 AND L.LOB_CODE = :3 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :4 AND L.TERRITORY = :5 ) OR (L.LANGUAGE = :6 AND L.TERRITORY = :7) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.initStream(TemplateInputStream.java:309)
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.<init>(TemplateInputStream.java:187)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.getTemplateFile(TemplateHelper.java:776)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:1269)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:807)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:148)

  • XML error when Crystal report calling Webservice with Rampart (ws-security)

    Could you please advise me where I am doing wrong -
    I have designed the report using CR 2008 following a SAP document instructions but getting error. -
    1. Created a Class file and put it in the class folder -
    public class PasswordHandler implements CallbackHandler { public void handle(Callback[] callbacks) throws IOException,UnsupportedCallbackException { for (int i = 0; i < callbacks.length; i++) { WSPasswordCallback pwcb = (WSPasswordCallback)callbacks<i>; pwcb.setPassword("clientPassword"); return; } } -
    2. created wse_policy.xml with below content clientName com.rockalltech.action.reports.PasswordHandler -
    3.Also modified CRConfig.xml with below data com.PasswordHandler -
    Still I am getting Rampart error like below -
    [2009-06-02 18:04:26,977,,FATAL,com.crystaldecisions.data.xml] org.apache.axis2.AxisFault: org.apache.rampart.Rampart at org.apache.axis2.deployment.URLBasedAxisConfigurator.getAxisConfiguration(URLBasedAxisConfigurator.java:77) at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(ConfigurationContextFactory.java:64) at org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContextFromURIs(ConfigurationContextFactory.java:190) at com.crystaldecisions.data.xml.a.b.a(Unknown Source) at com.crystaldecisions.data.xml.a.a.a(Unknown Source) at com.crystaldecisions.data.xml.f.a(Unknown Source) at com.crystaldecisions.data.xml.f.int(Unknown Source) at com.crystaldecisions.data.xml.CRDB_XMLImpl.DbExecuteQuery(Unknown Source) at com.crystaldecisions.reports.queryengine.driverImpl.xml.XMLQueryDefinition.Execute(Unknown Source) Thomas Edited by: thomasjv on Jun 2, 2009 7:15 PM Edited by: thomasjv on Jun 3, 2009 10:45 AM Edited by: thomasjv on Jun 3, 2009 10:45 AM Edited by: thomasjv on Jun 3, 2009 10:46 AM

    Hi!
    Thanks for the help:
    - I give all proxy details. In HTTP and HTTPS proxy tabs too.
    one interesting thing:
    - We publicate the same WebService with HTTP and HTTPS prefix.
    - If I create a proxy for the WS with HTTP, everything is correct and works well.
    - If I create a proxy for the WS with HTTPS, gives the error written the previous posts. (And can't create the logical port with SOAMANAGER)
    I compare the 2 WSDL. It is the same, except the links. (HTTP and HTTPS) all others are same.
    - And why it is possible in both case (HTTP, HTTPS) to create the proxy with SE80 from the WSDL URL? (And after the logical port was failed)

  • SMS SRS Reporting Point - 7403 at regular time intervals

    Hi,
    At regular time intervals I see a 7403 error message in the "SMS_SRS_REPORTING_POINT" component appearing in my ConfigMgr 2012 SP1 environment. SQL Server 2012 is used.
    My reports are working fine and accessable via the Console and URL. This error 7403 appears twice a day. The srsrp.log states the following at the moment of the issue:
    STATMSG: ID=7403 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_SRS_REPORTING_POINT" SYS=servername SITE=XXX PID=8180 TID=6516 GMTDATE=Tue Aug 27 04:58:18.849 2013 ISTR0="servername" ISTR1="" ISTR2="" ISTR3=""
    ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0 SMS_SRS_REPORTING_POINT 8/27/2013 6:58:18 AM 6516 (0x1974)
    Failures reported during periodic health check by the SRS Server servername. SMS_SRS_REPORTING_POINT 8/27/2013 6:58:18 AM 6516 (0x1974)
    A few minutes before and after the health check is successful.
    I found out that at the moment of my 7403 error, the SQL RS recycle process is started. The log file reportserverservice.log looks like:
    06:55:58:: i INFO: Recycling the service from the default domain
    The recycle time of SQL Reporting services is configured at 720 minutes, so each 12 hours.
    Can someone tell me if this is normal and how I can avoid the 7403 error?
    Thanks.
    Greets!

    Yes I know this is an old post, but I'm trying to clean them up.
    Have you see this blog / KB before?
    http://myitforum.com/myitforumwp/2011/11/14/fix-configmgr-error-7403-srs-web-service-is-not-running-on-srs-reporting-point-server/
    http://www.enhansoft.com/

  • Configuration Manager 2012 R2 - SRS Reporting Services not configuring Report Server

    Hi all,
    I am running stand-alone primary site and remote (shared) SQL 2012 SP1 on Windows 2012 R2 Standard. Remote SQL server is currently hosting multiple instances and Configuratoin Manager is running on a custom instance. SCOM databases also co-exist on the same
    SQL environment (different instance with SSRS installed & running perfectly).
    After setting up the Reporting Services role on Configuration Manager environment,  srsrpsetup.log & srsrpMSI.log states installation is successful. However, when monitoring srsrp.log file, we encounter the below message -
    SMS_EXECUTIVE started SMS_SRS_REPORTING_POINT as thread ID 5232 (0x1470).
    SMS_SRS_REPORTING_POINT 02/12/2014 
    07:44:00 7828 (0x1E94)
    This is a SRS Reporting Point Role as SRSRP registry key exists.
    SMS_SRS_REPORTING_POINT 02/12/2014 07:44:15
    5232 (0x1470)
    Waiting for changes for 0 minutes SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Timed Out... SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Check state SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Check server health. SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Registry change SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Timed Out... SMS_SRS_REPORTING_POINT
    02/12/2014 07:45:15 5232 (0x1470)
    Steps taken so far -
    1. Switched reporting services to run from local system account to domain account. 
    2. Created new Report Server database on our instance and reconfigured Reporting Services to this DB.
    3. Un-installed and re-installed Reporting Services role in Configuration Manager
    4. Un-installed and re-installed SSRS on Configuration Manager (dedicated) SQL instance after removing Reporting Services role in CM12.
    I have referred couple of links on forum and none seem to help resolve this issue.
    Let me know if there is anything specific I missed out from my end. Appreciate any assistance.
    Regards,
    mittu

    It seems that Reporting Services for SCOM and SCCM cannot co-exist on the same server (it sounds like a bad idea anyway)
    http://www.systemcentercentral.com/system-center-2012using-a-common-sql-backend-database-sysctr-scom-scsm/
    https://social.technet.microsoft.com/Forums/en-US/7e6b5ae9-04c8-4c5d-a77f-9f5208d4e65f/is-it-possible-to-deploy-2-scom-2012-r2-reporting-in-a-sql-server-which-already-has-scom-reporting?forum=operationsmanagerreporting
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/0332b156-bc36-4699-8775-a561915f35ab/scom-2012-reporting-components-with-a-shared-sql-cluster?forum=operationsmanagerdeployment
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • I am unable to attach documents to a yahoo email from my macbook pro can anyone advice me what i need to do to address this please?

    Hi there;
    For some reason I am unable to attach documents to a yahoo email from my macbook pro. I do not experience this problem on a nomal PC and i can even open attachments on the mac. However on trying to attach a document to an email it keeps coming up wth an error stating ''invalid file selected'' each time i tr. Can anyone advice me what i need to do to address this please?
    many thanks

    Since your Mac probably came with 10.4, there is no longer a way to get 10.5 Leopard install media. IF it has the requirements, you may be able to upgrade to 10.6 Snow Leopard by buying the boxed install media at the Apple Store for $30.
    System requirements are found here: http://support.apple.com/kb/SP575
    General support can be found here: http://www.apple.com/support/snowleopard/

  • Attachment transfer of PO from SRM to Back end for extended classic scenario

    Hi Experts,
         We are using the SRM 7.0 with EHP 701 and ECC 6 , we have a SRM requirement where we need to transfer the attachment of a PO to back end ECC. I tried to implement the note 1594966 , but it doesn't work . we are using Extended classic scenario. Please suggest some SAP notes or the procedure to be followed to achieve this.
    Thanks ,
    Aishwarya.M

    As far as I am aware this functionality of transferring attachment is not supported in Ext classic scneario  
    http://scn.sap.com/thread/1873708
    Also  I suggest you should debug and see if its sending attachment from SRM if yes then
    could be something missing at ECC side , To debug use this
    http://wiki.scn.sap.com/wiki/pages/viewpage.action?pageId=340264144
     You may also check in SXI_monitor and see if attachment is being recieved and sent from SRM and ECC respectively
    Are you configuring this for the 1 st time or its an error which u encountered?
    You must raise a NOte to SAP for the same till a solution is found .
    This one is another which you can check ..
    http://wiki.scn.sap.com/wiki/display/SRM/Transfering+shopping+cart+attachments+to+the+backend+system

  • Attachment not seen in PO created from SRM SC

    Hi,
    We try to send attachments from SRM shopping cart to Back end R/3. This attachment has to be captured in PO item.
    But it does not appear there. We have made all relevant configurations.
    When i search for the attachment in CV02N i can find the document created with the attachment and link is there between the document and the PO number.
    Even when the DMS document is attached to the PO manually and then viewed again in the PO through ME23N i could not find the attachment.
    I have made the same set of configurations in ECC6 and it appears to work fine.
    regards
    R.Rajesh

    Hello,
    Please check note 668062. Also make sure you have the most recent Java-Applet installed (note 1034072).
    Kind regards,
    Gaurav
    PLEASE GIVE POINTS FOR USEFUL REPLIES

  • Special Character XML Web Service call from Flex

    Hi,
    Let me first give a little background.
    I have to query and return data in XML format. To do so, I have created a custom DSC component. In cases where XML has special characters, LC throws error saying that XML is not properly formed. To over come this issue I used CDATA tag at DSC component. Now LC works as it should and I returns correct result.
    I have a web service call from Flex to get this XML result. Every time i trigger this web service I get an error message saying </document> tag is missing.
    I understand in Flex, web service returned data is wrapped in CDATA tag, thats what i causing all this issue.
    I am not sure, how to handle this situation, I am sure this is a common problem and there should be ways to work around it.
    I would really appreciate if any one could point me in the right direction.
    Thank you ..

    The web service has four operations in it, I need pingQuery operation execution code since it doesnot need any input value.
    I have used code something like this.. Any one please correct me if I am wrong..
    <mx:WebService 
    <mx:WebService> id="webService" wsdl=""https://hydrogen.csd.sc.edu/axis2/services/AcademicHistoryService?wsdl
    >
    <mx:operation name="pingQuery"resultFormat="
    object"result="resultHandler(event);"
    fault="faultHandler(event);"
    >
    <mx:request>
    <PingQuerySpecification>
    <value>
    fsdf
    </value>
    </PingQuerySpecification>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    private function resultHandler(evt:ResultEvent):void {Alert.show(ObjectUtil.toString(evt.result));
    private function faultHandler(evt:FaultEvent):void {Alert.show(evt.message.toString());

  • Does it exist a way to attach sound (and play them) directly from 3d ?

    Hi all,
    I want to know if there is a way to attach sound and play them directly from 3D, like image for background for insteance ?
    see an example >>here<<

    found :
    doc level :
    rm = getAnnotsRichMedia(this.pageNum)[0]; //sound
    JS 3d level :
    host.rm.activated=true;
    host.rm.callAS("multimedia_play");

  • URL vs. document attached in back end EBP 4.0 Classic/4.7 E

    Based on documentation provided by SAP (Powerpoint) regarding new functionality available in SRM 4.0, we should have two choices regarding documents attached in shopping carts. One is the copy-to-DMS option well covered elsewhere, the second does NOT copy attachments to the back end but rather makes a URL available in R/3.
    We are attempting this URL approach:
    Instantiated BAdI BBP_CREATE_REQ_BACK (note to the reader, there is a different BAdI for SRM 5.0)
    == Start Code Change ===
    CV_ATTACH_USE_URL ='X'.
    CLEAR CV_ATTACH_TRANSFER_ACTIVE. "i.e. we are not transferring documents
    == End Code change ==
    Configured the badi, attached the method, configured SICF, etc.
    We have NOT configured DMS in R/3.
    Created new requisition/shopping cart
    Adopt the requisition
    Select attachments Icon in SAPGUI, no documents found.
    Has anyone tried this URL method? Did you get it to work? Is DMS still used? We are guessing a simple text file may be transferred with the attachment URL's, which would require DMS.
    Any suggestions on debugging the situation?

    HI Daemeon
    The attachment transfer from shopping cart is very simple just follow the steps below
    Following are the steps -
    In SRM - Activate BADI - ZBBP_CREATE_REQ_BACK
    method - FILL_REQ_INTERFACE
    parameter - cv_attach_transfer_active = 'X' set active.
    In R3 in DC10 create a new document type for SRM
    IN DC30 check all extensions are maintained properly.
    Logout and login and all the attachment gets transffered fully.
    check one process with attachment It will work.
    regard,
    Nimish Sheth
    pls reward points for helpful answers

  • Append Today Date to the Attachement Name using SQL reporting services

    I have a report on SQL reporting services, I have scheduled this report to be sent automatically by mail using Subscriptions but the client needs to append today date to the report name attached, currently the attachment is taking the report name as it is.
    EX: CollectExport.txt but what I need is to have CollectExport_21-07-2010.txt .
    Please advise.
    Thanks.

    As I understand it, the purpose of the program is to route a report file that contains the name of the report with the current date appended to the end. So, have you tried to use the ReportViewer control and extrude the report as a PDF stream (which you
    can name)?
    William Vaughn
    Mentor, Consultant, Trainer, MVP
    http://betav.com
    http://betav.com/blog/billva
    http://www.hitchhikerguides.net
    “Hitchhiker’s Guide to Visual Studio and SQL Server (7th Edition)”
    Please click the Mark as Answer button if a post solves your problem!

Maybe you are looking for

  • How to delete the records in BI for deleted reocrds in R/3

    Hi , We have a scenarion described below... We have a table in R/3 and updates happen to the table every week with a ZPROGRAM which deletes some of the records and recreates with some logic. Assuming : Initially, We did the load to BI and we got 200

  • Unable to evaluate workflow rule - Value too long for field

    Need help with a workflow error for a record update before the record is saved. There are 3 calculations that would be done in a particular order - all on number fields. Each time, I am overwriting existing values. The individual numbers could have u

  • Sharepoint 2013 only supports SSRS 2008 or 2008 R2?

    I have Installed SQL Server 2012 and then Installed sharepoint 2013.  When I go to the central administration under General Application Settings, at the very bottom I can see "SQL Server Reporting Services (2008 and 2008 R2)" Does that mean it would

  • Technical system for integration server

    hi all what are the steps involved in creating a technical system for integration server?what is the role of RZ70 in creating technical system for integration server? regards bhasker.

  • AxInterop.AcroPDFLib.dll throws "Class not registered" error on 64 bit OS

    I have an vb.net application which uses AxInterop.AcroPDFLib.dll to open PDF files. The application works fine on a 32 bit operating system. But when the same application is accessed from a 64 bit Operatiog system, it throws error "Class not Register