<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-142328029155926824</id><updated>2024-09-08T21:47:46.548-07:00</updated><category term="SAP4u.net"/><category term="Org Structures"/><category term="SAP SD"/><category term="PDF Forms"/><category term="Requirements"/><category term="SAP ABAP"/><category term="SAP Modules"/><category term="issues"/><title type='text'>SAP4u.net</title><subtitle type='html'>DEMO Version </subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-967205916135734409</id><published>2015-12-29T12:24:00.001-08:00</published><updated>2015-12-29T12:24:20.776-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="issues"/><category scheme="http://www.blogger.com/atom/ns#" term="PDF Forms"/><category scheme="http://www.blogger.com/atom/ns#" term="Requirements"/><category scheme="http://www.blogger.com/atom/ns#" term="SAP ABAP"/><title type='text'>Disable print button in SAP PDF form </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2Yc1BzcQqmos1hG2hkAmaNcAOHh5yqZdNUVmWyGfPcVONxZKaGazb9vYjms7Bfnt2rVd0KD258uO-V5VRF9qjGpdc2s9cQaXegHITrigA8Kch05fY5tUc1q6pYqe4U5zysf4Zl39bQIif/s400/publishing.jpg&quot; width=&quot;400&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
In this topic you will learn the way to disable print button in the PDF form that generated from any printing program on SAP, Also by the same way will make your PDF form file secured one and after saving the user will not print it.&lt;br /&gt;
&lt;br /&gt;
You need first to indicate the printing program which generate the PDF form,&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;For example:&lt;/b&gt;&lt;br /&gt;
If your PDF form generated from T-code VF02 ( billing ), you need to indicate the output type for this PDF.&lt;br /&gt;
&lt;br /&gt;
1- Open T-code NACE,&lt;br /&gt;
2- Choose V3 Billing and choose output types&lt;br /&gt;
3- Choose the output type that assigned for your PDF form then choose processing routine&lt;br /&gt;
4- You will find the program beside the print output medium.&lt;br /&gt;
&lt;br /&gt;
If you have the access key for this program, You will have the ability to change it, But if you do not have the access key, You have to copy the standard program and create your own one Z Program to be able to change in.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: orange;&quot;&gt;How to secure the PDF form and close/disable the printing function ?&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
Open the Program in T-code : SE38, and search for this functional module FP_JOB_OPEN,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;you will find it like that&lt;br /&gt;
&lt;br /&gt;
CALL FUNCTION &#39;FP_JOB_OPEN&#39;&lt;br /&gt;
CHANGING&lt;br /&gt;
&amp;nbsp;ie_outputparams = ls_outputparams&lt;br /&gt;
EXCEPTIONS&lt;br /&gt;
&amp;nbsp;OTHERS = 1.&lt;br /&gt;
&lt;br /&gt;
put the following code before every call for this function:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; ls_outputparams&lt;span class=&quot;L0S70&quot;&gt;-&lt;/span&gt;noprint&amp;nbsp;&lt;span class=&quot;L0S55&quot;&gt;=&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;L0S33&quot;&gt;&#39;X&#39;&lt;/span&gt;&lt;span class=&quot;L0S55&quot;&gt;.&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;
then active your program, you will find that the printing icon was disabled and the PDF form Became secured from printing.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMrFqf8pgWoRxAUYL_aQbFrbNnKAIsP7xEwdMNLbcErI7u6Tp0SNWnc1y-ztNfZoQlHSNNj0AO0WArmv-3Ek-5fYsTqvoeQ8enzKau2AxbWKZhAI3V-0Ckk57WKJsBEN3yZvfbH53QJVCC/s1600/2015-12-29_22-08-23.png&quot; imageanchor=&quot;1&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;52&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMrFqf8pgWoRxAUYL_aQbFrbNnKAIsP7xEwdMNLbcErI7u6Tp0SNWnc1y-ztNfZoQlHSNNj0AO0WArmv-3Ek-5fYsTqvoeQ8enzKau2AxbWKZhAI3V-0Ckk57WKJsBEN3yZvfbH53QJVCC/s320/2015-12-29_22-08-23.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/967205916135734409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/12/disable-print-button-in-sap-pdf-form.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/967205916135734409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/967205916135734409'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/12/disable-print-button-in-sap-pdf-form.html' title='Disable print button in SAP PDF form '/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2Yc1BzcQqmos1hG2hkAmaNcAOHh5yqZdNUVmWyGfPcVONxZKaGazb9vYjms7Bfnt2rVd0KD258uO-V5VRF9qjGpdc2s9cQaXegHITrigA8Kch05fY5tUc1q6pYqe4U5zysf4Zl39bQIif/s72-c/publishing.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-5295476702649157918</id><published>2015-09-18T07:57:00.000-07:00</published><updated>2015-09-18T08:01:16.329-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Org Structures"/><category scheme="http://www.blogger.com/atom/ns#" term="SAP SD"/><title type='text'>The relationship (Assignment) between organizational structure units in Sales and Distribution </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;134&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIA3X9jFQYYfkNv8tLJrYZuHel4mD1TfF4BMdLM8Funbx0ONLmwZI9Km7IJ1JB0rj4K9oYxJfEbt3ce4xV4KCXaR2AGTubzNwowJrm_Gw8AvO6kXygzcf-I-IREn7V1b9jkUfC1757Vkau/s320/SAP_SD.png&quot; width=&quot;320&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
In this topic you will learn very important thing about how the organizational structure in Sales and Distribution module in SAP built and how it works properly based on the right assignment between the organizational structure / units.&lt;br /&gt;
&lt;br /&gt;
Also you will learn the relationship between the organizational units and each other from database point of view, &lt;b&gt;for example&lt;/b&gt; if it was many  to many or one to many or one to one.&lt;br /&gt;
&lt;br /&gt;
You will know how this assignment process works theoretically, But after you learn it  you can learn also how to build SD structure on SAP system step by step approach.&lt;br /&gt;
&lt;br /&gt;
&lt;b style=&quot;background-color: orange;&quot;&gt;&lt;span style=&quot;color: white;&quot;&gt;After reading this topic we will gain this knowledge:&lt;/span&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
- The relationship/assignment between organizational units in SD module&lt;br /&gt;
- Example about the assignment in SD structure to understand&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;background-color: orange;&quot;&gt;&lt;span style=&quot;color: white;&quot;&gt;For Revision:&lt;/span&gt;&lt;/span&gt; Here is the Organizational units in SD module :&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
Company code&lt;br /&gt;
Sales Area&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Sales Organization&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Distribution Channel&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Division&lt;br /&gt;
Sales Office&lt;br /&gt;
Sales Group&lt;br /&gt;
Sales Person&lt;br /&gt;
Plant&lt;br /&gt;
Storage Location&lt;br /&gt;
Shipping point&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;Company Code / Sales Organization&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
- Each Company code can be assigned to several Sales Organizations but each Sales organization can only be assigned to only one Company code, So the relationship here is &lt;u&gt;Company code - Sales Organization ( One To Many )&lt;/u&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Company Code   1    -----    M  Sales Organization&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;&amp;nbsp;Distribution Channel / Sales Organization&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&amp;nbsp;- Each Distribution Channel must be assigned to at least one Sales Organization to be able to be used in SD module, So the relationship here is &lt;u&gt;Sales Organization Distribution Channel ( Many To Many )&amp;nbsp;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;br /&gt;&lt;/u&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Distribution Channel   M    -----    M  Sales Organization&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;&amp;nbsp;Division / Sales Organization&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
- Each Division must be assigned to at least one Sales Organization to be able to be used in SD module, So the relationship here is&lt;u&gt; Sales Organization Division ( Many To Many )&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Division   M    -----    M  Sales Organization&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;Sales Area Combination&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&amp;nbsp;- After the Second Assignment (Division/Distribution Channel - Sales Organization ) you can maintain all possible combinations for &lt;u&gt;Sales Area ( Sales Organization + Distribution Channel + Division )&amp;nbsp;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;Sales Area /Sales Office&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
- Sales Office can be assigned to Several Sales Areas and vice versa, So the relationship between Sales Area and Sales Office ( Many To Many )&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Sales Area  M    -----    M  Sales Office&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;Sales Group /Sales Office&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
- Sales Group can be assigned to Several Sales Offices and vice versa, So the relationship between &lt;u&gt;Sales Group and Sales Office ( Many To Many )&amp;nbsp;&lt;/u&gt;&lt;br /&gt;
&lt;u&gt;&lt;br /&gt;&lt;/u&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Sales Group  M    -----    M &amp;nbsp;Sales Office&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;Plant / Storage Location&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
- Plant can be assigned to several Storage Locations but each Storage Location can be only assigned to one Plant, So the relationship between &lt;u&gt;Plant and Storage Location ( One To Many )&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Plant  1    -----    M Storage Location&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444;&quot;&gt;Plant / Shipping Points&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
- Plant can be assigned to several Shipping Points and vice versa, So the relationship between &lt;u&gt;Plant and Shipping Point ( Many To Many )&amp;nbsp;&lt;/u&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Plant  M    -----    M Shipping Point&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b style=&quot;background-color: orange;&quot;&gt;&lt;span style=&quot;color: white;&quot;&gt;Notes :&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
The relationship between Sales Area and Company Code comes from the sales Organization that found in Sales Area combination.&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/5295476702649157918/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/09/relationship-assignment-sd.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/5295476702649157918'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/5295476702649157918'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/09/relationship-assignment-sd.html' title='The relationship (Assignment) between organizational structure units in Sales and Distribution '/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIA3X9jFQYYfkNv8tLJrYZuHel4mD1TfF4BMdLM8Funbx0ONLmwZI9Km7IJ1JB0rj4K9oYxJfEbt3ce4xV4KCXaR2AGTubzNwowJrm_Gw8AvO6kXygzcf-I-IREn7V1b9jkUfC1757Vkau/s72-c/SAP_SD.png" height="72" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-3087097489109163076</id><published>2015-09-15T14:14:00.002-07:00</published><updated>2015-09-15T14:14:59.749-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Org Structures"/><category scheme="http://www.blogger.com/atom/ns#" term="SAP SD"/><title type='text'>Sales and Distribution SD Structure Example </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
In this topic we will discuss an example about Sales and distribution SD structure in SAP and how to use the organizational units/elements found in SAP SD module to map any sales department case in any company.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;4 Revision:
Here is the Organizational  units in SD module :&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;color: #f1c232;&quot;&gt;*   4 more details click on the element that you want to know about&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
 Company code&lt;br /&gt;
 Sales Area&lt;br /&gt;
