Specify a general inetdomainsearchfilter

Hi,
I would like to set another search filter for the Messenger Express when a user is logging in. The one used by default is (&(uid=%U)(objectclass=inetMailUser)). I tried to set the attribute InetDomainSearchFilter in the DC and it worked. But I would like to know if I can set it in the configuration of the msg server instead of setting it in every DC. We're using schema 1 and 2005Q4.
Thanks

Really we are not very much clear with your question, can you please explain us more on the same and what is the issue are you facing ?
Just as per my understanding please find the below...
Create login sql server level...
CREATE LOGIN TestDBUser WITH PASSWORD = 'Password'
Now this login now exists in you instance of SQL server, but has no permissions and is not a user on any database.
 To add that user to a database The owner of a specific database would create a USER for that LOGIN:
 CREATE USER TestDBUser FOR LOGIN MyUser
EXEC sp_grantdbaccess N'MyUser', N'TestDBUser'  
GO
Exec sp_addrolemember N'db_owner', N'TestDBUser'
GO
Granting Server Level Permissions :-
Granting rights is pretty straight forward.  To grant "SHUTDOWN" rights to login "TestDBUser" you would issue the following command:
GRANT SHUTDOWN TO TestDBUser
SQL 2014 :
In SQL Server 2014 adds some new server-level permissions that will help you with just read only case - they were designed with auditing in mind. We could simply add the following two permissions to a server-level login:
CONNECT ANY DATABASE
SELECT ALL USER SECURABLES
To listing the permissions :
===============
SELECT 
  [srvprin].[name] [server_principal],
  [srvprin].[type_desc] [principal_type],
  [srvperm].[permission_name],
  [srvperm].[state_desc] 
FROM [sys].[server_permissions] srvperm
  INNER JOIN [sys].[server_principals] srvprin
    ON [srvperm].[grantee_principal_id] = [srvprin].[principal_id]
WHERE [srvprin].[type] IN ('S', 'U', 'G')
ORDER BY [server_principal], [permission_name];
Reference Links :
http://msdn.microsoft.com/en-us/library/ms189751.aspx
http://msdn.microsoft.com/en-us/library/ms186320.aspx
http://msdn.microsoft.com/en-us/library/aa337562.aspx#TsqlProcedure
http://msdn.microsoft.com/en-us/library/ee677610.aspx -- Creating server role
Raju Rasagounder Sr MSSQL DBA

