Sap internal mailing system

Hi Guru
I want  to know about mailing system in sap. which tools are used. and how to use this. give detail description step by step with pictorial form.
bye
regards
manas

here is sample sending email program:
* Declarations.
PARAMETERS: p_email(50) LOWER CASE.
DATA: document_data LIKE sodocchgi1.
DATA: t_content LIKE STANDARD TABLE OF solisti1.
DATA: s_content LIKE solisti1.
DATA: t_receivers LIKE STANDARD TABLE OF somlreci1.
DATA: s_receivers LIKE somlreci1.
START-OF-SELECTION.
* Receivers.
s_receivers-receiver = p_email.
s_receivers-rec_type = 'U'.
s_receivers-express = 'X'.
APPEND s_receivers TO t_receivers.
* Subject
document_data-obj_descr = 'New mail from Sap'.
* Body
s_content = 'Hi,'.
APPEND s_content TO t_content.
CLEAR: s_content.
APPEND s_content TO t_content.
s_content = 'Test email from sap, please don''t reply to this email'.
APPEND s_content TO t_content.
CLEAR: s_content.
APPEND s_content TO t_content.
s_content = 'Thanks,'.
APPEND s_content TO t_content.
s_content = 'Naren.'.
APPEND s_content TO t_content.
* Send the email.
CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
EXPORTING
document_data = document_data
TABLES
object_content = t_content
receivers = t_receivers
EXCEPTIONS
too_many_receivers = 1
document_not_sent = 2
document_type_not_exist = 3
operation_no_authorization = 4
parameter_error = 5
x_error = 6
enqueue_error = 7
OTHERS = 8.
IF sy-subrc <> 0.
MESSAGE e208(00) WITH 'Error in sending email :-(('.
ELSE.
MESSAGE s208(00) WITH 'Email sent :-))'.
ENDIF.
SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
/wg

