Is there any standard program or FM to configure mail from SAP?

Hi Experts,
Is there any standard program or FM to configure mail from SAP?
Regards
Ramesh V

Hi Ramesh,
PFB.
You can use function SO_NEW_DOCUMENT_SEND_API1
Have a look at URL-> http://sapr3.tripod.com/abap011.htm
Check the below forum:
http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
Regards,
Faisal.

Similar Messages

  • Hi Is there any standard program?

    Hi All,
    This is my question to the forum? Is there any standard program to create a report for AP manager to manage workpools? Please help me..
    Vicky

    Hi,
    The requirement is to create a report with a transaction for AP manager to view all the expense reports assigned or to be assigned. Once he see the list he must be able to assign the expense reports to different processors in the workpool.
    Thanks
    Vickie

  • Is there any standard program for vendor's ageing

    Hi friends,
                There is a standard program for customers ageing(s_alr_87012178).Now i have a requirement for vendors ageing......Is it possible ?
    helpful answer is rewarded.
    Thanks & Regards,
    Anand kumar.

    Hi,
    Check in the following,
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
    2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
    3. Sales organization -> Sales organization / Sales office / Sales employee
    4. Shipping point -> Deliveries / Returns
    5. SD documents -> Orders / Deliveries / Billing documents ...
    & so on.
    <b>Reward if helpful.</b>

  • Is there any standard report available to show cost prices from infor recor

    Hi
    Can any one tell help me is there any possiblility to make a report showing cost prices from info-records on purchasing org. level incl. prices scales?
    We need a report showing the following:
    Supplier no.
    Supplier name
    Material no.
    Material name
    Price
    Price scales (if registred in the info-record)
    Purchase organization to be showed
    Selection of the report can be done with the following entries:
    Supplier no.
    Sourcing (material group)
    Purchase organization
    Please be informed that the above mentioned information and selections are just my first and best guess.
    We have tried to use transaction MC$4 - however, this one is only showing the purchased quantity in the period selected.
    There must be a standard transaction in SAP R/3, which can show us the prices from info-records.
    Best Regards,
    Sairam.

    Hi!
    ME1P is the best report for you although it lacked the supplier name, material name and price scales. You can ask your ABAPER to create your desired report by copying the program running ME1P and then creating a Z* report which contains all your desired fields.
    Hope this helps! =)

  • Is there any Standard Service to Create a Payment Order in SAP banking term

    Hi Experts,
    Can you please tell me if you are aware of any standard Service to create payment order.
    Regards,
    Nikesh Kumar

    Hi Nikesh,
    Yes there is. In future, please do some research before posting questions.
    You can go through the ES Workplace:
    [http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?sap-unique=101812&sap-params=aWQ9RjZDRkMwRUEzRUYxNEJDOTg0MUM1MjgyNzJFRTg1ODMmcGFja2FnZWlkPURFMDQyNkREOUIwMjQ5RjE5NTE1MDAxQTY0RDNGNDYyJm1vZGU9]
    Or the ES Workplace WIKI:
    [https://wiki.sdn.sap.com/wiki/display/ESpackages/BankCommunicationManagement]
    You'll find details regarding the Payment Order Enterprise Service there.
    Regards, Trevor

  • Is there any standard program to parse idocs into horizontal structure

    Could anybody please let me know if there is any SAP program to parse IDOCS into horizontal structures. We need to generate a flat file within SAP using IDOCS.
    Your earlier response is much appreciated.
    Regards
    Kasi

    Hi Kasi,
    Please check this FM EDI_IDOC_PARSER.
    Hope this will help.
    Regards,
    Ferry Lianto

  • FI Invoices Outbound - Any Standard Program ?

    Hi,
      Is there any Standard program to send SAP FI Open, Chnaged and Closed Invoices in to a File (Outbound)?
    How to Track Invoice is new or chnaged or closed ?
    I appricate any help. Thank you.

    i am away from my system...Just check BKPF / BSEG tables...U can get the field name....
    Award points if useful...

  • Is there any standard extractor to extract Assessment and Action Plan deta

    Hi
    Is there any standard extractor to extarct HR assessment details from the table PA9220 and Action Plan details from the table
    PA9221.
    Please advise.
    Thanks in Advance.

    Select-options:
    u2022     Plant
    u2022     Creation date
    Select document number from EDIDC (transparent table) into an internal table by:
    u2022     Direction (in/outbound)
    u2022     Receiver port
    u2022     Partner type of receiver
    u2022     Message type
    u2022     Creation date
    u2022     IDOC type
    u2022     Partner function of receiver
    Then loop on the internal table
    - For every step use FM: IDOC_READ_COMPLETELY
    - This will return 2 tables per IDoc, which you can use any which way you like
    - Append your ALV table with the info you need.
    Display ALV

  • Standard program to fetch the article number from the EAN

    Hi all,
    Is there any standard report, that retrieves the article number from the EAN provided. I don't require a function module which satisfies this requirement.
    Kindly provide your valuable inputs.
    Thanks & Regards,
    Revathi.

    Here is code that can fetch any site.
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class fetchresult extends Frame implements ActionListener{
         TextField t1;
         TextArea ta;
         Button b1;
         public fetchresult(){
              super("Fetch Result");
              t1=new TextField("http://www.sitename.com",20);
              b1=new Button("Get");
              ta=new TextArea("",20,80);
              setLayout(new FlowLayout());
              add(t1);
              add(b1);
              b1.addActionListener(this);
              add(ta);
              setSize(200,200);
              setVisible(true);
         public void actionPerformed(ActionEvent e)
              try
              String s = t1.getText();
              URL u = new URL(s);
              URLConnection uc = u.openConnection();
              InputStream is = uc.getInputStream();
              BufferedReader rd = new BufferedReader(new InputStreamReader(is));
              String str;
              while((str = rd.readLine()) !=null){
                   ta.append(str);
                   ta.append("\n");
              rd.close();
              int available = is.available();
              int z;char c;
              for(int x=0;x<available;x++){
                   z=is.read();
                   c=(char)z;
                   ta.append(String.valueOf(c));
              catch(Exception ee){ta.append(ee.toString());}
         public static void main(String args[]){
              fetchresult obj = new fetchresult();
    Manu

  • Any Standard Program to upload the financial data

    Hi Team,
                 Any standard program which will upload the financial data(trail balance) into sap fi.
    The scenario is  that there are few company codes which is not in sap and we need to upload their financial data in sap like trail balance, I need to upload this company code data in sap fi, please suggest some standard program which uploads this data.
    Thanks in advance
    Kind Regards
    sridhar

    Hi,
    Standard programs are there, but those dont fit to your requirement.
    e.g. Based on the account type(D, K, S) there are different different fields should be filled up.
    If it is Vendor invoice, you have to capture Inv.no., text, leacy subledger number if required.
    All these fields are not required for GL data upload.
    Better create 3 LSMW'S for GL, Vedor & Customers.
    Rgds
    Murali. N

  • Is there any standard ptogram/tcode to download idoc contents with fields.

    Hello All,
    Is there any standard ptogram/tcode to download idoc contents with fields?
    Thanks,
    Devaraj.

    Hi Patil,
    I dont think there is standard program or t-code.
    But u can down load the IDOC with field contents by following way
    Goto t-code WE62- give the basic idoc name- press display button  then it shows all filed contents with description.
    Now select 'SYSTEM' LISTSAVE--LOCAL FILE from menu bar .
    Here select the file type ie spread sheet,html, etc and give the file name and directory where u need to place it.
    <b>Rewards with points if helpful.</b>
    Regards,
    Vijay.

  • Is there any standard report which contain all these fields

    is there any standard report which contain all these fields
    1. plant
    2. material no.
    3. profit  center
    4. movement type
    5.g l a/c
    6.posting date
    we have it in z form one of the job it does is that what all materials entries came to a single gl we can know from it
    like we can know what all materials were charged to repair to p and m a/c.
    can any one tell where can we find these field in any standard format in sap.
    pls send some suggestions.

    Hello Sanjeev,
    I don't think there is an existing standard report with all the information from KE5Z plus material name.
    What I would suggest to you is either:
    1) Copy the standard KE5Z program (RCOPCA02) to a Z program one and insert the additional field from MAKT table (it would demand ABAP coding and some considerable effort to develop it);
    2) Create a Query (SQ01 transaction) by selecting data from GLPCA (table that is used in KE5Z) and MAKT (table that contains the material name by language).
    Hope it helps you.
    Best Regards,
    Daniel.

  • Are there any Standard Reports in HER ?

    Are there any Standard Reports in HER apart from the Time-Table and Room reservation plan?

    Hi Ramesh,
    If for any reason you do not want to use the standard extractors delivered with BI as Michael in mentioning you have the following option:
    With <b>SAP query</b> tool, there are some pre-delivered infosets which you can use to easily generate some reports via Infoset query (also known as ad-hoc queries in HR). This tool is designed for users with little or no knowledge of ABAP programing and runs within the ERP without the need of activation the BI.
    You can check the definition of the Infosets in transaction sq02, Query Area = Global, you will find the following delivered Infosets:
    /SAPQUERY/CM_XX_CG_01      --> Module group (CG) object
    /SAPQUERY/CM_XX_E_01         --> Event (E) object
    /SAPQUERY/CM_XX_SE_01       --> Event package (SE) object
    /SAPQUERY/CM_XX_SM_01       --> Module (SM) object
    /SAPQUERY/CM_XX_ST_01        --> Student (ST) object
    Within transaction sq01 you will be able to create your own reusable queries.
    For further detail on SAP query tool you can check on:
    <a href="http://help.sap.com/erp2005_ehp_02/helpdata/en/01/867b381b6a2756e10000009b38f842/frameset.htm">SAP Query Online help</a>
    We have also published a Cookbook for Reporting in the service marketplace:
    http://service.sap.com/higher-ed (you will need a Service marketplace user!)
    Services --> Background Material --> CM 4.71 Reporting Cookbook (EN)

  • Is there any standard SAP table which stores the license number assigned to a delivery item

    Hi Experts,
    This is in relation to license number assigned to a delivery item under ‘Export License Log’. Our scenario is for delivery of type NLCC created for an inter-company stock transport order. (i.e.not a sales order case where the license may get copied from sales order to delivery through copy control)
    As we understand, for legal control – relevant scenarios, export license for each item shall be determined afresh every time the delivery is accessed. (Depending on legal regulation, grouping, destination country, export control class, delivery partners vis-à-vis license master customer assignments etc.)
    To print the license text on one of the delivery output types, we want to access the license number for each item. (determined under export license log)
    Our question is:  is there any standard SAP table which stores the license number assigned to a delivery item?
    We have checked some of the license tables (T606*, VAEX, EMXX etc.) but couldn’t get any specific table storing delivery-item-specific license data.
    Helpful answers Text Removed
    Regards,
    Jagan
    Message was edited by: G Lakshmipathi
    Dont add such text in your post

    Hi Lakshmipathi,
    The export control log can be accessed by going to delivery Extras-> Export license log
    We need a table that stores the determined license for each item in a delivery document ( as shown in the below screenshot)
    Regards,
    Jagan

  • Is there any standard report for capacity of machines used /ideal

    Hi,,
    i am interested in knowing any standard report which tells us how long is my machine ( work center) ideal and how many hours i have used during a period of  say one month.
       how can we use capacity planning and work scheduling in repetitive manufacturing . pls tell me a the procedure to be followed.
    thanks in advance
    regards
    madan mohan

    Hi,
      thanks for your reply . but i am not able to get a report on  total capacity available in  the  last month and capacity i have utilized  for that month . so that i can derive my  work center ideal time during that past month.this gives  the time i have kept  the machine ideal . Is there any standard report meeting this requirement.
    pls give me  some solution
    regards
    madan

Maybe you are looking for

  • Little squares instead of text in the store

    I upgraded to itune9 this morning, and most of the text in the store, except artists' names, are little squares. the fonts i have are strictly only XP pro and oed fonts. i never had helvetica to delete. like someone on a similar but different thread,

  • Material Ledger Active - K088 Settlement doesnt use Actual Cost Comp Split

    Production Order quantities are all scrap (in confirmation) thus order balance contains Consumed Materials and Activity Allocation When KO88 Settlement is run, the system uses Standard Cost Component Split to allocate the residual to Cost Components

  • Strange issue on newly installed 5510

    Hi all, A couple issues came up after installing our new 5510, a couple sites that uses the same ISP as our's had issues, one where we can email them but their incoming to us wasn't working, and another site we couldn't browse on the web. This all wo

  • Can't import videos from Sony A55

    I can't import videos from Sony A55. Anybody can?

  • How do I retrieve my deleted movies?

    I've just backed up my laptop to my passport external hardrive and deleted some movies from my laptop to free up space and now I can't locate them anywhere...can I retrieve them from my passport?  Do I have to do a full recovery?