F_LFA1_BEK - access to specific vendor

Hello,
my first posting....hope someone has an answer...
We need to give 2 users transaction FBL1N (vendor line items) with only access to 2 specific vendors.
As far as we know there is no authority object for the vendor account number itself.
So we thought we can use object F_LFA1_BEK. We entered an  authorization group (LFA1-BEGRU) to this 2 vendors and added this group to F_LFA1_BEK. So far so good.
Problem is now that it is still possible to access all vendors where no authorization group is maintained in the vendors master record. (No authorization group is the default case and it is not possible to add another one the other vendors)
Is it possible to achieve this with F_LFA1_BEK or is there any other solution? 
Thanks a lot!
Christian

Hi Alex,
of course it is possible to do it that way and we already use the LFB1-BEGRU to restrict access to specific vendors.
But we have a lot of different accounting groups and a lot of users who create/maintain vendors each being responsible for one or more accounting groups. And furthermore this is relevant for 2 company codes.
And what I haven't mentioned yet: This also needed for customers (FBL5N).
So you are right it is possible and it is the standard way but in our case currently too much effort.
Thanks.
Christian

Similar Messages

  • Vendor Reconciliation account change for specific vendor

    Hi All,
    Client  want to  change the Reconciliation account in the Vendor Master but same reconciliation account assign to multiple vendor master but client want to change specific vendor not for all vendor . The vendor has postings to it right now. We want that all the existing postings should be transferred to the new recon account line item wise and the new postings will go to the new recon account.
    Please suggest some approach so that this can be effected.
    Regards,
    Dev

    Hi Debabrata ,
    To clear the reconciliation Account one option is that you create a new open item managed GL Account and use Transaction FB05 to clear each open item in the Vendor Account one at a Time and post on the new open item clearing Account. Then change the reconciliation Account in the master data and then again use FB05 to post the transactions back on the Vendor Account one at a time,
    As far as impact on Balance sheet is concerned, there should not be an impact except that the balance will be reflected in a different GL Account.
    Thanks
    Muthu

  • HT201304 Is it possible to restrict access to specific IOS apps based on the WIFI profile that a user has connected to?

    Is it possible to restrict access to specific IOS apps based on the WIFI profile that a user has connected to?

    you might be able to block it if the app uses Internet access
    and depending on your wireless you might be able to block a specific user
    accessing the backend host that the app uses
    some firewalls offer application filtering but I'm not aware of any that work with ios apps

  • How to enter a specific vendor for  the delivery costs in purchasing order?

    Now I want to create a purchasing order including planned deliver costs such as Freight, Coustoms ect, as the vendor of such planned deliver costs is different from the goods supplier, then How to enter a specific vendor for  the delivery costs in purchasing order? That means the partner for invoice partner will be two vendors at least in one purchasing order. thanks very much.
    <i>
    <b>No one would like to answer this question?</b></i>
    Message was edited by:
            King Qi

    hi, 
    You can have vendor at each condition record level.
    try it out.
    cheers
    Rav

  • EA6100 AC1200 Blocking Guest internet access during specific times?

    I see that you can disable guest internet access for specific times but only for specific devices. What I want to do is turn off Guest access for all devices during specific times. 
    I am using this in an environment  where I will have different guests at different times with different devices and can't go in to block each one each time. 

    I think your only option at this time is to manually disable the Guest Wireless network when wanted.
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • I have a requirement where I have to give the list of users who can access a specific computer. I am new with PS. Do you have a script to list users that can access a computer object of AD ?

    I have a requirement where I have to give the list of users who can access a specific computer define in AD.
    I am new with PS.
    Do you have a script to list users that can access a computer object of AD ?
    I have executed the following script  but it does not give me the access rights of who can access the computer 'computername'
    How can i have this information. please help
    Import-Module activedirectory
    $computer=get-adcomputer "computername" -properties ntSecurityDescriptor
    $omputer.ntsecurityDescriptor.Access | select-object -expandproperty IdentityReference | sort-object -unique

    I would say that, since the OP has so little info, there are no policies in use.  It there were then this question would never be asked the way it is being asked.
    I had a client call with a letter from their insurance company; an accountant with malpractice insurance.  THey asked the same question inmuch the same way.  "What computer can you users access?"  The question should be more like
    "Do you have a policy that restricts access to computers and do you audit for compliance?"
    I have had other clients whose insurance asked the question in that way.  It produces a better view of what should be happening and how to show compliance.
    I recommend that companies being asked these questions by their legal departments or insurance companies should contract with a god computer security consultant to assist with answering these very tricky questions.  Of course if it is just you boss's
    curiosity  then you may need to discuss his requirements with him in more depth.
    ¯\_(ツ)_/¯

  • Free item field checked defaultly in PO for one specific vendor

    Hi,
    If we always send a free PO to a vendor, is there any place to configure that once we create PO to this specific vendor, the free item field is checked defaultly?
    Some posts on the web indicated that they succeeded in doing this by setting in vendor master, but I cannot find the field.
    Where to achieve this function?
    Thanks!
    Wesley

    Hi,
    try to maintain a free goods condition in tcode MBN1 with        
    Discount type NR00 and make this article as an Additional material free    
    goods which will be procured free of cost on purchase of some other        
    article. The system will not consider the Net price value maintained in    
    the purchasing view of the article master and you would find that the      
    net price is ZERO for this free item in the Purchase order. 
    Regards,
    Edit

  • Problems with classpath and accessing a specific file

    I'm currently running an application using NetBeans (I know this is the Sun Forum but maybe someone can help). For those who aren't familiar with this IDE, whenever a project is created, a ProjectName folder is also created. Inside that folder are 5 new folders (*build*, dist, nbproject, src and test) as well as 2 new files (*build.xml*, manifest.mf). The dist folder contains the *.jar* file.
    Seeing that this is an audio application, I am constantly working with audio files. In the ProjectName folder, I've created a sixth folder (*audiofiles*) were I load and save such audio files. To access a specific audio file, I do the following:
    File audioExample = File("audiofiles" + File.separator + "audio.wav");When I run the project from the IDE there doesn't seem to be a problem. However, when I try to run the project by simply double-clicking the *.jar* file in the dist folder, the audio files can't be accessed. In order to be able to access them, I need to change the path:
    File audioExample = File("C:\...\ProjectName\audiofiles\audio.wav");This seems to solve the problem temporarily, but if I decide to change to project folder location, I also need to change the path.
    QUESTION:
    What is the best way to access files so that they are not dependent on where the project folder is located? Do I need to modify the classpath or simply write the path in File(...) in a specific way? If I need to modify the classpath, how can I do so in Netbeans?
    Thanks in advance.

    DrClap,
    Thanks for the reply. To answer your questions:
    Naturally that depends on where you DO want to load from. Are the files in the classpath? Are they in the current working directory?
    Some other directory where you can ask the user to point to? On a different computer?The audio files are located in a created folder in the IDE project folder. I know you mentioned that I should stop thinking about this as an IDE project but I don't know any other way to think about it. I'm kinda new to Java, and the only way I've learned how everything is structured is through the IDE project structure. I'm realizing that this is probably not the best way to go about as it doesn't allow me to have a good understanding of the Java file structure. What changes do I need to make in the way I view my IDE project to make it more into a deployed version?
    I'm also having a hard time understanding the classpath concept. I've been under the impression that the classpath was simply the location of the packages and classes of a specific application. How could I check if the audio files are in the classpath?
    Thanks in advance.

  • Min Max planning report - ability to run for specific vendor

    Hi,
    We have a unique requirement wherein business users would like to run min-max planning report for a specific vendor. Vendor here is item sourcing vendor. We are on R12 12.0.4. This version of applications doesnot support sourcing vendor as the min-max report parameter.
    Other than setting up item category for ASL vendor, i can't think of any other easy way to accomplish above requirement. Please suggest workaround for above requirement.
    Thank you

    If you have to do this, here is a complex workaround.
    Create a request set that contains a custom program as first stage and the regular min-max as the second stage.
    The custom program accepts vendor name as a parameter and disables min-max planning flag for all items EXCEPT those that are sourced from that vendor.
    Then the 2nd stage runs and creates requisition.
    You may add a 3rd stage that resets the min-max planning flag.
    Make this program incompatible with itself so 2 users won't run it at the same time.
    Hope this helps,
    Sandeep Gandhi

  • How to configure the wifi access with specific time slot for kids?

    how to configure the wifi access with specific time slot for kids?

    Which model of AirPort base station do you have? Which version of OS X is your MacBook Pro running?
    Wi-Fi access can be limited using the Timed Access feature of the AirPort routers. You would do so using the AirPort Utility.

  • Accessing a specific schema with JDBC

    My database has several schemas and I'm trying to access a specific schema using the following code snipet:
    Class driverClass = Class("oracle.jdbc.driver.OracleDriver");
    Connection jdbcConnection = Drivermanager.getConnection("jdbc:oracle:thin:@datastore:1527:dbname","username","password");
    IDatabaseConnection connection = new DatabaseConnection(jdbcConnection);
    Is there a way to access schema mike27 on dbname? I keep getting the schema pointed to by the public synonyms.

    Hi,
    I would think that you have to override the doDML method in ADF BC to then insert/update the values in the scott schema. For this the main schema must have privileges on teh Scott schema to perform the operation
    Frank

  • After restarting my PC, I get the message, "Windows cannot access the specific device ,path..."

    when i restart my pc i cant open the dreamweaver and error message show"endows cannot access the specific device ,path or, file. you may not have appropriate  permission to access item"

    Hi Ali,
    Can you see the instructions in this article by Microsoft and let us know if they helped?
    http://support.microsoft.com/kb/2669244
    Thanks,
    Preran

  • LSMW - Access to Specific Objects Permissions to specific users

    Hi guys,
    I want to know if it is possible to allow access to specific users that are in charge of the execution of a specific object of and LSMW.
    Regards,
    Eric

    Hi guys,
    One solution i got right now (but it isn't the ideal), is to debug the execution step of the LSMW in order to find the name of the program that iit's been call and the one that its call inthe step in wich the files are been specify. Then develop a "Z" program that calls both of them and give the user the access to this new transaction.
    Any better sugestion?.
    Regards,
    Eric

  • Goods receipt from specific vendor always posted to Quality Inspection

    Hi ,
    For specific- vendor PO, during the GR, the stock type is automatically posting to "Quality Inspection", for all the materials.
    Not allowing to change during the MIGO .
    Want to know how this is set. and remove it. Because all the GR for PO -101 , should go to "Unrestricted Use" , only acc to current practice.
    Pls advise.

    HI,
    You can post the Stock to Inspection Stock always
    1. Either mainatain this to MMR in Purchase View. It will post to inspection irrecpective of vender.
    2. In Punchase PO in, Maintain Stock Type ...Inspection stock...here u can specify with vender also.
    But not from Material master, stock is as inspection Post will always post to inspection not vender specific.
    Hope Help u 1
    Regards,
    Pardeep Malik

  • SQL Query for specific vendor

    Hi Experts,
                     The user has requested to prepare reports with specific vendor name in PO. Please guide me with this.
    Edited by: shaichandan on Sep 27, 2011 9:48 AM

    Hi,
    Check this if it helps :
    select t0.DocNum as 'PO Num', t0.DocStatus as 'Status', t0.DocDate as 'Date',
    t0.CardCode as 'BP Code', t0.CardName as 'BP Name', t0.DocTotal as 'Document Amount',
    t1.ItemCode as 'Item', t1.Dscription as 'Item Description',t1.Quantity as 'Qty',
    t1.ShipDate as 'Shiping Date'
    from OPOR t0 inner join POR1 t1 on t0.docentry = t1.docentry
    where t0.cardname in ('Almats Printing Solution','Safe Offset')
    Order By t0.cardname
    Kind Regards,
    Jitin
    SAP Business One Forum Team

Maybe you are looking for

  • Transaction types are not getting displayed in WUI CRM7.0

    Hello Gurus After upgrading the CRM system from 4.0 to 7.0 we are not able to see the trasaction types for the activity mangment in WUI....i have also assigned the transaction types to the channel CEM  Webclient UI Suggest how to over come this ... R

  • Error message - No disk

    I unistalled a couple of times. Every time I reload and start the program I get error message....DigitalEditions.exe - No Disk     It asks me to insert a disk into drive F:

  • Offscreen painting of GUI-Elements for Screenshot?

    Hi all, I'm developing an application that loads a web-page in a window and then creates a screenshot of the web-page. Basically this works fine, nevertheless I have 2 problems: * It would be nice if the frame (and the web page) are not visible. If I

  • How can I display Execution Highlighting if it does not show up on my block diagram?

    I am using a baseline program provided with my zaber translational stage to write a more sophisticated program for the stage.  I have noticed that the execution highlighting icon is not in the block diagram.  I have been able to turn on the stop butt

  • I just downloaded Blackberry apps world and I get a constant hour glass

    Ever since I downloaded Blackberry apps world I have been getting a constant hour glass. I tried to uninstall the program but then even after the uninstall the hour glass stays on. Now my Blackberry 8330 is almost unusable. I don't recieve e-mail now