Multiple Divisions in IS Retail

Hi,
If we maintain multiple divisions, what are the facts and implications? Due to wholesale business requirements, we want to create two divisions and want to have articles with either of these divisions. So, there will be one group of articles belonging to one division and another with other division. How and till what extent, this will impact on data maintainance point of view, processes point of view and system point of view?
Looking forward for the complete expalnation and solution if there is any!
Regards,
Dipti Chitalia

Hi Dipti,
        If you maintain mulitple divisions,it would not be possible to sell it in POS stores,the very reason being the Listing and Assortment are possible only on the basis of the Sales organisation and Distribution channel but not on the basis of the division...
If the business requirement is such that these articles will only be sold via wholesale route and not on the POS route,then i think you can go ahead creating multiple divisions.
If the business requirement is such that these articles need to be sold in POS as well then in that case it would be advisable to create multiple distribution channels within the sales org created for wholesale
For eg : if 1000 being your sales org for Wholesale then you can have 2 distribution channels like 01- wholesale retail(POS) and 02- wholesale direct(normal sales)
Hope this info has been useful.
Rgds,
Aram K.

Similar Messages

  • Perform multiplication, division n get remainder without using arithmetic o

    hello,
    perform multiplication, division n get remainder without using arithmetic operators
    thanks in advance
    manasi

    ram.manasi wrote:
    i can program myself however i am new to programming and have no clue how to perform arithmmetic operations without using arithmetic operators n would like to know how to go about itwell, we're not your private code-monkeys nor are we tutors. We are usually best at answering specific questions but many of us get our hackles up when someone simply demands an answer. I suggest that you find out what your teacher is expecting of you here. I would guess that this involves some recursion, but it is up to you to find out. Do some work. Then if you have a specific question, please feel free to come back and ask for help. nicely.

  • Help with a query.. (multiplication / division)

    Hi All, i have this data example
    CREATE TABLE "TB_CONVERSION_UNIDAD_TMP"
      ("ID_PRODUCTO"    NUMBER,
        "FLG_OPERADOR"   CHAR(1 BYTE) NOT NULL ENABLE,
        "NUM_FACTOR"     NUMBER(10,6) NOT NULL ENABLE);
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'M','0,0001');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'D','1');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'M','1');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'M','2');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('79','M','1');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('17','M','100');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('16','M','10');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('16','M','1');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('78','D','48');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('18','D','100');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'M','1');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'M','11');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values (null,'M','1111');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('126','D','1111,19');
    Insert into TB_CONVERSION_UNIDAD_TMP (ID_PRODUCTO,FLG_OPERADOR,NUM_FACTOR) values ('40','D','2');
    COMMIT;
    /I want get the num_factor columns where's the condition i send is id_producto then validate if the column FLG_OPERADOR is 'M' or 'D' for the multiplication or division with the another parameter i send (val).
    so far i got this:
    set serveroutput on;
    DECLARE
    intFactor number(8,2);
    intID_Producto NUMBER(10):=126;
    strFlg_Operador CHAR(1);
    Cant number(8,2);
    Val number(8,2):=100;
    BEGIN
    select num_factor into intFactor from TB_CONVERSION_UNIDAD_TMP where id_producto=intid_producto and rownum=1;
    select flg_operador into strFlg_Operador from TB_CONVERSION_UNIDAD_TMP where id_producto=intid_producto and rownum=1;
    if (strFlg_operador='M') then
        Cant:=Val*intFactor;
    else
        Cant:=Val/intFactor;
    end if;
    dbms_output.put_line('Factor :' || to_char(intFactor) || ' Operador ' || strFlg_Operador || ' Total : ' || to_char(Cant));
    END;Thanks for the help.

    Wrong forum!
    This is the sql developer forum and is not for sql or pl/sql questions.
    Please mark this question ANSWERED and if the below doesn't answer your question repost the question in the sql and pl/sql forum.
    >
    I want get the num_factor columns where's the condition i send is id_producto then validate if the column FLG_OPERADOR is 'M' or 'D' for the multiplication or division with the another parameter i send (val).
    >
    You've got a good start. Now you just need to BULK COLLECT the data and loop thru it. By the way you don't need two separate queries.
    set serveroutput on;
    DECLARE
    intFactor number(8,2);
    intID_Producto NUMBER(10):=126;
    strFlg_Operador CHAR(1);
    Cant number(8,2);
    Val number(8,2):=100;
    type tbl_factor is table of number(8,2);
    type tbl_flg is table of char(1);
    t_factor tbl_factor;
    t_flg tbl_flg;
    intID1 NUMBER(10):=40;
    BEGIN
    select num_factor into intFactor from TB_CONVERSION_UNIDAD_TMP where id_producto=intid_producto and rownum=1;
    select flg_operador into strFlg_Operador from TB_CONVERSION_UNIDAD_TMP where id_producto=intid_producto and rownum=1;
    if (strFlg_operador='M') then
        Cant:=Val*intFactor;
    else
        Cant:=Val/intFactor;
    end if;
    dbms_output.put_line('Factor :' || to_char(intFactor) || ' Operador ' || strFlg_Operador || ' Total : ' || to_char(Cant));
    select num_factor, flg_operador bulk collect into t_factor, t_flg
    from TB_CONVERSION_UNIDAD_TMP where id_producto=intid1;
    for i in 1..t_factor.count loop
       if (t_flg(i)='M') then
           Cant:=Val*t_factor(i);
       else
           Cant:=Val/t_factor(i);
       end if;
      dbms_output.put_line('Factor :' || to_char(t_factor(i)) ||
      ' Operador ' || t_flg(i) || ' Total : ' || to_char(Cant));
    end loop;
    END;
    /

  • Multiple divisions of debitors in SAP Internet Sales 4.0 R/3

    hello,
    We use Internet Sales 4.0 R/3-Edition. In loginprocess, the Sales area of debitor is compare to Sales area of catalog, when it's different the user can't login.
    Where can i find this check in the sourcecode?how i can change this?we have debitors from 6 divisions, and all should login in the same catalog.
    Can you help me?
    Greetings
    Toni

    Hello,
    We are using ISA 4.0 SP9 too for R/3.  for upgrading from 4.6C to ECC6.0 you must do nothing..it works than before..only change JCo.
    For 4.7 you need a plugin... its called:
    - R/3 Plug-In (PI) 2004.1 for R/3 Enterprise
    If you want more informations, please write me at [email protected]
    best regards,
    Toni

  • Books of Business with multiple divisions in same instance

    We are going to be rolling out another division in our current instance of Siebel On Demand.
    We want to make sure that each division can only see the records that belong to their division.
    We are thinking about using the opportunity type field on the opportunity form to assign a book, but we're not sure what we can do with the account or contact forms. If possible, we do not want to create any custom fields on the forms.
    Any suggestions?

    David,
    When you say you do no want to use Custom fields does this mean create new fields or use the indexed picklists?
    For Accounts you could use Location - get each division to enter their division in the location field and use workflows to assign it, or there is a forum posting about have a default value created based upon a role which would mean that they don't need to add it themselves. you could also do something for contacts.
    Good luck
    alex

  • Syntax for doing multiplication,division ,subtraction in xml

    Hi Experts,
    I need help in coding this statement in xml .
    (No of units per case * price per consumable) / (end_date-start_date)
    Please help
    Thanks

    For basic operations, you just need to use operator and operands.
    ex:
    <? 10 * 10 ?>
    <? 10 + 10 ?>
    <? 100 - 10 ?>
    <? 10 div 10 ?> -- you can't use / for divide, good way is to use
    <?xdoxslt:div(10,2)?>

  • Dreamweaver treats multiple divisions in JavaScript like comments.

    For example, if my code is:
    var a = (b / 2) + (c / 2)
    it will highlight:
    / 2) + (c /
    as a comment. This is improper syntax highlight and very annoying. I want it fixed. How?

    This is a known issue with Dreamweaver's syntax highlighting. The problem is that forward slashes in JavaScript are used as delimiters for a regular expression. So, Dreamweaver treats the value between the slashes as a regex.
    The only way to get it fixed is to submit a bug report through the form at http://adobe.ly/DWBug. If sufficient people complain about this issue, it's more likely to receive the attention of the engineering team.

  • Problem in creation of divisions.what is the necessity of multi ple divisio

    hi in my organization we are manufacturing some plastic products  for vehichle parts
    but some are for doors some are for arm rest and some are for roof
    annother way we are also doing garnishing jobs for some company
    and for some rail company we are making bath room doors so
    my queastin arrises here
    how many divisions i ve to creat as my products are Build to Order ans some are locally sold as per order and some are export to outside so how many divisions i ve to creat and
    if multiple divisions are there why the need of multiple division
    can anybody give me the exact definition of DIVISION
    regards
    subrat
    [email protected]

    Can amyone give me the solution to my email address [email protected]
    Our client needs a high level SAP SD resource ON SITE to do a feasibility and estimation project. Basically they need to come in and determine how long the actual project will take. Below is their issue:
    Per the client:
    "When entering a sales order, there are 3 attributes that need to be assigned. The attribute in question is the "Division" attribute. We want to merge the multiple division attributes into one for future sales orders. Currently the division attribute is assigned separately, for example, "ABC" line products and "XYZ" line products are assigned a different division attribute. We want to combine this attribute into one "123" line. Apparently, this change has a domino effect on multiple other areas that also need to be changed to maintain the systems integrity."
    They are looking for a person to evaluate this project and estimate the number of people hours and what types of people (expertise), to make all the necessary changes for this to be a successful project. The deliverable would be a project break down regarding what steps need to be taken, what resources will be needed, and ultimately how long the project would take.

  • Multiple values in 1 application context

    All, I'm trying to return multiple values from a query and store them in an application context.
    I have an employee that can be a part of multiple divisions. I already captured emp_id:
    dbms_session.set_context('COMPANY', 'emp_id', emp_id);
    but also want to capture division_id for the person. Most people will only have 1 division_id, but some will have multiple division_id's.
    What's the best way for me to capture multiple numeric values and store them in an application context like this.
    I'm trying to set up VPD policies and don't have to have to reissue a query every time I need to access the division_id.
    Thanks,
    Jon.

    One option would be to store a comma-delimited list of the division_ids in the context and then your VPD filter can use this and the TABLE function to limit the rows:
    sql>create or replace type NumberTable as table of number;
      2  /
    Type created.
    sql>create or replace function f_number_table(
      2    p_list       in  varchar2,
      3    p_delimiter  in  varchar2 default ',')
      4    return numbertable
      5  is
      6    v_string  long := p_list || p_delimiter;
      7    v_pos     pls_integer;
      8    v_data    numbertable := numbertable();
      9  begin
    10    loop
    11      v_pos := instr(v_string, p_delimiter);
    12      exit when (nvl(v_pos, 0) = 0);
    13      v_data.extend;
    14      v_data(v_data.count) := trim(substr(v_string, 1, v_pos - 1));
    15      v_string := substr(v_string, v_pos + 1);
    16    end loop;
    17    return (v_data);
    18  end f_number_table;
    19  /
    Function created.
    Then, in your VPD package:
    -- build a list of the division_ids by looping through a cursor
    -- set the context using this list of division_ids:
    dbms_session.set_context('company', 'div_id', '10,20');
    -- later, you would replace the literal value below with a call to sys_context to retrieve it
    sql>select empno, ename, deptno
      2    from emp
      3   where deptno in (select *
      4                      from table(f_number_table('10,20')));
        EMPNO ENAME         DEPTNO
         7782 CLARK             10
         7839 KING              10
         7934 MILLER            10
         7369 SMITH             20
         7876 ADAMS             20
         7902 FORD              20
         7788 SCOTT             20
         7566 JONES             20
    8 rows selected.

  • SQL Command returns multiple records, but I see only one record in report

    I work with Crystal Reports XI R2 SP3 and Oracle 10g R2 database.
    I have an SQL Command that returns multiple records. Command name is "CommDivisionNames" and it returns column "CommDivisionNames.DIVISION_NAME". When I place this field into report details section of the report, I can see all 10 records returned and this is how it should be. I actually need this field to be placed in the report header section, and when I place the field there, then I see only the first record. I set that field as "can grow = true". When I do "browse field data" for this field, I see that all 10 records are there, but only the first one is displayed in report header section.
    I thought that I can place SQL Command field anywhere on the report (page header, footer, details) and that it will always show all records that it returns from the database. Can that be done?
    My "main part" of the report returns different set of records, and that's what I have in "report details" section. I need this list of divisions to be in the report header section, so user can see that the report was executed for DivA, DivC, DivE.
    Thank you,
    Milan

    sharonamt:
    Users select divisions from parameter, but the parameter multi values are division_numbers (1,5,10), not division_names. Division_names are visible in parameter_prompt_window as description, but parameter remembers only numbers and I don't know how I can reuse division_names later in formula.
    I do join for division_numbers and make them into one string variable and pass to sub-report, but I think that I can only get these division_names by calling an SQL command or calling stored procedure.
    If I try to do join({MySQLcommand.DIVISION_NAME}) I get error message "A string array is required here".
    Carl:
    I'm playing with cross-tab and I can use it to see all division_names in the report-header section. Since I need them in only one column or only one row, I have to edit cross-tab object and turn all unneeded border lines to white to make them look invisible. So, cross-tab could be a solution for my problem here.
    Another option could be to re-write my SQL command. Since I've read here that SQL command could be written in the same way as I would write a stored procedure, then I could use a bit more complex code to get all multiple division names from the database table into a local cursor, and then use do-while loop to concatenate them into one string, and then to return that string as one record (like 'DivA, DivB, DivC'), and then it should not be a problem to display only that one record/string in report header. It is my understanding that Crystal Reports can call stored procedure that works with many cursors/recordsets and CR will use only the last recordset from the stored procedure. Do you think it could be done this way?
    Thank you,
    Milan

  • Microsft Windows 7 Home Premium 64bit and 32bit Retail with WinNt, WinPE, WinMCE networking install no notification

    I have not been given any explanations for my multiple electronic communication device retail purchase problems. When ever I purchase a retail smartphone or retail notebook computer they do not have actual installed operating systems as advertised. The android
    operating systems are Developer SDK. The operating system on my Virgin Mobile Samsung Galaxy Ring is Android Jelly Bean 4.2.1 purchased this year is part of a Developer SDK. I purchased a Samsung i7 Chronos win8 64 bit notebook at Best Buy last year and it
    was configured as a Network Server Client in User Mode through the American Mega Trends Aptio Bios Setup Utility that had been customized to bypass regular Configuration files and install a custom operating systems on Network Volumes instead of the actual
    partitioned hard drive. I ended up with WinPE boot in to WinNT and WinMCE in an OEM Networking client server platform partial operating virtual operating systems that I have been allowed a user profile with permissions in the Administrators Group. I am not
    even the administrator of my own personal computer. Someone I do not know has hijacked the highest Administrative Authority at retail purchase and open up a number of profiles to the general public through the server client software. They have automated and
    live access to the operating systems power up or power down. I do not even think the notebook is ever powered down even though the power and activity lights are out. It is like someone has taken the windows operating system I was suppose to get at retail and
    swop it for partial virtual operating systems interface to network client software through serveers. I took the SamSung Chronos back to Best Buy and exchanged it for an Asus G75VX i7 Win8 64 bit gaming notebook with 3GB Nvidia Graphic's chip and 8GB memory
    with 1TB hard drive 3D ready and it was configured the same way as the Samsung. I took it back and returned it to Best Buy and exchanged it for another brand new in the unopen box Asus G75VX i7 win8 64bit notebook. I took it back for Best Buy to take a look
    at it because it was also configured the same way. Then I sent it to the Asus Service Center two times and it was returned to me both times configured the same way. Before I sent it back to Asus the two times I went to Fry's and purchased Windows 7 Home Premium
    32 and 64bit operating systems on DVD and the notebook configured the software the same way. After install of win7 32 or 64bit the installed operating systems did not recognize the Window's 7 Home Premium 32 and 64bit retail DVD as the same version of operating
    system. I took a look at the installation files on the retail disk and the configuration installed on the computer came from the software disk and the rest through background network servers but there is something in the AMI Aptio Bios that voids any of the
    regular Configuration Files. My computer does not even recognize the configuration file in the normal sense on the retail disk. All of the system file extensions have been altered and been added to creating almost unlimited file extensions like the system
    ran on Text. I paid $975.00 for the Samsung Chronos, $1375.00 for the two Asus G75VX's, $216.00 for the win7 DVD, $120.00 or more for insured postage on the to trips to the Asus Service Center not counting Asus prepayment of postage because I had to reship
    the notebook in order to get it to me. I have spent about $150.00 or more on software for disk management, anti virus, internet security etc. The retail purchase were modified on return purchases. Since 2007 I have gone through about seven smart phone brand
    new, About four of five regular internet phones and about eight notebook computers with three being used and five being brand new.
    I still do not have an actual operating system installed on the actual retail hard drive and my notebook is not repaired. I have operating systems installed on Network Disk Volumes that are installed on a GPT Server Partition. The configuration visually
    alters from background activities. All of my information is made public through the Virtual Public Shared C: drive.
    I am legally disable and a pro se litigator in the United States Federal Courts. Since 2007 I have litigated in three civil actions in the United States District Courts and in one all the way to the United States Supreme Court. I am currently still litigating
    in one as a legal interpreter and have done all of the legal work in that action since 2011. I have a civil litigation history in the United States District Courts dating back 28 years.
    Having all of my communication devices hacked and the legal and personal information publicly shared through three federal civil actions and through public entity department and agencies is a gross violation of United States Constitution Article IV Citizenship
    rights. A gross violation of the Bill of Rights First Amendment Rights to Petition the court for Redress of Grievances and Bill of Rights Fourth Amendment Privacy Rights and Bill of Rights Fourteenth Amendment Equal Protection and Due Process rights. It is
    a gross violation of the Federal Communications Act FCC Rule 255 person's with disabilities access to electronics's telephone communication equipment and software since my smart phones and notebook computers were configured with networking, management and
    telephone hardware and software. It is a gross violation of Title II of the American with Disabilities Act of 1990 as amended in rights of person's with disabilities. It is a gross violation of the Rehabilitation Act of 1973 as amended on the rehabilitation
    rights of persons with disabilities. It is a gross violation of Title VI of the Civil Rights act of 1964 Civil Rights and it is a gross violation of litigation privacy rights within all of the federal court rules such as the Federal Rules of Civil Procedure,
    Federal Rules of Evidence, Federal Appellate Court Rules, Local Court Rules and United States Supreme Court Rules and the United States Federal Pacer Electronic Court Account  and Filing System. It is also a gross violation of state law that has to comply
    with federal law. There exists no question in law of the violations because I have furnished the computer registry files, Receipts and servicing records to Microsoft, Asus and others but nobody know how to solve the problem but the Win7 retail disks identical
    to mine disappeared from retail store shelves. What is WNT_6.1H_64_MCE?oes anybody in the Microsoft and Asus community have any explanations for the total disregard for United States federal law and customer retail purchase rights? I went to Fry's and Best
    Buy and took a look at a number of notebook computer files and configuration and a number of them were like mine. The thing that irritates me the most about the configuration if it is public is that it is not passive. A profile folder has been configured for
    me that alters the configuration of what I purchased to violate my constitutional rights. They even alter the hardware and software settings to Legacy that ran on computers from ten fifteen years ago and force it on me at modern day electronics prices. That
    is not right.

    Where no law is involved in denials and restrictions in constitutional rights it is impossible for it to be legal.
    J.P.

  • COMBINED DIVISIONS ON A SALES ORDER REPORTING WRONGLY ON MC+2

    Hi All,
    The issue is that Multiple divisions on sales order reports to whichever header (division) the Sale Order is created with when reports are generated (drilled down by division) via MC+2 instead of reporting to the relevant division.
    SD expert, please help out!!!

    SAM
    I had a looked at both the SAP Notes provided. Doesn't really apply in my situation. The Sales order was for 10 qty. My PR for 10 qty and I have also done a MIRO for 10 qty. even my sales invoice was for 10 qty.
    I do not want to configure it to follow the PO quantity because I need a control where only vendor has delivered the products to the customer only then I should invoice the customer accordingly. If I allow the invoice to be created based on the PO quantity then the control factor will be lost.
    I have yet to try the program that you recommended... will try that shortly.
    And yes ... since I'm using the standard sap TAS item cat ... the "relevance for delivery" is already turned off and the billing is "F"

  • We are a Global group, with divisions using a single instance of Eloqua

    Any advice on this would be great.
    We are a Gloabl group, with a number of different divisions, offering different I.T services and solutions. Each has its own marketing roadmap to which a single database will be used to target and segment via marketing activity.
    Just after some advice and best practice I suppose, hopefully there is someone out there who has tackled a similar problem ...
    i) What is the best way to target these divisions within a single database, without causing too much of a headache.
    ii) As we have a single instance of ELQ, in terms of differentiating the divisions, is the easy approach to simply set up different email groups for camapigns? I.E, Different Headers, footers and preference centres etc... ???
    Haven't started to consider the ELQ side of things as yet, but was wondering if anyone has tackled this recently, before I deep dive in, and if they have any advice?
    Thanks in advance.

    I agree with all of the above! I will just add a couple of additional suggestions:
    I would really put some effort in your preference center. Make sure you clearly define your opt-in/opt out strategy and the priority of messages to avoid redundancy and unnecessary overlaps. This may require collaboration with other teams upfront but can save you time and headaches in the long run.
    Along with this, your content strategy can benefit from a regular review at a global level to ensure you are still relevant at the division level (which I would assume you already do )
    If you have customers who are likely to be member of multiple divisions,  I would also make sure to run some filters or have a program that checks your set of rules in order to manage email frequency.
    Like Marian suggested, adherence and reinforcement of a solid naming convention for everything will be key.
    Cheers!

  • ERP Order in CIC - Need to default Division and Channel

    Hi Experts,
    Setting up ERP orders in CIC.
    Everything is working fine, but to make it more efficient, we need to default the Channel and division in the order for less clicks and errors.
    I tried using the user paramters SPA and VTW in both CRM and R/3, but with no luck.
    can anyone help???
    Just to clarify...we  have multiple Divisions.  So when we select new ERP order, we get a popup in te IC WeClient to select the division we need.
    Thanks
    Edited by: John P Doody on Jul 27, 2011 4:23 PM

    Hi Dipanjan,
    I thank for the time you gave.
    Actually I had been told not to break the transaction but to do it through configurations.
    I have done some research and found the solution for the requirement.
    May be the below points will be useful for any one who has same kind of issue.
    1.     SPRO -> MM -> Purchasing -> Define default values for document type:
    I tried this path but system did not accept transaction MD14. Later I came to know that the path will support only purchasing transaction like ME*. So I have to leave this step.
    2.     Tried transaction OMDD (Donu2019t know the SPRO path u2013 Frankly I am not export in MM, PP) u2013 Display view u201CPlanned Order Profileu201D Overview.
    This transaction can be used for defaulting the order type (Purchasing) in Purchase Requisition block but since some other configuration was overriding this, I could not get benefit from OMDD.
    3.     SPRO -> MM -> Consumption-Based Planning -> MRP Groups -> Carry Out Overall Maintenance of MRP Groups. (Transaction OPPZ)
    This transaction will enable us to give default order type for purchasing block as well as for planned order block. This config work only for a plant and MRP group of a material and we need to give as many combinations as we require.
    This transaction was already used to config and default order type in purchasing block earlier for some particular combination of plants and MRP groups.
    I used some different combination of plant and MRP groups which will allow me to use the defaulting of order type for a combination of plant and MRP groups that I use in planned order.
    I am not an expert but I took more than one day to research and get the solution.
    I just gave the above information so that if in future any one gets same issue can give a try of the above steps and get the solution.
    Any waysu2026 Thanks Dipanjan, your effort is really appreciated.
    Sincerely
    Ravi Shankar

  • Host with multiple AS2 Indentifiers

    Hello all,
    Is it possible in Oracle B2B to have multiple AS2 identifiers for the host trading partner? We have a customer that has multiple divisions; each division has their own AS2 Identifier/DUNS/etc. We would like to do this without setting up multiple instances of the B2B server - is this possible?
    John

    Hi Ramesh,
    I'm in the same boat as John. To be precise, IHAC who wants to host both of their enterprises on the same instance of Oracle Integration. This way, they not only reduce total cost of deployment but also allow for sharing of document types across the two enterprises.
    Questions:
    1) Does your approach imply that document types cannot be shared across the dual hosts? Does it only work for outbound transactions? What if the dual hosts can act as both initiator and responder of the transaction?
    2) To support exchange type of models, some competing vendors allow you to create multiple logical trading partner hosts in a single b2b deployment (I know for a fact that webMethods Trading Networks does). Can we simulate that behavior by creating two "Trading Partner Identifications" for the host TP (It looks like the TP create page does let you do that.) If so, can I create two TP IDs of the same type for the same TP?
    In general, if you could shed more light on your previous note, especially with a tech note or something, that'd be great.
    Regards,
    Karthick