&amp;nbsp; Sales Organization&lt;br /&gt;
&amp;nbsp; Distribution Channel&lt;br /&gt;
&amp;nbsp; Division&lt;br /&gt;
 Sales Office&lt;br /&gt;
 Sales Group&lt;br /&gt;
 Sales Person&lt;br /&gt;
 Plant&lt;br /&gt;
 Storage  Location&lt;br /&gt;
 Shipping point&lt;br /&gt;
&lt;br /&gt;
&lt;b style=&quot;background-color: orange;&quot;&gt;&amp;nbsp;&lt;span style=&quot;color: white;&quot;&gt;Example:&lt;/span&gt;&lt;/b&gt;
International group of companies in 3 countries (England - Germany - France) that already implemented a SAP system for its operations, This group plans to open new company in Italy  for distributing and selling its products there, The selling process in Italy will be controlled by only one department,  All products will be sold by different ways direct selling / whole-selling / Retailing / Online, The company classify its products into three groups ( Phones - TVs - Others ).&lt;br /&gt;
&lt;br /&gt;
The Company Strategy is to assign the selling process based on the group of product and the geographical place north/south, and then assign the sales duties to groups based on the way of selling and distributing ( direct selling or online and so on ).&lt;br /&gt;
There are two big warehouse for distributing one for the north and the other for the south and all deliveries done in the same way from those both warehouses.&lt;br /&gt;
&lt;br /&gt;
&lt;b style=&quot;background-color: orange;&quot;&gt;&lt;span style=&quot;color: white;&quot;&gt;&amp;nbsp;The SD Structure In SAP:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&quot;International group of companies in 3 countries (England - Germany - France) that already implemented a SAP system for its operations, This group plans to open new company in Italy  for distributing and selling its products there&quot;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
- There were 3 company codes England, Germany, France and the new one will be Italy.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;155&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaHd5uWqATs2s1QwI2sPah20zYYPl5fRkaszhrOnEXbYUfuFsDbWSc3iTezfI0p8cEWOypdcV59GJwYN3bA_i8kNClly7blE9AqYYPKrmD8_w-23d31I6hz9Kf5Vs5on-9AK_pc42w9Qve/s640/373840673.png&quot; width=&quot;640&quot; /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&quot;selling process in Italy will be controlled by only one department&quot;
-&lt;/b&gt;&lt;br /&gt;
&amp;nbsp;There will be one Sales Organization for Company code Italy .&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;284&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixDd_D4jMgAuPRlTMUang9nSVEJQcwyaK0LE7H_rMOlYPL_ac8pPdQNpvckTxFsU2caDyRf6LPwpgqnHkpaykLAt9gTUi1SO8J5jD_NE0bglTXqzEQvoZmYrfVzux3GRqvtZ_0Rwzqxjz8/s320/37384S0673.png&quot; width=&quot;320&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&quot;All products will be sold by different ways direct selling / whole-selling / Retailing / Online&quot;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
- There will be 4 Distribution channels, channel for each way.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&quot;The company classify its products into three groups ( Phones - TVs - Others ).&quot;&lt;/b&gt;&lt;br /&gt;
- There will be 3 Division (product family).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&quot;The Company Strategy is to assign the selling process based on the group of product and the geographical place north/south&quot;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
- That mean that will be 6 Sales Offices&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Phones/ North&amp;nbsp;&lt;/li&gt;
&lt;li&gt;TV /North&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Others/North&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Phones/South&lt;/li&gt;
&lt;li&gt;TV/South&lt;/li&gt;
&lt;li&gt;Others/South&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&quot;and then assign the sales duties to groups based on the way of selling and distributing ( direct selling or online and so on ).&quot;&lt;/b&gt;&lt;br /&gt;
-  And that is mean that each Sales Office has 4 Sales groups ( Direct selling - Retailing - Online - Whole Selling ).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&quot;There are two big warehouse for distributing one for the north and the other for the south and all deliveries done in the same way from those both warehouses.&quot;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
- There will be two Plants and two Shipping Points , South Plant and its shipping point and North Plant and its shipping point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/3087097489109163076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sales-and-distribution-sd-structure.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/3087097489109163076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/3087097489109163076'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sales-and-distribution-sd-structure.html' title='Sales and Distribution SD Structure Example '/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgaHd5uWqATs2s1QwI2sPah20zYYPl5fRkaszhrOnEXbYUfuFsDbWSc3iTezfI0p8cEWOypdcV59GJwYN3bA_i8kNClly7blE9AqYYPKrmD8_w-23d31I6hz9Kf5Vs5on-9AK_pc42w9Qve/s72-c/373840673.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-2801051918183673046</id><published>2015-09-14T00:53:00.001-07:00</published><updated>2015-09-14T00:53:27.632-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SAP4u.net"/><title type='text'>SAP4u.net Support </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFH9R1KsNMTPWoSI7JbkMLe3gUf2aFMKz5YPA4HHlKIXqgWzGNHt5C8IZeZm85hrmpAb98sc8sC5rXpDfqI8kTc4iNsaJdKZRTcDM7NW5djw6oUAEUwqui7KjMyqdzpmuaD-ugBivqbjA-/s200/e_support.png&quot; width=&quot;200&quot; /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;color: #0b5394;&quot;&gt;SAP4u.net Support&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Ask Your Question in the comments&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Or&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;Send it to &lt;span style=&quot;color: #134f5c;&quot;&gt;SAP4u.net@gmail.com&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;b&gt;and it will be&amp;nbsp;answered&amp;nbsp;in a post on SAP4u.net&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/2801051918183673046/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sap4unet-support.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/2801051918183673046'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/2801051918183673046'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sap4unet-support.html' title='SAP4u.net Support '/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFH9R1KsNMTPWoSI7JbkMLe3gUf2aFMKz5YPA4HHlKIXqgWzGNHt5C8IZeZm85hrmpAb98sc8sC5rXpDfqI8kTc4iNsaJdKZRTcDM7NW5djw6oUAEUwqui7KjMyqdzpmuaD-ugBivqbjA-/s72-c/e_support.png" height="72" width="72"/><thr:total>1</thr:total><georss:featurename>United States</georss:featurename><georss:point>37.09024 -95.712891000000013</georss:point><georss:box>-36.418582499999992 99.052733999999987 90 69.521483999999987</georss:box></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-6180260186745418184</id><published>2015-09-13T16:00:00.003-07:00</published><updated>2015-09-13T16:06:21.977-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SAP4u.net"/><title type='text'>Advertise on SAP4u.net</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;129&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLIi92PqY5l1LEQKf4fK9rJuIDBsXDQHFj7hlqu8Af73n3nMTEa69_B0bXHycP3A9LSJFs2zgEKOpfeYhacRZ3C-U-zkAY6yyIJwc-Mu5Vd7itfptdsVrI4tOvStvG7PX_Ha1V-c46zql4/s320/advertise-with-us-.png&quot; width=&quot;320&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #666666; font-size: large;&quot;&gt;To Advertise on SAP4u.net&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;color: #666666; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;color: #666666; font-size: large;&quot;&gt;Please Contact Us via this e-mail&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;span style=&quot;color: orange; font-size: large;&quot;&gt;SAP4u.net@gmail.com&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: orange; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;span style=&quot;color: orange; font-size: large;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/6180260186745418184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/09/advertise-on-sap4unet.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/6180260186745418184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/6180260186745418184'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/09/advertise-on-sap4unet.html' title='Advertise on SAP4u.net'/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLIi92PqY5l1LEQKf4fK9rJuIDBsXDQHFj7hlqu8Af73n3nMTEa69_B0bXHycP3A9LSJFs2zgEKOpfeYhacRZ3C-U-zkAY6yyIJwc-Mu5Vd7itfptdsVrI4tOvStvG7PX_Ha1V-c46zql4/s72-c/advertise-with-us-.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-478567129396836728</id><published>2015-09-13T14:38:00.002-07:00</published><updated>2015-09-13T15:54:19.707-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SAP Modules"/><category scheme="http://www.blogger.com/atom/ns#" term="SAP4u.net"/><title type='text'>SAP Modules </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUQtrw7lrWTWqrtjekt2OVOJeh9Da-pGVMBR7mqevK3JaziNlvxurKizR-HdNOMXyq4-rBAFZO979gJIAW9mi_iC8rgm1a8ryfYnSqtzDxN7neiS-YfcBS1Hsme-ZUXYsTMszky-FxTbBm/s320/FI.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjnxPciiFCBv8g7vXaKwcKDAg5AyGGx-A3kkHFNY39bUwwLh3-M5clJbaU_3iTTn8JLXZuswL7Mk0LSuuMLuaHVlJBHrA_kAHHwMxpoaj2EJxfNSNcFKuY8BbDK-rYTR_weFRGed6_tjh64/s320/coo.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgLDkjvBLM22H-UZxR0tzTPyS55eysaqdMYLANiDdCLmvU8I6YAxOoeipyFyObRlDgWnNMqIqqs_EEQFpOwjlnNaDtluRX9zwy5UoQfY4JwbQA_UgBTfgstfosSkRDcOLkWDhU955u-TjF/s320/LE.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRdZnLc2ITIGKwbRh_CHdtyqdL120egst3TInHSrt-nr57SFiwbzguDsqppLY1qxfuctmX5ZJdEIp9nbEUspIm2DmIkFFcWAaoIyM1RjXUKL5shRl7-lcuoyPdi4BnHinHflZ-J5SKUn8c/s320/mm.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggA-55z0hUXUhsLgHHrChX5nopxxdRuUFMIsfZ1oZ_mF-kpf4oAsdga5PfdHJ0iSfuHAHeRYs6VF3kBYbxgqhqyT7HAK0XMV6-E2oX-R3mEyjXR11v-hL09t82VH0W2WI1-9EJr4R7JyNS/s320/PP.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjWbCgdOoo8_v4XzTuitgMr7wpnisQvVOtYAihKGbRrKn4Oze427A0V5HGip5CKAI0Mso4MUlt9VdnBHijH9GcZhJGRxQi3oVY9VgYz1HDHX2J_kIwjfVvgIa4nSAh4qR1tN7kdQVjmFpx/s320/PS.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgRpPR3F0P5JBLLlSJZ1uoeAyK6raEHmc6cLuEWYk4MtB6nN4buDk3R1RBDqa2psPP9fW77DxeZor5DnF8n-b6sIoB1TL0hiD84cEk7aroGADnBQgAjRyW4gyBfmg29Mabl7Ahg415ryhKn/s320/QMpng.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgB2evUrHcLS1HLiB-7k9EHLBrfdkP8-AihRys2sEWyKo5x0VQi1GujcW5adgf2i2QWq4IBPv5S05qqlohzdseUIMN4ozhG7yNIONrIHKIGSjLndZy8bxtuDcZDq0cG643qujAP3owwez2M/s320/HCM.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSBt1FeBTg_9dk50fTmBwkcVrsxJGWR0cYoPlf2-hbk4PvkGFmt2vF0l1xCFiBEHAWLWumG7eKUt2tZmFndX5RMeozDPFEay2uYfLEn7ZTE6ewHvFtmGiKnvOHrFgU20t8CmPRLEwVw6Tm/s320/PM.png&quot; width=&quot;320&quot; /&gt;
&lt;img border=&quot;0&quot; height=&quot;230&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjwu3fN_Pk2wAnYS2TwBjecJBiyV3yzy59Bd_bVTHPOG5yBGkvgCCwWakN6tbdMexB98se96lEljllSP8zfbLkHSo5mRHaaXbDEBF-mPK29rjfe9o-u3Cm6V-jqzyzHR3iQ5kICLYY3pYGz/s320/SD.png&quot; width=&quot;320&quot; /&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/478567129396836728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sap-modules.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/478567129396836728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/478567129396836728'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sap-modules.html' title='SAP Modules '/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUQtrw7lrWTWqrtjekt2OVOJeh9Da-pGVMBR7mqevK3JaziNlvxurKizR-HdNOMXyq4-rBAFZO979gJIAW9mi_iC8rgm1a8ryfYnSqtzDxN7neiS-YfcBS1Hsme-ZUXYsTMszky-FxTbBm/s72-c/FI.png" height="72" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-499578812124526554</id><published>2015-09-10T00:59:00.002-07:00</published><updated>2015-09-18T08:08:03.375-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Org Structures"/><category scheme="http://www.blogger.com/atom/ns#" term="SAP SD"/><title type='text'>Sales and Distribution SD Organizational Structure in SAP</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;300&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMbvvCbCW4fbxBiS4pSX5jNMXCiYZMSGy5v1UeKgjQk2Lvd7jSPhULV7SWPgZC4uf2tbMVycC4EpJSvTHSObms9y4mjXWiHEJQuWIrK8RR2xjZ5p8WgDx6bt_7_OmmFpl99a8kIhvmA1DK/s400/628164_634243503071262500-1.jpg&quot; width=&quot;400&quot; /&gt;&lt;/div&gt;
In this topic we will discuss the enterprise structure in Sales and distribution SD module in SAP ERP system, and how this structure is used to map the existing structure in Sales department in almost companies in the world wide market, And based on business requirements the structure changes.&lt;br /&gt;
&lt;br /&gt;
This mapping process done by creating Organization units / levels on SAP system, And every module in SAP has its own Organization units / levels, Also there are shared organizational units that can be used by several module in SAP for example Company code it can be used by SD and MM and FI and so on, but the sales organization unit used only by SD module.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;After reading this topic we will gain this knowledge:&lt;/b&gt;&lt;br /&gt;
&amp;nbsp;• Sales and Distribution Structure&lt;br /&gt;
&amp;nbsp;• Organizational levels / units in SD module&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&amp;nbsp;Here is the Organizational  units in SD module :&lt;/b&gt;&lt;br /&gt;
&amp;nbsp;*   4 more details click on the element that you want to know about&lt;br /&gt;
&lt;br /&gt;
 Company code&lt;br /&gt;
 Sales Area&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Sales Organization&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Distribution Channel&lt;br /&gt;
