Buying Group concept

Hi Experts,
Can anyone please explain the concept of Buying Groups.Its from Customer/AR side.What are the std reports to view std reports in Buying Groups.
Also is any1 aware of the monthly file transfer process in buying groups.
Your contribution will be appreciated.
Regards

Hi,
The Buying group Concept is mostly used in retail or Agency Business.
As a member of a buying group, a customer closes a contract with a vendor.The buying group, or a bank appointed by the buying group, is the pooled payment point (recipient of payments) for all amounts owing from the members of the buying group from purchase of goods, and possibly other business carried out by the pooled payment vendor.
regards
jaya

Similar Messages

  • Need help to modify a report written using Field-Groups Concept. - Part1

    Hello ABAP Experts,
    I need your help to modify the following report with following requirement as I have least knowledge
    about the field-group concept. Thats is the reason, I am pasting the whole code. As it is part of our
    production requirement. I really appreciate your help, If its sent modifying the code required.
    Modification required in the report.
    To allow the sales representatives to see billed shipments and open orders for the current month.
    1) Selection Screen Changes:
    u2022     Add selection by Sales group and Customer group
    u2022     Add sort by:     3. Ship-to / Material
    u2022     Add another selection box
    [ ] Open Orders and Shipments with the current month
    2)      For the new selection box, subtotal sales quantity and delivery quantity.
         If delivered, make the sales quantity zero in the subtotal
    Current report displays, in Selection Screen
    Sales org:
    Person Name:
    Material:
    Plant:
    Sales Office:
    Ship to Name:
    Ship to Number:
    Sorts Report by : 1. Person Name 2. Material
    Check Boxes : 1. Open Orders 2. Delayed Orders.
    report  zorder  LINE-SIZE 170
                      LINE-COUNT 58
                      MESSAGE-ID zv
                      NO STANDARD PAGE HEADING.
    TABLES:
    cdhdr,                                 "Change Doc Header
    cdpos,                                 "Change Doc Item
    kna1,                                  "Customer master
    likp,                                  "Delivery Header
    lips,                                  "Delivery Item
    *lips,                                 "Delivery Item
    zvbpa_lfa1,                            "Vendor Master
    makt,                                  "Material Desc
    t001w,                                 "Plant
    tvkbt,                                 "Sales Office
    tvko,                                  "Sales Organizations
    vbak,                                  "Sales Header
    vbap,                                  "Sales Item
    zvvbak,                                "Sales Hdr - Time calc
    vbup,                                  "Item status
    vbep,                                  "Sales Schedule Line
    vbfa,                                  "Flow documents
    vbpa,                                  "Partners
    vbrk,                                  "Billing Header
    vbrp.                                  "Billing Item
    SELECT-OPTIONS:
      s_vkorg FOR vbak-vkorg OBLIGATORY,
      s_ernam FOR vbak-ernam,
      s_matnr FOR vbap-matnr,
      s_werks FOR vbap-werks,
      s_vkbur FOR vbak-vkbur,
      s_name1 FOR kna1-name1,
      s_kunnr FOR kna1-kunnr.
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(49) text-c20.
    PARAMETERS: p_sort TYPE n DEFAULT '1'.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 19(40) text-022.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 19(40) text-023.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 19(40) text-024.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN COMMENT 19(40) text-070.
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN BEGIN OF BLOCK b20 WITH FRAME.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:p_open AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN COMMENT 5(48) text-072.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:p_delay AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN COMMENT 5(48) text-073.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b20.
    DATA:
    vbeln(11),                             "Document number
    cancel_dt TYPE d,                      "Cancellation Date
    BEGIN OF tabkey,                       "Tabkey
    mandant LIKE sy-mandt,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    END OF tabkey,
    name1_sp1 LIKE lfa1-name1,             "Sales Carrier Name
    name1_sp2 LIKE lfa1-name1,             "Delivery Carrier Name
    datum-1 TYPE d,                        "Current Dt Less 1
    datum-14 TYPE d,                       "Current Dt Less 14
    datum-90 TYPE d,                       "Current Dt Less 90
    rpt_hdr1(170),                         "Report Header 1
    rpt_hdr2(170),                         "Report Header 2
    rpt_hdr3(170),                         "Report Header 3
    cb_hdr1(170),                          "Control Break Header 1
    line_pos1 TYPE i,                      "Line Print Position HDR1
    line_pos2 TYPE i,                      "Line Print Position HDR2
    line_pos3 TYPE i,                      "Line Print Position DET2
    status,                                "Order Status
    open,                                  "Open Order
    delayed VALUE 'D',                     "Delayed Order
    v_comp(30).                            "Company Text Field
    DATA: v_flagh2.  " Flag for header 2 & 3
    DATA: ls_comwa LIKE vbco6. "Structure for flow information
    DATA: t_vbfa_tab TYPE STANDARD TABLE OF vbfa WITH HEADER LINE."Itab
    for flow information
    data: g_trans_id type vttk-tdlnr. "get transport id from flow
      information
      data  v_sales_org_cpimex type vkorg value  '3300'.
      FIELD-GROUPS:
      header,
      order.
      INSERT
      status                                 "Status
      vbak-vkbur                             "Sales Office
      vbak-ernam                             "Created By
      kna1-kunnr                             "Customer
      kna1-name1                             "Customer Name
      vbap-matnr                             "Material
      vbap-werks                             "Plant
      vbep-lddat                             "Load Dt
      vbap-vbeln                             "Sales Document
      INTO header.
      INSERT
      kna1-ort01                             "City
      kna1-regio                             "Region
      likp-traid                             "Transport ID
      lips-vbeln                             "Delivery Document
      lips-ntgew                             "Net Wt
      lips-gewei                             "Unit of Weight
      vbap-kwmeng                            "Order Qty
      vbap-vrkme                             "Sales Unit
      vbak-bstnk                             "Customer PO
      vbak-erdat                             "Sales Create Dt
      vbak-ihrez                             "PO Release
      vbak-vdatu                            "Req Delivery Dt
      vbak-vzeit                            "Req Delivery Time
      vbfa-vbeln                             "Goods issue doc
      vbrk-vbeln                             "Billing Document
      name1_sp1                              "Sales Carrier
      name1_sp2                              "Delivery Carrier
      INTO order.
    INITIALIZATION.
    AT SELECTION-SCREEN.
      IF NOT p_sort BETWEEN 1 AND 2.
        MESSAGE e022 WITH p_sort.
      ENDIF.
    * Report 1 or more of cancelled, delayed or open
      IF p_open IS INITIAL AND
         p_delay IS INITIAL.
        MESSAGE e023.
      ENDIF.
    START-OF-SELECTION.
    * Load Company Name
      WRITE 'XYZ INC'(000) TO v_comp.
    * Calculate Date Range
      datum-1 = sy-datum - 1.
      datum-14 = sy-datum - 14.
      datum-90 = sy-datum - 90.
    * Compose Parameter Header
      PERFORM parm_hdr.
    ** Compose Report Header
      v_flagh2 = 1.
      PERFORM data_selection.
    END-OF-SELECTION.
    * Determine Sort
      CASE p_sort.
        WHEN 1.
          SORT BY status vbak-ernam kna1-name1 kna1-kunnr
                  vbep-lddat vbap-vbeln.
        WHEN 2.
          SORT BY status vbap-matnr vbap-werks vbep-lddat
                  vbap-vbeln.
      ENDCASE.
      LOOP.
        AT NEW status.
          CASE status.
            WHEN delayed.
              WRITE 'Delayed Orders'(061) TO rpt_hdr1.
            WHEN OTHERS.
              WRITE 'Open Orders'(062) TO rpt_hdr1.
          ENDCASE.
          NEW-PAGE.
        ENDAT.
        AT NEW vbak-ernam.
          IF p_sort = 1.
            CLEAR cb_hdr1.
            WRITE 'CAA:'(064) TO cb_hdr1.
            WRITE vbak-ernam TO cb_hdr1+5.
            NEW-PAGE.
          ENDIF.
        ENDAT.
        AT NEW vbap-matnr.
          IF p_sort = 2.
            CLEAR makt.
            SELECT SINGLE * FROM makt
                WHERE spras = sy-langu AND
                      matnr = vbap-matnr.
            CLEAR cb_hdr1.
            WRITE 'Material:'(042) TO cb_hdr1.
            WRITE vbap-matnr TO cb_hdr1+10.
            WRITE makt-maktx TO cb_hdr1+21.
            NEW-PAGE.
          ENDIF.
        ENDAT.
        AT NEW vbap-werks.
          AT order.
            RESERVE 3 LINES.
            SKIP 1.
            NEW-LINE.
    * Indicate new open item
            WRITE vbap-vbeln TO vbeln.
    * Find Transport ID
    * Fill the structure LS_COMWA
            ls_comwa-mandt = sy-mandt.
            ls_comwa-vbeln = vbap-vbeln.
            CALL FUNCTION 'RV_ORDER_FLOW_INFORMATION'
              EXPORTING
                comwa    = ls_comwa
              TABLES
                vbfa_tab = t_vbfa_tab.
            IF sy-subrc EQ 0.
              READ TABLE t_vbfa_tab WITH KEY vbtyp_n = '8'.
              IF sy-subrc EQ 0.
                SELECT SINGLE tdlnr INTO g_trans_id
                  FROM vttk WHERE tknum = t_vbfa_tab-vbeln.
                CONDENSE g_trans_id.
              ENDIF.
            ENDIF.
            IF vbak-erdat >= datum-1.
              vbeln+10 = 'N'.
            ENDIF.
            CASE p_sort.
              WHEN 1.
                WRITE 1 vbak-vkbur.
                WRITE 8 kna1-name1.
                WRITE 44 vbeln.
                WRITE 56 vbap-matnr.
                WRITE:
                    75 vbap-kwmeng LEFT-JUSTIFIED,
                     vbap-vrkme,
                    100 vbak-bstnk,
                     vbak-ihrez,
                    134 vbak-vdatu,
                        vbak-vzeit,
                    154 vbep-lddat.
                WRITE 166 vbap-werks.
                NEW-LINE.
                WRITE:
                  5  kna1-ort01,
                  41 kna1-regio.
                IF name1_sp2 IS INITIAL.
                  WRITE:
                    45 name1_sp1,
                ELSE.
                  WRITE 45 name1_sp2.
                  IF name1_sp1 = name1_sp2.
                    WRITE ' '.
                  ELSE.
                    WRITE '*'.
                  ENDIF.
                ENDIF.
                IF  vbak-vkorg =  v_sales_org_cpimex .
                  WRITE  81 g_trans_id.
                ELSE.
                  WRITE  81 likp-traid.
                ENDIF.
                WRITE:
                  102 lips-vbeln,
                  115 lips-ntgew NO-ZERO LEFT-JUSTIFIED,
                      lips-gewei,
                  140 vbfa-vbeln,
                  152 vbrk-vbeln.
              WHEN 2.
                WRITE 1 vbak-ernam.
                WRITE 14 vbak-vkbur.
                WRITE 21 kna1-name1.
                WRITE 57 vbeln.
                WRITE:
                    69 vbap-kwmeng LEFT-JUSTIFIED,
                        vbap-vrkme,
                    92 vbak-bstnk,
                        vbak-ihrez,
                    126 vbak-vdatu,
                      vbak-vzeit,
                    146 vbep-lddat.
                WRITE 162 vbap-werks.
                NEW-LINE.
                WRITE:
                  5  kna1-ort01,
                  41 kna1-regio.
                IF name1_sp2 IS INITIAL.
                  WRITE:
                    45 name1_sp1,
                ELSE.
                  WRITE 45 name1_sp2.
                  IF name1_sp1 = name1_sp2.
                    WRITE ' '.
                  ELSE.
                    WRITE '*'.
                  ENDIF.
                ENDIF.
                IF  vbak-vkorg =  v_sales_org_cpimex .
                  WRITE  81 g_trans_id.
                ELSE.
                  WRITE  81 likp-traid.
                ENDIF.
                WRITE:
                   102 lips-vbeln,
                   115 lips-ntgew NO-ZERO LEFT-JUSTIFIED,
                       lips-gewei,
                   140 vbfa-vbeln,
                   152 vbrk-vbeln.
            ENDCASE.
          ENDAT.
        ENDLOOP.
    *       FORM PARM_HDR                                                 *
    FORM parm_hdr.
      WRITE 'Program selections'(101) TO rpt_hdr1.
      WRITE 'Sign'(102) TO rpt_hdr1+29.
      WRITE 'Option'(103) TO rpt_hdr1+34.
      WRITE 'From'(104) TO rpt_hdr1+41.
      WRITE 'To'(105) TO rpt_hdr1+77.
    ENDFORM.                    "PARM_HDR
    *       FORM RPT_HDR                                                  *
    FORM rpt_hdr.
      CASE p_sort.
        WHEN 1.               "When sort by CAA
          WRITE 1'SOff'(066).
          WRITE 8'Customer'(009).
          WRITE 44'Sales Doc'(010).
          WRITE 56'Material'(031).
          WRITE 75'Sales Qty'(011).
          WRITE 100'Customer PO'(012).
          WRITE 134'Req.Del.Dt & Tm'(014).
          WRITE 154'Load Dt'(015).
          WRITE 166'Plnt'(016).
          NEW-LINE.
          WRITE 5'City'(017).
          WRITE 41'Reg'(069).
          WRITE 45'Carrier'(018).
          WRITE 81'Transport ID'(019).
          WRITE 102'Dlvry Doc'(021).
          WRITE 115'Dlvry Qty'(025).
          WRITE 140'PGI Doc'(026).
          WRITE 152'Billng Doc'(027).
        WHEN 2.               "When sort by Material
          WRITE 1'Created By'(008).
          WRITE 14'SOff'(066).
          WRITE 21'Customer'(009).
          WRITE 57'Sales Doc'(010).
          WRITE 69'Sales Qty'(011).
          WRITE 92'Customer PO'(012).
          WRITE 126'Req.Del.Dt & Tm'(014).
          WRITE 146'Load Dt'(015).
          WRITE 162'Plnt'(016).
          NEW-LINE.
          WRITE 5'City'(017).
          WRITE 41'Reg'(069).
          WRITE 45'Carrier'(018).
          WRITE 81'Transport ID'(019).
          WRITE 102'Dlvry Doc'(021).
          WRITE 115'Dlvry Qty'(025).
          WRITE 140'PGI Doc'(026).
          WRITE 152'Billng Doc'(027).
      ENDCASE.
    ENDFORM.                    "RPT_HDR
    INCLUDE zrpthdri.
    WRITE:
    / rpt_hdr1.
    ULINE.
    IF v_flagh2 <> 0.
      PERFORM rpt_hdr.  "Write secondary header
      ULINE.
    * Control Break Header
      WRITE / cb_hdr1.
    ENDIF.
    Continued in Part-2
    Thanks  a ton in advance.
    Mythili Sharma
    Edited by: Mythili sharma on Mar 30, 2009 3:32 AM
    Edited by: Rob Burbank on Mar 30, 2009 10:46 AM

    Hello ABAP Experts,
    I need your help to modify the following report with following requirement as I have least knowledge about the field-group concept. Thats is the reason, I am pasting the whole code. As it is part of our production requirement. I really appreciate your help, If its sent modifying the code required.
    Modification required in the report.
    To allow the sales representatives to see billed shipments and open orders for the current month.
    1) Selection Screen Changes:
    u2022     Add selection by Sales group and Customer group
    u2022     Add sort by:     5. Ship-to / Material
    u2022     Add another selection box
    [ ] Open Orders and Shipments with the current month
    2)      For the new selection box, subtotal sales quantity and delivery quantity.
         If delivered, make the sales quantity zero in the subtotal
    Current report displays, in Selection Screen
    Sales org:
    Person Name:
    Material:
    Plant:
    Sales Office:
    Ship to Name:
    Ship to Number:
    Sorts Report by :
    1. Person Name
    2. Material
    3. Plant
    4. Sales Office
    Check Boxes :
    1. Open Orders
    2. Delayed Orders
    3.Cancelled Orders
    PLEASE DOWNLOAD THE COMPLETE REPORT FROM THE FOLLOWING LINK
    << Link removed >>
    It would be a great help, If the program is modified according to the requirement and snd it back through send space and send link, even if u send the necessary changes to be done in the report is also appreciable.
    Thanks a ton in adanvce
    Mythili
    I wanted to close this thread as I could not put my question in a proper format. So please reply in the new thread which is posted.
    Edited by: Mythili sharma on Mar 30, 2009 2:16 PM
    Edited by: Rob Burbank on Mar 30, 2009 4:24 PM

  • How to use the buying group to get the report?

    Dear all:
    I check the function of buying group in customer master data.
    system show  The buying group is used for reporting purposes only. You can, for example, generate an account statement with line items for all members and for the buying group.
    but i check all report link with customer, not find this fields.
    why?  and  how to use this function in the report?
    can you give some suggestion?
    thanks
    ALEX

    anybody can help me?

  • Buying Group / End Customer Validation in Trade Management

    Hi All,
    I need to validate a buying group and one of its member as End Customers against an agreement in POS. Does anyone know a way of acheiving this objective ?
    Eg:
    Manf = M
    Disti = A
    Buying Group = BG
    End Customer = EC
    EC is a member of BG. Disti A sends a contract record in POS, which BG has with M and reports a sale to EC. So when processing the POS line, the EC-BG combo has to be validated against the contract. The Contract Type (Agreement Type) I am using is Pricelist and BG buying group is added as a qualifier in the Pricelist.
    Thanks

    Hello Woz2000,
    I'm very disappointed to read that your recent visit to the Hartsdale store has resulted in such feelings. What you describe is not the superior level of service to which we aspire, and I very much regret that we've not lived up to that ideal for you.
    I presume from your message that you did not speak to a manager during your recent visit. If you wish, I can work on your behalf with the store's leadership to help rectify this situation, and I'm happy to do so. If you' please send me a private message with your preferred contact information, I'll get in touch with the store managers.
    Thank you for bring this to my attention and for sharing your experience with us.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

  • I suggest maintaining the "Layer" and "Group" concept as in Photoshop

    Another one I see many people asking about is the ability to "Name" the boxes. Box. Box, Box, Box, is not too intuitive.
    I am also going to suggest maintaining the "Layer" and "Group" concept as in Photoshop to soften the learning curve for new users.
    I currently have boxes that are NOT grouped, but behaving like a group if I try to move them. Kinda frustrating.

    You can double click on a Div in the DOM panel to rename any 'layer' or 'group'
    You can also degroup and regroup grouped elements by clicking on the little grouped icon which might be why your group isn't behaving like a group.

  • Buy groups for logic pro 7

    does anyone know of a buy group for logic pro 7 or if not, how can one be started and to whom one should appeal ?
    pinineco

    Based on my observations of other companies I'll venture a guess... If Apple were some small company peddling low ticket price goods and needed to raise cash, I could see them offering a group buy at some point, like, over the holidays. But my feeling is that that's unlikely to happen.
    Anyway, how much would you be looking to save? $100? $200?

  • Ledger Group Concept

    Hi, This may seem like a silly question? What is the concept of a ledger group. What is meant by ledger in ECC??
    thanks

    A Ledger Group is notthing but "a group of Similar GL accounts" U can group couple of GL accounts to a group, ex; Expenses, INcome, Assets Liabilities, still more u can create any no. of groups, like Rent Group, etc., but is not suggested in all castes,
    A group will control a number range of these Master Records, and it controls Fiels to  be Displaid, or made Recquired or Optional or to be Supressed at the time of creating of GL Master Record.
    This, a Ledger Group controls, No. range, and Field Status.
    Please assign points to say thanks
    Satish

  • Inverse object-group concept

    Does Cisco have a way to write an ACL to block the opposite of an object-group?
    For example, I want to write an ACL allowing all traffic other than to object-group Corp_Net...
    thanks,
    ttpm

    Hi,
    Well usually you build the required ACL from a combination of "permit" and "deny" statement. To my understanding there is no other way to use an "object-group" other than to use it as a source or destination of a permit or deny statement. The contents under the "object-group" will be used, nothing else.
    I am not sure what the exact requirement in the above is but I would imagine it would be something like this
    access-list ACL remark Deny all traffic to Corp_NET
    access-list ACL deny ip any object-group Corp_NET
    access-list ACL remark Allow all other traffic
    access-list ACL permit ip any any
    Naturally the above would a pretty simple example of a situation where you want to block traffic from behind some interface to a corporate network and then allow all other traffic.
    - Jouni

  • My Address Book has been emptied of addresses, both personal and group. How can I get them back? Is it because of the IDN update?

    When I go in address book, then on either or personal or group, nothing desirable happens. Under 'group' my name appears broken seemingly into columns, as well as my user name, and my email addy for my gmail account. Funny about that gmail name, as I have never intentionally linked it to my tbird account. Please help this old granny, it is driving me insane. Not to mention that i've written this mozilla support bit at least 5 times and something wipes it out before I can submit it.

    What happened when this change occurred? What is an "IDN update"?
    Can you provide a screenshot (suitably obfuscated) to demonstrate the "my name appears broken seemingly into columns" effect?
    I don't know of anything formally called a "group" in Thunderbird's address book, so any other words or names that appear might help here. For instance, my Address Book has mentions of Address Book Contact, Address Book and List. The "List" is perhaps the closest to the group concept used in other address book environments.
    Finally, what version of Thunderbird and what OS are you usng?

  • How to send the data to SQL server group in Reciever JDBC scenario

    Hi Experts,
    I have done IDOC to JDBC scenario, the data is successfully going to SQL server in reciever side, but in reciever side they got local server and other server groups also there, the data ia m sending is going to local server group, so where can i mention the other server group name in reciever JDBC adapter.
    Kind Regards,
    Praveen.

    Hi,
    Except if there is a way to specity this in the URL field (either using a suitable properties or a specific syntax), I do not see such feature in the JDBC adapter ... I'm not familiar with SQLServer group concept, but maybe you could use multiple receivers instead ?
    So far, I haven't been able to see how to use groups in the URL ... Maybe there is way to trigger replication at SQLServer level ? Stored proc ?
    Chris
    Edited by: Christophe PFERTZEL on Dec 9, 2009 11:26 AM

  • AP Grouping configuration

    Infrastructure:
    we have 3000 access point spread across 15 buildings,
    we have 15 WiSMs (3no.s of 6509 controllers) catering those AP's from central locations,
    we have 350 AP's in one building (3 floors) and in some 200 AP's(2 floors),
    planning for ACS with EAP-FAST implementation.
    Requirement:
    I want to use /24 subnet for AP's as well as for WLAN Clients.
    clients should have /24 subnet only
    I know about the AP grouping concept and I read some document aswell on the cisco site, but in those documents didn't help me much for AP Grouping VLAN and  external DHCP configuration (Client)
    Could anyone help me in configuring the AP grouping with external DHCP server for clients /24 subnet IP's.

    Thanks for your reply,
    My Switch working as L2 in buildings and L3 only in Datacenter location.
    I am Planning to use 8 SSID's,
    As a best practice from Cisco 100 AP's per subnet, I would like to go with AP grouping configuration, now I would like to know how to configure clients with /24 subnet, (external DHCP Server), if you have any sample configuration steps kindly share the same, or give me idea about how to configure /24 subnet for clients.
    in the WiSM I am configuring AP grouping 90 access point to one group, 150 access point to one group, remaining in the other group.
    Now since I have only 3 AP group and I want to configure /24 clients keeping max. 20 users per access point. how to configure the client IP address.

  • "System Group" in SOA Suite 11g

    Everything looks good while upgrading ESB of FW 10g to Mediator of 11g.
    But seems there is no "Service Group" concept, which is introduced in ESB for projects hierarchy.
    Does anybody know any similar ideas in FW 11g?
    What I want is to group projects in the console, in other words, set up projects hierarchy in the console.
    Thank you in advance.
    -Simon

    The concept of system-groups (previous on Oracle ESB) and bpel domains are not in this 11gR1 release.
    Marc

  • How assign ABAP programs & T codes to auth groups R3 4.71, oracle 9.2.0.7

    Hi Experts,
    How to assign ABAP programs and customized transactions to authorization groups. R3 4.71, oracle 9.2.0.7, Sun Solaris.
    Can some one help me...
    Thanks in advance. . .

    Hi Jalli,
    Take a look at how SAP uses tcode S_ALR_87101286 to control the start of a report either via SE38 or via the tcode itself.
    In that transaction you can also read the documentation on protecting and restoring ABAP reports using the program authorization group concept. Click on the "information" icon or start "transaction" .HE from the first screen S_ALR_87101286 for more detailed infos, or select "Documentation" in SE38.
    Cheers,
    Julius

  • In Item groups need to be create subgroups

    Hi every one,
    In Itemgroups need to create a sud groups for example  Computers is main group under computers we have to create different sub groups like main Item Group is Computers under this group dell computers is a sub group and under dell there two more sub groups desktop and notebooks....
    if any one have Idea about how to create this that would be really helpful for me
    thank you in advance...
    Regards
    Shankar

    Hi Shankar,
    Item Group Based Sub Group Concept is not available in SAP B1,Use Item Properties or UDF .
    Check the following thread
    Re: customer/vendor specific item list
    Blocking Item for a Particular Customer
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Serialization Groups in Inbound Process

    Can any one provide me the information about "How serialization Group" concept works in Inbound?
    Thanks,
    Sekhar.J

    Hi Boss,
    Serialization is nothing but sending the idocs in sequence.
    Best Regards,
    Narasimha Rao.

