Help Required::::Simple queries from a beginner's prespective for certi

Hi All,
I was preparing for the HFM certi.
While, going through the bootcamp exercises, i have come across some problems which I have formulated as questions.
PFB my queries for HFM .
· There is a property called “Consolidation Rules” in Appsettings—It has values “y” or “N” or “R”…What is the significance of each of these.We have a Sub-Consolidate subrountine in the rules file..if we choose “Y” in Consolidation Rules ,does it pick up the subroutine written by us in rules file or does HFM perform its own default Consolidation?
· Meaning of ICP Entities Aggregation Weight.Its usage.
· Node Security is an option at App Settings level—how is it used to define access at user/group level?
· Concept of the “IsConsolidated” Property with Accounts
· In Scenario, Property called “Zero View for Adj/Non Adj”
Thanks,
ColDFirE

hi
You are right about Consolidation rules.This option specifies whether consolidation rules are supported. Specify one of these values:
Y to use the rules written in the Consolidate()routine in a user-defined rule.
R to derive the proportional value in the Value dimension. Note that the proportional data is not stored.
N to use the default consolidation and eliminations.
IsConsolidated
Determines if the current Account dimension member or a specified account member is a
consolidated account. This function can be used in these types of rules:
● Calculation
● Translation
● Consolidation
● Allocation
Ex:HS.Account.IsConsolidated("Account")
ZeroViewForAdj
Specifies how to interpret missing, adjusted data values for the period.This attribute is required. Specify YTD or Periodic.
i guess admin guide can cover all your question
read http://download.oracle.com/docs/cd/E12825_01/epm.111/hfm_admin.pdf
regards
alexander

