Error throws in "BAPI_GOODSMVT_CREATE"

Hey gurus,
After i am executing this bapi "BAPI_GOODSMVT_CREATE", in the error table "return" i am getting the messages like"Posting only possible in periods 2007/11 and 2007/10 in company code 1003".
Could any one of you calrify this asap?

Looks like your posting periods are not open.. check your posting date
or
please contact your functional consultant..
there is a report  which can open the posting periods for you..The program name should be (RMMPERI) . .but contacting your functional consultant is the best thing to do.
Message was edited by:
        Srihari Hebbar

Similar Messages

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException

    hello all,
    Actually , i had raised this quetion in past but had not satisfied with the answers.
    explaining in brief this time so , can get actual cause of this.
    I have two reports subscriptions on same time ..
    subscriptions executed fine on some day and  throws error sometimes ..
    have a look at log files..
    ---events started .... imporatant events status as per my understanding
    library!WindowsService_1!8d0!02/07/2015-10:30:04:: i INFO: RenderForNewSession('/EDP_Reports/HR And Admin/HR_yesterday_Missing_Punch_Report_005')
    library!WindowsService_1!ab0!02/07/2015-10:30:04:: i INFO: RenderForNewSession('/EDP_Reports/Sales/SA_Stagewise_Completed_Files_Report-002')
    setting default values Configuarions..
    ---library!WindowsService_1!ab0!02/07/2015-10:30:05:: i INFO: Initializing ChunkSegmentSize to default value of '32320' Bytes because it was not specified in Server system properties.
    library!WindowsService_1!8d0!02/07/2015-10:30:06:: i INFO: Initializing ResponseBufferSizeKb to default value of '64' KB because it was not specified in Server system properties.
    library!WindowsService_1!ab0!02/07/2015-10:30:09:: i INFO: Initializing SessionTimeout to '600' second(s) as specified in Server system properties.
    library!WindowsService_1!8d0!02/07/2015-10:30:12:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: , An error occurred within the report server database.  This may be due to a connection failure,
    timeout or low disk condition within the database.;
    emailextension!WindowsService_1!8d0!02/07/2015-10:30:12:: e ERROR: Error sending email. Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: An error occurred within the report server database.  This may be due to a connection
    failure, timeout or low disk condition within the database.
    ---> System.Data.SqlClient.SqlException: Transaction (Process ID 59) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
    notification!WindowsService_1!8d0!02/07/2015-10:30:12:: e ERROR: Error occured processing subscription 2dc49fc1-f7e2-4bd6-a0b9-5ee846db6906: Failure sending mail: An error occurred within the report server database.  This may be due to a connection
    failure, timeout or low disk condition within the database.Mail will not be resent.
    please, explain me the cause why this is happening is it deadlock or what??
    and are my default value stated above are effiecient to perform tasks ..
    i.e. SessionTimeout to '600' second(s) etc.
    help must appreciated  ..
    Dilip Patil..

    Hi Dilip,
    The error message "An error occurred within the report server database. This may be due to a connection failure, timeout or low disk condition within the database", the issue can be caused by many factors, usually occurs due to large size
    or bad rows of some tables in the ReportServerTempDB database.
    If we view the script of the CleanExpiredSessions stored procedure of the ReportServer database, we can see that it first grabs 20 records from the ReportServerTempDB.dbo.SessionData table and then removes those from the ReportServerTempDB.dbo.SessionLock
    table. If there are bad rows in the SessionData table, the CleanExpiredSessions functionality may encounter an issue. Here, I suggest that you clean the SessionData table as well as the SessionLock table, and check the issue again.
    Please also try to apply the latest service pack according to your SQL Server Reporting Services version.
    Did the subscription failed many times? If possible, please also try to recreate the subscription.
    Similar thread for your reference:
    SSRS 2008: connection failure, timeout or low disk
    condition within the database. (rsReportServerDatabaseError)
    Inconsistent EMail Subscription
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Lookup error throwing capabilities

    Hi Gurus,
    Help me by giving some good solutions for the below requirement:-
    I am using a JDBC lookup in my scenario. Now, I want to implement some error throwing capabilities in the same.
    For eg:- If the lookup was not excuted because of the connection failure, or the data was not fetched as a result of the lookup, then some exception should come up in the monitoring.
    Thanks in advance.
    Neetesh

    Hi,
    Here is some information about alerts ;):
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
    /people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
    /people/ginger.gatling/blog/2005/12/02/innovative-ways-to-use-alerts
    /people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    /people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
    http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b7f2243d711d1893e0000e8323c4f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/68/253239bd1fa74ee10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/f2bbc8142c11d3b93a0000e8353423/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/5d/2166e6a91d11d188de0000e8216438/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/05/bb223905b61b0ae10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/33/4a773f12f14a18e10000000a114084/frameset.htm
    Regarding this error, please first import archive with this class. Afterwards import correct package in UDF. And of course remember that in java you end line with ; not .
    Regards,
    Wojciech

  • Error while calling BAPI_GOODSMVT_CREATE

    Hi,
    When i am running a BAPI(BAPI_GOODSMVT_CREATE) it is throwing an error.
    error:The FM MB_CREATE_GOODS_MOVEMENT is called up for second time.After it was called up for the first time Commit work was not done.
    But i called BAPI_Transaction commit after BAPI_GOODSMVT_CREATE but even then it was throwing error.
    Helpful answer will be rewarded.

    Hi Prince,
    how do you call the BAPI? (Via a function module which calls the BAPI)
    You can also use the function module DB_COMMIT, which execute a commit with native SQL.
    Debugging via external breakpoints should also be done to isolate the error.
    Please give me more details.
    Best Regards,
    Marcel

  • Error while using BAPI_GOODSMVT_CREATE

    Hi friends,
                    When I do a 301 movement from MIGO transaction using BAPI BAPI_GOODSMVT_CREATE ..  I m getting an error "The plant material data is locked by the user".. Can you help me out to solve this and post the goods movement.. it is very urgent requirement... Will reward points for helpfull answers,
    Thanks in advance,
    Rama..

    Hi ,
    Check the Following :
    Is your material is being edited by some user via MM02 etc.
    Can you try calling the BAPI FM in Background task ? I guess that might Solve the problem ?
    <b>REWARD IF USEFUL</b>
    Regards,
    Saket Sharma
    null

  • Error while using BAPI_GOODSMVT_CREATE wiht movement type 311.

    Hi All experts,
    i am geting error msg, while using BAPI_GOODSMVT_CREATE wiht movement type 311.
    the error msg is " For reservation 0000443815 0000, no movements can be posted".
    Here is my code.
    IF I_ZMM_S_MBIB_LOT[] IS NOT INITIAL.
    *moving posting date and document date  to header
        GOODSMVT_HEADER-PSTNG_DATE = ZMM_S_MBIB_311-BUDAT.
        GOODSMVT_HEADER-DOC_DATE   =  ZMM_S_MBIB_311-BUDAT.
        LOOP AT I_ZMM_S_MBIB_LOT WHERE MENGE NE '0'.
          IF I_ZMM_S_MBIB_LOT-IND = 'X'.
    *moving material and plant ,stge_loc,qty and movement type  to header
            GOODSMVT_ITEM-MATERIAL       = I_ZMM_S_MBIB_LOT-MATNR.
            GOODSMVT_ITEM-PLANT          = I_ZMM_S_MBIB_LOT-WERKS.
            GOODSMVT_ITEM-BATCH          =  I_ZMM_S_MBIB_LOT-CHARG.
            GOODSMVT_ITEM-STGE_LOC       = I_ZMM_S_MBIB_LOT-SLGORT.
            GOODSMVT_ITEM-MOVE_TYPE      = '311'.
            GOODSMVT_ITEM-ENTRY_QNT      = I_ZMM_S_MBIB_LOT-MENGE.
            GOODSMVT_ITEM-ENTRY_UOM      = I_ZMM_S_MBIB_LOT-MEINS.
            GOODSMVT_ITEM-MOVE_MAT       = I_ZMM_S_MBIB_LOT-MATNR.
            GOODSMVT_ITEM-MOVE_PLANT     = I_ZMM_S_MBIB_LOT-RWERKS.
            GOODSMVT_ITEM-MOVE_BATCH     = I_ZMM_S_MBIB_LOT-UMCHA.
            GOODSMVT_ITEM-MOVE_STLOC     = I_ZMM_S_MBIB_LOT-UMLGO.
            GOODSMVT_ITEM-RESERV_NO      = I_ZMM_S_MBIB_LOT-RSNUM.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
            EXPORTING
              GOODSMVT_HEADER               = GOODSMVT_HEADER
              GOODSMVT_CODE                 = '04'
          TESTRUN                       = ' '
          GOODSMVT_REF_EWM              =
            IMPORTING
          GOODSMVT_HEADRET              =
              MATERIALDOCUMENT              = MATERIALDOCUMENT
              MATDOCUMENTYEAR               = MATDOCUMENTYEAR
            TABLES
              GOODSMVT_ITEM                 = GOODSMVT_ITEM
          GOODSMVT_SERIALNUMBER         =
              RETURN                        = RETURN.
          GOODSMVT_SERV_PART_DATA       =
          EXTENSIONIN                   =
        ELSE.
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Feb 23, 2011 11:46 AM

    Hi Sachin,
    Pass the Item Number of Reservation to GOODSMVT_ITEM-RES_ITEM .
    Regards
    DKS

  • Error throwing while creating sales order

    Dear all,
    While on sales order creation,We have entered order type,sales organization,distribution channel,divison,
    on entering sold to party,presssing enter,error is throwing as
    No customer master record exists for sold-to party
    actually customer master record is already created,
    We need to extend the sales area then only system is allowing to create sales order,
    Is there is any setting missing in configuration ?
    Thanks
    Jeyakanthan

    hi,
    can be done in two ways
    1, only for the paticular customer
    goto XD01 and extend the customer by entering new sales area above
    and the already exisisting sales area in the reference
    2,common distribution channel and common division(this is for all the customer created in that particular sales area)
    IMG>sales and distribution>master data
    regards
    senya

  • Error while calling BAPI_GOODSMVT_CREATE back to back

    hi,
    all
    i am calling two back to back bapi, BAPI_GOODSMVT_CREATE  1st for movement type 313 and then for 315 for same serial nos
    (100 in nos.) I have even used bapi_transaction_commit with parameter wait = 'X', after  the 1st bapi(313).  The first BAPI gets executed sucessfully. But For the second BAPi is gives an error "BA stocK in transfer Exceeded By 27 " . I have put the correct Storage location, Plant and other details. When I run The code for 10 records it gets executred successfully But for more records i get the error.

    HI Abhishek,
    Were you able to solve the issue mentioned above? Let me know your inputs as i have a similar scenario for which im looking for alternatives.
    Appreciate your help in advance.
    Amulya

  • Portal Runtime error - throws exception

    Hi
    I'm having difficulty getting our MDM repository (Employee). I keep getting a portal exception when trying to view the repository using iView.
    I am able to connect to MDM Customers. I call Result Set of customers using an iView. I tried doing same for Employees, but it is not working and throwing an exception.
    The following exception is logged:
    Exception ID:12:07_06/06/07_0086_17794650
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/com.sap.pct/specialist/com.sap.pct.mdm.appl.mdm_550/com.sap.pct.mdm.appl.templates/com.sap.pct.mdm.appl.templates.iviews/com.sap.pct.mdm.appl.result_set_editor
    Component class : com.sap.pct.mdm.tech.editors.ResultSetEditor
    User : Administrator
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.NullPointerException
    at com.sapportals.htmlb.Container.addComponent(Container.java:49)
    at com.sapportals.admin.wizardframework.components.Group.getGroup(Group.java:39)
    at com.sapportals.admin.wizardframework.components.Group.getDisplay(Group.java:45)
    at com.sap.portal.admin.editor.ui.EditorGroup.getDisplay(EditorGroup.java:46)
    at com.sapportals.admin.wizardframework.components.GridContainer.getGrid(GridContainer.java:182)
    at com.sapportals.admin.wizardframework.components.GridContainer.getDisplay(GridContainer.java:210)
    at com.sap.portal.admin.editor.ui.PELayout.doLayout(PELayout.java:145)
    at com.sap.portal.admin.editor.pane.OutPane.doBeforeDisplay(OutPane.java:96)
    at com.sap.portal.admin.editor.pane.EditorPaneWrapper.myDoBeforeDisplay(EditorPaneWrapper.java:95)
    at com.sapportals.admin.wizardframework.components.FlowContainer.doBeforeDisplay(FlowContainer.java:124)
    at com.sapportals.admin.wizardframework.core.WizardInstance.doPre(WizardInstance.java:305)
    at com.sapportals.admin.wizardframework.core.WizardInstance.doWizard(WizardInstance.java:242)
    at com.sap.portal.admin.editor.Editor.doWizard(Editor.java:605)
    at com.sap.portal.admin.editor.Editor.run(Editor.java:150)
    at com.sap.portal.admin.editor.AbstractEditorComponent.doContent(AbstractEditorComponent.java:59)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 29 more

    Hi Mehul & Nirmal
    Please find the solution here:-
    EP7 "Personalize - User Mapping" iView not working
    Regards
    Navneet
    Please revert incase of doubt.

  • Error when executing BAPI_GOODSMVT_CREATE

    Hi experts when iam trying to execute BAPI_GOODSMVT_CREATE..with GM Code : 03 with all required values in GOODSMVT_ITEM..iam getting a error when i execute it..
    error is like this :
    E M7                   349 Content of order 60003537: QS300 transferred to interface (IMSEG): 100-310
    pls help me out from this issue & let me know the procedure. Thank You in advance.

    Hi,
    This is what the long text of the message states:
    NA M7349
    Short Text
    Content of order &: & transferred to interface (IMSEG): &
    Diagnosis
    When calling the function module MB_CREATE_GOODS_MOVEMENT or the BAPI GoodsMovement.CreateFromData (BAPI_GOODSMVT_CREATE) to post a goods receipt for a production order, there are differences between the interface data and the order data.
    Example: The order was created for plant 0001, but plant 0002 is passed on in the interface.
    The system checks this for the material and the order item.
    System response
    Due to this difference, the system cannot post the goods receipt.
    Procedure
    Check the data in the interface (IMSEG-WERKS, IMSEG-AUFNR). If necessary, correct the plant or the order number in the interface.
    So check your data.
    Regards,
    Robert

  • RNIF STK error throwing

    Hi All,
    Please help me out. I m testing RNIF STK. It is throwing follwing error. I have given correct login detils. With these login detils I checked url seperately which is mentioned in STK it is working and it is  showing message, but in STK it is throwing error.
    JavaException :com.rosettanet.rnstt.outbound.RosettanetException: BAD HTTP RESPONSE CODE RECEIVED: HTTP/1.1 401 Unauthorized
    Trace:
    com.rosettanet.rnstt.outbound.RosettanetException: BAD HTTP RESPONSE CODE RECEIVED: HTTP/1.1 401 Unauthorized at com.rosettanet.rnstt.outbound.Outbound.checkResponseCode(Outbound.java:342) at com.rosettanet.rnstt.outbound.Outbound.checkResponse(Outbound.java:306) at com.rosettanet.rnstt.outbound.Outbound.sendMessage(Outbound.java:284) at com.rosettanet.rnstt.controller.TestController.handleSocketOutbound(Unknown Source) at com.rosettanet.rnstt.controller.TestController.handleOutbound(Unknown Source) at com.rosettanet.rnstt.controller.TestController.runTestCases(Unknown Source) at com.rosettanet.rnstt.controller.TestController.run(Unknown Source) at com.rosettanet.rnstt.controller.TestController.main(Unknown Source)

    Hi Kum,
    Check in the "TomcatRN\webapps\rosettanetcredentials" file for the user ID and password mentioned. Make sure the user has assigned with the role "SAP_XI_IS_SERV_USER".
    Regards
    Harsha

  • Javascript error throws the portal theme configuration page

    General Description: Javascript error and jump to the portal theme
    configuration page
    EP: NW04s SP12 including KMC
    We have a problem when we entry to the portal, a javascript
    error happens and immediately jumps to the portal theme configuration
    page. We entry at the portal with a user that have assigned the next groups.
    LR_Administrador LR_Administrador Base de datos UME
    Everyone Built-in Group Everyone Adaptador de grupo integrado
    Authenticated Users Built-in Group Authenticated Users Adaptador de
    grupo integrado
    The group LR_Administrador have assigned this role
    Nombre unívoco:
    pcd:portal_content/kof.com.mx.EP6_FLD_KOF/kof.com.mx.FLD_MX_LR/kof.com.mx.FLD_MX_LR_Roles/kof.com.mx.LR_MX_ROL_Administrador
    Nombre de visualización: kof.com.mx.LR_MX_ROL_Administrador
    Ubicación:
    pcd:portal_content/kof.com.mx.EP6_FLD_KOF/kof.com.mx.FLD_MX_LR/kof.com.mx.FLD_MX_LR_Roles
    Descripción: Libro Rojo
    ID unívoco: ROLE.PCD_ROLE_PERSISTENCE.38yt+Psq/fFQuE3Uxdt52Azfdpg=
    The role LR_MX_ROL_Administrador, have assigned only one page called:
    LR_MX_PAG_Edicion
    This page contains a KM Navigation iview.
    When we entry with this user, the browser show us this javascript error:
    Linea: 107
    Car: 116
    Error: 'children' es nulo o no es un objeto
    Codigo: 0
    URL: http://fedbdvep:50000/irj/portal
    And immediately show the portal theme configuration page.
    We need that the user see the page assigned, but this error shows him
    always the portal theme configuration page. This kind of error happens with
    other roles too. We've found a workaround
    for this situation, doing click on the first level navigation, the
    LR_MX_PAG_Edicion page shows normally.
    Thank for any help.
    Regards
    Jose

    Thanks for your update, we have resolved the issue with this help. Very thankfull.
    regards,
    kishore

  • BAPI Error throw.

    Can any one suggest me about below error in BAPI.
    "The interval 07 is not internal"
    I am using " BAPI_MATERIAL_SAVEDATA " to update some basic fields. while debugging i could see the above error while calling funcion module 'MATERIAL_MAINTAIN_DARK' in the above standard BAPI.
    If anyabodys knows please suggest me how  to correct it.

    In addition to naveen:
    In SAP you define number ranges for all sorts of object like materials, business partner etc. in transaction SNRO. When you create a material you can use a certain number range interval (01 from 00000 - 99999, and 02 from 10000 - 19999 etc.) Further, you can customize that NOT the internal number range should be used, but rather use the number from external application which you can also pass via the BAPI.
    So in transaction SNRO check if number range interval 07 for materials is present or not. Obviously not, otherwise this message would not be issued.

  • Error throwing  when executing netca

    Good Morning to all ;
    Today i tried to execute netca and i got following error.
    I did n't set display variable.  Why this error occured ?
    Oracle Net Services Configuration:
    Xlib: connection to ": 0 . 0" refused by server
    Xlib: No protocol specified
    java.lang.NullPointerException
    at oracle.ewt.lwAWT.BufferedApplet.<init>(Unknown Source)
    at oracle.net.ca.NetCA.<init>(Unknown Source)
    at oracle.net.ca.NetCA.main(Unknown Source)
    Oracle Net Services configuration failed. The exit code is -1
    Thanks ..
    Edited by: 969352 on Mar 7, 2013 10:56 AM

    969352 wrote:
    Really i cant answer your questions because i executed that command in another one system.
    Right now i can't access that system. So i asked information about display variable settings ..
    Thanks sb92075my car won't go.
    tell me how to make my car go.
    I don't know if you did error of commission (did something wrong)
    or you did error of omission (neglected to do something that must be done)
    since I don't know exactly what you did do.
    Yes, DISPLAY variable needs to have proper value, but what that value really needs to be
    varies based upon what you did & the whole environment.
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