Similar Messages

  • DocFlex/Javadoc 1.5.6, a multi-format doclet development tool and more

    DocFlex/Javadoc is both a multi-format Javadoc Doclet and a rapid doclet development tool, which allows easy creation of professional quality Java API documentation generated by Javadoc in various output formats.
    More in this article:
    Key Features
    Availability
    This Version
    What is DocFlex?
    Main Concepts
    Other Applications
    Links
    KEY FEATURES
    Template-driven doclet architecture
    - Actual doclets are created in the form of special templates interpreted by the DocFlex Doclet, which is the template interpreter / output generator wrapped in the form of a Javadoc Doclet.
    - The high quality graphic Template Designer allows you to visually design most of things, whose development was possible so far only by direct Java coding.
    - The templates are designed independently on a particular output format. All formatting is specified in some universal way using properties of template components. During the generation, it is rendered with the suitable features available in the selected output format.
    - The elaborated support of template parameters (including multivalued list parameters). The parameters are defined and accessed within templates to adjust dynamic properties of template components. Most of options previously used to control an ordinary doclet now simply become template parameters!
    - The possibility to call templates from one another. This feature (along with the template parameters) makes possible re-using the same templates for different tasks as well as organizing template libraries.
    Data processing
    - The entire Doclet API is represented in the form of a virtual XML document (called Doclet DSM), on which the designing and processing of all templates is based.
    - Sophisticated capabilities for data querying and sorting based on an extension of XPath.
    - Full support of new Java 5.0 language features: Generic Types, Enums, Annotations.
    - Simultaneous support of Java 1.4 and Java 5.
    Creating hyperlinks
    - Generation of an extensive network of hyperlinks interconnecting the whole documentation.
    - The hyperlinks can be generated in all output formats that support them (this currently includes HTML and RTF).
    - The universal way of defining documentation cross-links based on the link/target keys specified in templates.
    - In RTF, the cross-links can be generated in the form of page number references, which effectively makes them usable even in the printed documentation.
    - In HTML, the possibility of loading several frame windows from a single hyperlink at once.
    Universal support of various formatting techniques
    - text formatting: fonts, colors, borders
    - paragraph formatting: margins, pagination control, borders, colors
    - border formatting: styles (solid, double, dashed, dotted), thickness, colors
    - tables: arbitrary cell layouts, borders, nested tables
    - lists: bulleted, numbered, delimited
    - document fields (RTF): page number, number of pages, TOC, etc.
    - page formatting: size, orientation, margins, headers/footers
    - formatting styles
    - rendering of embedded HTML, which means interpreting in non-HTML output formats (such as RTF) the HTML tags embedded in text data (e.g. documentation comments). Almost all HTML tags practically usable in doc-comments are supported.
    Inserting images
    - statically specified in templates
    - dynamically, obtained by <img> tags found in Java comments
    - supported image formats: GIF, PNG, JPG, WMF, EMF, BMP
    Output formats
    - HTML (both framed multi-file and single-file output)
    - RTF (version 1.6 - supported since Word 2000).
    - TXT (plain text), which may be particularly useful for various utilizations of the Java code information provided by the Doclet API generate XML files by it, or SQL files to import into a database).
    Standard Template Set
    - The ready-to-use Standard Template Set included in all editions of DocFlex/Javadoc allows you to immediately generate:
    (*) The framed HTML Java API documentation similar to that generated by the standard Javadoc.
    (*) The same documentation packed in a single HTML file.
    (*) The unmatched quality RTF JavaDoc.
    - Special features supported by standard templates:
    (*) Excluding classes/methods/fields by custom tags and annotations.
    (*) Selective omitting of package qualifiers.
    (*) Selective documenting of custom tags (similar to -tag option of Standard Doclet).
    - By modifying the standard templates, you can quickly customize the generated documentation according to your needs.
    Doclet GUI
    - Besides command line options, DocFlex Doclet supports an alternative user-friendly way to control the template-based doclets interactively -- the high quality Doclet GUI.
    - The Doclet GUI starts with the Generator Dialog, where you can specify all general settings (such as the main template, the output format and the output directory), start the generation, track its progress and stop at any moment you need.
    - The grid-tree-based Parameter Inspector invoked from the Generator Dialog for a selected template allows you to view the descriptions of all template parameters controlling the doclet and set their values according to the parameter data types.
    - The generator options specific for the selected output format can be set in the corresponding Format Option Inspector (also invoked from the Generator Dialog).
    - Once the generation is finished (or cancelled), you can start it again with different settings or a new main template without restarting the whole Javadoc.
    Integrations
    - With any system that runs Javadoc (in particular, see below)
    - Apache Ant
    - Apache Maven 2
    - Eclipse
    For lots more information, see DocFlex/Javadoc homepage: [http://www.filigris.com/products/docflex_javadoc/]
    AVAILABILITY
    DocFlex/Javadoc comes in two editions:
    (1) The full edition called "DocFlex/Javadoc" as it is. This is commercial software, which includes all the implemented functionality.
    (2) The reduced freeware edition called "DocFlex/Doclet". It includes only the output generator and can be used as an interpretor of any custom templates. It also includes the standard template set, which allows you to instantly use it as an HTML doclet (similar to the standard one, however with some special features) plus an excellent quality RTF doclet.
    Both editions are available for downloads on the page: [http://www.filigris.com/downloads/]
    THIS VERSION
    New features:
    - The template interpretor works 15-20% faster
    - Improvement of RTF output
    - Multi-valued (list) template parameters
    - Custom elements
    - Standard Templates: Selective documenting of custom tags (similar to -tag option of standard doclet)
    For more details, see product Readme | Change Log on the downloads page: [http://www.filigris.com/downloads/]
    WHAT IS DOCFLEX?
    DocFlex is an innovative technology for development of high quality template-driven documentation/report generators by any kind of data obtained from various software applications via the Java APIs they provide.
    MAIN CONCEPTS
    The whole DocFlex technology is based on four generalizations:
    (1) The mapping of an entire Java API onto a virtual XML-like representation made of some elements and attributes so as to process any such a representation in a universal way using techniques borrowed from the field of XML, like XPath (or more precisely, a conceptual analogue of XPath with some extensions not present in it).
    (2) The abstract formatting concept based on four layouts (flow of text, flow of paragraphs or paragraph-like objects, tables and lists), which can be rendered in most modern document formats (e.g. HTML, RTF, XSL-FO etc.)
    (3) The automatic generation of hyperlinks (or their page number reference equivalents) by matching the sets of keys produced from certain natural properties of the things (entities) being documented and hyper-linked.
    (4) The representation of the object controlling structure of the output generator (made on the first three principles) in the form of a plain-text template with a possibility to create and edit such templates using a graphic Template Designer, which visualizes the controlling objects (now becoming template components) in a form resembling the output they will produce.
    OTHER APPLICATIONS
    In fact, DocFlex/Javadoc is not the only application of DocFlex technology. The following is a summary of other DocFlex software:
    DocFlex/XML
    The SDK and runtime environment for rapid development and execution of template-driven automatic documentation/report generators by any data obtained from XML files.
    This is currently the most complex and advanced application of DocFlex technology. Actually, this tool can be considered a powerful alternative to XSLT. At least, it is definitely able to do what XSLT apparently not (for example, see “XSDDoc” below). We will publish a more detailed comparison “DocFlex/XML versus XSLT” with the next DocFlex/XML release, which is coming very soon.
    DocFlex/XML home page: [http://www.filigris.com/products/docflex_xml/]
    DocFlex/XML | XSDDoc
    A template set for DocFlex/XML that implements a high quality W3C XML Schema documentation generator in HTML and RTF output formats.
    For more details, please see: [http://www.filigris.com/products/docflex_xml/xsddoc/]
    DocFlex/XML | WSDLDoc
    A similar template set for DocFlex/XML that will implement a high-end WSDL documentation generator.
    This product is not released yet.
    DocFlex/Together
    A template-driven documentation generator for [Borland Together|http://www.borland.com/us/products/together/] (which is a UML modeling tool).
    This is the earliest application of DocFlex technology and probably the most beautiful one. It works only with Together Architect 1.x, which is now obsolete. Unfortunately, since Together 2005, Borland eliminated any open APIs (for unknown reasons). Because of this, further development of DocFlex/Together was impossible.
    DocFlex/Together home page: [http://www.filigris.com/products/docflex_together/]
    See also examples of the UML documentation generated with it: [http://www.filigris.com/products/docflex_together/examples/]
    The future DocFlex/UML is going to generate something like this as well.
    DocFlex/UML
    A template-driven UML documentation generator based on [Eclipse EMF|http://www.eclipse.org/emf/]. This tool is in early development stage yet. In a sense, it will continue DocFlex/Together with the focus on integration with other UML tools that use Eclipse EMF.
    LINKS
    This original article can be found at:
    [http://www.filigris.com/ann/docflex_javadoc_v1.5.6/]
    DocFlex/Javadoc home page:
    [http://www.filigris.com/products/docflex_javadoc/]
    DocFlex/XML home page:
    [http://www.filigris.com/products/docflex_xml/]
    DocFlex/XML | XSDDoc, the XML schema documentation generator:
    [http://www.filigris.com/products/docflex_xml/xsddoc/]
    Free downloads:
    [http://www.filigris.com/downloads/]

    Now, DocFlex/Javadoc v1.4 has been released specifically dedicated to Linux (Mac OS X) support:
    (*) Some early bugs have been fixed, which prevented it working properly under Linux.
    (*) A special RTF option was introduced to generate OpenOffice.org friendly RTF (see below)
    (*) Improved support for external document viewers.
    (*) Now, DocFlex/Javadoc software includes the shell script files prepared to quickly install and launch it under Linux
    New RTF option
    A new RTF output option "Tune output for MS Word� has been introduced. This option, actually, allows switching off that very tuning (which until now was the default mode) to produce an RTF friendly to open with other non MS Word applications, e.g. OpenOffice.org Writer under Linux.
    Read full announcement (and screenshot) by this link:
    http://www.filigris.com/ann/docflex_javadoc_v1.4/
    Regards,
    Leonid Rudy
    http://www.docflex.com

  • Alright my problem has been fixed but i will not be updating the program

    Alright to put this is short terms-i was at my aunts house on her wifi (not my home router) and i upgraded facebook to 2.2 (like it said to) and i putted it in off mode because i didnt want the battery to drain while in my laptop case with my computer and i took it out last night it wasnt acting right so i plugged it in to my laptop (with windows vista) like normal then i tried my iwake and i fingured it was nothing intil it wouldnt stop doing it when i powered it up later to come to find out my ipod touch (2nd gen) went into recovery mode last night i didnt know what any of that meaned intil i fingured it out,tryed itunes last night as well.. but come to find out the facebook app caused my ipod touch's hard drive to die and go into recovery mode (Iboot) i think it's called but i am not sure after finding out my computer wouldn't let me restore the ipod (kept giving me error codes 6 sometimes 13 & 20-)
    so i fingured i would look for the lastest update and try a new way and it worked! finally i was able to get it out of recovery mode, its now sync (simple fix) i was looking around on how to get it out of recovery mode (i fingured it out) basicually what happened my ipod got stuck in recovery mode and i could not get it out which is totally understandable..after thinking about it i fingured i would try to reinstall the update so i forced my ipod touch into another mode besides recovery mode and reinstalled the software and i know what killed my ipod touch!! i am so happy but i do not recommed updating facebook!! thats what killed my ipod touch!! please do not upgrade facebook it will put your ipod touch into recovery mode and really mess u up!! apple needs to fix it because it caused my ipod to die basicually (stuck in recovery mode) and i am really happy its just working again!! i got to reload my music but thats no big deal i bought it back to life yhay me!! =D don't worry!! be happy and do not upgrade facebook it will kill your ipod touch (get it stuck in recovery mode) if you are stuck in recovery mode and i'll help you the best i can if your stuck in recovery mode!! =D
    also if you cant get into recovery mode or you keep getting errors 13,6,20- you have to hold down the home button &power off/on button for 10 seconds then quicky let go of the power button and then hold the home button for 10 seconds intil the screen goes completely black & then when clicking restore hold down the shift key and a menu will come up (you'll need to download the lastest upgrade) and then click restore and it will fricker white screen and the apple logo will come up and then it will start restoring your ipod touch i cant really explain it but just watch it on youtube!!
    also intil then i though oh my god i did something wrong but shocky i found out what caused my ipod touch to crash and i am not putting it on my ipod touch again and i think that its not my fault it crashed but i remember upgrading my facebook and then putting it in my laptop back (powered off) and i go last night to listen to music and my ipod was freaking out and i didnt understand why, intil last night i remember upgrading facebook.. and thats what caused all my problems and if anyone else has this issue please let me know i dont want to feel like i am the only one with this problem or something like it!! tyvm!
    Message was edited by: BerryAngel

    im not meaning to be rude here, (and i hope this post won't get removed by apple) but i found that post so difficult to read i gave up after the first paragraph. i can cope with the odd spelling mistake (especially as i accept there are often non-english speakers who use these boards - you don't specify), and generally speaking i don't mind people getting things like punctuation wrong. but a complete lack of it?
    your sentences are very long, and it is difficult to work out what your point is a lot of the time.
    *a bit of friendly advice* - if you don't speak english very well, keep your sentences shorter. if you do, put a bit of punctuation in at least! few more full stops will do.

  • Reg: Warning message in UWL or task TS00700049 &  TS00700059

    Hi ,
           We tried to configure the Universal worklist. On registering it , we are getting hte following warnings.
    WebDynproApplication value not found for task TS00700049 in system SAP_Webflow
    Portal Component value not found for task TS00700059 in system SAP_Webflow
    Can anyone let us know if we have to give any parameters in SWFVISU tcode.
    Thanks & Regards
    Priya

    Hi Priya,
    WebDynproApplication value not found for task TS00700049 in system SAP_Webflow
    This means in the visuvalisation parameters maintained for this task in back end, the WebDynproApplication name specified is not available in portal.
    Do one thing, goto swfvisu, then search for task TS00700049, select the task and click on visuvalisation parametres option on the left hand side. Check what is the webdynpro application name specified there.
    generally this value will be local/applicationname
    *Portal Component value not found for task TS00700059 in system SAP_Webflow *
    This means the portal component specified in the backend is not available in portal.
    Do one thing, goto swfvisu, then search for task TS00700059 , select the task and click on visuvalisation parametres option on the left hand side. Check what is the portal component value.
    More over, I hope these two are only warning messages. they wont effect your UWL functionality. If you are using these two tasks then you wont get desired results.
    Regards,
    SrinivaS

  • How to close automatically sales order with open items ?

    Hi,
    There is a request from a client:
    he would like to be able to close the open items of a sales order which are not billed automatically according to a specific calendar. Moreover he would like to specify that ,generally speaking, the customer does not want to be delivered another time if there are leftovers in the sales order.
    I read in other posting that manually you can close open items in a sales order by adding a reason of rejection for the line item. Nevertheless, I do have one question about that. Imagine we only have one line of 100 pieces and we only deviver 90 pieces. When we put a reason of rejection in the sales order item of 100 quantity, what exactly will happen? How the system will know it only has to reject the 10 non delivered pieces and not the 100 pieces mentionned in the line item ? I also read that the price would change to zero but how can this be correct if we have 90 pieces to bill ?
    Thanks a lot for all your answers.
    Stéphanie

    Dear Stephanie,
    the reason for rejection change the status of the item itself to completed and it move the item from "active to be processed" to a simply statistical status.
    In the scenario you mentioned, as the reason for rejection is applied to the full item, you will set the full item as statistical, but your 90 pieces will continue being delivered and even eventually invoiced.
    Some discrepancies you may find only running some statistical reports, where also the net values information would not be in line as per your expectation.
    In order to prevent this discrepancy issue, I would advice you to contact a good abaper and develop a program that may massively rejects open items with not confirmed quantities, creating a new item for the open quantity if the sales line is partially confirmed.
    It means that, in your scenario:
    Order A > Item 1 for 100 pieces
                               > only 90 pieces delivered & invoiced
                               > 10 pieces open
    the result would be the following:
    Order A > Item 1 for 90 pieces
                               > 90 pieces delivered & invoiced
                  > Item 2 for 10 pieces rejected
    In this way you keep under control any report you may generate out of your sales and you can set as statistical items only quantities not processed further.
    I hope this explanation may help you.
    For any additional information on the reason for rejection I would remind you to SAP documentation and if you have the possibility to try to customize ans set your system with reason for rejection in order to discover directly with your eyes how these work.
    Regards,

  • Page Navigation not working

    I have moved my project from Early release to creator2 I have followed all the steps suggested changing the com.sun.web.ui to com.sun.rave.web.ui etc, etc.
    Now I have a few pages that don't do anything when a button or action is pressed. I end up getting the following message in the server log. 3 of about 18 pages this happens on.
    [#|2006-03-03T10:14:51.250-0500|WARNING|sun-appserver-pe8.1_02|com.sun.rave.web.ui.renderer.ImageRenderer|_ThreadID=19;|WEBUI0002: The following Message ID was not found in the the com.sun.rave.web.ui.resources.LogMessages ResourceBundle:   URL  was not specified and generally should be|#]

    I actually found the problem for some reason I ended up with a link with no url, and on the other pages I had a second form with id of form2. Don't know how or why but when I deleted these everything started working. They may have been there all along and didn't cause a problem until this latest update.

  • How do you set up SSHv2 on stacked 3750x

    I am having a bit of a problem getting SSHv2 to work on stacked 3750x switches. Here's the story. I replaced one 6506-E with a pair of stacked 3750x, and I basically just copied the configuration from the 6506-E to the 3750x. While copying:
    ip ssh time-out 60
    ip authentication-retries 2
    ip ssh logging events
    ip ssh version 2
    no ip domain-lookup
    ip domain-name trdm
    login block-for 300 attempts 3 within 60
    login on-failure log
    login on-success log
    to the new switch, I was informed that I had to generate rsa keys in order to enable ssh. So after the entire configuration was copied, I went back and ran
    cry key gen rsa
    and I chose 1024 bit modulus. It successfully created it, and I was able to verify that SSHv2 was enabled by issuing
    sh ip ssh
    which returned
    SSHv Enabled - version 2.0
    Authentication timeout: 60 secs; Authentication retries: 2
    Now when I issue
    sh cry key mypubkey rsa
    I get
    Key name: hostname
    Storage Device: not specified
    Usage: General Purpose Key
    Key is not exportable.
    Key Data:
         <omitted>
    Key name: hostname.server
    Temporary key
      Usage: Encryption Key
      Key is not exportable.
      Key Data:
        <omitted>
    The config for my vty lines are:
    lin con 0
    exec-timeout 4 30
    timeout login response 300
    login
    lin vty 0 4
    access-class 101 in
    exec-timeout 4 30
    password 7 <omitted>
    login local
    transport input ssh
    lin vty 5 15
    access-class 101 in
    exec-timeout 4 30
    password 7 <omitted>
    login local
    transport input telnet ssh
    The ACL is
    access-list 101 permit tcp host <omitted> any eq 22
    access-list 101 permit tcp host <omitted> any eq 22
    access-list 101 permit tcp host <omitted> any eq 22
    However, if I use telnet, it works without issue. Anyone have any suggestions?

    Okay, I have solved my problem on my own, but part of it could have been attributed to the ACL, so I'll award points for that. Essentially what it boils down to is:
    1. I didn't have a username and password set up on the switch.
    2. I was using an extended ACL on the vty lines.
    Once I added the username and password in the global configuration and implemented the standard ACL on the vty lines, it worked without issue. Just one more lesson learned the hard way.

  • How to get the PCD iviews to WPC

    Hi Frndz,
    Am  new to WPC , here I struck up at to expose my custom PCD iviews to WPC.I have created a folder in PCS "myContent"under this i have some custom ivews which I need to use in WPC but unfortunetly am not ale get those where am able to get the folder which I created "myContent" but not iview under the folder.
    Kinldy let me know how to do it, I have doubt here while createing a iview should we do following steps ?
    1)Choose  Content Administration  Portal Content .
    2)Choose  New  iView  from the context menu of a folder.
    3)Choose Portal component as the source type.
    4)Choose the com.sap.nw.wpc.runtime portal archive.
    5)Choose the default component.
    6)Specify the general properties of the iView.
    7)After you have saved the new iView, open it for editing.
    8)Choose Web Page Composer from the property category dropdown menu.
    9)In the RID of Compound Document property, enter the path to the KM folder representing the Web page.
    /wpccontent/Sites/MyWebSite/Web Pages/MyWebPage
    or we can expose any kind of iview  ?
    Thanks in advacen
    Regards
    Rajesh

    Hi, Rajesh.
    Try to use the solution provided in this link: http://forums.sdn.sap.com/thread.jspa?threadID=1276261
    Regards, Mikhail.

  • How to route the workitem to Agent, when no agent found

    1.when agent is not found, i was able to see the workitem in swi2_freq.
       If this is case, how do i send workitem to an agent?
    2. As this is a general task, but i didn't see this workitem in all user's inbox. is it true that if agent not found for a workitem,will be sent to all agents?
    3. I set my userid as workflow administrator, but still am not able to forward workitems to any user in sap.(lack of authorizations). What kind of authorizations required to forward a workitem.
    Any inputs on this...

    1. Either you can set default agents for the task (or) modify the container elements in transaction SWIA (or) complete it manually without agent.
    2. Its true that, for a task specified as general task, all users become possible agents. Remember that they dont become responsible agents. SAP agent assignment always take the intersection of possible and responsible agents. If you donts specify responsible agents, you cannot see workitem in anyone's inbox.
    3. As told earlier, if you dont have authorization, check for the auth object in SU53 and get that added to your profile. Anyways, you can also check for the SAP provided standard authorizations for the workflow users in sap.com
    regards,
    Sandeep Josyula
    *Mark if helpful

  • Use of @Transactional in Hibernate Data Access Object

    Hello
    I have just started using Hibernate 3 along with Spring framework using MyEclipse and Oracle 10g.
    I have started with a basic application having a single database table Customer which is represented by an annotation based POJO. Then created a simple DataAccessObject CustomerDAOImpl and an interface for that DAO CustomerDAO. CustomerDAOImpl implements the methods of CustomerDAO and extends the HibernateDaoSupport. It also contains the methods to add/modify/remove/find records from the database.
    In CustomerDAOImpl i want to specify the general transactional behavior so above the class definition I have put the following:
    @Transactional(propagation=Propagation.SUPPORTS, readOnly=true)
    public class CustomerDAOImpl extends HibernateDaoSupport implements  CustomerDAO I believe this would specify the general behaviour for all the methods in this class. If I want to change this behaviour for a specific method like in case of an add method, I will have to specify that on that method as follows:
    @Transactional(propagation=Propagation.REQUIRED, readOnly=false)
    public Customer insertCustomer(Customer customer) Now my question is:
    1. The approach I have used to specify the transactional behaviour, is this approach correct?
    2. Since CustomerDAOImpl methods are an implementation of the CustomerDAO interface, should I specify this transactional behavior also on the methods of the interface like:
    @Transactional(propagation=Propagation.REQUIRED, readOnly=false)
       Customer insertCustomer(Customer customer);Or is it not required to specify it on top of interface methods?
    Many Thanks
    Rabbia
    Edited by: rabbia on Nov 5, 2009 1:07 PM

    Hello,
    The boolean type don't exist in ABAP.
    In ABAP we used to refer to the type-pool ABAP where exists a type ABAP_BOOL (character length 1) where X = true and space = false. To refer to these values there are two constants: ABAP_TRUE and ABAP_FALSE.
    To access the type-pool use the transaction SE11 select Type Group and enter ABAP.
    Regards,

  • Apply Accounts Payable Invoice against Accounts Receivable to same Company

    We have a customer who is also a vendor.
    The customer owes us $10,000 and we owe the vendor $10,000. How do we net them off?
    Points will be awarded.
    Thanks.
    Kathy

    hi,
    on the screen for the configuration of company code section in the vendor group field status u have clearing with customer field under payment transactions group...select that indicator (clearing with customer field)..
    so when this indicator is activated u can clear open ar with ap accounts.. the customer data can be specified in general data section...
    you can also do in customer field status under control tab.....u will have vendor....by activating that field...u can do AP-AR netting
    i hope this helps
    Ram

  • SAP Report Painter - How to show currency key in header

    I've created a new report painter report against table Faglflext. Basic key figures are extracting Local Currency (HSL). This generic report will be used for various company codes that have different local currencies. In the report header I've specified a General Text Variable with Variable name currency but no data is displayed. The data in the columns are however correct based on company code selection.
    Please advise how I can show currency type in header.
    Thanks

    Hi Sonja
    You have chosen HSL in the column definition which means to display the values in comp code currency
    If I have understood your requirement correct, you want to display the currency of the company code in the Header text or some where as a text, based on the company code given in selection parameter
    Thats really not possible!!
    However, one smart thing you can do is to
    1. Go to GRR2
    2. Choose your report and Menu Extras > Report Text > Title page or Header
    3. Enter a Text saying that
    "This report displays the values in comp code currency... Currency of comp code 1 is USD, comp code 2 is SGD, Comp code 3 is GBP, etc"
    Hence, the users would come to know the currency in which it is executed
    Regards
    Ajay M

  • BO XIr3 scurity - disable scheduling and report save as output

    Good afternoon
    I am administering a Business OBjects Xir3 system. I am creating users and groups and applying some base level security via access levels. At the moment I am tryign to stop users from scheduling or rescheduling reports and to stop them saving reports as anything but pdf output.
    To achieve this I created and access level that I have assigned to the group in which the users are members:
    In the access level I have specified (under general) to disable the ability to schedule or reschedule any reports
    I have have denied access to schedule from applications\performance management
    Under content\web intelligence report I have specified to override general global and deined access to all scheduling options here also
    None of this appears  to have worked users still have the option to schedule form the actions menu and the right click.
    For the restricted save as ouput i have denied the option to save as csv and xls under Under content\web intelligence report  but again this has not taken effect. Have i missed an option to check or have i missed something really obvious about the setup of BO XIr3
    any help greatly appreciated
    Chris

    Hi Chris,
    the workflow is the following:
    1. Define the access levels ( You have done this)
    2. Assign the access levels to users/groups for accessing specific objects (Folders, Reports, Groups, Users, Applications etc.).
    I must admit that you are right, some BOBJ authorizations imply the kind of objects they can be applied to. But on the other hand some authorizations do make sense for several kinds of objects. The implementation of the BOBJ authorization scheme requires that you explicitely define the object level your access level should be applied to.
    So I suggest that to assign the defined access levels at the "All Folders" level to the related Users/Groups in your organisation.
    Just log on the CMC, select "Folders" from the drop-down menue, just highlight one of the folders, invoke the context menue (by pressing the right mouse button) and navigate to Manage->Security->All Folders Security . You can do there the access level assignment for your principals (ie. users or groups).
    Regards,
    Stratos

  • External CSS file?

    Do I have to write a CSS rule for every symbol and element in a presentation or can I just specify a general rule for the whole thing?
    For example, how can I specify that all images should have a red border, or all links should change color on hover?
    Shouldn't I be able to create a separate CSS file as in Dreamweaver and just attach it?
    Thanks

    Can i get you to elaborate on this statement? This sounds like something that will work for me.
    I have a text box in my edge composition with a scroll overflow. I have added a class to that text box equivalent to that established in an external css file. In that css i have items to change the look of the scroll bar, text color, and background color.
    I need a little guidance how to fit all these pieces together.

  • Dataguard for EBS db

    Any good links on how to configure dataguard for 11i EBS database? Please also specify the general issues/points to note while configuring it?
    Is grid control recommended with dataguard setup?
    Sami Malik

    ErikP wrote:
    Look at the EBusiness Suite part of this page.
    <A class=jive-link-external href="http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm">http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm</A>
    Grid <font face="tahoma,verdana,sans-serif" size="1" color="#000">control</font> is good in general to manage all Oracle database environments.Now I understand more about it, I'm new to this, It's very useful.

Maybe you are looking for

  • Import not all records

    Hi, all! We use BPC MS 7.5 sp 06. We try import txt file. But not all records loaded. We checked tmp file that generated during Import and saw that all files that we try to import exceeds max 1,265 KB, and last record in this file not the same as in

  • Standard BAPI to post payment in SAP-ISU

    Hi Experts, My client's requirement is the payment via third party should be posted synchronously in SAP-ISU system means payment is accepted by third party and we just need to update that payment in SAP-ISU system. We are trying to achieve this by R

  • [SOLVED] ttf-oxygen isn't then is then isn't a dependency

    I installed oxygen today, which had ttf-oxygen as a dependency. I almost immediately uninstalled oxygen with -Rs, but pacman didn't uninstall ttf-oxygen. I checked, and suddenly ttf-oxygen was marked as a dependency of other packages. Regardless, I t

  • TaskRSLovRN Probem

    When we try and re-use TaskRSLovRN Lov on a custom page we get the following error. I have compared the custom and vanilla PG using the LOV to make sure it is used in an identical fashion and cannot get to the bottom of this. Could anyone please give

  • My iphone 5s bought from kuwait does not have facetime. How could i install facetime on my iphone 5s?

    My iphone 5s bought from kuwait does not have facetime. How could i install facetime on my iphone 5s?