Error in Inbound Transportation

Hi,
Im working on inbound transportation.
Theseq of t codes followed is as followed.
Me21n
VL31n
VT01n
VI01
VL32n (PGR)
The FRB1 condition type in ME21n is set the Condition type field to B = Delivery costs and In addition, marked with  the Transfer shipment costs field.
I have also added 2 new item categories for handling charges and for CHA charges (for 2 diferent vendors).
So in shipment cost document i get 3 item categories, namely,
1.Transportation cost (for transport. vendor).... apearing at header of Shipment doc also.
2.Handling charges (Vendor 2)
3.CHA charges (Vendor 3)
Whn i do PGR only Transportation cost get effected in Vendor clearing line item and  other two charges are not reflected.
I want Total of all 3 costs to post to vendor clearing.
Currently system is only provideing Vendor clearing line item for only one Trans agent which appears at header of shipment doc.
Kindly advise.
Rajesh

Rajesh,
You have to maintain a condition type into PO per each vendor.
The shipment costs are cumulated for each service provider and transferred to a corresponding condition type of
the purchase order item. If you use only one service provider the complete shipment costs will be cumulated to the po condition type. If you use for instance three different service agents in the shipment cost document, three condition types must be available in order to take over the costs.
david

Similar Messages

  • Error in Inbound Transportation (MIRO)

    Hi,
    Im working on inbound transportation.
    Theseq of t codes followed is as followed.
    Me21n
    VL31n
    VT01n
    VI01
    VL32n (PGR)
    The FRB1 condition type in ME21n is set the Condition type field to B = Delivery costs and In addition, marked with the Transfer shipment costs field.
    I have also added 2 new item categories for handling charges and for CHA charges (for 2 diferent vendors).
    So in shipment cost document i get 3 item categories, namely,
    1.Transportation cost (for transport. vendor1).... apearing at header of Shipment doc also.
    2.Handling charges (Vendor 2)
    3.CHA charges (Vendor 3)
    Whn i do PGR only one of the costs get effected in Vendor clearing line item and other two costs are not reflected.
    I want Total of all 3 costs to post to vendor clearing.
    Also if i maintain same vendor for all three costs then system rightly does total of all costs and posts to vendor clearing.
    Will it be possible to do MIRO for 3 different service vendors against a single PO for planned delivery costs?
    Kindly advise.
    Rajesh

    Rajesh,
    you can process multiple po's for same vendor in MIRO. but this case of Single Po for 3 vendor is not at all possible in MIRO

  • Error while uploading Transport request

    Hi friends,
    Error while uploading transport request to the transport directory,
    we downloaded the trasnport request from one sap system which have a set of developments
    for example downloaded files are;
    control file: K900470.SAD and Data file: R900470.SAD fronm transport directory.
    we are trying to upload the transport to another Sap system
    we have
    Uploaded  the controlling file K900470.sad to the location  /usr/sap/transpad/cofiles/
    Uploaded the controlling file R900470.sad to the location  /usr/sap/transpad/data/
    we tried tro  add in the import queues using  TCODE: STMS
    and trying to import.
    During import we get
    error:
    HALT: unknown dynpro format: d021s_length() returned 0 Please contactthe SAP support.
    End with rc : 16
    Please help me with the problem.
    Thanks in advance
    Deepak

    Hi,
       Check the versions of the two sap systems you are downloading and uploading the transport requests

  • SPP Error - No valid transportation lane between Supplier and LOC1

    Hi
    While running the EOQ and SFT planning service, we get the following error
    "No valid transportation lane between Supplier and LOC1". LOC1 is the entry location for our BOD.
    We have not created any procurement relationships as we are working on a standalone SCM trialbox.
    Appreciate any help/suggestions to resolve this issue.
    Thanks & Best Regds
    Mitesh

    Hi Mitesh,
    You need to have valid transportation lanes from the supplier. Maintain it manually. If I remember correctly it is possible to have External Procurement Relationships in APO only (type 4) and not just contracts, purchasing inforecords or scheduling agreements CIFed from ECC.
    Hope this helps.
    Thanks,
    Somnath

  • 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 while uploading Transport request from SAP ECC6.0 EHP4 to SAP ECC 5.0

    Hi friends,
    Error while uploading transport request to the transport directory,
    we downloaded the transport request from one sap system which have a set of developments(contains screen programs)
    for example downloaded all co files and data files
    control file: K900470.SAD and Data file: R900470.SAP from transport directory.
    we are trying to upload the transport to another Sap system
    we have
    Uploaded the controlling file K900470.sad to the location  /usr/sap/transpad/cofiles/
    Uploaded the controlling file R900470.sad to the location  /usr/sap/transpad/data/
    we tried to add in the import queues using TCODE: STMS and trying to import.
    During import we get the below error:
    HALT: unknown dynpro format: d021s_length() returned 0 Please contact the SAP support.
    End with rc : 16
    Please help me on this
    We are trying to copy from ECC 6.0 EHP4 to SAP 5.0 and SAP 4.7EE
    Thanks & Regards
    Murali Papana

    Did you see that you tried to transport to an older release!! You should have expected such a result.
    Before doing such a thing, you should have looked at SAP notes to see SAP recommendations, if any. And you're lucky, there are ones: [Note 1090842 - Composite note: Transport across several releases|http://service.sap.com/sap/support/notes/1090842]. You need to know that ECC6 corresponds to SAP Basis 7.0, and ECC5 corresponds to SAP Basis 6.40.

  • Vehicle Scheduling Error:Error when creating transport structures in live C

    HI Gurus,
    We have one background job defined for Vehicle scheduling, which shows completed successfully but in log it says that :
    : Error when creating transport structures in liveCache and Not possible to schedule shipment in the planning horizon.
    My planning horizon is for 90 days from current date and demand horizon is for 30 days.
    I have checked the VS profile and i dont find any problem with profile.
    Can you please help me in finding what exaclty went wrong
    Thanks,
    AMol

    Try This..
    1. Open the crystal client on your local machine and import that particular report.
    2. Do Database -> Verify Database. Then refresh the report on your PC and make sure that it returns data as expected.
    3. Export it back to repository and try scheduling it again. You can verify through CMC for Crystal Reports under " Database Configuration" property to make sure it points to the right ODBC.
    Let us know.

  • Error message while transporting the HR role

    All
    I was trying to move my HR role from Dev to QA.
    I got the error message from transport and not sure about it.
    Please let me know if you have any suggestions.
    Invalid organizational level $ORGEH deleted from role Z_ALL_MODULES_EXCEPT_BASIS_HR
    Invalid organizational level $ORGUNIT deleted from role Z_ALL_MODULES_EXCEPT_BASIS_HR
    Errors occurred during post-handling
    PRGN_AFTER_IMP_ACTGROUP_ACGR for ACGR L
    PRGN_AFTER_IMP_ACTGROUP_ACGR belongs to package S_PROFGEN
    The errors affect the following components:
       BC-SEC-USR-PFC (Authorization and Role Management)
    Post-import method PRGN_AFTER_IMP_ACTGROUP_ACGR completed for ACGR L, date and time: 20071011162942

    Pranav,
    You can see a list of all org levels in table USORG
    There are standard SAP programs for adding or deleting org levels
    PFCG_ORGFIELD_CREATE
    PFCG_ORGFIELD_DELETE
    If you want these fields to be maintained as org levels then you need to make sure that you  have created them in all system.
    If you don't want these fields as org levels then you can delete them using the program I listed above.

  • Error while exporting transport requests

    Dears,
    In our PI 7.1 server,configured with CTS +,We are getting below error while exporting transport requests:
    Caused by: com.sap.tc.di.draft.ts.TsExecutionException: Error executing function (check stacktrace for details): EPS_OPEN_OUTPUT_FILE, (service=com.sap.tms)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.TmsJCoExceptions.throwTsServiceException(TmsJCoExceptions.java:74)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.EpsJCoAdapter.openFile(EpsJCoAdapter.java:98)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.AbapEpsOutputStream.open(AbapEpsOutputStream.java:83)
    ... 40 more
    Caused by: com.sap.conn.jco.AbapException: (126) OPEN_FAILED: OPEN_FAILED
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.execute(MiddlewareJavaRfc.java:1492)
    at com.sap.conn.jco.rt.ClientConnection.execute(ClientConnection.java:1065)
    at com.sap.conn.jco.rt.RfcDestination.execute(RfcDestination.java:987)
    at com.sap.conn.jco.rt.RfcDestination.execute(RfcDestination.java:977)
    at com.sap.conn.jco.rt.AbapFunction.execute(AbapFunction.java:300)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.JCoAdapter.executeFunction(JCoAdapter.java:103)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.EpsJCoAdapter.openFile(EpsJCoAdapter.java:78)
    In SE01 it show tp 12 while releasing request.
    Please suggest.
    Shivam
    Edited by: Shivam Mittal on Mar 16, 2010 1:04 PM

    File Permission Issue.

  • Error in Inbound B2B: AIP-50031:  B2B adapter general error: java.lang.Null

    Hi,
    I am getting the following error in inbound B2B - Custom Document over Generic Exchange - SFTP
    Description: B2B adapter general error
    StackTrace:
    Error -: AIP-50031: B2B adapter general error
         at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1900)
         at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2657)
         at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2527)
         at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2482)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:530)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:376)
         at java.lang.Thread.run(Thread.java:534)
    ]]>
    The outbound B2B is working fine; however for the inbound file transfer the file is picked up from the trading partner and this exception occurs.
    Thanks

    Please paste more log in trace 32 mode. What is the name of the file you are receiving? By default B2B expects incoming filename as -
    <FromTPName>UniqueId.<anyFile_Extn>
    For e.g., if partner MarketInc is sending the file then it's name should be - MarketInc_12345.dat or MarketInc_34567.xml
    Make sure that listening channel is not marked as internal as well.
    Regards,
    Anuj

  • Error In inbound Processing IDoc

    Dear All,
    I am facing error while inbound processing of IDoc
    In status record of IDoc following errors are occuring
    Status 60 : EDI: Syntax error in IDoc (mandatory segment missing)
    The segment E1MAKTM has the attribute 'Mandatory' in the syntax description of the basic type MATMAS05 (customer enhancement ). However, the segment is missing in the IDoc
    Status 51: Application Document not posted
    Log details :
    Error : Material Number should be filled.
    When i checked IDoc all 4 fields in E1MAKTM have the values in inbound IDoc.
    Please guide me how to resolve these issues so that IDoc will be posted and Material Master will get created in reciever system.
    Thanks

    Hi Praveen,
    I checked the data in IDoc for this segment.
    It is ok as required in basic message type.
    e.g. the error says that mandetory segment E1MAKTM is missing.
    when i check basic type
    MSGFN : Function
    internal data type : CHAR
    Internal length : 000003 characters
    Position in segment : 001, Offset : 0063. external length : 000003
    SPRAS : Language Key
    internal data type : LANG
    Internal length : 000001 characters
    Position in segment : 002, Offset : 0066. external length : 000001
    MAKTX : Material Description (Short Text)
    internal data type : CHAR
    Internal length : 000040 characters
    Position in segment : 003, Offset : 0067. external length : 000040
    SPRAS_ISO : Language according to ISO 639
    internal data type : CHAR
    Internal length : 000002 characters
    Position in segment : 004, Offset : 0107. external length : 000002
    is information.
    and data in segment of IDoc is
    MSGFN     005
    SPRAS     E
    MAKTX     MANATA2000 TEST ALE
    SPRAS_ISO     EN
    which i think is ok.
    I have no clue why this syntax error is coming.
    Thanks
    Niketan

  • Permanant Error in Inbound Processing in BPM

    Hi All,
    i have done a File1->JDBC(Synch)->File2 scenario using BPM.
    It works fine when i have data in input file ie File1. However when my input file empty my scenario shows green flag in "OutboundStatus" and in queue gives error "Permanant error in Inbound Processing".  When i tried to see the error in details got exception in START_PROCESS....
    After deleting this entry from queue and sending file with data it works fine.....
    I just want to know why it happens....? My input file can be empty as i am using it for triggering the scenario.
    Do i need to do any settings in BPM or scenario to handle this?
    Thanks,
    Atul

    hi atul,
    in the rec step where u set the start process check box, you give the message. it is this message that is used to start the BPM process and not ur input file... the input file is used to trigger ur scenario not ur process. therefore u have exception in 'start process'.
    hope it helps.
    regards,
    latika.

  • Error when generating transport dataset (transfering queries with RSAQR3TR)

    Hi!
    I try to transfer queries from one system to other.
    Systems are not connected with each other, so no transports are available.
    I am doing like this:
    - running program RSAQR3TR in "old" system
    - downloading a query as TXT file into my PC
    - running program RSAQR3TR in "new" system
    - uploading TXT file into "new" system and get a message - "Error when generating transport dataset"
    I have only query and user group in "old" system. Is this information enough to transfer them to "new" system?
    <b><REMOVED BY MODERATOR></b>
    Mindaugas
    Message was edited by:
            Alvaro Tejada Galindo

    Hi,
    Step 1. Run RSAQR3TR in 'old' system. Select EXPORT and specify the objects to be transported. 
    (System includes these in an automatically created transport request) 
    Step 2. Release this transport and request it be transported to 'new' system. 
    (This results in the entries being populated in transport table AQTDB in 'new' system). 
    Step 3. Run RSAQR3TR in 'new' system. Select IMPORT and tick the Overwrite checkbox. Specify the transport number in the field labelled 'dataset with imports'. 
    (RSAQR3TR gives the message that stuff has been imported OK). 
    Step 4. if you still couldn't find the queries, so ran RSAQR3TR one more time, this time specifying 'Copy Standard Area -> Global Area'
    Regards
    Sudheer

  • Error in inbound q in CRM System

    Hello,
    The data sent from R/3 system to BBP CRM 4.0 has errors for the q R3AD_DNL_COND_A512. ie we are having errors for the conditions table and also for R3AI_CUSTOMER_MAIN q in inbound q of CRM system. R/3 is 4.6c.
    Error in R3AD_DNL_COND_A512 : Status of q is sytem fail and error is <b>"No entry in SMOFRSTAT with this REF_ID!"</b>
    Error in R3AI_CUSTOMER_MAIN :Status of q is sytem fail and error is "<b>Error in Mapping (Details: transaction SMW01)"</b>..
    please help.

    Hi,
    - a prerequisite for downloading conditions is a successful download of the condition customizing. You can check that in transaction CND_MAP_LOG_DISPLAY.
    - for analysing the R3AI_CUSTOMER_MAIN error the inbound queue is of no help. Please analyse the error information for the related bdoc in transaction SMW01.
    (by the was: the correct forum for your question would be "Customer Relationship Management (CRM) - General & Framework " )
    Kind regards,

  • How to Identify EDI errors in inbound IDocu0092s?

    hi,
    I just want to know how to identify EDI errors in inbound IDoc’s?

    Hi
    Ref this links
    http://www.hibcc.org/EBUS/editemplates.htm
    /people/bla.suranyi/blog/2006/06/08/sap-xi-supports-edifact
    /people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    /people/paul.medaille/blog/2005/11/17/more-on-the-sap-conversion-agent-by-itemfield
    /people/sravya.talanki2/blog/2005/12/02/manipulating-idoc-control-records-from-payload
    /people/michal.krawczyk2/blog/2005/09/01/xi-idoc-adapter--edidc40--demystified
    /people/ravikumar.allampallam/blog/2005/02/28/creating-sales-order-through-idoc
    With Seeburger we can conver to edi format to XML
    seeburger doc
    http://www.stylusstudio.com/edi/XML_to_X12.html
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b0b355ae-0501-0010-3b83-8f2bb566fa47
    Details on XI EDI adapter from seeburger
    Doc for Conversions-
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
    SAP Adapters
    EDI with XI
    http://www.seeburger.com
    http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/SEEBURGER_SAP_Adapter_engl.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.sap.com/france/company/events/2006/02-01-Automotive-Seeburger.pdf
    http://h41123.www4.hp.com/presentations/ISUG/XISeeBurger.ppt
    http://www.sap.com/asia/company/events/nwtechdays/presentation/australia-slides/Pre-Built_Integration.pdf
    Thanx
    Bommireddy.Sridhar

Maybe you are looking for