Maybe you are looking for

  • WEB.SHOW_DOCUMENT Error

    hiiii using (Developer 10g R2, Win xpSp2) i have created a simple report on EMP table of scott schema (select * from emp) and saved the emp_rep on(D:\reports\MODULE2.rdf) and i have built a Form with a button that is when pressed to RUN this report i

  • NOT able to compile servlet and EE java files

    hi i am not able to compile java files of servlet it is showing cannot resolve symbol for servlet classes since i have installed tomcat j2sdk1.4.2_06 and also facing problem with the classpath since i have to set the classpath everytime as i have alr

  • Cache merge in JTA transaction

    I'm looking at code that attempts to do the following: 1. Using JTA, atomically: a. Write changes to an object to a database using Toplink. b. Post a message to a JMS topic. (The topic and the connection pool are both configured to use XA, and Toplin

  • Can't specify more than  -Xmx3648m on a 64-bit box?

    Hi, I'm running a memory-intensive application on a Linux RedHat with 64-bit architecture and 16GB of RAM. However, when I launch my Java process, I can only specify maximum -Xmx3648m of memory. Specifying greater values results in the following erro

  • Join on 3 tables using inner join.

    Hi friends can one one correct the below code and send me back. its showing some error. SELECT a~matnr            a~werks            b~maktx            c~prctr            c~bklas            C~stprs            c~peinh           INTO TABLE it_detail