Create Custom XML using Email Submit

Hello,
I have a form in which I load dynamic data into. I want to save only certain data in the xml file that gets emailed. How can I do that?
For example I would like to get certain textfield items as well as the selected value from the drop down not all the items.
Any help is much appreciated

Hi,
please check this link, I hope it helps you and if it is already solved let us know the solution as well.
http://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address
BR,
BD.

Similar Messages

  • Problem with creating customer account using TCA Java API

    Hi,
    I am trying to create customer account using TCA java API. i am getting exception saying PL/SQL numeric error: character to number conversion. but this error raises when calling API method
    HzCustAccountV2Pub.createCustAccount.
    can any body help me in solving this issue, any clue why this exception raises. i have tested even the code given in TCA API user guide. that code also gets same error.

    package client;
    import java.math.BigDecimal;
    import java.sql.Timestamp;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import oracle.jdbc.driver.OracleConnection;
    import oracle.jdbc.driver.OracleCallableStatement;
    import oracle.jdbc.driver.OracleTypes;
    import oracle.apps.ar.hz.v2api.HzCustAccountV2Pub;
    import oracle.apps.ar.hz.v2api.HzPartyV2Pub;
    import oracle.apps.ar.hz.v2api.HzCustomerProfileV2Pub;
    class CreateCustAccount {
         public static void main(String[] args) throws Exception {
         HzCustAccountV2Pub.CustAccountRec p_cust_account_rec = new HzCustAccountV2Pub.CustAccountRec();
         HzPartyV2Pub.PersonRec p_person_rec = new HzPartyV2Pub.PersonRec();
         HzCustomerProfileV2Pub.CustomerProfileRec p_customer_profile_rec = new      HzCustomerProfileV2Pub.CustomerProfileRec();
         BigDecimal[] x_cust_account_id = new BigDecimal[1];
         String[] x_account_number = new String[1];
         BigDecimal[] x_party_id = new BigDecimal[1];
         String[] x_party_number = new String[1];
         BigDecimal[] x_profile_id = new BigDecimal[1];
         String[] x_return_status = new String[1];
         BigDecimal[] x_msg_count = new BigDecimal[1];
         String[] x_msg_data = new String[1];
         try
         Class.forName ("oracle.jdbc.driver.OracleDriver");
         OracleConnection conn = (OracleConnection) DriverManager.getConnection ("jdbc:oracle:thin:@ebiztst.trianz.int:1526:PATCH","apps","apps");
         HzCustAccountV2Pub custaccountV2Pub = new HzCustAccountV2Pub();
         p_cust_account_rec.account_name = "John Ac";
         p_person_rec.person_first_name = "John";
         p_person_rec.person_last_name = "Smith";
         p_cust_account_rec.created_by_module = "TCA_EXAMPLE";
         HzCustAccountV2Pub.createCustAccount(
         conn
         , "T"
         , p_cust_account_rec
         , p_person_rec
         , p_customer_profile_rec
         , "F"
         , x_cust_account_id
         , x_account_number
         , x_party_id
         , x_party_number
         , x_profile_id
         , x_return_status
         , x_msg_count
         , x_msg_data
         System.out.println( "x_return_status = " + x_return_status[0] );
         System.out.println( "x_msg_count = " + x_msg_count[0] );
         System.out.println( "x_msg_data = " + x_msg_data[0]);
         if (x_msg_count[0].intValue() > 1) {
              OracleCallableStatement ocs = null;
              for (int i=0; i<x_msg_count[0].intValue(); i++) {
              ocs = (OracleCallableStatement)conn.prepareCall(
              "begin ? := fnd_msg_pub.get( p_encoded => ’F’ ); end;");
              ocs.registerOutParameter(1, OracleTypes.VARCHAR);
              ocs.execute();
              System.out.println((i + 1) + ". " + ocs.getString(1));
              conn.close();
              } catch (ClassNotFoundException e) {
              System.out.println("Driver Not Found: " + e);
              } catch (SQLException e) {
              System.out.println("SQL Error." + e);
    }

  • URGENT:Creating customer master using Sd_Customer_Maintain_all

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

  • By mistake, I created iTunes account using email that was used in my main acc.

    Hi! By mistake, I created iTunes account using email that was used in my main acc. After that, everything i have bought/downloaded and etc disappeared.What should i do?

    The primary email addresses on iTunes accounts have to be unique, you shouldn't be able to create a new iTunes account with the same primary email address unless the existing account had been deleted (only iTunes Support can potentially delete an iTunes account).
    Had you asked iTunes Support to delete your existing account ? If you did then that would also have deleted its purchase history. Or had you changed the primary email address on the old account ?

  • Creating New XML using xPath

    Hi,
    I wanted to know if an XML Document created in the Database using xPaths. I mean, I don't want to creat any XML file on the OS in the first place. I want to create an XML using a table containing xPaths. Can this be done in XDB ?
    Thanks in Advance,
    Piyush

    Hi Piyush
    I don't see how you can create a XML document via xpath!?!? xpath it's only used to reference data in an XML document...
    Chris

  • How to Create an XML using Abap Objects

    Hi there,
    who has an example how to create an XML Document from an internal table using abap objects
    e.g. Class CL_XML_DOCUMENT_BASE ?
    any feedback is welcome.
    thanks
    Johann

    Hi Johann,
    You don't need a class to do the job if you are on a 6.10 or higher system. Use command CALL TRANSFORMATION to create an XML from an internal table.
    Regards,
    John.

  • How to create customer By using SD_CUSTOMER_MAINTAIN_ALL function module

    Hello all,
    I want to create customer By passing( T_CUST_HIER_IP - customer no, account group, company code, distribution channel, division, name1, search team, city, country).
    using BAPI or function module I am using SD_CUSTOMER_MAINTAIN_ALL
    LOOP AT T_CUST_HIER_IP INTO W_CUST_HIER_IP.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNA1.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNB1.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNVV.
      CALL FUNCTION 'SD_CUSTOMER_MAINTAIN_ALL'
       EXPORTING
         I_KNA1                              = W_KNA1
         I_KNB1                              = W_KNB1
         I_KNVV                              = W_KNVV.
    ENDLOOP
    But it gives error SALES_AREA_NOT_VALID.

    Hi,
       Check in TVKO and TVTA  master tables, for Sales Area (Sales OrganizationDistribution ChannelDivision) is vaild or not..
       If no entreis availble , it will raise the exception SALES_AREA_NOT_VALID.
    -somesh
    reward points if it is helpful

  • Custom XML using HTTP channel

    Hi All,
    I have requirement where 2 trading partners will be posting a custom XML payload (same schema for both partners) through a B2B http url.
    I need your help in configuring the Generic-Http channel for both the partners and based up on a particular value in the payload, respective agreement needs to get triggered.
    Currently, I am getting Document Identification Protocol error.
    Please help.
    Thanks,
    Monica

    Hi Prasanna,
    Thank you for the reply.
    I tried setting the identification Xpath under document definition as mentioned in the above mentioned link. But I am getting the "Description: Agreement not found for trading partners: FromTP null, ToTP HTP with document type BRCD_AB_DATA-V1.0-INBOUND." error.
    I have placed my doc definition under Custom-->V1.0-->BRCD_AB_DATA
    I have the XPath for XML as shown below:
    Identification Expression (XPath) ://*[local-name()='BRCD_AB_DATA']/*[local-name()='TRANSACTION_NUMBER']/text()
    Identification Value :1234
    Am I missing anything??
    Thanks,
    Monica

  • How to use email submit button with webmail; not a desktop email client

    We've made a form that will submit data via an xml attachment to an email. It was all tested as fine (using Adobe Reader 7...) and has been deployed - DISASTER.
    People using Adobe Reader 8 cannot choose to save the xml file. AR 8 just opens up their default email client. If they use webmail and it's not on the list of default email clients (IE/Tools/Options/Programs)then we don't seem to be able to get the xml data out.
    How can you get AR 8 to give you a choice of what to do with the xml data when a user clicks the Submit by email button? Just like the email client choice in AR 7!!!! Please, if anybody from Adobe sees this, help us...

    Did you ever get a solution to this problem. I have several clients who use internet email and it always worked with earlier versions of reader because it would display the "Select Email Client pop up.
    Please let me know.

  • Why does my InDesign CS6-created interactive pdf w/ email submit button no longer submit from Reader

    Last spring I created a 6 page interactive pdf form to email my clients. At the end of the form, I designed Print and Submit buttons. I tested it in Reader and both buttons worked. However, now after revising some of the fields in the same form, the Submit button isn't working in Reader. A message pops up stating that only a data file will be sent, rather than the form. After clicking OK on that (although I do want entire form to be returned via Submit), an error pop-up states "This operation is not permitted."
    What do I need to do to correct this problem so that clients can receive this form via email attachment, open in Reader and then return completed form via email submission? Do I need to open the pdf in Acrobat after converting from InDesign, and edit some feature there? Again, it is essential that my clients can open it in Reader. I have Googled this question but so far not found help.
    Thanks for your assistance!

    HI oliviat38527079
    Seems that the hyperlink you created on the button to move to the next PDF is not working once it gets moved to a different computer via email, this happens when there is a change in the file path.  It works fine when its on our Mac Computer as the path is fixed because the PDF was created on the same computer, however the path gets changed once it is mailed to a different computer.
    I would recommend you check the path of the hyperlinks & make sure they are fixed.
    Suppose the path set in the hyperlink is C:\Users\NewFolder\PDF\file1.pdf , then the path of the file on the computer to which you have mailed it should be arrange in same manner so that the hyperlink works.
    If its possible for you to share the PDF file then please do, so we can have a closer look & try to resolve your issue.
    In case you any doubts please reply.
    Regards,
    Aadesh

  • How to set Mandatory Choice field while Creating Custom Task using Sharepoint Designer 2007

    Hi,
    I am new to Sharepoint development.I dont know whether i am posting  the question in Correct place.Kindly redirect me to the correct place if i am posting it in wrong place.
    I  created a custom task in Sharepoint Designer 2007 using
    Collect Data from User
    Action.
    I created a field in the task form which is of choice type and
    unchecked allow blank values
    because i  wanted that field to be a mandatory field.When i handled that task ,i was able to complete that task
    without selecting that mandatory field.But, I was expecting not to allow me to complete the task without selecting that field. Kindly  tell me how to set the choice field as mandatory.

    Hi,
    You are using SharePoint Designer 2007, so I moved the thread to the appropriate forum for MOSS 2007.
    This is by design that
    Workflow-generated form (for action Collect data from User) does not perform validation properly on drop-down choices, the workaround is to use JavaScript to perform the field validation.
    This thread has the JavaScript code can help you:
    http://social.msdn.microsoft.com/forums/en-US/sharepointworkflow/thread/0ad7fc3c-97a1-464e-ae89-c3133462dda8/
    Xue-Mei Chang

  • Create Custom Infotype using PPCI

    Hi,
    My requirement is to create an HRinfotype . I am trying to create a new custom infotype (9500) via transaction PPCI, categeory   when i select the option user should use Transaction PO10 and choosing the org unit, user should be able to choose my custom Infotype 9004 “Site type and Industry” and select Create/Edit/Delete.
    For this we follow the below given steps :-
    Step1: Create structures as mentioned in the HRI9004
    Step2: Using transaction PPCI create field infotype.
    Step3: In table T777I assign the new infotype to the standard object type Org unit and define the time constraint.
    Can any body help me or send me any document to start from step 2 . i.e Using transaction 'PPCI' .

    Hi,
    Look into the path below
    http://help.sap.com/printdocu/core/Print46c/EN/data/pdf/PAXX/PYINT_INFOTYP_PD.pdf
    Regards
    Pavan

  • Problem exporting custom XML using ISnippetExport API ExportInCopyInterchange

    Does the XML generation process invoked by ExportInCopyInterchange call IXMLExportHandler implementations on service bosses?
    I cannot make it work. Following the snippet example I have created a service boss which should be recognized as an XMLExportHandler service:
       //Affects XML generation
       Class
            kJBXMLExportHandlerBoss,
            kInvalidClass,
                IID_IK2SERVICEPROVIDER,  kXMLExportServiceImpl,
                IID_IXMLEXPORTHANDLER,  kJBXMLExportHandlerImpl,
    I have written a simple class to provide kJBXMLExportHandlerImpl which implements the methods of IID_IXMLEXPORTHANDLER. When I invoke 'Utils<ISnippetExport>()->ExportInCopyInterchange the XML is generated but my class is never entered. Even the constructor is never called either during InCopy startup or the export call.
    What am I missing? I'm on Windows7 running CS6 InCopy
    Thanks for any help.

    Please print out the Verbose Stack Trace generated when you run this application.
    I suspect that you FolderPathResolver is not pointed at the directory you think it is. You might want to try printing out
    I_CurrentFolder.getAnyFolderPath();
    and I_CurrentFolder.getName();
    null

  • Create Custom PDF using Flex

    I posted this in an Acrobat forum, but I was wondering if
    Flex would work for this. Anyone have any thoughts? Thanks!!
    Hopefully someone can help me! I am a designer, not a
    programmer so I may be in over my head. My client has an archive of
    individual technical data sheet saved as PDFs. They would like a
    user to be able to go to a web page, select which products they use
    and have that automatically combined into one PDF file. Any ideas
    on where to start? Thanks!

    Hi there there's a library named AlivePDF that allows you to
    create PDFs on the fly. But if you're not a developer, and don't
    want to learn about Flex and AS3, then you'll probably couldn't be
    able to accomplish this.

  • Create custom forms using code or SAP B1 Studio, which one is better?

    Hello Professionals,
    I'm new to SAP B1 9.0 SDK, i'm currently creating forms using code, but i noticed that it can be mad using SAP Business Studio,
    from your experience, which one is better for performance and quality wise?.
    Your help would be greatly appreciated
    Thanks in advance

    Hi Karem,
    http://www.mepa.ch/images/documentation/B1_90_WorkWithStudioSuite.pdf
    Please Refer The Link and Start Working with Studio..
    All the best
    Regards,
    Mayank Shah   

Maybe you are looking for

  • SAP Lumira Workshops are now part of the Events Calendar!

    Don't miss out any enablement for SAP Lumira. We maybe in a town near you! Check out the SAP Lumira Hands-On workshops on SAP Lumira Calendar. For any questions, please reach out to Ruchi Sethi See you there! Best Regards, Lumira Customer EG Team

  • 2 macs one sends one does not

    Cannot send email from Comcast accounts on mac with 10.4.11, but can receive. On another mac on the same network with 10.5.5 can send and receive. All POP accounts Can send and receive on both macs with IMAP AOL accounts. I have deleted and replaced

  • Using SE as a Controller

    Hello, Is it possible to use SignalExpress to automate the repitition of the following task... 1) Record a voltage for 30 seconds using an NI DAQ 2) Send a digital output immediately following the 30 seconds to open/close an air valve for the next 5

  • When I click on a link, I would like the new web page to open in the same window. What settings do I need to do this ? Thank you.

    I tried the options / tabs and I could not find a setting for this. I am running Windows 7 with Firefox 5.0 Thank you.

  • Wireless Controller 4402 Crash

    Hi, I will make an abbreviation report about my case. My WLC 4402 was running 4.0.217.0 version. There are 18 access point work with local. It's work fine. To a new project, we will add a access point 1522 and others 1242 to extend the range to a sma