HOW TO SET ITEM MASTER IN ITEM GROUP AUTHORIZATION

Hello,
Using Sap Business One 2007 B how to solve this item master authorization issue.
Kind regards,
Karunagaranjanani.

Hi,
Try this,
Create 1 Mendatory UDF field in Item Master Header.
->> Choose Tools on menu bar.
->> User Defined fields. -> Manager User Fields.
->> Open the Manager User Fields Window.
->> Master Data.
->> Items. -> Items.
and Click Add button in bottom right then add the UDF Title & Description.
put the Tick mark of Set Default value for Field and put the value of 0.
then, put the Tick mark of Mendatory Value and add the UDF.
Assign the below FMS in UDF.
->> Open the Item Master and ShiftAltF2 in UDF then put the Saved Query.
put the Tick mark of AutoRefresh and select the Item Group,
put the Tick mark of Display saved values.
Try assign the below FMS in UDF(Mendatory field).
for example: Item Group -> (100) -> Item.
Item Group -> (101) -> Accessories. Item Group -> (102) -> Hardware.
USer sign 1 -> Manager. USer sign 2 -> Admin.
SELECT ' ' FROM OITM T0
WHERE
$[OITM.ItmsGrpCod] in ('100', '101', '102')
AND
$[OITM.UserSign] in ('1', '2', '3')
Regards,
Madhan.