Maybe you are looking for

  • Extension of connecting mater and child tables

    Initial Question: Need help in SQL : I have master table name called : AA Data is having : Date Display Name ===================== 10/3/2009 Q3 2009 1/3/2010 Q4 2009 1/13/2010 Q1 2010 4/4/2009 Q1 2009 7/4/2009 Q2 2009 I have Child Table =============

  • Alligning Group labels to center in Matrix with Group report

    Hi there! I am facing difficulty in alligning the group labels produced using matrix(cross tab) query in to center across direction. As it only stretches to first column of the underlying Matrix Across Column and Cell. Please help me in solving this

  • Regarding smart forms (really urgent)

    hi, i am new to smartforms and i got report to make changes in the smart forms,plzz help me out as i know nothing about the smart forms by providing me it in easiest & simplest form. if find useful help will be deifnately rewarded. Edited by: ric .s

  • Why do I keep seeing error 107?

    I try and download the trial of Adobe After Effect [CS5] but everytime I see the error message saying that it can't connect to adobe.com [error 107] I've looked at the solution page and done everything on there but it still  won't let me download it

  • Vision builder AI running Ethernet IP server on my computer

    Hi, I am running Vision bulider AI on my computer and I need to exchange data thru the Ethernet/IP protocol. In vision bulider I have startet the Ethernet/IP server. I am using a Devicenet to Ethernet IP gateway from Hilscher, When I go online on thi