Regarding Authorisation for Document Numbering

Dear All
I want to give authorisation for Groups in Document Numbering series. How do i do it ?
for example : i have three department and i have created seperate series for each department and each department will have different group;
Dept1: series will be A1, A2, A3, A4 and this will be under group 1
Dept2: series will be B1,B2,B3,B4 is under group 2
Dept3: series will be C1,C2,C3,C4 is under group 3
now i want to give authorization for this group i.e. whenever a person belonging to one dept logs in to the b1, system should show the series pertaining to group 1 only.
i tried by giving authorization for the group , but it is not accepting.
do let me know if any options are avialable.
Regards
Kashinath

Hai!
Log in SAP B1 as a super user.
Go to Administrator > Sys init > Autho > General Autho
Select a User their
Go to Admin > Sys init > Series > Series - Group 1 > Full Autho
Go to Admin > Sys init > Series > Series - Group 2 >No Autho
like that..

Similar Messages

  • Template for Document Numbering

    Hi experts,
    Can I import document numbering series through DTW? Is there any templates for Document Numbering?
    Thanks & Regards
    Jaics

    Hi,
         DTW Error- Only with one particular document number series -JE
    Thanks
    Mansoor

  • Regarding Authorisation for Display

    Hi All,
    1.Initially I was unable o navigate o one particular component in Loyalty Frame work and found Basis people giving authorisation based on Component Access ,So given Component name and Inbound Plug  name  and now I was able to navigate to particular page.
    But it is Displaying one error message at the top " you are not authirised to display "
    2.Second problem is <,For specific role in Search page when i enter something and click on search it is not giving any result but it is giving for other profiles.
    Please help me here about the process how to find out the authorisation object missed for that profile .

    Try login with the same user in GUI when you get error in webui, execute transactino su53. If it doesn't resolve your issue on system trace using st01 tcode and mark "Authorization check' and in general filters use the user id which you are facing problems and do trace on and repeat your testing and do trace off and check the "Analysis" you may find the missing authorization component in end of the analysis.
    Regards,
    Kumar

  • Authorisation for documents

    We would like to provide the ability for a small number of our users to create and maintain documents within BW.
    Is this possible to achieve without giving access to RSA1 as I would prefer to avoid this.  I have been testing with the S_RS_ADMWB authorisation object and have so far been unsuccessful.
    any help appreciated,
    thanks,
    Mike

    Hello Michael,
    I have create a role to restrict the RSA1 transaction, so that only Document screen of the AWB can be used. For the others screens, it's not possible to access the content, but you still can see all sections, even if you cannot use them. Have you solved the problem? I would like just the Document screen to be displayed.
    Thank you,
    Iuliana
    Message was edited by: Iuliana
    Message was edited by: Iuliana

  • Document Numbering Series and Query Generator

    Hi Experts!
    I have a query with a Query!
    I have more than one numbering series, say one document series is YYY and the other document series is ZZZ.  YYY is for posting period 2009 Sales Order document numbers 1, 2 - 10.  ZZZ is for posting period 2010 Sales Order documents 1, 2 -10.
    When I go to Sales Orders and click the 'Find' icon and search for Sales Order Number 3, SBO gives me the option to choose either Sales Order document 3 for the YYY series, or Sales Order document 3 for the ZZZ series.
    I make a Query which includes Sales Order DocNumber and has the Posting Period as a variable so either 2009 or 2010 has to be chosen prior to executing the query.
    I chose to run the Query for ZZZ, so I should expect all data relating to 2010 to be shown.
    My query results show document number 3 with a Doc Posting Date of 2010, but when I click on the Document Orange Navigation Arrow the actual document is Sales Order 3 but for Document Numbering Series YYY, and therefore is for 2009.  But I need it to be for document numbering series ZZZ.
    It seems SBO is returning the first record it finds, which is for the older series.
    Can you help me please?
    Many thanks!!
    Caroline

    Hi
    Try this,
    SELECT TOP 100 T0.DocNum as 'SO. No.', S0.[SeriesName],
    T0.DocDate as 'SO. Date',
    T2.DocNum AS 'Del.Doc.No.', S1.[SeriesName],
    T2.DocDate AS 'Delivery Date',
    M.DocNum as 'A/R Invoice No.', S2.[SeriesName],
    M.DocDate as 'Inv. Date',
    M.CardName as 'Vendor Name',
    M.NumAtCard as 'Bill No. & Date',
    ISNULL(L.ItemCode,'Service Item') as 'Item Code',
    L.Dscription,
    L.Quantity,
    M.DocTotal as 'Total (Rs.)'
    FROM ORDR T0
    INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    INNER JOIN NNM1 S0 ON T0.Series = S0.Series
    INNER JOIN ODLN T2 ON T2.DocEntry = T1.TrgetEntry
    INNER JOIN DLN1 T3 on T3.DocEntry = T2.Docentry
    INNER JOIN NNM1 S1 ON T2.Series = S1.Series
    INNER JOIN OINV M ON M.DocEntry = T3.TrgetEntry
    INNER JOIN INV1 L on L.DocEntry=M.DocEntry
    INNER JOIN NNM1 S2 ON M.Series = S2.Series
    WHERE T0.CardCode = '[%0]'
    ORDER BY T0.DocEntry DESC
    SELECT TOP 100 T0.DocNum as 'SO. No.', S0.[SeriesName],
    T0.DocDate as 'SO. Date',
    T2.DocNum AS 'Del.Doc.No.', S1.[SeriesName],
    T2.DocDate AS 'Delivery Date',
    M.DocNum as 'A/R Invoice No.', S2.[SeriesName],
    M.DocDate as 'Inv. Date',
    M.CardName as 'Vendor Name',
    M.NumAtCard as 'Bill No. & Date',
    ISNULL(L.ItemCode,'Service Item') as 'Item Code',
    L.Dscription,
    L.Quantity,
    M.DocTotal as 'Total (Rs.)'
    FROM ORDR T0
    INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN NNM1 S0 ON T0.Series = S0.Series
    LEFT JOIN ODLN T2 ON T2.DocEntry = T1.TrgetEntry
    LEFT JOIN DLN1 T3 on T3.DocEntry = T2.Docentry
    LEFT JOIN NNM1 S1 ON T2.Series = S1.Series
    LEFT JOIN OINV M ON M.DocEntry = T3.TrgetEntry
    LEFT JOIN INV1 L on L.DocEntry=M.DocEntry
    LEFT JOIN NNM1 S2 ON M.Series = S2.Series
    WHERE T0.CardCode = '[%0]'
    ORDER BY T0.DocEntry DESC
    Regards,
    Madhan.

  • Different  document  numbers  for  cash  receipt  and  cash  payment

    Dear  ALL
    can  we   get  different document  numbers   for  cash  payment  and  cash  receipt
    regards
    sheena

    Dear  Jigar ,
    i am  not able  get separate  document number   for  cash  receipt and cash payment 
    though  i assigned  in fbcjc0.can  you elaborate  on what  you  have  told  .
    further  cash receipt  and cash  payment  for  gl  account s  it  is taking consecutive  numbers  only
    can  you  give  me your  gmail  id
    regards
    sree

  • Document numbering for each bank

    Hai Experts,
    We are having multiple bank accounts.
    For eg. HDFC Bank
                ICICI Bank
    For each bank the Incoming Payments should be serially numbered, like wise outgoing payments also should be serially numbered. As we have set in the document numbering as 100001 for Incoming payment as starting number, the voucher number generated serially irrespective of the Bank accounts. Pl. let me know how to set up document number generation for each bank seperately.
    Thanks in advance
    Regards
    Sampath

    hi sampath,
    There is no automatic determination of numbering series in
    SAP B1,This is limitation of SAP B1.
    you should define numbering series for each bank in
    incoming and outgoing payments.
    You can set outgoing payment series(Banks)  as default
    for certain users and incoming payment series(Banks) as
    default for certain users.
    Ex:
    One user will handle HDFC,ICICI Banks,
    other user will handle SBI,Canara Banks.
    Jeyakanthan

  • Reg : Movement Types For Material Document Numbers

    Hi All,
           Is there any any field in MSEG  table that links Movement Types 101 / 102 with the movement types 261 / 262.
           Here 101 / 102 Mvmt types Are meant for (GR goods receipt / Goods Return)
           and  261 / 262 Mvmt types Are meant for (GI for order / Reverse GI Order).
    Regards,
    Kalyan.

    Dear Prashant,
                           Field "SMBLN"  in MSEG table is linking Material Document Numbers with Movements 101 & 102 Only,
                           but I want a link between Mvmt types 101 & 261, which I think may not be possible with SMBLN.
                           correct me if i'm wrong.
                                                             Thank You
    Regards,
    Kalyan.

  • F.05 Document numbers for valauation and reversal

    Hi All,
    We recently applied Support stack 18.  (Earlier we had Suppport Stack 13)
    After applying this stack, we observed that, When we run F.05, Forex valuation,
    The documents posted for valuation are reversed . and document number continued for valuation and reversal.
    Suppose i run this for GL account 11801  and GL 11832,
    Valuation for GL11801  and reversal for GL11801  are posted with document numbers in sequence and then Valuation for GL11832 and reversal for GL 11832 are posted.
    Earlier, all the valuations are posted for 11801 and 11832 in one sequence and reversals are posted in one sequence.
    Now the situation changed.
    Please advise, how to resolve this issue.

    Hi,
    In that case, you need to reverse the documents manually via FB08 or F.80
    SAP will not do the reversal automatically if you have not selected in F.05
    Regards,
    Gaurav

  • Document Numbering for specifc users

    Hi Everyone,
    Is it possible to set up a specific numbering series for a specific user? 
    For example, we would like one of the order entry people to have a series of 100 while another order entry person has a series of 5000. 
    If I am able to set it up this way, how do I do it?
    I appreciate your help.
    Thanks,
    Amanda

    Hello Amanda,
    The document numbering series can be assign to
    different group and you can grant different user authorization to the
    group, it mainly includes two steps:
    1. Define Series:
    - Go to Administration -> System Initialization -> Document Numbering.
    - Double-click on the row number of the document type for which you want
    to define the numbering. The Serials window opens. Here you can assign
    number ranges to a group.
    - Up to ten different groups can be defined.
    - Only super users can create and maintain number ranges.
    - A user who is not defined as a super user can only change the
    definition of his or her own default number range, assuming he or she is
    authorized to maintain number ranges at all.
    2. Define Authorization:
    In Administration -> System Initialization -> Authorization -> General
    Authorization window, you select the user in the left and define his
    authorization under Administration
    ->System Initialization -> Series - Group.
    After the two steps above, a specific user can only view and add the
    documents within the series which has been assigned to a specific group
    that he has been fully authorized.
    Is this what you expect?
    Regards,
    Wilma Wang
    SAP Business One Forums Team

  • Numbers repeatedly prompts for document password on every change

    When working with a password protected numbers speadsheet stored in iCloud, Numbers suddenly started repeatedly requesting the document's password everytime a change is made to the document.  This constant password prompting renders Numbers unusable.
    I've intentionally not allowed Keychain to store the documents password for privacy reasons.
    I'm using 10.9 on a Mac Mini with Numbers 3.0.1. 
    Please advise,
    Regards,
    Zephyr

    Yes it ceases to ask to the password every time a change is made, but that sort of defeats the purpose of protecting the document.
    It also seems now that when you select a cell for input, Numbers only takes a single keystroke at a time, as if you hit "1" then hit "enter".  Numbers won't allow multiple keystrokes when editing a cell.
    I suspect this may have somthing to do with the way iCloud keeps files in Sync.  This wasn't an issue until today - worked beautifully until now. 
    Any advice is greatly appreciated.
    Regards,
    Zephyr

  • Document Numbering Formats for Extended Fields

    Hi, experts.
         I want to create a document numbering formats for my extended fields.
         1) I want to add my document numbering format to Fine Tune Activity.
              2) I want something like this. But I want to add more fields to the following screen like a prefix and some other validations.
              3) I want to use that numbering formats for my extended fields.
                 Are those possible?
      Regards,
      Fred.

    Hi, Horst.
         Thanks,
         I read your docu. And tested the new feature.That's great.
         That is really a reasonable way to create number ranges.
         But here, what I want is to get a "numbering format" feature for my extension fields like the way I explained above.
    Regards,
    Fred.

  • TextEdit is the default application for my Numbers documents

    Although I did not set it to be, TextEdit is the default application for my Numbers documents. It was not always this way, but it is now, and I can't seem to change the default application back to Numbers ('09). For example, when I double-click any .numbers document, I always get the following error message:
    The document “xxxxx.numbers” could not be opened. The file isn’t in the correct format. The file might be corrupted, truncated, or in an unexpected format.
    See: http://screencast.com/t/P5OSAJAq
    Therefore, whenever I want to open a.numbers document, I must drag it to the Numbers application icon or right-click and select “open with” and select Numbers from the list of applications. Although this works fine, it creates a couple of extra steps that I would prefer not to do
    My first inclination was to “Get info” and change the “open with”  back to Numbers for all .numbers documents.
    http://screencast.com/t/TMJwBmTOkHN
    http://screencast.com/t/LAnPsbeGdB
    However, selecting Numbers as the default application will not persist after clicking  “change all.” Rather, it reverts back to TextEdit. Tony, this is the only way I know how to select the default application for a document type.
    Is there another location where I can set/reset the default application?
    Thanks!

    I guess that there is at least one database used by the Operating System which is corrupted.
    Run a maintenance application : MAINTENANCE is a free very good one available thru :
    www.titanium.free.fr/
    and ask it to repair permissions,
    delete caches
    repair database Launch Services.
    Yvan KOENIG (VALLAURIS, France) jeudi 26 mai 2011 15:51:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Change Document Numbering for Contracts

    Experts,
    I have a client who wants to create a new Document Series for the Contracts and Service Calls in SBO. I do not see these documents available in the Document Numbering screen. Is this possible?
    Thanks,
    Marli

    Hi
    The service call numbering is a sequential number that is determined by the system. This information was mentioned in the Online Help - Service Call: General Area. At this stage, there is no option to define the Service Call numbers; however, you may consider the use of a User Defined Field. In this field, you can define a formatted search (Query adding 1 to the next Call ID).
    Paulo Calado
    SAP Business One Forums Team

  • Regarding invoice address for document type

    Hi friends,
    I want to know how to print the INVOICE ADDRESS for a perticular document type if user-id  is not exist.
    Please suggest me the suitable code for the above requirement.
    Regards
    Kumar

    Hi,
    Check Table RBKP & Field name RMWWR for Gross invoice amount & BLART for document type.
    Regards,
    Biju K