Similar Messages

  • How to set custom master page for social/sites.aspx in sharepoint 2013

    How to set custom master page for social/sites.aspx in sharepoint 2013.?
    File path is
    C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\FEATURES\SocialDataStore\SocialDataStoreList\sites.aspx
    Thanks in advance

    Hi,
    You could open the sites.aspx in Notepad or SharePoint designer, and set the master page to your own master page directly via editing:
    <%@ Page language="C#" MasterPageFile="~masterurl/custom.master"      Inherits="Microsoft.SharePoint.Portal.WebControls.FollowedContentWebPartPage,Microsoft.SharePoint.Portal,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c"
    %>
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to set 'Material Master' tab as default in standard transaction CG54?

    Hi All
    I am having a requirement to call the transaction CG54 from a custom program. On calling the transaction, I need to put some default values to the input fields and the default tab selected should be 'Material Master'. I am able to default input fields using BDC Transaction call. Can anybody guide me how to set Material Master tab as the default tab selected?
    Thanks in advance
    Rinzy Deena Mathews

    Hi All
    Solved the issue by myself.
    Initialization of tab in transaction CG54 is based on the values in the standard table TCGSGP - EHS: Search parameter (reproduction from SET/GET memory).
    Calling of the transaction CG54, with default values and parameters can be done with the help of following standard function module:
    *-- Types
      TYPES : BEGIN OF t_obj_tab.
              INCLUDE STRUCTURE rcgapplobj.
      TYPES : END OF t_obj_tab.
      TYPES : tt_obj_tab  TYPE t_obj_tab OCCURS 20.
      TYPES: BEGIN OF t_zplm02,
               sbgvid TYPE zppr_de_sbgvid,
             END OF t_zplm02.
    *-- Internal Tables
      DATA: li_obj_tab    TYPE tt_obj_tab WITH HEADER LINE,
            li_report     LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_variant    LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_subid_tab  TYPE espre_subid_rep_tab_type WITH HEADER LINE,
            li_report_m   LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_variant_m  LIKE rcgstdrecn OCCURS 20 WITH HEADER LINE,
            li_subid_tab_m TYPE espre_subid_rep_tab_type WITH HEADER LINE,
            li_zplm02     TYPE STANDARD TABLE OF t_zplm02.
    *-- Structures
      DATA: ls_addinf     TYPE rcgaddinf,
            ls_rcgradmsel TYPE rcgradmsel,
            lw_zplm02     TYPE t_zplm02.
    *-- Variables
      DATA: lv_trtype     TYPE rcgdialctr-trtype VALUE 'D',
            lv_actype     TYPE rcgdialctr-actype VALUE 'D',
            lv_viewappl   TYPE tcgl3-repappl     VALUE 'MATMASTER',
            lv_sel_valdat TYPE rcgradmsel-valdat,
            lv_sel_langu  TYPE rcgradmsel-langu,
            lv_ucomm      TYPE syucomm,
            lw_gen        TYPE char10,
            lv_flag       TYPE esp1_boolean,
            lv_werks      TYPE werks_d,
            lv_bsbgvid    TYPE zppr_de_bsbgvid.
    *-- Parameters
      ls_addinf-aennr      = sy-datum.
      ls_addinf-valdat     = sy-datum.
      ls_rcgradmsel-sbgvid = iw_gen.
      ls_rcgradmsel-matnr  = p_matnr.
      ls_rcgradmsel-namcat = 'MATNR'.
      ls_rcgradmsel-reprefflg = abap_true.
      ls_rcgradmsel-numcat = 'NUM'.
    *-- Application Object
      li_obj_tab-repappl = 'MATMASTER'.
      li_obj_tab-objectkey = p_matnr.
      APPEND li_obj_tab.
    *-- Evaluate selection screen and fill keytab
      CALL FUNCTION 'C1G0_KEYTAB_FILL_FROM_RADMSEL'
        EXPORTING
          i_radmsel             = ls_rcgradmsel
          i_valdat              = ls_addinf-valdat
          i_actype              = lv_actype
          i_flg_popup_no_param  = abap_true
        IMPORTING
          e_flg_cancel          = lv_flag
        TABLES
          i_applobj_tab         = li_obj_tab
          e_keytab_report       = li_report
          e_keytab_variant      = li_variant
          e_subid_refreport_tab = li_subid_tab
        EXCEPTIONS
          OTHERS                = 1.
    *-- Initilize Report Header Buffer
        CALL FUNCTION 'C1AP_ESTDH_BUF_INIT'
          EXPORTING
            i_aennr  = ls_addinf-aennr
            i_valdat = ls_addinf-valdat.
    *-- Parameters
        ls_addinf-aennr      = sy-datum.
        ls_addinf-valdat     = sy-datum.
        ls_rcgradmsel-sbgvid = iw_gen.
        ls_rcgradmsel-matnr  = p_matnr.
        ls_rcgradmsel-namcat = 'MATNR'.
        ls_rcgradmsel-reprefflg = abap_true.
        ls_rcgradmsel-numcat = 'NUM'.
    *-- Application Object
        li_obj_tab-repappl = 'MATMASTER'.
        li_obj_tab-objectkey = p_matnr.
        APPEND li_obj_tab.
    *-- Initial report block tree of information
        CALL FUNCTION 'C1G2_ENTRY_INQUIERY'
          EXPORTING
            i_trtype              = lv_trtype
            i_actype              = lv_actype
            i_addinf              = ls_addinf
            i_viewappl            = lv_viewappl
            i_sel_valdat          = lv_sel_valdat
            i_sel_langu           = lv_sel_langu
            i_rcgradmsel          = ls_rcgradmsel
          IMPORTING
            e_okcode              = lv_ucomm
          TABLES
            i_keytab_report       = li_report
            i_keytab_variant      = li_variant
            i_subid_refreport_tab = li_subid_tab
            i_applobj_tab         = li_obj_tab.
    With Regards
    Rinzy Deena Mathews.

  • How to set custmer master block for posting & how to set the status .....

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. Use an appropriate subject in your message thread. >
    Hi ...
    How to set custmer master blocked for posting & how to set the status has deleted. please provide the steps for the above two actions.
    thanks

    Hi,
    U can use T-code FD05 for Blocking the customer and
    T-code FD06 in order to set for deletion,
    Assign Points if useful,
    Regards,

  • Single Item Master across Business Groups

    Hi Gurus,
    Client wants to implement single item master across the business groups (BG).
    Does this require set up of HR Profile for allowing Cross Business groups?
    Is there any other setting that needs to be done (in addition to traditional Inv Org definition)?
    Appreciate your early response.
    Thanks,
    Sudarshan

    Sudarshan
    I think you need to setup Hr security profile only if you are using that. If not you just need to enable the profile value for cross business group. This is required just in case if an employee needs to be picked up in the lov in an item attribute (I don't remember whether there is one) from diff BG.Also move order approvals need to be tested if you are using that feature.
    In general I think anything that need to do with employees need to be tested.
    Thanks
    Nagamohan

  • How to set View for Completed items inside Tasks?

    How to set button for 'View' and see Completed items or not completed inside Tasks?

    Hi,
    You want to set custom views for Tasks folder so that when we click a view button, it will show all Completed or incomplete tasks, am I correct?
    Which version of Outlook are you using? There are existing views for completed/incomplete tasks in Outlook. In Outlook 2010 and Outlook 2013, we can find the buttons under View tab > Change View. Click Completed button to view all completed
    tasks; Click Active button to view incomplete tasks.
    In Outlook 2007, just click View > Current View to switch between different views.
    If I've misunderstood something, please feel free to let me know.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to set different color for items in selectManyCheckbox

    hi,
    I would like to change item text background color for each item on selectManyCheckbox (different for each item).
    It is only 5 items so that could be static reference or select.
    I know only how to change background for all items
    af|selectManyCheckbox::item-text {
        background:orange;
    How to select concrete item text and change color for only them?
    I found similar problem:
    css - Set background color of every individual checkbox of p:selectManyCheckbox - Stack Overflow
    but this dont work for me because I dont have in adf tr structure
    I need somethink like this:
    af|selectManyCheckbox::item-text XXXX - select here one of the item by number on list or id  {
        background:orange;

    hi,
    thanks Alejandro and Federico for answers.
    I use JDev 11.1.1.6. I dont write it in previously post because I think that is a more css then adf problem.
    I have 5 selectItem based on simple List<String> {"text1", "text2", "text3", "text4". "text5"}:
    <af:selectManyCheckbox label="List" id="smc2"
                                               layout="horizontal"
                                               value="#{bean.listInBean}"
                                               autoSubmit="true">
                          <af:selectItem label="text1" value="text1" id="si47"/>
                          <af:selectItem label="text2" value="text2" id="si43"/>
                          <af:selectItem label="text3" value="text3" id="si46"/>
                          <af:selectItem label="text4" value="text4" id="si45"/>
                          <af:selectItem label="text5" value="text5" id="si44"/>
                        </af:selectManyCheckbox>
    and I would like to color first selectItem text to orange, second to red.. etc, The list is a static list. Not would be changed.
    After Alejandro answer I build simple for each element (anyCollection contains item with two fields: textValue and label {(text1,text1), (text2,text2)...}
      <af:forEach items="#{bean.anyCollection}"
                                      var="item">
                            <af:selectItem id="si48" value="#{item.textValue}"  styleClass="yourClassName#{var.index}"
                                           label="#{item.label}"/>
                          </af:forEach>
    And now if I have my var called "item" I can write 5 css style classe yourClassName#{var.index} with different color, but there is a problem:
    Attribute styleClass is not defined for af:selectItem
    If it will be so simple I will just add 5 style classes for each selectItem
    <af:selectItem label="text1" value="text1" id="si47" styleClass="yourClassName0"/>
    <af:selectItem label="text2" value="text2" id="si43" styleClass="yourClassName1"/>
    Should I use other component then adf facer rich?

  • How to Set Value of page item?

    String dimLayoutNew[][] = new String[3][];
    dimLayoutNew[0] = new String[1];
    dimLayoutNew[1] = new String[1];
    dimLayoutNew[2] = new String[2];
    dimLayoutNew[0][0] = measureString;
    dimLayoutNew[1][0] = strDimension1;
    dimLayoutNew[2][0] = strDimension2;
    dimLayoutNew[2][1] = strDimension3;
    Boolean applyNewLayoutFlag = tableQuery.layout(dimLayoutNew);
    In this Layout,How to set the value of strDimension2 page item to one member of strDimension2?
    thanks!

    what about this - look up the javadoc to get more >info ....You would have to admit, while BI Beans are great, the documentation is a little light.
    int targetHPos[] = targetDataAccess.getEdgeCurrentHPos (2);
    now apply the order to the targethpos as you like...now, once you make your changes to the targetHPos, how does one actually make the change to the Query object (i.e. what method does one need to call to pass the new targetHPos in??) I looked through the JavaDoc and didn't see a SetCurrentHPos or equivalent function in the DataAccess Class. Is there one?
    Also, what role, if any, should the SetCurrentPage method of the query object play if I'm not using it correctly?

  • How to set custom master page for sharepoint application page ?

    Hello,
    I need to apply custom master page for the custom application page I created for login purpose.
    Can anyone please let me know how to apply master page for custom application page ?
    Note : I need to set custom master page for application page at web application level.
    thanks,
    Dipti Chhatrapati

    Hi Dipti,
    You can use the same reference as ASP.NET
    Example
    "<%@ Page Language="C#" masterpagefile="../_catalogs/masterpage/minimal.master" title="teste" inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" meta:webpartpageexpansion="full"
    meta:progid="SharePoint.WebPartPage.Document" %>"
    You can use SharePoint Designer 2010
    http://www.microsoft.com/download/en/details.aspx?id=16573 to make the reference from you aspx page to you custom masterpage.
    When you are editing a aspx page you can go to ribbon "Style" and attach the custom Masterpage.
    André Lage Microsoft SharePoint, CRM Consultant
    Blog:http://aaclage.blogspot.com
    Codeplex:http://spupload.codeplex.com/http://simplecamlsearch.codeplex.com/

  • Mismatch in InStock Quantity in Item Master at Item level and W/H Level

    Hi,
          All,
                I get some mismatch in 'InStock Quantity' at Item level and W/H Level, in Item Master.
               for Some Item and mismatch increases day by day.
    ex:          At one total item Instock Qty : 100
                   but in W/H 1 InStock Qty :   -80
                   in W/H2  InStock Qty :   -2
    Please give me reason for such a problem and also, solution to overcome this problem
    Thanks
    Vivek Kumar Gaurav

    Dear Gordon,
    Thanks for replying me.Yes,there are multiple add-ons are running on client. There is no work done with SAP inventory. So you can consider that it's a problem of vanilla SAP B1.
    Warm Regards
    Vivek Kumar Gaurav

  • How to set up master rep & work rep & execution rep

    Hi,
    i want to set up master rep & work rep & execution rep in sunsolaris i have 2 ips one for production and 1 for developement.
    how many oracle users i requred and to set up master rep & work rep & execution rep's. please suggest me how to do..
    Regards
    Vinod

    Hi Vinod,
    Adding some points to Sutirta's reply.
    I guess , You are asking about versionising and Moving project from deveopment env to production env.
    Answer:-
    You need to created your different Repositories ( Work-Dev, Work-QA , Work--Prod ) with unique ID's
    Otherwise some ID's conflicts will be there when you move projects from one env to another
    Now there are different Types of export and import (synonym - insert , duplicate , synonym Insert/uopdate ....)
    for more details you can reffer best practices pdf file for ODI. - odi-bestpractices-datawarehouse-whitepaper.pdf
    Please let me know still its not clear.
    Regards,
    Rathish A M
    Edited by: Rathish on Jun 8, 2010 3:09 PM

  • How to set Monitoring Discovery Interval for Group Population(GroupPopulator) in SCOM

    Hi,
    Here with I have created discovery with SystemCenter.GroupPopulator.
    <Monitoring>
        <Discoveries>
          <Discovery ID="mydiscovery" Enabled="true" Target="myclass1" ConfirmDelivery="false" Remotable="true" Priority="Normal">
            <Category>Discovery</Category>
            <DiscoveryTypes />
            <DataSource ID="DS" TypeID="SystemCenter!Microsoft.SystemCenter.GroupPopulator">
              <RuleId>$MPElement$</RuleId>
              <GroupInstanceId>$Target/Id$</GroupInstanceId>
              <MembershipRules>
                <MembershipRule>
                  <MonitoringClass>$MPElement[Name="SC_a6e117fa996b47c4ae886c188bd8b2ae_Service_b3ad7ca40a1849158c3111d9d508e724"]$</MonitoringClass>
                  <RelationshipClass>$MPElement[Name="SCMembership_ecd4ff08a512499d8cbc61f024d165f2"]$</RelationshipClass>
                </MembershipRule>
                <MembershipRule>
                  <MonitoringClass>$MPElement[Name="SC_bd2b10979bb54fcf8392edf4eda0b0e1_Service_b3ad7ca40a1849158c3111d9d508e724"]$</MonitoringClass>
                  <RelationshipClass>$MPElement[Name="SCMembership_c30716b6e57140ac96fcd406a7bce0cb"]$</RelationshipClass>
                </MembershipRule>
              </MembershipRules>
            </DataSource>
          </Discovery>
    </Discoveries>
    </Monitoring>
    i referred below link, 
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/291585a6-d7e3-4c58-a703-dc0879ab2bb9/scom-discovery-interval-configuration?forum=operationsmanagergeneral
    How to set  Interval for this above discovery?
    Thanks
    -satheesh

    Thanks Chunky,
    But  FilteredRegistryDiscoveryProvider is not helped for me!!
    Here i tried to create distributed application via code. First i tried to create via wizard using scom console and saved as one new MP. It working fine and rollup the heath state changes immediately. Then deleted that MP created via Wizard and re-import
    that same MP again in to SCOM. It not rollup the state changes immediately. It took time like 4-6 hrs to rollup the state changes.
    pls check my link,
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/1317dfa1-a124-47b3-97a7-f8bb05ae40c9/not-monitored-state-for-rollup-monitor-in-distributed-application-help-me?forum=operationsmanagergeneral
    I tried to find out solution for it. So i tried to run that discovery on Frequency based and rollup the recent heath state.
    Why its working while i created distributed application via Wizard, but it took more time for  rollup If i re-import that same MP again?.
    - satheesh

  • How to set the conditions for item deletion approval workflow?

    Hi,
    I have created approval workflow for item modifications ie, when user try to modify an item, it will send a mail to Project Manager. For that I set the conditions in Change the behavior of the overall task: 1. When the task process starts 2 . When the task
     process completes .
    Change the behavior of the single task: 1.when a task is Pending.
    [I followed this https://www.nothingbutsharepoint.com/sites/eusp/Pages/5-Steps-to-Enhance-SharePoint-2010-Approval-Workflow.aspx ]
    My Requirement is that I want to set this same workflow for the scenario: when the user deletes an item it will send a mail (intimation mail for item deletion) to Project Manager. here i dont want to send modification mails when user deletes an item.
    When user modifies an item: 1. intimation mail, 2. Approve/Reject mail 3. intimation for approval / rejection mail.
    When user deletes an item: 1. intimation mail.
    How can we set it in one approval workflow?? where i have to set the condition for sending either item modification mails or deletion mail.
    Thanks,
    Praveen ji

    Hi,
    According to your post, my understanding is that you wanted to start approval workflow when item deleted.
    You should first make some changes to trigger the workflow when you delete the item.
    You can use the Event Receiver to achieve it.
    In order to trigger workflow on item delete you need to create event receivers and from event receiver call the workflow already attached with list.
    http://ravendra.wordpress.com/sharepoint-workflow-on-list-item-delete/
    You can also create custom action to start the workflow, you can refer to the following article, then modify the workflow as your need.
    http://blogs.sharepoint911.com/blogs/jennifer/Lists/Posts/Post.aspx?ID=50
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to set different levels of item permissions (delete one vs. delete all)

    In the help documentation I find:
    "Manage Content
    A user with the Manage Content privilege can add, edit, hide, show, share, and delete, any item, portlet, or tab on the page."
    I find that this is not the case. Manage content gives the user the ability to delete only his or her own items.
    Anyway, what I need is for some "content admins" to be able to delete all (preferably without being granted Portal Administrator rights) and for the rest to be able to handle his or her own entries.
    Tips are highly appreciated.

    hi henning,
    here is how the ACL rights work:
    view: view only - no edit mode
    manage items with approval: view/add/edit items. kicks off an approval process. changes active after approval.
    manage items: view/add/edit/delete content (all content)
    manage: everything + create sub folders + change page properties
    if you need more granular rights you would have to setup differnt pages for different users/groups and assign them the priveleges you want.
    regards,
    christian

  • How to set more then three items in report with a form

    Hello,
    I have an interactive report with a form. In the interactive report i want to set the more than three form items, how can i do this.
    can anyone help me ot with this.
    Thanks,
    Orton

    More than 1 name/value pair can be entered for each item of the column link: just separate them with commas (','), and ensure that the order of the names and values matches.
    (Please change the handle in your forum profile to something better than "user11940294", and in search the forum before posting: this topic has occurred a number of times.)

Maybe you are looking for

  • Here is what to do when rentals do not show up in your itunes library!!! Windows and Mac

    Windows Step 1: Make sure your rental is in your purchase history...here's how -Click on the Store Tab -Click View Account -Scroll down to Purchase History and click See All -Your latest purchase should be listed at the top of the page Step 2: Click

  • Disconnects from Internet.

    I'm using Leopard on a MacBook Pro. One of my most serious problems is a periodic loss of Internet connection. I don't know what triggers it, but, all of a sudden, I can't connect to the Internet with any of my browsers or e-mail programs. The only s

  • Bug: lost selection after a mouse drag

    To reproduce: - select many entities in a diagram - move them a bit via mouse drag what happens - the group loses focus. If you've been unfortunate, you've selected non-contiguous entities (via CTRL-click over) and now they are somewhere in the diagr

  • Windows Media Player keeps stopping

    Hi, I probably am in the wrong forum for this so, if someone can first move this to the appropriate forum, I'd be pleased. Anyways, my Windows Media Player constantly stops whenever I play a movie through the CD Rom Drive and I'd like this issue reso

  • Info needed about PU12 transaction

    Hi, I am making modifications in a User Exit which is providing data to a file defined for Interface format ZTE1 through tcode PU12 interface toolbox. So, my question is what is this tcode used for ? And if my changes include making modifications to