&amp;nbsp; &amp;nbsp;Division&lt;br /&gt;
 Sales Office&lt;br /&gt;
 Sales Group&lt;br /&gt;
 Sales Person&lt;br /&gt;
 Plant&lt;br /&gt;
 Storage  Location&lt;br /&gt;
 Shipping point&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;We can divide these units into two parts :&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: orange;&quot;&gt;&amp;nbsp;Sales and Shipping&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1. Sales:  Company code, Sales Area, Sales Office, Sales group, Sales Person&lt;br /&gt;
2. Shipping: Plant, Storage location, Shipping point

Notes:&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: orange;&quot;&gt;&lt;/span&gt; The Combination of Sales Organization and Distribution Channel + Division = Sales Area&lt;br /&gt;
&lt;span style=&quot;color: orange;&quot;&gt;&lt;/span&gt; The combination of Sales Organization and Distribution Channel = Distribution chain&lt;br /&gt;
&lt;br /&gt;
4 More Knowledge:&lt;br /&gt;
&amp;nbsp;• &lt;a href=&quot;http://www.sap4u.net/2015/09/relationship-assignment-sd.html&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color: #0b5394;&quot;&gt;The relationship (Assignment)  between these organizational structure units in SD&lt;/span&gt;&lt;/a&gt; &lt;i&gt;&lt;span style=&quot;color: red;&quot;&gt;important&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&amp;nbsp;•  &lt;a href=&quot;http://www.sap4u.net/2015/09/sales-and-distribution-sd-structure.html&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color: #0b5394;&quot;&gt;SD Structure Example&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;• Organizational Structure/Units in SAP&lt;br /&gt;
&amp;nbsp;• How to build SD structure on SAP &lt;i&gt;&lt;span style=&quot;color: red;&quot;&gt;important&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/499578812124526554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sales-and-distribution-sd.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/499578812124526554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/499578812124526554'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/09/sales-and-distribution-sd.html' title='Sales and Distribution SD Organizational Structure in SAP'/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMbvvCbCW4fbxBiS4pSX5jNMXCiYZMSGy5v1UeKgjQk2Lvd7jSPhULV7SWPgZC4uf2tbMVycC4EpJSvTHSObms9y4mjXWiHEJQuWIrK8RR2xjZ5p8WgDx6bt_7_OmmFpl99a8kIhvmA1DK/s72-c/628164_634243503071262500-1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-142328029155926824.post-6615890543597261076</id><published>2015-07-29T08:05:00.001-07:00</published><updated>2015-08-31T02:54:24.204-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SAP4u.net"/><title type='text'> Welcome to SAP4u </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-LzgfjfL1W-9e3FxJ9Z5SGDR_NBg5CWK-Ev7ikqJb25Gw6jY-J8Q1sFylb5xyB5Ko8-xJNe5kuFIByMYYqmbFr5Eu1wpi9iPVRsU8OeH2NzUMx4aX6XAOlFXgaCKYet_USbUuhZBmUnEV/s640/welcome.png&quot; width=&quot;640&quot; /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;span style=&quot;text-align: left;&quot;&gt;Welcome to our website &lt;/span&gt;&lt;b style=&quot;text-align: left;&quot;&gt;SAP4u.net&lt;/b&gt;&lt;span style=&quot;text-align: left;&quot;&gt;, Our team really
hope that you will gain the experience that you want about SAP modules - cycles
- transactions - errors and more.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;/div&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;&lt;b&gt;Browsing&lt;/b&gt;&amp;nbsp; our
website will be easy&amp;nbsp; and simple.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Visit&lt;/b&gt; the homepage SAP4u.net to follow the new posts
and topics daily.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Search for&lt;/b&gt; what you want in any module using our
search box at the top of every page.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Contact us&lt;/b&gt; via e-mail &lt;b&gt;SAP4u.net@gmail.com&lt;/b&gt; for
support or questions or suggestion.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Wait &lt;/b&gt;for our Arabic version.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Follow us &lt;/b&gt;on social media websites.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://sap4unet.blogspot.com/feeds/6615890543597261076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sap4unet.blogspot.com/2015/07/welcome-to-sap4u.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/6615890543597261076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/142328029155926824/posts/default/6615890543597261076'/><link rel='alternate' type='text/html' href='http://sap4unet.blogspot.com/2015/07/welcome-to-sap4u.html' title=' Welcome to SAP4u '/><author><name>Mostafa Fathi</name><uri>http://www.blogger.com/profile/15173069135921438723</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQXNsHXUkU25TfbPppLVXovT_aVV7G6rVzM6xxK7IgtLu_6yU_1Ktz6zsuxCWPNtG46ucmqsUc5w2YG-ee6zuj4XW3hq2qlxmAn5CR4ibyBt-RHcpOAhfvs_bJtRSF3A/s113/download.png'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-LzgfjfL1W-9e3FxJ9Z5SGDR_NBg5CWK-Ev7ikqJb25Gw6jY-J8Q1sFylb5xyB5Ko8-xJNe5kuFIByMYYqmbFr5Eu1wpi9iPVRsU8OeH2NzUMx4aX6XAOlFXgaCKYet_USbUuhZBmUnEV/s72-c/welcome.png" height="72" width="72"/><thr:total>1</thr:total></entry></feed>