Enterprise structure with out operations

hi All,
     I have registered my company in japan but I donu2019t have any operations. In such case what is the Enterprise structure w.r.t SAP?
Regards,
Geetha.

Enterprise structure
client
company code
PA
PSA
ask ur fico guys regarding company code than we can get an idea

Similar Messages

  • Enterprise structure with reference to integration points

    Hi,
        Can some one send me information on  Enterprise structure with reference to integration points in SAP-IS RETAIL plz.
    Edited by: sayee on Feb 20, 2008 11:54 AM

    Hello Sayee
    In the Sales and Distribution module of SAP, there are three different perspectives for an enterprise structure. These are:
    •     Market Oriented Organization structure
    •     Internal Organization Structure
    •     Shipping Related Organization Structure
    Market Oriented Organization Structure
    Market oriented Organization structure in the Sales and Distribution module consists of sales organizations, distribution Channels and a reference division. A combination of sales organization and distribution channel forms a Distribution Chain.
    Internal Organisation Structure
    Sales Office and Sales Group represent the internal Organization in SAP. The internal Organization structure is used for performance management of sales personnel.
    Shipping Related Structure (*For Stock Transport Orders)
    Independent Organizational entities, such as shipping points, are responsible for scheduling and processing deliveries to Stores from the Distribution Centre. A delivery is always carried out by one shipping point only. The shipping point depends on the following criteria:
    •     Plant/Site (Distribution Centre)
    •     Shipping Condition
    •     Loading Group
    Thanks
    Amit Shivhare
    PS: Reward point

  • Criteria with out Operator in af:Query

    Hi,
    We are using af:query in our application and our application uses POJO based data controls. It does not implement BC4J. Is it possible to display a critieria in af:query WITH OUT a criteria operator? For example we want City as on the criteria and we would not want display any criteria operator. The assumption is it should always be searched with Equals. If it is possible can some one let me know how to achieve this?
    Thanks,
    Rama
    Edited by: user9954330 on Apr 24, 2012 10:59 PM

    Hi,
    Is it possible display a field in Search Panel as input LOV with custom popup ?
    Yes. You assign a LOV definition to the attribute that then you display in the af:query component. You can also have dependnet LOV implemented this way. However, you cannot have a custom (your own) list of value popup dialog used
    See page 8 and following in http://www.oracle.com/technetwork/developer-tools/adf/learnmore/jan2011-otn-harvest-300940.pdf
    Frank
    Edited by: Frank Nimphius on Jun 29, 2011 11:36 AM

  • Read a structure with out specifying its field/component names-Dynamically?

    Hello
    My requirements:
    I need to write a module pool prog., which updates a Z_material_master_data_table, which tables has 150 fields (i knew its odd having 150 fields in a master table).
    On the module pool prog. i need to place the fileds in 2 columns, say left column(for current data) with 150 fields and right column(user input data for updating the Z_material_master_data_table) with 150 fields
    When user opens the prog., user will be presented with a initial screen, where in user enters the material number (for which user want a updation ) then, the user will redirected to 2nd screen where in my prog. will default/prepopulate the left side fields with the current(old) data. Now user has to input his/her data (new) for updating any field of the z_master_data_table.
    And after finishing the user clicks a push button with title of 'UPDATE'
    Now, my prog. has update the entry in the z_material_master_data_table. The 2nd screen looks like below,
    _Currnet data_ -------------------------------------- _New data_
    Current Material description ---------------------- New Material description
    The field will placed here  ------------------------ The field will placed here to
    for showing the current data                              inputting the new data by user
    As there are 150 fields, i would not like to write validation (cross checking whether user entered the data on each field) on every field of 150 in number.
    The 2nd reason, they want the prog. a kind of dynamic in nature, like going further, if the business want to add a new field, say 151_field to the the table, they dont want to change the prog. (just keeping the 151_field should enough) to address this newely added field.
    By thinking field symbols approach, i created 2 structures for old data and another for new data. These structurer are replicas of z_material_master_data_table, but 2nd (new) structure field names posses a an extra 4 chararctes like '_UPD', say for example, ZZMAKTX will be the fileld name in structure_1 (old) and its name will be ZZMAKTX_UPD in 2nd structure(new)
    Pls. give me some code snippet for (my above requiremnet) reading a structure DYNAMICALLY with out specifying/mentioning the field names for each and every field or give me any better idea to meet my requirement
    Thank you

    From my understanding, your requirement was creating the Program to display the 150 fields of the custom Z-Table based on the material number.
    Once the user enters the Material number and click enter. It has to navigate to another screen with old data in one column and second column for the new data, Update button for saving the new data to backend Z-Table.
    Back end 150 fields will be changed based on the user requirement, So you need to implement it as dynamically.
    Solution:
    data : it_tabdescr type abap_compdescr_tab.
    data : ref_table_descr type ref to cl_abap_structdescr.
    DATA : cl_struct TYPE REF TO cl_abap_structdescr.
    data: p_table(30)  type C. value u2018Custom Z-table Nameu2019.
    Return structure of the table.
      ref_table_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
      it_tabdescr[] = ref_table_descr->components[].
    cl_struct ?= cl_abap_structdescr=>create( it_tabdescr ).
    CREATE DATA dyn_line TYPE HANDLE cl_struct.
    assign dyn_line->* to <fs_wa>.                                u201C<fs_wa> have the same structure of the Z-table
    CREATE DATA dyn_line1 TYPE HANDLE cl_struct.
    assign dyn_line->* to <fs_wa_update>.               u201C<fs_wa_ update> have the same structure of the Z-table
    Best Regards,
    Manigandan D
    Edited by: Manigandan Damodharan on Feb 4, 2012 8:58 PM

  • Accessing a field from a structure with out header line

    Hi Guys,
                 I am trying to assign a field from a structure type line of data to another field.
    This structure type line don't have a header line.
    here is the example.
    IT_EKKNU TYPE  MMPUR_EKKNU.
    when I use following statement..
    move IT_EKKNU-kostl to e_cekko-kostl.
    Iam getting error "IT_ENKKNU is not a structure or Internal table with header line.
    How to access the fields in structure IT_EKKNU.
    Thank U for ur time.
    Cheers
    S Kumar

    Here IT_EKKNU is an internal table without Header line.
    You can use a structure for assignment.
    DATA: IT_EKKNU TYPE MMPUR_EKKNU,
               wa_ekknu type    ekknu.
    read table it_ekknu into wa_ekknu........
    move wa_EKKNU-kostl to e_cekko-kostl.
    *modify the code for your conditions*.

  • Assign one filed symbol to another and changing with out impact on other

    Hi,
    i'm assigning one field symbol to another.
    assign <fs1> to <fs2>.
    if i change <fs2> that will impact <fs1> too. How to copy the value in <fs2> to <fs1> and at the same time if i change one of those fields, it should not impact another.
    Thanks,
    KK.

    Thanks for the quick response robert.
    if i want to copy a dynamic structure with out modifying the original, how to ...
    hope my question is clear.
    thanks,
    KK.

  • Problem with multiple sub-panels through Enum case structure: "The VI is not in a state compatible with this operation"

    Hello,
    I am using LabVIEW 8.0 and I am attempting to create a sub-panel that displays the front panel of a sub-vi depending on the selection made by the user via the Enum dropdown menu.  I have wired the Enum to a case structure and applied identical coding to each individual case structure except for obviously changing the sub-vi source.  However, I receive an error "The VI is not in a state compatible with this operation."  I was able to successfully make a single sub-vi work within a sub-panel using a true/false case structure and the exact same coding.  However, now that I am using an Enum box wired to a case structure, I receive this error.  I have attached my block diagram as well.  Could anyone assist me as to where it is that I am going wrong?
    Thanks in advance!
    Solved!
    Go to Solution.
    Attachments:
    enum subpanels.JPG ‏22 KB

    torm wrote:
    I have attached my block diagram as well
    I only see a picture. Can you attach the VI instead? At what point do you close the reference?
    torm wrote:
    I have wired the Enum to a case structure and applied identical coding to each individual case structure except for obviously changing the sub-vi source.
    Well, if the code is identical except for the source, only the source should be inside the case, right? Why duplicate code?
    LabVIEW Champion . Do more with less code and in less time .

  • How to cast vector to vector with out using loop. and how to override "operator =" of vector for this kind of condition.

    Hi All How to TypeCast in vector<>...  typedef  struct ...  to class... 
    //how to cast the vector to vector cast with out using loop
    // is there any way?
    //================ This is Type Definition for the class of ClsMytype=====================
    typedef struct tagClsMytype
    CString m_Name;
    int m_Index;
    double m_Value;
    } xClsMytype;
    //================ End of Type Definition for the class of ClsMytype=====================
    class ClsMytype : public CObject
    public:
    ClsMytype(); // Constructor
    virtual ~ClsMytype(); // Distructor
    ClsMytype(const ClsMytype &e);//Copy Constructor
    // =========================================
    DECLARE_SERIAL(ClsMytype)
    virtual void Serialize(CArchive& ar); /// Serialize
    ClsMytype& operator=( const ClsMytype &e); //= operator for class
    xClsMytype GetType(); // return the typedef struct of an object
    ClsMytype& operator=( const xClsMytype &e);// = operator to use typedef struct
    ClsMytype* operator->() { return this;};
    operator ClsMytype*() { return this; };
    //public veriable decleare
    public:
    CString m_Name;
    int m_Index;
    double m_Value;
    typedef struct tagClsMyTypeCollection
    vector <xClsMytype> m_t_Col;
    } xClsMyTypeCollection;
    class ClsMyTypeCollection : public CObject
    public:
    ClsMyTypeCollection(); // Constructor
    virtual ~ClsMyTypeCollection(); // Distructor
    ClsMyTypeCollection(const ClsMyTypeCollection &e);//Copy Constructor
    DECLARE_SERIAL(ClsMyTypeCollection)
    virtual void Serialize(CArchive& ar);
    xClsMyTypeCollection GetType();
    ClsMyTypeCollection& operator=( const xClsMyTypeCollection &e);
    ClsMyTypeCollection& operator=( const ClsMyTypeCollection &e); //= operator for class
    void Init(); // init all object
    CString ToString(); // to convert value to string for the display or message proposed
    ClsMyTypeCollection* operator->() { return this;}; // operator pointer to ->
    operator ClsMyTypeCollection*() {return this;};
    public:
    vector <ClsMytype> m_t_Col;
    //private veriable decleare
    private:
    //===================================================
    ClsMytype& ClsMytype::operator=( const xClsMytype &e )
    this->m_Name= e.m_Name;
    this->m_Index= e.m_Index;
    this->m_Value= e.m_Value;
    return (*this);
    //==========================Problem for the vector to vector cast
    ClsMyTypeCollection& ClsMyTypeCollection::operator=( const xClsMyTypeCollection &e )
    this->m_t_Col= (vector<ClsMytype>)e.m_t_Col; // how to cast
    return (*this);
    Thanks in Advance

    Hi Smirt
    You could do:
    ClsMyTypeCollection* operator->() {
    returnthis;};
    // operator pointer to ->
    operatorClsMyTypeCollection*()
    {returnthis;};
    public:
    vector<ClsMytype>
    m_t_Col;//??
    The last line with "vector<xClsMytype>
    m_t_Col;". It compiles but I doubt that is what you want.
    Regards
    Chong

  • Outer join with IN operator

    Hi.
    I have two folders in Discoverer 10.1.2. These folder are joined with outer join on detail table:
    a.item1=b.item1(+)
    When I use both Folders in the worksheet and then add a condition for example
    b.item2 = 20, Discoverer generates SQL with the following conditions.
    a.item1=b.item1(+)
    b.item2 (+) = 20
    That's OK. The problem is that I need to use IN operator in the conditions, i.e. somethink like this:
    a.item1=b.item1(+)
    b.item2 (+) IN (20,30,40)
    This can be done in SQL using ANSI syntax:
    LEFT JOIN table b ON a.item1=b.item1, b.item2 IN (20,30,40)
    But I don't know how to achieve this in Discoverer Plus!
    (without using Custom folders in Administartor)
    Can anybody help, please?
    Thanks
    Jakub.

    Thanks for replies.
    blaplant:
    Yes, I need to report against a transaction database and I'm not allowed to change any table.
    Rod West:
    I know about the possibility of creating Custom folder as you suggest. Unfortunately our customer doesn't like this solution, because the condition "IN (20,30,40) " will be useful only for one user. Others wants differnet values in that condition.
    So using custom folder would mean to create many Custom folders in the EUL.
    However I like the idea of using session parameters.
    I'll try to create one Custom folder with session parameters. In the Plus there will be default value set on 20,30,40. So the current user can confirm this deafult value before the worksheet is run and future users can change parameters as they like.
    Moreover there could be another solution. Session parameters could be set directly by a calculation, maybe. So we can create a special worksheet for each user and no parameters in Plus will be necessary.
    Thanks for ideas.
    Jakub.

  • Force all users to change their Enterprise passwords with a batch operation

    Hello,
    Do you know if there is a way to force all users to change their Enterprise passwords with a batch operation in the SDK? Is there any implementation done?
    Many thanks!
    Bea

    You can logon to Enterprise as Administrator in your SDK application. Query all users using following query:
    select * from ci_systemobjects where si_kind='user'
    then loop through the collection InfoObjects returned and cast east object to IUser.
    Either call setPasswordToChangeAtNextLogon(true) so that the user logs on next time will be forced to change his\her password. Call commit on InfoObjects collection at the end to save the changes.
    Otherwise you can call setNewPassword("new password") to reset password for that user.
    Depending upon number of users you can do bath commit. You can use commit(infoObjects,true). The 2nd argument is true for batch commit.

  • I have take pictures from my ipad 4. How to download to my computer with windows operating system conneted through USB cable with out using internet

    I have take pictures from my ipad 4. How to download to my computer with windows operating system conneted through USB cable with out using internet

    Plug your iPad into your computer. THere may be a delay while it installs drivers but if you can see your iPad in windows explorer, use that to get to your photos.
    Click on your iPad and you should see a DCIM folder. Click thorugh that to find your photos.
    Windows explorer will see your iPad as nothing more than a digital camera, and that's the part you're trying to access.

  • CATS - Manager need to approve users reporting to him with out ORG Structur

    Hi Gurus,
    At our client, they did not have any Org Structure. They do not want to implement any Org struture.
    They are implenting CATS (ESS). Users enter the Time sheets. Manager will approve the team members who report to him?
    Is there any way how managers get ONLY see users reporting to him with out a ORG Structure?
    I think we can do this restriction with Personnel Area and Personel Sub Areas but we need built separate role for each manager?
    Please let me know if i am wrong.
    Thanks,
    Kshriram
    Edited by: Kshriram on Aug 12, 2009 5:08 AM

    Hi Srinivas,
    I'm not sure about MSS. But you can integrate CATS with Project system and achieve this.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CATS/CATS.pdf
    You can get CATS and PS materials
    http://help.sap.com/bp_bblibrary/600/html/J12_EN_DE.htm
    http://help.sap.com/bp_bblibrary/600/BBLibrary_Start.htm
    Hope this helps
    Regards,
    Brinda L

  • MM Enterprise Structure

    Hi,
       Can someone please let me know what does the Enterprise structure of MM contains.
    Thanks

    Dear Raj,
    Here is your answer
    Organization of an Enterprise:
    Organizational Levels: The structure of an enterprise
    Client: A grouping or combination of legal, organizational, business and/or administrative units with a common purpose.
    Company code: This level represents an independent accounting unit within a client. Each company code has its own balance sheet and its own profit and loss statement.
    Plant: Operational unit within a company code..
    Purchasing organization: An organizational unit responsible for procuring materials or services for one or more plants
    Purchasing group: The purchasing organization is further subdivided into purchasing groups (buyer groups), purchasing group can also act for several purchasing organizations.
    Assignments:
    plant must be assigned to one or more purchasing organizations.
    a plant must always be assigned to a company code.
    purchasing organization can (but need not) be assigned to a company code.
    prerequisite for this is that the plant for which procurement is carried out is assigned to the purchasing organization
    Centralized/Distributed Purchasing
    •     Centralized purchasing, with just one purchasing organization
    •     Distributed purchasing, with a number of different purchasing organizations each responsible for different plants
    Reference Purchasing Organization
    Depending on the way your system is set up, either a central purchasing department can exist side by side with, but separate from, local purchasing departments, or local purchasing departments can make use of contracts and conditions created by the central purchasing department.
    A reference purchasing organization can negotiate a comprehensive contract that can be used by other purchasing organizations.
    If useful reward points,
    Vivek Maitra

  • Is there a way of moving imported images in lR4 from mac HDD to and EX HDD with out loosing LR4 data

    Hi
    i've managed to fill my mack up with images as i imported all my photos to the MAC HDD rather than an external HDD,,,school boy error :\   (but i am new to lightroom)
    as there's 30,000+ is there a way of moving them with out having to reload them to the new HDD?  i only found out my mistake when the computer was running on 1% memory...doh!
    Thanks for any advice
    Andy

    In your operating system, move the photos to wherever you want them to be (keeping the folder tree structure the same), and then in Lightroom re-link via http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm

  • With header line & with out header line ?

    what is difference between with header line & without header line ?

    When you create an internal table object you can also declare a header line with the same name. You can use the header line as a work area when you process the internal table. The ABAP statements that you use with internal tables have short forms that you can use if your internal table has a header line. These statements automatically assume the header line as an implicit work area. The following table shows the statements that you must use for internal tables without a header line, and the equivalent statements that you can use for internal tables with a header line:
    Operations without header line
    Operations with header line
    Operations for all Table Types
    INSERT <wa> INTO TABLE <itab>.
    INSERT TABLE ITAB.
    COLLECT <wa> INTO <itab>.
    COLLECT <itab>.
    READ TABLE <itab> ... INTO <wa>.
    READ TABLE <itab> ...
    MODIFY TABLE <itab> FROM <wa> ...
    MODIFY TABLE <itab> ...
    MODIFY <itab> FROM <wa> ...WHERE ...
    MODIFY <itab> ... WHERE ...
    DELETE TABLE <itab> FROM <wa>.
    DELETE TABLE <itab>.
    LOOP AT ITAB INTO <wa> ...
    LOOP AT ITAB ...
    Operations for Index Tables
    APPEND <wa> TO <itab>.
    APPEND <itab>.
    INSERT <wa> INTO <itab> ...
    INSERT <itab> ...
    MODIFY <itab> FROM <wa> ...
    MODIFY <itab> ...
    Using the header line as a work area means that you can use shorter statements; however, they are not necessarily easier to understand, since you cannot immediately recognize the origin and target of the assignment. Furthermore, the fact that the table and its header line have the same name can cause confusion in operations with entire internal tables. To avoid confusion, you should use internal tables with differently-named work areas.
    The following example shows two programs with the same function. One uses a header line, the other does not.
    With header line:
    TYPES: BEGIN OF LINE,
    COL1 TYPE I,
    COL2 TYPE I,
    END OF LINE.
    DATA ITAB TYPE HASHED TABLE OF LINE WITH UNIQUE KEY COL1
    WITH HEADER LINE.
    DO 4 TIMES.
    ITAB-COL1 = SY-INDEX.
    ITAB-COL2 = SY-INDEX ** 2.
    INSERT TABLE ITAB.
    ENDDO.
    ITAB-COL1 = 2.
    READ TABLE ITAB FROM ITAB.
    ITAB-COL2 = 100.
    MODIFY TABLE ITAB.
    ITAB-COL1 = 4.
    DELETE TABLE ITAB.
    LOOP AT ITAB.
    WRITE: / ITAB-COL1, ITAB-COL2.
    ENDLOOP.
    Without header line:
    TYPES: BEGIN OF LINE,
    COL1 TYPE I,
    COL2 TYPE I,
    END OF LINE.
    DATA: ITAB TYPE HASHED TABLE OF LINE WITH UNIQUE KEY COL1,
    WA LIKE LINE OF ITAB.
    DO 4 TIMES.
    WA-COL1 = SY-INDEX.
    WA-COL2 = SY-INDEX ** 2.
    INSERT WA INTO TABLE ITAB.
    ENDDO.
    WA-COL1 = 2.
    READ TABLE ITAB FROM WA INTO WA.
    WA-COL2 = 100.
    MODIFY TABLE ITAB FROM WA.
    WA-COL1 = 4.
    DELETE TABLE ITAB FROM WA.
    LOOP AT ITAB INTO WA.
    WRITE: / WA-COL1, WA-COL2.
    ENDLOOP.
    The list, in both cases, appears as follows:
    1 1
    2 100
    3 9
    The statements in the program that does not use a header line are easier to understand. As a further measure, you could have a further work area just to specify the key of the internal table, but to which no other values from the table are assigned.
    Internal table with header line
    you can use anywhere except obkect oriented concept.
    Internal table without header line :
    You should use in Object oriented concept..
    Always try to use without header line,performance point of view it is best..
    Example :
    Without header line.
    Structure
    types : begin of ty_itab ,
    matnr type mara-matnr,
    end of ty_itab.
    Internal table
    data i_itab type standard table of ty_itab .
    Work area
    data wa_itab like line of i_itab
    With header line
    data : begin of i_itab occurs 0,
    matnr like mara-matnr,
    end of i_itab
    itab with header lines are obsolete, anyway it will work but not recommended. instead use work area or more effiecient is field symbols. so donot use itab with header line.
    i will explain use of itab w/o header line.
    Data: itab1 type standard table of mara with header line occurs 0,
            itab2 type standard table of mara,
            wa_itab2 type mara.
    loop at itab1.
    "This will work fine.
    endloop.
    loop at itab2.
    "This will give erro that itabd does not hav workarea
    endloop.
    "so write
    loop at itab2 into wa_itab2.
    "This will work
    endloop.
    <b>The difference between
    whih header line and with out heater line of internal table.
    ex:-
    a) Data : itab like mara occurs 0 with header line.
    b) Data: itab like mara occurs 0.
    -While adding or retrieving records to / from internal table we have to keep the record temporarily.
    -The area where this record is kept is called as work area for the internal table.
    -The area must have the same structure as that of internal table. An internal table consists of a body and an optional header line.
    -Header line is a implicit work area for the internal table. It depends on how the internal table is declared that the itab will have the header line or not.
    a) Data : itab like mara occurs 0 with header line.
    table is with header line
    b) Data: itab like mara occurs 0.
    table is without header line</b>
    regards,
    srinivas
    <b>*reward for useful answers*</b>

Maybe you are looking for

  • Year end closing in Asset Accounting

    Hi, I have an urgent problem with the above subject. I ran transaction AJAB and got the error message AU075: "Asset balance sheet values not completely posted". I ran ASKB but got the message "Company Code xxxx allows enhanced periodic postings". I t

  • Windows 8 Creative Cloud says You've been signed out, I can sign in online but not on Creative Cloud Desktop App???

    My work has 5 seats of CC, I know all are signed out of. I have a new PC and logged in, downloaded CC Desktop app, and it signs me out right away. Not letting me sign in. Same thing with Outlook 2013, it will not pickup my credentials or server. I ha

  • Not-approved issue is visible in AppStore

    I have just published a new issue of a magazine in the Folio Producer - status is off course public for Apple to see it. At the same time I have submitted for approval at Apple, where it is waiting for review with the status Not Cleared for Sale. The

  • Wine & Labview Executable​s?

    Is it possible to run LabView executables under wine? Has anyone ever attempted to do this? Thanks for any information. Regards, Ken

  • Differences in cogm and cogs

    Dear all, I would like to seek clarification. 1) The actual material consumption, production expenses will set off against COGM. Correct? May I know where is the difference going? 2) COGS is more on standard cost. May I know the difference between co