Maybe you are looking for

  • Missing Message Box after Skin Copy in IC Agent

    Hi, I copied the default skin in a customer z-skin (and added a logo). Everything works fine, even the company logo is visible. Now I have the problem that for the role "IC Agent" all the three message boxes have disappeared and that behind the SAP l

  • Pages won't print but the printer is connected and will print

    Is added the up app for printers. I can get the printer to print but when I ask pages to print a document it says no printer found. Any ideas?

  • Windows Deployment Services PXE Installation of Windows 10 Preview and Server vNext Technical Preview Failed

    The automated answer file associated with Windows 10 Enterprise Technical Preview x64 (9481) and the Windows Server Technical Preview x64 (9841) seem to be incompatible. No problem adding both wim files to WDS, this completes without issue. When tryi

  • Return Delivery excise posting in MM ( Purchase )

    Hai Friends, I have one received one material, which QM Person has rejected so that inventory people decided to send to return delivery. I went to MIGO to do return delivery ( 122 movement type ), there in Excise tab ( MIGO ) ... system is asking GOO

  • Sync trouble or me?

    Hi. I'm not sure why my address book isn't syncing with my .Mac address book. I've seemingly done everything- hit sync in the System Prefs- so that it will sync the address book. It says it is successful. Then I go to my address book on .Mac website