Maybe you are looking for

  • LocalizationBundle for title not working in portlet (wlp 10.3)

    Hi! I'm trying to use the localizationBundle, in order to get different titles for my portlets (and further books, pages, etc) depending on the user locale. I've followed these instructions: http://download-llnw.oracle.com/docs/cd/E13155_01/wlp/docs1

  • How to copare 2 files in java

    Hi gurus , i have one requirement in which i need to compare 2 files and generate another file. is there any way to compare 2 flat files without using java.io package imean without using any kind readers or writes. give me a good idea to get rid of t

  • CRWEB00000119 - after upgrade from bi 4.0 to 4.1

    we just upgraded out BI 4 platfrom to BI 4.1 we have a number of reports that had been taken from our XIr2 server to our BI platform 4.0 server they use an odbc connection to oracle to get them to work on the 4.0 platform we had to set the connection

  • Sound output device on bootcamp

    when i run bootcamp on my mac book pro, sometimes the sound output device keeps changing between speakers and headphones (even if I don't have any plugged in). This is very annoying since you can really do anything with sound without hearing constant

  • Powering up prime infrastructure 1.2

    Hi,   i have install PI 1.2 in VM platform , but when i will going for powering up, it is showing error "Failed to start the virtual machine. This virtual machine is configured for 64-bit guest operating systems. However, 64-bit operation is not poss