Similar Messages

  • Very simple question from a beginner

    I am currently doing a little exercise, but I ran into a problem. I have written a class that supports operations on rational number. The fields are two long variables, one each that stores the numerator and denominator.
    I have made add, subtract, multiply, and divide methods...
    1. what I need help in is: beingh able to store the rational number in reduced for, with the denominator always positive
    2. constructing a toString method, equals method, and compareTo method.
    3. it also says "make sure the toString method correctly handles the case in which the denominator is zero by throwing an exception.
    I have been working on this for a long time now, an I am stuck at this point.
    I know this will be very simple for you guys and gals, but I am a beginner. Please offer some input, advice, and/or some code to help me get past this problem.
    Thanks so much,
    Jason

    ok, here is what I have so far
    public class Rational {
         public long num, den;
         public Rational(long n,long d) {
              this.num = n;
              this.den = d;
         public static void main(String args[]) {
              Rational r = new Rational(1,2);
              Rational s = new Rational(3,4);
              Rational rmuls = r.multiply(s);
              Rational rdivs = r.divide(s);
              Rational radds = r.add(s);
              Rational rsubs = r.subtract(s);
              r.print();
              s.print();
              rmuls.print();
              rdivs.print();
              radds.print();
              rsubs.print();
         public void print(){
              System.out.println(this.num+ "/" +this.den);
         public Rational multiply(Rational t){
              long n;
              long d;
              n = this.num*t.num;
              d = this.den*t.den;
              Rational answer = new Rational(n,d);
              return answer;
         public Rational divide(Rational t){
              long n;
              long d;
              n = this.num*t.den;
              d = this.den*t.num;
              Rational answer = new Rational(n,d);
              return answer;
         public Rational add(Rational t){
              long n;
              long d;
              n = (t.den*this.num)+(t.num*this.den);
              d = t.den*this.den;
              Rational answer = new Rational(n,d);
              return answer;
         public Rational subtract(Rational t){
              long n;
              long d;
              n = (t.den*this.num)-(t.num*this.den);
              d = t.den*this.den;          
              Rational answer = new Rational(n,d);
              return answer;
         //public int compareTo (Rational t)??????

  • Please help required to upgrade from Snow Leopard to Mountain Lion.

    Hello Community!
    I have a iMac model 11,3. With 27" screen, Intel Core i7 2.93 Ghz, 12 GB ram, 1 TB hd.
    My only internal disk is "Macintosh HD".
    It's now running Snow Leopard fully updated to the latest.
    I bought and downloaded Mountain Lion from the App Store.
    But it refuses to upgrade saying "This disk cannot be used to start up your computer".
    This seems so stupid because its starts the computer with Snow Leopard each time.
    So please, anyone can tell me what is happening and how to solve this ?
    Thanks in advance.

    Perhaps these two links would be of help:
    http://support.apple.com/kb/TS3926
    https://discussions.apple.com/thread/4136394?tstart=0

  • Help required in upgrading from 8.1.5 to 8.1.7

    We are having our application running on forms 4.5 and oracle 8.1.5 on winNT and Win2k. Now for the time being we want to upgrade to oracle 8.1.7, for that I need all steps to be performed, can any one help me? Pls!!!

    Hi,
    normally there is a file "Readme.html" in the root of the patch CD/directory that states the upgrade path.
    I don't have by the hand a 8.1.7 CD, but the standard path is:
    - Disconnect all the clients
    - shutdown DB using shutdown immediate
    - stop all Oracle services (Listener, Agent, Management Server, etc.)
    - Make a full backup
    - Install new version of the software
    - FIx Init.ora parameters
    - startup DB with STARTUP MIGRATE
    - execute the catpatch script
    - shutdown immediate
    - startup
    But Readme instructions that follow the product version may state something little different so IT IS MANDATORY to follow the instructions.
    Hope this helps
    Max

  • Help required in upgrading from 9i to 10g server

    Hi All,
    Our company is upgrading from oracle 9i to 10g in Unix environment.
    As a Oracle developer my work is to ensure that oracle 9i programmes should suceessfully work in 10g also.
    Please provide me some good links and articles about any pitfalls or code that has to be changed.

    You may want to read this manual:
    Oracle® Database New Features Guide
    10g Release 2 (10.2)
    Part Number B14214-02
    so you get acquainted with the new features and you can assess, according to the new features, which are the most important in your case.
    ~ Madrid

  • Help required Simple  salary table calcuation

    Hi All,
    I am starting to use the LiveCycle Designer.I want to create a form for Salary calculations. Table with 3 rows n 2 columns.
    Gross Salary - 10000 (Default and Editable)
    Basic Sal - (Gross Salary * .012) (It shows based on Default GSal value)
    Rest - (Gross Salary *.088) (It shows based on Default GSal value)
    The functionality :
    Basic Sal and Rest will by default show value based on the Gsal
    Every Time GSal Changes the Basic Sal and the Rest columns.
    What will be the Javascript to be associated to achieve the recalucation part once the user enters some other gross salary value.
    I have problems even seeing the defalt one itself.
    Mycode for the Basic Sal and Rest cells:
    ----- form1.#subform[0].Table1.Row2.BSal::calculate: - (JavaScript, client)
    this.rawValue = (GSal.rawValue * .012);
    ----- form1.#subform[0].Table1.Row3.Cell2::calculate: - (JavaScript, client)
    this.rawValue = (GSal.rawValue * .088);
    Someone please do help me out with some help.
    Thanks and Regards,
    Hari.

    Hello Hari. Using FormCalc, here are the two scripts.
    Sum(GSal)*(.012) - Place in the calculate event of the BasicSal field
    Sum(GSal)*(.088) - Place in the calculate event of the Rest field
    In each of the calculated fields, in the Value tab under the Object tab, set the type to Calculated - Read Only and make sure the Calculation Script button is checked. As a side note, I used decimal fields for this in case your users might need to enter an odd salary amount, like 10012.34.
    Regards,
    Dave

  • [Help Required] Detecting feedback from the Microphone button on headphones

    Is there anyway to detect when a user has pressed the microphone button on the headphones?
    I'd really like to use this feature in my app. Basically to start a routine. This would be instead of the user pressing a button on screen.
    Hopefully this is possible.
    Thanks in advance.

    Sorry to bump this so soon but does anyone have any ideas if this is possible (or anyway to test)?
    Thanks

  • A simple question from a beginner

    how do i check for a null reference? eg:
    String val = null;
    // do some stuff with a hashtable...
    // now want to check if val is still null
    if (val.equals(null)) // this is where i get a NullPointer Exception
    System.out.print ("val is still null!");
    thanx in advance

    if (val == null) ...

  • Help Required with 2pc Commit (Inet Opta Xa Driver for MSSQL 2000 on Weblogic 6)

    Hi,
              I was trying to use the "Inet Opta" Xa driver for MSSQL 2000 with
              weblogic 6.0.
              I get the following Exception when i try to get a database connection
              from a "Xa" Pool, in a transaction. The Pool did start up Correctly. Also,
              i have given SupportsLocalTransaction="true" in the pool declaration. And
              if i give EnableTwoPhaseCommit="true" in the Tx Datasource declaration,
              weblogic starts up, but without starting the connection pools. (also it does
              not deploy my ejbs in this case!).
              Could somebody help?
              Atleast, could somebody tell me when BEA is going to finish implementing
              an Xa Driver for MSSQL?
              Thanks,
              Sajan Thomas.
              javax.transaction.xa.XAException
              at com.inet.tds.i.a(Unknown Source)
              at com.inet.tds.i.a(Unknown Source)
              at com.inet.tds.i.prepare(Unknown Source)
              at weblogic.jdbc.jta.DataSource.prepare(DataSource.java:473)
              at
              weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.
              java:1055)
              at
              weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.
              java:344)
              at
              weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java:14
              9)
              at
              weblogic.transaction.internal.ServerTransactionImpl.localPrepare(ServerTrans
              actionImpl.java:1478)
              at
              weblogic.transaction.internal.ServerTransactionImpl.globalPrepare(ServerTran
              sactionImpl.java:1304)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:160)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:208)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:201)
              at
              com.harris.server.list.ListModuleBean.licenseRecords(ListModuleBean.java:182
              at
              com.harris.server.list.ListModuleBeanImpl.licenseRecords(ListModuleBeanImpl.
              java:130)
              at
              com.harris.server.list.ListModuleBeanEOImpl.licenseRecords(ListModuleBeanEOI
              mpl.java:66)
              at
              com.harris.server.list.ListModuleBeanEOImpl_WLSkel.invoke(ListModuleBeanEOIm
              pl_WLSkel.java:112)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
              at
              weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
              :128)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
              at
              weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
              java:103)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              7)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              --------------- nested within: ------------------
              weblogic.transaction.RollbackException: Could not prepare resource
              'entityPool - with nested exception:
              [javax.transaction.xa.XAException]
              at
              weblogic.transaction.internal.TransactionImpl.throwRollbackException(Transac
              tionImpl.java:1248)
              at
              weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              Impl.java:208)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:208)
              at
              weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              erImpl.java:201)
              at
              com.harris.server.list.ListModuleBean.licenseRecords(ListModuleBean.java:182
              at
              com.harris.server.list.ListModuleBeanImpl.licenseRecords(ListModuleBeanImpl.
              java:130)
              at
              com.harris.server.list.ListModuleBeanEOImpl.licenseRecords(ListModuleBeanEOI
              mpl.java:66)
              at
              com.harris.server.list.ListModuleBeanEOImpl_WLSkel.invoke(ListModuleBeanEOIm
              pl_WLSkel.java:112)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
              at
              weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
              :128)
              at
              weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
              at
              weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
              java:103)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              7)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              

              Hi Sajan,
              Certification for MS SQLServer as a XA resource is in our plan for the near future,
              so hopefully we will soon find out if there are vendor bugs and also see if we can
              provide corresponding workarounds.
              Meanwhile, could you start the server with -Dweblogic.Debug=weblogic.JTAXA,weblogic.JTAJDBC
              and post the server log file?
              -- Priscilla Fung, BEA Systems, Inc.
              "sajan" <[email protected]> wrote:
              >Hi,
              >
              > I was trying to use the "Inet Opta" Xa driver for MSSQL 2000 with
              >weblogic 6.0.
              > I get the following Exception when i try to get a database connection
              >from a "Xa" Pool, in a transaction. The Pool did start up Correctly. Also,
              >i have given SupportsLocalTransaction="true" in the pool declaration.
              >And
              >if i give EnableTwoPhaseCommit="true" in the Tx Datasource declaration,
              >weblogic starts up, but without starting the connection pools. (also it
              >does
              >not deploy my ejbs in this case!).
              >
              > Could somebody help?
              >
              > Atleast, could somebody tell me when BEA is going to finish implementing
              >an Xa Driver for MSSQL?
              >
              >
              >Thanks,
              >Sajan Thomas.
              >
              >
              >
              >___________________________________________________________
              >javax.transaction.xa.XAException
              > at com.inet.tds.i.a(Unknown Source)
              > at com.inet.tds.i.a(Unknown Source)
              > at com.inet.tds.i.prepare(Unknown Source)
              > at weblogic.jdbc.jta.DataSource.prepare(DataSource.java:473)
              > at
              >weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.
              >java:1055)
              > at
              >weblogic.transaction.internal.ServerResourceInfo.prepare(ServerResourceInfo.
              >java:344)
              > at
              >weblogic.transaction.internal.ServerSCInfo.startPrepare(ServerSCInfo.java:14
              >9)
              > at
              >weblogic.transaction.internal.ServerTransactionImpl.localPrepare(ServerTrans
              >actionImpl.java:1478)
              > at
              >weblogic.transaction.internal.ServerTransactionImpl.globalPrepare(ServerTran
              >sactionImpl.java:1304)
              > at
              >weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              >Impl.java:160)
              > at
              >weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              >erImpl.java:208)
              > at
              >weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              >erImpl.java:201)
              > at
              >com.harris.server.list.ListModuleBean.licenseRecords(ListModuleBean.java:182
              >)
              > at
              >com.harris.server.list.ListModuleBeanImpl.licenseRecords(ListModuleBeanImpl.
              >java:130)
              > at
              >com.harris.server.list.ListModuleBeanEOImpl.licenseRecords(ListModuleBeanEOI
              >mpl.java:66)
              > at
              >com.harris.server.list.ListModuleBeanEOImpl_WLSkel.invoke(ListModuleBeanEOIm
              >pl_WLSkel.java:112)
              > at
              >weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
              > at
              >weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
              >:128)
              > at
              >weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
              > at
              >weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
              >java:103)
              > at
              >weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              >7)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >--------------- nested within: ------------------
              >weblogic.transaction.RollbackException: Could not prepare resource
              >'entityPool - with nested exception:
              >[javax.transaction.xa.XAException]
              > at
              >weblogic.transaction.internal.TransactionImpl.throwRollbackException(Transac
              >tionImpl.java:1248)
              > at
              >weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransaction
              >Impl.java:208)
              > at
              >weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              >erImpl.java:208)
              > at
              >weblogic.transaction.internal.TransactionManagerImpl.commit(TransactionManag
              >erImpl.java:201)
              > at
              >com.harris.server.list.ListModuleBean.licenseRecords(ListModuleBean.java:182
              >)
              > at
              >com.harris.server.list.ListModuleBeanImpl.licenseRecords(ListModuleBeanImpl.
              >java:130)
              > at
              >com.harris.server.list.ListModuleBeanEOImpl.licenseRecords(ListModuleBeanEOI
              >mpl.java:66)
              > at
              >com.harris.server.list.ListModuleBeanEOImpl_WLSkel.invoke(ListModuleBeanEOIm
              >pl_WLSkel.java:112)
              > at
              >weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
              > at
              >weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
              >:128)
              > at
              >weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
              > at
              >weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
              >java:103)
              > at
              >weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              >7)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              >
              

  • Help required...very urgent !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Help required with an error message.
    "Table Z0CL_BATCLA for object class CHARGE does not exist"

    Hi
    It means your Z0CL_BATCLA is not assigned to object CHARGE, you have to create the linke between object and table in the table TCDOB.
    You can do it by trx SCDO, but in this case you have to change in standard object.
    Max

  • Queries on Mac OS X support for Java 1.3

    Hi All
    I am having some trouble figuring out how to make Swing based Applets
    work on Mac OS X. Can anybody help me ?
    Queries on Mac OS X support for Java 1.3
    1) Will a Java Applet compiled using Java 1.3 run on "Mac OS X" without the need for a Plugin.? This includes Applets using Swing since we compiled using 1.3.
    2) I tried to run some Java 1.3 applets compiled using 1.3.1-04.
    Unfortunately, the Applets wouldn't run.
    Is there some setting in Mac OS X that i need to change or modify for the Applet to work ?
    3) When i open a Terminal in Mac OS X and type Java -version, i get
    "------ Java 1.3---------".
    This implies that Mac OS X supports the Java 1.3 SDK. Does it imply that it supports the runtime as well since this is usually the case ?.
    If it supports the runtime, then does this inculde support for Swing.
    Finally, as i enquired in '(1)' does this mean that i do not need any plugin(MRJ) to make Swing based applets work.
    Thanks and regards
    Prashanth

    What I am seeing is that Java is throwing a security error when file io is initiated by an external call from Javascript to a file on the server that java should have access to. Here is the error.
    <<< ProxyClassLoader: defined LiveConnectProxy class. >>>
    <<< Here're the permissions you've got: >>>
    <<< java.security.Permissions@157402b (
    (java.net.SocketPermission www.dhba.com connect,accept,resolve)
    >>>
    VirtualLab.loadProblemSpecification: properties file=assignments/Walkthough.xml
    http://www.dhba.com/wested/applet/assignments/Walkthough.xml not retrieved
    java.security.AccessControlException: access denied (java.io.FilePermission assignments/Walkthough.xml read)
    My system:
    Mac OSX10.6.4 with Firefox3.6.12 (Java Plug-in 1.6.0_22 Using JRE version 1.6.0_22-b04-307-10M3261 Java HotSpot(TM) Client VM)

  • Help required from JDeveloper Development Team.

    HI there,
    I Download the JDeveloper 10.1.2 (1811) from OTN, But the downloaded archive file is unable to open. I did the download once again but I am facing same problem. I want to JDeveloper 10.1.2 for the installation of BI Beans 10.1.2.
    Help required from JDeveloper Development Team
    Thanks For Your Time,
    Regards,
    ViSHAL.

    Please use an informative Subject line, there is more chance that people will read the post.
    All we can suggest is that you try the download again.

  • Help Required to post IDOC from R/3 to XI

    Hello,
    I need help to post IDOC from R/3 to XI
    My XI System --- E11 on client 001
    My R/3 System -- IXS on client 812
    In R/3
    1. I use Tx SM59 to make RFC Dest --- E11CLNT001  (Client will be 001 Pointing to my XI System )
    2. I use TX WE21 to make Port -- A00020  which is using above RFC Dest
    3. I use TX WE20 to make Partner Profile -- RECE ( IDOC Outbound Parameter-  MATMAS which is using above Port)
    In XI
    1. I use TX SM59 to make RFC Dest --- E11812 (Client will be 812 Pointing to my R/3 System )
    2. I use TX IDX1 to make Port --- SAPB6M (Client will be 812 and RFC Dest -- E11812 )
    3. I use TX WE20 to make Partner Profile  -- B6MTEST  ( IDOC Inboubnd Parameter-  MATMAS )
    While Posting data from R/3
    Recipient Port --- A00020 
    Recipient Partner No -- RECE
    Recipient Partner Type --- LS
    Sender Port --- SAPB6M
    Sender  Partner Number  -- B6MTEST 
    Sender  Partner Type --- LS
    I am getting error " Could not post IDOC to R/3".
    Please let me know where are my setting are incorrect
    Regards

    In R/3
    1. I use Tx SM59 to make RFC Dest --- E11CLNT001 (Client will be 001 Pointing to my XI System )
    2. I use TX WE21 to make Port -- A00020 which is using above RFC Dest ( THIS PORT NAME SHOULD BE IN THE FORMAT SAPSID, A00020 (is it you SAPSID, else it will throw error)
    3. I use TX WE20 to make Partner Profile -- RECE ( IDOC Outbound Parameter- MATMAS which is using above Port)
    In XI
    1. I use TX SM59 to make RFC Dest --- E11812 (Client will be 812 Pointing to my R/3 System )
    2. I use TX IDX1 to make Port --- SAPB6M (Client will be 812 and RFC Dest -- E11812 )  ( THIS PORT NAME SHOULD BE IN THE FORMAT SAPSID, A00020 (is it you SAPSID, else it will throw error)
    3. I use TX WE20 to make Partner Profile -- B6MTEST ( IDOC Inboubnd Parameter- MATMAS ) ( Not require in SAP XI)
    chenage the PORT NAME IN R/3 it should work.

  • HT5699 Im from another country and ive lost the answers to my security questions. Help required

    Hi
    Im from another country and ive lost the answers to my security questions. Help required
    Thanks

    You need to contact Apple, either as described in that article or by filling out and submitting this form.
    (90034)

  • Help needed to Copy Queries from one User Favorites to other

    Hi Experts,
    We have one requirement to copy Queries from favorites of one user to other,But issue that while i am trying this in sandbox for any new user it is working with SE 37 Function module -FAVOS_EVENT_ADD_TO_USER_SHELF Approach then Queries are visble on Favorites on USER MENU.
    And for any other existing user if we use this Function Module ,Queries saved to fav are not visible in USER MENU screen although it is visible in TABLE SMEN_BUFFC.
    Please advice on this.
    Thanks
    Nilesh

    Hi,
    Use FNDLOAD.
    Note: 364558.1 - How To Use FNDLOAD To Download Responsibilities With All Security Groups, Not Just STANDARD
    Note: 735338.1 - Tips About FNDLOAD
    FNDLOAD responsibility
    FNDLOAD responsibility
    use FNDLOAD to download the profile setup for a responsibility
    use FNDLOAD to download the profile setup for a responsibility
    Thanks,
    Hussein

Maybe you are looking for

  • Table for SPL screening date

    Hi All We are trying to prepare a report that consists requires give output business partners that are screened for SPL for a given period of time. please provide tables or logic to get this done. Thanks for your time. Thanks & Regards Karthi

  • Reporting Services SQL Instance blank

    I have looked at all the links and tried the suggestions and I am still having the problem:  SCCM 2012 R2                         SQL 2012 SP1 SSRS installed and configured (separate boxes) When I try to add the reporting services role, it finds the

  • Dynamic mail subject in File2Mail Scenario

    We are doing File2Mail scenario. We r sending 5 files in 5 mails with 5 diff subjects by MAIL adapter. Can anyone guide me how to send 5 files as attachment in one single mail with different mail subjects : File names are - Employee_Leave,Base,Super,

  • How do erase my mac book air

    How do I erase my air. My storage is all other. I deleted my pics music documents and ect

  • SIGBUS in cleanfree which using ostrstream

    I encounter a SIGBUS error at the place where I use ostrstream. I don't think there is problem in using the ostrstream as almost all the times it works. It seems like this is due to some internal handling of realfree. Does anybody has any idea how to