Similar Messages

  • Workflow for P.O release to send sap internal mail

    Hi
    I am trying to configure Workflow for the following scenario of release. Please guide me how to configure the same in sequence with t-code.
    We have two level of release procedure for P.O depending upon P.O value.
    When P.O created the first approver should to get SAP internal e-mail.
    Once 1st release done then 2nd approvar should get the SAP internal e-mail.
    When final release is done then Creater of the P.O should get the intimation about the final release in his mail box.
    Please guide with Workflow ID's and task and where to assign agent etc.
    Thanks,
    Dhananjay

    Hi
    I tried to do the setting as instructed in many threads. Result is as follows.
    When I create a contract 1st approver receing the mail, but after releasing workflow status is still inprocess and the 2nd approver is not getting any mail.
    As I did work arroung job I am not able to understad the exact process(Sequnce of setting) to be done.
    That is why I posted in thread.
    Please guide the flow of setting.
    Thanks,
    Dhananjay

  • Program in SAP R/3 system to send Pending GR notification mails to SRM use

    Hi
    Can anyone help me with a program name in SAP R/3 system, which will send notification mails to SRM users for which the Confirmations/GRs pending in SRM. what is the program name.
    Here there is some program which is sending out Email notifications to SRM  users to do the confirmations in SRM. where it would send the details of PO number also in the mail. But not able to get the program name whether this runs in SRM or R/3.
    I have a faint idea this would run in SAp R/3 system. but not sure about it and the name of it.
    Regards
    Srujank

    Hi,
    There is no standard report for the requirement mentioned by you. You might have to develop a custom report.
    regards,
    MRao

  • An internal error was found in the SAP lock management system when opening

    Hello SDN Experts ,
    When i am trying to open any t-ocde in my productive system
    it is displaying an error message "An internal error was found in the SAP lock management system " , not only for me but also for all the users .
    Could please tell me what colud be the problem and solution for this??
    it's very urgent .....
    Thanks in Advance !
    Siva reddy

    Hi,
    Check in SM12 if tht particular Tcode is being locked by some other person.
    Else contact your basis team. There may be some auth issues.
    Regards,
    Lalit

  • Send an internal mail (SAP inbox) to a user and select the expire date

    Hello!,
    This is my first question in this forum. I need to send an internal mail to a user and I must insert a expire date.
    I try to use the FM 'SO_OBJECT_SEND' and it's works but I don't know where I can insert the expirte date.
    Can you help me?, please.
    Thanks a lot.

    Hi,
    Try this..
    In the parameter OBJECT_HD_CHANGE there is column DLDAT (Expiry date) & DLTIM (Expiry time)...Give the date and time in this column and then check..
    THanks,
    Naren

  • Enquiry of SAP Campus Management System

    Dear all
    Would like to have first enquiry about SAP Campus Management System, is it suitable for use by Learning Centres (for example some tutorial learning centre or child learning centre), what's the scale of the product and most importantly, initial investment? Thanks
    (For the first look I think only suitable to University type Campus?)
    Donald

    The SAP Student Lifecycle Management (former name is Campus Management) solution enables institution-wide collaboration across business processes and users, supporting more effective service,increasing efficiencies, and lowering
    total cost of ownership. Its global approach brings together experience and best business practices from different educational systems, educational levels, and cultures. By accommodating the diverse aspects of international academic programs an non-academic programs, the software helps institutions to be successful in a globally collaborating world. Its flexibility and scalability supports ongoing transformation,growth,and optimization of business processes.
    In other words SAP SLcM can serve different type of 'study' models and cope with their processes/demands. The SAP solution serves the entire Education & Research ecosystem. Below some examples:
    - K-12;
    - Public Universities;
    - Private Universities;
    - Medical Schools;
    - Business Schools;
    - Techning-intensive Universities;
    - Etc, etc.
    Your question regarding the Initial investments I cannot answer directly. If you send me an e-mail (rob(atsign)sap.com) I can get you in contact with my collegeaus who can help you out.
    Please do not hesitate to contact me if you have any other queries.
    Br,
    Rob

  • How to send sapmails to external mail systems

    Hi,
    how to send sapmails to external mail systems....
    like if we want to mail a purchase order from SAP System to *@yahaoo.com or @.com.
    TY.

    hi manish,
    u can do it.
    chk this .
    chk this code
    DATA: objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE.
    DATA: doc_chng LIKE sodocchgi1.
    *& Form f_send_mail
    text
    --> p1 text
    <-- p2 text
    FORM f_send_mail .
    *store the vendor name, vendor email id , employee name and employee
    *email id in the internal table int_crb
    Creation of the document to be sent
    CLEAR doc_chng.
    REFRESH objpack.
    REFRESH objhead.
    REFRESH reclist.
    REFRESH objtxt.
    File Name
    doc_chng-obj_name = 'SHIPMENT'.
    Mail Subject
    CONCATENATE 'Shipment Document No.' int_crb_mail-shipdocnum
    'Cleared.'
    INTO doc_chng-obj_descr SEPARATED BY ' '.
    Mail Contents
    objtxt-line = 'Hi,'.
    APPEND objtxt.
    objtxt-line = ' '.
    APPEND objtxt.
    CONCATENATE 'Shipment Document Number ' int_crb_mail-shipdocnum
    ' cleared for move.' INTO objtxt-line SEPARATED BY ' '.
    APPEND objtxt.
    objtxt-line = ' '.
    APPEND objtxt.
    CLEAR objtxt.
    objtxt-line = 'Regards '.
    APPEND objtxt.
    objtxt-line = ' '.
    APPEND objtxt.
    objtxt-line = 'SAP '.
    APPEND objtxt.
    CLEAR objtxt.
    APPEND objtxt.
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN(
    objtxt ).
    Creation of the entry for the compressed document
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'RAW'.
    APPEND objpack.
    Completing the recipient list
    target recipent
    CLEAR reclist.
    reclist-receiver = int_crb_mail-empperid. "employee email ID
    "wf_empperid.
    reclist-express = 'X'.
    reclist-rec_type = 'U'.
    APPEND reclist.
    copy recipents
    CLEAR reclist.
    reclist-receiver = int_crb_mail-smtp_addr."vendor email id
    reclist-express = 'X'.
    reclist-rec_type = 'U'.
    reclist-copy = 'X'.
    APPEND reclist.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = doc_chng
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    receivers = reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    OTHERS = 99.
    COMMIT WORK.
    SUBMIT rsconn01
    WITH mode = 'INT'
    WITH output = ' '
    AND RETURN.
    ENDFORM. " f_send_mail
    for any clarifiaction pls mail me.
    pls reward points, if this helped u.
    regards,
    anversha.
    [email protected]

  • Email to distribution list from SAP Internal Email

    I have a scenario where in I have to send email from sap internal email (T-code:-SBWP) to the distribution list.
    Can some one give me some idea on the same .
    When we go to T-code: - SBWP, for unread email we right click and fwd the email to distribution list, can we achieve the same functionality by a program so that we can automate the process.
    Thanks in Advance.
    Regards,
    Pawan.

    Hi,
    Yes ,one can write an ABAP code to send the mail to a distribution list.
    Please try and use the Function Module 'SO_NEW_DOCUMENT_SEND_API1' and you need to pass the import and export parameters to this FM which needs to be defined and populated before you use this FM.
    The first Exporting parameter is 'document_data' which will be of type 'sodocchgi1'.In order to populate this, you can use the structure of type 'sodocchgi1' and give the name, description, sensitivity and the language by referring to the data type mentioned above('sodocchgi1').
    The next is the document type and you can mention any one of them from 'RAW' to anything again refering to the document type.
    The next are the tables parameters and the first one is "object_content" which would be of type "solisti1" and you need to populate this one as well.This table would contain the contents of the mail.
    The next Tables parameters is "receivers" which would be of type 'somlreci1' and in order to populate this,you need to use the below like code:
    smtp_addr = any valid email id.
          gi_recievers-receiver = smtp_addr.
          gi_recievers-rec_type = 'U'.
          gi_recievers-com_type = 'INT'.
          APPEND gi_recievers.
    once this is done, an email will be sent to the recipient which can be monitored in the T-code SCOT and SOST.It will take sometime for the mail to be sent as there is a fixed timeline after which the R/3 system pushes the mails through it to the recipients.
    I guess, I have tried to answer your question.
    In case of any queries,please let me know.
    Regards,
    Puneet Jhari.

  • Internal mail

    hi,
    i want to send internal mail with sales order no as link
    ie., say 8000029 is sales order no
    user by clicking this sales order no (link) sales order should open directly in display mode
    is it possible pl suggest

    Hi,
    It can be possible By implementing Work Flow.Once The Sales order Saved...system will generate a automated mail and it send it to Higher Authority.if they Approval it can be releaed to Delivery...You can make based on your Requirment.
    For Work Flow:
    http://help.sap.com/saphelp_470/helpdata/en/04/926f8546f311d189470000e829fbbd/frameset.htm
    Regards
    raj.

  • Portal application connecting backend SAP R/3 system

    Hi All,
               I am developing one portal application through NWDS. It's JSPDYNPage component.The applications functionality is basicaly is to connect it to backend SAP R/3 system & fetch some data in aparticular table & display that data in a tableview format on one JSP& also when i click any row of the tableview then details of that row should get displayed on the next JSP. So i reached till develpoing a code that connnects to Backend SAP R/3.(Basicaly coding of connection part is done). Now i need to test this code, to check whether it is fine or not? NWDS doesnt give nay error, not compile also or not runtime error also. It simply shows the output as a blank page, where it is supposed to display one line of text in textview(i coded this in my JSP).But as i said it displays a blank page. i tried to debug the application , but debugging also not worked.I performed the debugging twice in right way. The code was not debugged, it run the same way as it normally runs when debugging is off & shown the blank page. I also have done all the the settings or prerequisites for debugging properly. I am stuck at this point now.search many documents , but no relevant help has been received. Can anyonehlep me with this. i am putting below the code for JSP, JSPDYNPAGE component as well as portalapp.xml. Can anyone guide me with this, whhere i am making mistake? what should i change in this?
    JSPDYNPAGE code
    package com.lti.portal;
    //import java.util.ArrayList;
    import com.sapportals.htmlb.*;
    import com.sapportals.htmlb.enum.*;
    import com.sapportals.htmlb.event.*;
    import com.sapportals.htmlb.page.*;
    import com.sapportals.portal.htmlb.page.*;
    import com.sapportals.portal.prt.component.*;
    import java.util.ArrayList;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    import com.sun.corba.se.internal.core.Response;
    public class Connection_R3 extends PageProcessorComponent {
    public DynPage getPage(){
    return new Connection_R3DynPage();
    public static class Connection_R3DynPage extends JSPDynPage{
    private Conn_R3 myBean = null;
    public JCO.Client mConnection;
    public JCO.Repository mRepository;
    public ArrayList al = new ArrayList();
    public String output;
    public String Ans;
    public static String BEAN_KEY="myBean";
    public void doInitialization(){
    IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();
    IPortalComponentContext context = request.getComponentContext();
    IPortalComponentProfile profile = context.getProfile();
    //create & initialize the bean.
    Conn_R3 test_bean= new Conn_R3();
    test_bean.setans("3");
    // put the bean into application context.
    context.putValue(BEAN_KEY,test_bean);
    conn();
    //IPortalComponentResponse res = (IPortalComponentResponse)this.getResponse();
    //for(int i=0;i<al.size();i++)
    //res.write(" "+al.get(i).toString());
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("Connection_R3.jsp");
    public ArrayList conn() {
    IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();
    IPortalComponentContext context = request.getComponentContext();
    IPortalComponentProfile profile = context.getProfile();
    Conn_R3 sample_bean = new Conn_R3();
    sample_bean.setans("5");
    //context.putValue(BEAN_KEY, sample_bean);
    //r3-accessing
    //connect_to_r3();
    try {
    // Change the logon information to your own system/user
    mConnection = JCO.createClient("800", // SAP client
    "********", // userid
    "******", // password
    null, // language
    "*******", // application server host name
    "**"); // system number
    mConnection.connect();
    //System.out.println(mConnection.getAttributes());
    mRepository = new JCO.Repository("ABC", mConnection);
    } catch (Exception ex) {
    ex.printStackTrace();
    System.exit(1);
    JCO.Function function = null;
    JCO.Table codes = null;
    try {
    function = this.createFunction("ZSAMPLE");
    if (function == null) {
    System.out.println("ZSAMPLE" + " not found in SAP.");
    System.exit(1);
    String num1 = "7";
    String num2 = "9";
    //String ans;
    function.getImportParameterList().setValue(num1,"My_import");
    function.getImportParameterList().setValue(num2, "My_Import");
    mConnection.execute(function);
    Object name =function.getExportParameterList().getValue(Ans);
    output=name.toString();
    sample_bean.setans(output);
    //sample_bean.setans(output)
    //al.add(name);
    //store values into strings
    //pushing of values we get from r3 into awt
    } catch (Exception ex) {
    ex.printStackTrace();
    System.exit(1);
    disconnect_r3();
    return al;
    public void connect_to_r3() {
    public JCO.Function createFunction(String name) throws Exception {
    try {
    IFunctionTemplate ft =
    mRepository.getFunctionTemplate(name.toUpperCase());
    if (ft == null)
    return null;
    return ft.getFunction();
    } catch (Exception ex) {
    throw new Exception("Problem retrieving JCO.Function object.");
    public void disconnect_r3() {
    mConnection.disconnect();
    //**********************<b>Code for BEAN</b>****************************
    package com.lti.portal;
    import java.io.Serializable;
    public class Conn_R3 implements Serializable {
    public String answer;
    public void setans(String a)
    answer=a;
    public String getans()
    return answer;
    ///////////////////////<b>Code for JSP</b>*****************************
    ><%@ taglib uri= "tagLib" prefix= "hbj" %>
    <jsp:useBean id="myBean" scope="application" class="com.lti.portal.Conn_R3" />
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <hbj:form id="myFormId" >
    <hbj:textView
    id="Welcome_message"
    text="<%=myBean.getans()%>"
    design="STANDARD" >
    </hbj:textView>
    </hbj:form>
    </hbj:page>
    </hbj:content>
    /////////////////////////////////<b>Portalapp.xml</b>*****************************************
    application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="Address_comp">
          <component-config>
            <property name="ClassName" value="com.lti.portal.Address_comp"/>
          </component-config>
          <component-profile>
          <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>

    Hi,
       Do onething, please refer this <a href="http://www.i-barile.it/SDN/JCoTutorial.pdf">JCo Tutorial</a> as well as <a href="http://www.apentia-forum.de/viewtopic.php?t=1962&sid=9ac1506bdb153c14edaf891300bfde25">Link</a> also.
    Regards,
    Venkatesh. K
    /* Points are Welcome */

  • Implementing UCES in SAP ISU- IDES system

    Hi,
    We are interested to implement UCES in SAP ISU - IDES system which we have for our internal competency and Customer POCs/Demos. ( ECC 6 with ISU)
    Could any body please share their experience or knowledge on this, that would be of very helpfull.
    Many Thanks
    Raja

    Hi,
    There is something called UCES - Biller Direct where is there is an Interaction Between SAP Biller Direct and Contract Accounts Receivable and Payable.
    Purpose:You should use SAP Biller Direct if you want to present information about customer accounts in your Internet portal and offer your customers the option of paying bills or of creating inquiries and complaints via the Internet.
    Implementation Considerations : Your customer does not need to install any SAP software to be able to use SAP Biller Direct. All functions can be carried out using a standard Web browser.
    Information on the necessary system requirements and the browsers supported by SAP Biller Direct can be found in the introductory sections of the installation guide.
    SAP Biller Direct consists of an application based on JavaServer Pages. The accounting system runs on a standard application server and is used as the back end for SAP Biller Direct. The transfer of data between the front end and back end is done by RFC and is ensured using the SAP Java Connector (JCO), which you install as part of the SAP middleware.
    Award points if this is found useful.

  • Transfer the Pur Order Info through BAPI's between SAP R/3 Systems Using XI

    How to Create a Purchase Order for the Vendor and transfer this data through BAPI's between SAP R/3 Systems Using "Exchange Infrastructure(XI)".
    Please kindly let me know the procedure for creating BAPI's and how to transfer this information between SAP R/3 systems. Please kindly mention the NAVIGATION for this scenario.

    Hi Revathi,
    If you want to do an IDOC to IDOC scenario, then the Points to be noted are:
    1. You don’t need a DT, MT or a message interface for the IDOC as it itself acts as the Message Interface.
    2. You import the IDOC and use the same in your mapping.
    3. You do not need a sender IDOC adapter, and no sender agreement, but a receiver IDOC adapter and a receiver agreement is needed.
    IDOC -> File scenario ref:
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters
    File -> IDOC ->
    /people/anish.abraham2/blog/2005/12/22/file-to-multiple-idocs-xslt-mapping
    (It concentrates on XSLT mapping but also gives an idea about the configuration part. Do go thru that, it might help you.)
    Apart from this if you need any info on how to configure your ALE, partnet profile,etc  drop me a mail, I have excellent tutors that can help you in the same.
    Regards,
    Bhavesh

  • PO is not receiving internal mail address and vendors are getting PO .

    Dear all ,
    If the user send Purchase order in SAP through mail  for (Ex: itpurchaseordercompany.com and yyycompany.com,  the purchase orders are not receving to the above mentioned e-mail id , But the external vendors are receiving the mail correctly,
    Kindly suggest  why the mail is not receiving internal employee mail id's
    Kindly advise
    Regards

    Please check transaction SCOT/SOST. Check the send orders state and traces there.
    Markus

  • Sap R3 471 system copy error

    Dear all:
    Migration  evironment:
    Source system:
    DEV system:SAP R/3 Enterprise 4.7x110,non-unicode, SID:DEV,database schema:SAPPRD
    (because through brbackup / brrestore manner transplant from production system,then change the SID)
    DB:Oracle 9.2.0.4.0 64bit
    OS:AIX 5.3 64bit
    Target system:
    QAS system:SAP R/3 Enterprise 4.7x110,non-unicode,SID:QAS   database schema:SAPQAS
    DB:Oracle 10.2.0.2.0 64bit
    OS:WIN2003 SP2 64bit (CPU:AMD Athlon(tm) 64X2 Dual Core Processor 5000+)
    Now,in "Database instance installation"->"Oracle  Post-Load Actions" phase occur errors:
    sapinst.log:
    INFO 2009-01-06 15:15:50
    Working directory changed to C:\Program Files\sapinst_instdir\R3E47X2\COPY\IMPORT\SYSTEM\ABAP\ORA\NUC\DB.
    INFO 2009-01-06 15:15:50
    Working directory changed to C:\Program Files\sapinst_instdir\R3E47X2\COPY\IMPORT\SYSTEM\ABAP\ORA\NUC\DB.
    ERROR 2009-01-06 15:15:50
    CJS-00084  SQL statement or script failed.<br>DIAGNOSIS: Error message: ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL2'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'CLUST'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'POOL'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDIC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDOCU'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SLOAD'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SPROT'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SSRC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'TEMP'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQASUSR' WHERE TABART = 'USER'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQASUSR' WHERE TABART = 'USER1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL0'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL2'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'CLUST'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'POOL'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDIC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDOCU'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SLOAD'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SPROT'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPA.<br>SOLUTION: See ora_sql_results.log and the Oracle documentation for details.
    ora_sql_results.log:
    ===============================================================================
    2009-01-06, 15:15:50 SAPINST ORACLE start logging for
    connect  /  as sysdba ;
    set newpage 0
    set space 0
    set pagesize 0
    set linesize 32767
    set markup HTML off
    set heading off
    set verify off
    set feedback off
    set trimspool on
    set sqlprompt SQL>
    set termout on
    set verify off
    set echo off
    spool ora_query3_tmp0_1.res
    SELECT STATUS FROM V$INSTANCE;
    spool off
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Jan 6 15:15:50 2009
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected.
    OPEN
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SAPINST: End of output of SQL executing program D:\oracle\QAS\102/bin/sqlplus.
    2009-01-06, 15:15:50 SAPINST ORACLE stop logging
    ==============================================================
    2009-01-06, 15:15:50 SAPINST ORACLE start logging for
    connect  /  as sysdba ;
    @@ddicora.sql
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 10.2.0.2.0 - Production on Tue Jan 6 15:15:50 2009
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected.
    Connected.
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL0'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL2'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'CLUST'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'POOL'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDIC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDOCU'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SLOAD'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SPROT'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SSRC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'TEMP'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQASUSR' WHERE TABART = 'USER'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.taora SET TABSPACE = 'PSAPQASUSR' WHERE TABART = 'USER1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL0'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'APPL2'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'CLUST'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'POOL'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDIC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SDOCU'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SLEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SLOAD'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SPROT'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSDEF'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS620' WHERE TABART = 'SSEXC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'SSRC'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQAS' WHERE TABART = 'TEMP'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQASUSR' WHERE TABART = 'USER'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    UPDATE SAPQAS.iaora SET TABSPACE = 'PSAPQASUSR' WHERE TABART = 'USER1'
    ERROR at line 1:
    ORA-00942: table or view does not exist
    DELETE FROM SAPQAS.tsora
    ERROR at line 1:
    ORA-00942: table or view does not exist
    INSERT INTO SAPQAS.tsora  (TABSPACE, INDSPACE) VALUES ('PSAPQAS', 'PSAPQAS')
    ERROR at line 1:
    ORA-00942: table or view does not exist
    INSERT INTO SAPQAS.tsora  (TABSPACE, INDSPACE) VALUES ('PSAPQAS620', 'PSAPQAS620')
    ERROR at line 1:
    ORA-00942: table or view does not exist
    INSERT INTO SAPQAS.tsora  (TABSPACE, INDSPACE) VALUES ('PSAPQASUSR', 'PSAPQASUSR')
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SAPINST: End of output of SQL executing program D:\oracle\QAS\102/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2009-01-06, 15:15:50 SAPINST ORACLE stop logging
    Please give me help and suggestion, Thanks!!

    HI  Markus:
    In the source system's RSCPINST:current NLS Settings show:
                                                                                   C o n f i g u r a t i o n   T y p e :
    Non-Unicode System
    Non-Unicode - MDMP configuration
      Attention!
      The required language combination is supported without restrictions
      only in Unicode systems.
      Please refer to SAP Note 73606.
    C o d e   p a g e s :
    1100   Code Page of Application Server
    1160   Code Page of SAP GUI
    D a t a b a s e   t a b l e   e n t r i e s :
    TCP0C: Code pages and locale names
    OK     Checked and no inconsistency found.
    TCP0F: Frontend code pages
    OK     Checked and no inconsistency found.
    TCPDB: Database code pages
    1100   SAP internal, like ISO 8859-1        (00697/00819)
    8400   Simplified Chinese (based on GB2312-EUC, MS CP936)
    TCP0D: Country code
           (3 spaces) Latin-1 or MDMP
    TCP0I: Processed language(s) entry
    ACTIVE 1DE
    L o c a l e   c h e c k :
    Locale: Required OS locales and their current status
    Locale installed    = the locale is installed correctly
    Set locale failed   = the locale needs to be corrected on the app server
    clidev_DEV_00        de_DE.ISO8859-1                Locale installed
                                  en_US.ISO8859-1                Locale installed
                                        zh_CN                          Locale installed
    P r o f i l e   p a r a m e t e r s :
    zcsa/installed_languages (value sorted):
    clidev_DEV_00        1DE
    Required profile parameter modifications:
    OK     Checked and no inconsistency found.

  • Credit manager & credit Represtative - Auto intimation thru internal mail

    Hi
    In credit Management,Automatic credit control ,if  a customer is blocked due to credit limit ,can these details be send to credit manager & credit representative through internal mail immediatley & automatically .
    can any one guide me through the configuration setting required like message determination ,and credit representative & credit manager determination .
    thanks
    shashi

    Hi Shashi,
    Yes, you can.
    In the standard system output type KRML is provided for this.
    Use the menu path > IMG> Sales & distribution> Basic functions> Credit Management/Risk Management> Credit Management/risk management settings> Enter settings> double click on output types> select output type KRML.
    Make the necessary settings here (like the partner functions- from left hand margin, default values etc.)
    The partner function for credit manager is KM and credit rep is KB
    Next, make sure the output type KRML is part of the output determination procedure (add this output type to the procedure, if not already there) that is assigned to your sales document type.
    Provide your feedback after carrying out theses settings.
    Regards,
    PATHIK

Maybe you are looking for

  • "insufficient bandwidth" error when seemingly all is OK

    after months of flawless iChatAV sessions between me in Los Angeles and my brother in NYC, we recently started getting an error message that there is insufficient bandwidth to make the connection. Yet all tests (and even an in-house visit today from

  • DTW -How to use a Manual Series in PO

    Hi Experts I want to upload open purchase orders through DTW It is working fine if I choose a series. But In my case PO numbers are not sequence so I want to choose manual series in document numbering. For that I choose  -1 which it show when I selec

  • Permissions constanly screwed up....

    i repair permissions on my MBP periodically. recently, i keep getting a long list of incorrect permissions that keep returning no matter how many times i repair - they return after restart, or even if i just repair permissions two times in a row. bel

  • Transfer imessages from mac to iphone

    So a friend deleted all my conversations on my phone as a prank. I do not have a recent backup of my phone, however I do still have all the conversations still on my mac messages app. I was wondering if there was a way to get these conversations back

  • CS6 raw conversions

    CS 6 raw conversions of Nikon Raw files, it makes a blank thumbnail with only the image file name, it does not do this in CS 5, does anyone know the problem?