Date according to user requirement

Hi experts
I have a selection-screen date field when user enter date with the help of F4 it shows error message like this
Input date format like this                 :   09/01/2010
Please Enter date in the format       :  __.__.____   like this 
is there any function modules  to convert date like this format .
Thanks & Regards
Siva Krishna.

To solve this purpose, a function module has been created which takes the date and format (in which date needs to be converted) as input and gives the date in the desired format as output. It also raises an exception if the format is incorrect.
For achieving this functionality, a ztable is to be created which contains all the possible formats of  a date. Then the format given on the screen is to be validated against this table.
STRUCTURE OF THE FUNCTION MODULE
FUNCTION zdummy_date_conv.
""Local Interface:
*"  IMPORTING
*"     REFERENCE(DATE) TYPE  SYDATUM
*"     REFERENCE(FORMAT) TYPE  CHAR15
*"  EXPORTING
*"     REFERENCE(DATE_FINAL) TYPE  CHAR15
*"  EXCEPTIONS
*"      INCORRECT_FORMAT
POSSIBLE DATE FORMATS
DATE FORMATS
       DD.MM.YY
MM.DD.YY
MM.YY.DD
YY.MM.DD
YY.DD.MM
DD.YY.MM
DD-MM-YY
MM-DD-YY
MM-YY-DD
YY-MM-DD
YY-DD-MM
DD-YY-MM
DD/MM/YY
MM/DD/YY
MM/YY/DD
YY/MM/DD
YY/DD/MM
DD/YY/MM
DDMMYY
MMDDYY
MMYYDD
YYMMDD
YYDDMM
DDYYMM
DD.MMM.YY
MMM.DD.YY
MMM.YY.DD
YY.MMM.DD
YY.DD.MMM
DD.YY.MMM
DD-MMM-YY
MMM-DD-YY
MMM-YY-DD
YY-MMM-DD
YY-DD-MMM
DD-YY-MMM
DD/MMM/YY
MMM/DD/YY
MMM/YY/DD
YY/MMM/DD
YY/DD/MMM
DD/YY/MMM
DDMMMYY
MMMDDYY
MMMYYDD
YYMMMDD
YYDDMMM
DDYYMMM
DD.MM.YYYY
MM.DD.YYYY
MM.YYYY.DD
YYYY.MM.DD
YYYY.DD.MM
DD.YYYY.MM
DD-MM-YYYY
MM-DD-YYYY
MM-YYYY-DD
YYYY-MM-DD
YYYY-DD-MM
DD-YYYY-MM
DD/MM/YYYY
MM/DD/YYYY
MM/YYYY/DD
YYYY/MM/DD
YYYY/DD/MM
DD/YYYY/MM
DDMMYYYY
MMDDYYYY
MMYYYYDD
YYYYMMDD
YYYYDDMM
DDYYYYMM
DD.MMM.YYYY
MMM.DD.YYYY
MMM.YYYY.DD
YYYY.MMM.DD
YYYY.DD.MMM
DD.YYYY.MMM
DD-MMM-YYYY
MMM-DD-YYYY
MMM-YYYY-DD
YYYY-MMM-DD
YYYY-DD-MMM
DD-YYYY-MMM
DD/MMM/YYYY
MMM/DD/YYYY
MMM/YYYY/DD
YYYY/MMM/DD
YYYY/DD/MMM
DD/YYYY/MMM
DDMMMYYYY
MMMDDYYYY
MMMYYYYDD
YYYYMMMDD
YYYYDDMMM
DDYYYYMMM      
CODE OF FUNCTION MODULE
FUNCTION zdummy_date_conv.
""Local Interface:
*"  IMPORTING
*"     REFERENCE(DATE) TYPE  SYDATUM
*"     REFERENCE(FORMAT) TYPE  CHAR15
*"  EXPORTING
*"     REFERENCE(DATE_FINAL) TYPE  CHAR15
*"  EXCEPTIONS
*"      INCORRECT_FORMAT
Local variables declaration
  DATA: l_y1         TYPE numc1,
        l_y2         TYPE numc1,
        l_y3         TYPE numc1,
        l_y4         TYPE numc1,
        l_m1         TYPE numc1,
        l_m2         TYPE numc1,
        l_d1         TYPE numc1,
        l_d2         TYPE numc1,
        l_len        TYPE int1,
        l_ctr        TYPE int1,
        w_t247       TYPE t247,
        l_flag_m1    TYPE char1,
        l_flag_init  TYPE char1,
        l_flag_d     TYPE char1,
        l_flag_y     TYPE char1,
        l_format     TYPE char15,
        l_final_date TYPE char15.
Local constants declaration
  CONSTANTS: c_d    TYPE char1 VALUE 'D',
             c_m    TYPE char1 VALUE 'M',
             c_y    TYPE char1 VALUE 'Y',
             c_mmm  TYPE char3 VALUE 'MMM',
             c_yyyy TYPE char4 VALUE 'YYYY'.
Checking the format given by user.
  SELECT SINGLE zformat
    FROM zformat_date
    INTO l_format
   WHERE zformat = format.
  IF sy-subrc EQ 0.
Processing Logic of the routine
    l_y1 = date+0(1).
    l_y2 = date+1(1).
    l_y3 = date+2(1).
    l_y4 = date+3(1).
    l_m1 = date+4(1).
    l_m2 = date+5(1).
    l_d1 = date+6(1).
    l_d2 = date+7(1).
    l_len = STRLEN( format ).
    CLEAR : l_flag_m1, l_flag_init, l_flag_d,l_flag_y.
    WHILE l_ctr < l_len.
      IF format+l_ctr(1) = c_m.
        IF NOT format CS c_mmm.
          l_final_date+l_ctr(1) = l_m1.
          l_ctr = l_ctr + 1.
          l_flag_m1 = l_flag_m1 + 1.
          l_final_date+l_ctr(1) = l_m2.
          l_ctr = l_ctr + 1.
          l_flag_m1 = l_flag_m1 + 1.
        ELSE.
          SELECT SINGLE * FROM t247 INTO w_t247
             WHERE spras = sy-langu
               AND  mnr  = date+4(2).
          IF sy-subrc EQ 0.
            l_final_date+l_ctr(3) = w_t247-ktx.
            l_ctr = l_ctr + 3.
          ENDIF.
        ENDIF.
      ELSEIF format+l_ctr(1) = c_y.
        IF format CS c_yyyy.
          l_final_date+l_ctr(1) = l_y1.
          l_ctr = l_ctr + 1.
          l_final_date+l_ctr(1) = l_y2.
          l_ctr = l_ctr + 1.
          l_final_date+l_ctr(1) = l_y3.
          l_ctr = l_ctr + 1.
          l_final_date+l_ctr(1) = l_y4.
          l_ctr = l_ctr + 1.
        ELSE.
          l_final_date+l_ctr(1) = l_y3.
          l_ctr = l_ctr + 1.
          l_flag_y = l_flag_y + 1.
          l_final_date+l_ctr(1) = l_y4.
          l_ctr = l_ctr + 1.
          l_flag_y = l_flag_y + 1.
        ENDIF.
      ELSEIF format+l_ctr(1) = c_d.
        l_final_date+l_ctr(1) = l_d1.
        l_ctr = l_ctr + 1.
        l_flag_d = l_flag_d + 1.
        l_final_date+l_ctr(1) = l_d2.
        l_ctr = l_ctr + 1.
        l_flag_d = l_flag_d + 1.
      ELSE.
        l_final_datel_ctr(1) = formatl_ctr(1).
        l_ctr = l_ctr + 1.
      ENDIF.
      IF NOT l_final_date IS INITIAL.
        date_final = l_final_date.
      ENDIF.
    ENDWHILE.
  ELSE.
    CLEAR date_final.
    RAISE incorrect_format.
  ENDIF.
ENDFUNCTION.

Similar Messages

  • Formatting a date according with user settings (user defaults)

    Hi All,
    I need to format a date I receive via JS in YYYYMMDD format according with user defaults <b>without</b> server side action (I know, this is not a good issue, but they want it).
    My solution is to write a JS function (there are a lot of it on WWW) which accepts two strings and formats the first according to the second, something like:
    userFormattedDate = formatDate('20060613','DD.MM.YYYY');
    paying attention to generate 'DD.MM.YYYY' string on server side, according to user settings.
    But if this isn't a weblog, where is the question? :-D
    The question is: is there a JS function (in DatePicker or dateNavigator BSP) provided by standard libraries which serves similar functionality?
    Does exist a JS public standard library?
    Thanks.
    Dany

    Hi Durairaj,
    Tags <% %> are for server side actions.
    The question is about obtaining the same effect, but client side.
    Thanks.
    Dany

  • Function module converts sy-datum to date according to user settings in SAP

    Hi experts,
    I need such a function module which converts sy-datum to a date format
    according to user settings in SAP.
    Thanks,
    Yogesh

    Use these function modules.
    CONVERSION_EXIT_PDATE_OUTPUT
    CONVERT_DATE_TO_EXTERNAL
    Please mark points if the solution was useful.
    Regards,
    Manoj

  • Calculating   data according to user entry

    Dear All ,
    i need to design a query where i need to calculate proportionate budget according to the month entered by the user . for eg
    if total budget is 50000 then proportionate budget should be               total budget * ( entry by the user any month)/12. 
    how can i do it . help shall be highly appreciated.
    thanks
    Ritu

    Sales group          Sales Representative          Formula 6     "PROP BUDGET
    (UPTO DECEMBER 2011)"     "ANNUAL BUDGET CONTRACT SALE
    2011 -2012"
    Delhi - Region     100     Contract Sales - A     752     B.D. Sharma     289,998,000.00 INR     326,247,750.00 INR     434,997,000.0 INR
                   878     Vijay Arya               
                   952     Ashok Agarwal               
                   1005     Aman Malhotra     599,994,000.00 INR     674,993,250.00 INR     899,991,000.0 INR
                   1231     R.K. Gupta               
                   1251     Satyendra Shahi               
                   1305     Sanjeev Angra               
                   1393     Bikram Jamwal               
                   1455     N. C. Basu               
                   1494     Shailender Kumar               
                   1515     Krishna Mitra               
                   1743     Jitendra Dadlani               
                   1754     Ajay Malhotra               
                   1799     Sudhir Arya               
                   1877     Pankaj Garg               
                   1957     Bipin Agnihotri               
                   2027     Ishwar Chander Goel               
                   2031     Sukesh Kakkar               
                   2069     Anil Luthra               
                   2281     Munjesh Chaudhary               
                   2303     Bhojpal Sirohi               
                   2386     Abhinendra Singh               
                   2406     Ratan Singh               
                   2568     Jitendra Gupta               
                   2630     Rajeev Kumar Verma               
                   2645     Jitesh Kumar               
                   2654     Shailendra Singh               
                   3131     Arun A               
                   3702     Shekhar Chaturvedi               
                   3736     Subodh Nigam               
                   3797     Umesh Khanna     160,002,000.00 INR     180,002,250.00 INR     240,003,000.0 INR
                   #     Not assigned               
                   Result          1,181,243,250.00 INR     1,181,243,250.00 INR     1,574,991,000.0 INR
         110     Contract Sales - B     752     B.D. Sharma               
                   878     Vijay Arya               
                   1005     Aman Malhotra               
                   1305     Sanjeev Angra               
                   1494     Shailender Kumar               
                   1513     U Srivastava               
                   1754     Ajay Malhotra     15,626,250.00 INR     28,127,250.00 INR     37,503,000.0 INR
                   1877     Pankaj Garg               
                   2027     Ishwar Chander Goel               
                   2031     Sukesh Kakkar     156,251,250.00 INR     281,252,250.00 INR     375,003,000.0 INR
                   2173     Abhishek Singh     62,501,250.00 INR     112,502,250.00 INR     150,003,000.0 INR
                   2645     Jitesh Kumar               
                   #     Not assigned               
                   Result          421,881,750.00 INR     421,881,750.00 INR     562,509,000.0 INR
         120     Contract Sales  - C     752     B.D. Sharma               
                   878     Vijay Arya               
                   1005     Aman Malhotra               
                   1251     Satyendra Shahi               
                   1305     Sanjeev Angra               
                   1494     Shailender Kumar     424,998,000.00 INR     478,122,750.00 INR     637,497,000.0 INR
                   1754     Ajay Malhotra               
                   1957     Bipin Agnihotri     325,002,000.00 INR     365,627,250.00 INR     487,503,000.0 INR
                   2303     Bhojpal Sirohi               
                   2526     Digambar Singh               
                   2645     Jitesh Kumar               
                   2654     Shailendra Singh               
                   2675     Shailendra Singh               
                   3699     Dharmender Yadav               
                   #     Not assigned               
                   Result          843,750,000.00 INR     843,750,000.00 INR     1,125,000,000.0 INR
         130     Contract Sales  - D     752     B.D. Sharma               
                   1251     Satyendra Shahi               
                   1305     Sanjeev Angra               
                   1754     Ajay Malhotra               
                   1877     Pankaj Garg               
                   2027     Ishwar Chander Goel               
                   2042     Suresh Saraf     85,938,750.00 INR     154,689,750.00 INR     206,253,000.0 INR
                   2245     Prosenjit Mukherjee     132,813,750.00 INR     239,064,750.00 INR     318,753,000.0 INR
                   3797     Umesh Khanna               
                   #     Not assigned               
                   Result          393,754,500.00 INR     393,754,500.00 INR     525,006,000.0 INR
         200     Product Sales  - 1     1501     Sanjeev Sharma               
                   1819     Girish Luthra               
                   2027     Ishwar Chander Goel               
                   2069     Anil Luthra               
                   #     Not assigned               
                   Result                    
         210     Product Sales  - 2     1501     Sanjeev Sharma               
                   1819     Girish Luthra               
                   2069     Anil Luthra               
                   2364     Anil Kumar               
                   2397     Ashok Kumar               
                   2594     Vikram Malhan               
                   2654     Shailendra Singh               
                   #     Not assigned               
                   Result                    
         220     Product Sales - 3     3736     Subodh Nigam               
                   #     Not assigned               
                   Result                    
         300     Marketing &Technical     1515     Krishna Mitra               
                   2221     Ashu Sharma               
                   #     Not assigned               
                   Result                    
         #     Not assigned     1501     Sanjeev Sharma               
                   #     Not assigned               
                   Result                    
         Result                    3,471,880,500.00 INR     2,840,629,500.00 INR     3,787,506,000.0 INR

  • Filter output data according to portal current user name in omni portlet

    We have created an omniportlet that connects to a database, and retrives some values into a defined HTML layout.
    We want to filter output data according to our portal current user name
    When we try to use portal.wwctx_api.get_user inside of omni portlet select statement fallowing error occurs.
    Error in executing Query : [ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL.WWCTX_SSO", line 1803 ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL.WWCTX_SSO", line 1637 ORA-06502: PL/SQL: numeric or value error ORA-06512: at "PORTAL.WWCTX_SSO", line 1865 ORA-06512: at "PORTAL.WWCTX_API", line 183 ]
    Thanks a lot

    hello
    i think you cannot use the portal built-in packages inside omni portlets. Omni portlets is designed to connect to other data source (not only oracle) and Portal API might not be available at these data sources. Therefore, you should not be using these Packages at all!. i tried very hard, but to no avail.. Omni portlet has its own repository!! if you cannot pass the infomration as a parameter, then find a different approach
    Ammar Sajdi
    Amman - Jordan
    oracle consultant

  • Filter omni portlet output data according to portal user

    We have created an omniportlet that connects to a database, and retrives some values into a defined HTML layout.
    We want to filter output data according to our portal current user name
    When we try to use portal.wwctx_api.get_user inside of omni portlet select statement fallowing error occurs.
    Error in executing Query : [ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL.WWCTX_SSO", line 1803 ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL.WWCTX_SSO", line 1637 ORA-06502: PL/SQL: numeric or value error ORA-06512: at "PORTAL.WWCTX_SSO", line 1865 ORA-06512: at "PORTAL.WWCTX_API", line 183 ]
    Thanks a lot

    This is because the Omniportlet is actually operating within a different context--a separate database connection from the Portal connection. We have similar issues with Java portlets. You might try creating a public parameter on the portlet, then mapping that to the system variable USER (done on the Parameters tab of the page where you deploy it--if you don't see a parameters tab, you must enable Parameters and Events at the page group properties level). I haven't tested any of this, but it should get you going in the right direction.

  • Set factory calender and user requirement date calculation

    Hi Gurus,
    I've requirement to do calculation for start user requirement & end user requirement. The calculation must exclude public holiday and weekend. Therefore factory calender need to be maintained.
    Please guide me into doing this.
    regards,

    Dear
    Based on your business requirement ,  you should have the following set up :
    1.One Factory Calender  with Work Days Monday-to-Friday  Let say FC1 .This will be used on all the organisational level starting from Materials Planning to Sales  .But will not be assinge to Capacity Requirement Planning Purpose or Any Production Activity in Work Centre .
    2.You should have one more Factory Calander with work Days Monday to Monday ( 7 days week ) with some special rule like Plan Shutdown Days , Breakdown Maintainnece  etc  and this should be assinged to  all the work centres -CR02-Capacity Tab -Capacity Header -Factory Calader ID -Let say it is FC2.
    You need to ceate Calander in OP03/SCAL .It does nto have any transport and  it will be a Cleinet level changes  which requires proper approval .Please rememeber , you need to assing only FC1 to Plant assingement in OP03 where as FC2 will be asisnged only in Work Centre level  .
    Steps : Goto -OP03
      1.Identify all those Public Holidays frist with Fixed or moveable as per business requirement
      2.Goto Holiday Calander -Hit the pencil -Hit Create option -Enter ID , Description , Valid To/From Year ( shd be 20 yrs differnce )
       Add all those holidays as per Public holidays as applicable in your business  with proper valididty  and finally SAVE
    3.Goto Factory Calander -Hit the pencil -Hit Create option -Enter ID , Description , Valid To/From Year ( shd be 20 yrs differnce )
       Asisng Hioliday Calander . In case of FC2-Work centre Calander , here you can hit the Special Rules .Include Special Activity like Plan Shut down of factory with Validity  etc and SAVE .
    4.Come back to OP03 main screen -Assing the factory Calender in plant .
    5.Goto -CR02-Capacity -Capacity Header -Available Capacity Header -Factory Calander-Assing FC2
    I do not  think you should have planning calander seperately if you do not have any specific reason .
    Hope it helps
    Regards
    JH

  • How to retrieve password character according to user logged on ?

    Hi,
    Can anybody help on this issue .
    How to retrieve password character according to user logged on ?
    I have a program will runs on multiple logins.I like restrict so that only an admin can  retrieve the password.
    How to do it ?

    > I have a report program which uploads sensitive information to presentation server.The program is also used by multiple users for other use.(billing info on excel sheet)
    That is the bugger with generic (executable) functionality. When used for multiple requirements which are too far from each other then they break or the "lowest common denominator" calls the shots.
    If this data is being uploaded from the application server, then why don't you just protect it there. The S_DATASET for that program context will not be very usefull, because it is generic.... so you can look into using S_PATH.
    > Since a user might have already logged on to system i can only ask a password as a authorization to run the program.
    Again, this means that anyone who knows the generic password (or can display / debug the code) will be able to access the data.
    A better variant of the same would be to create a symbolic service user, and prompt for that user's password before the data is downloaded. You can then use standard functions for prompting for passwords, which also update the lock counter.
    => If the password is locked due to incorrect logins, then the program is locked for this functionality as well.
    => You can periodically lock / unlock / change the access to the program, by administrating the service user in SU01.
    => Do not give this service user any authority at all - you only want to prompt for knowledge of the password, but not actually log the user itself onto the system. (see report RDDPWCHK for some example coding)
    In German this is called "von hinten durch die brust", which means something like "unusual approach but still works anyway".
    > I like to restrict access of retrieving the password  only to a  basis team.(others user can run the program)
    I would still protect the source data itself using unique authority to access it, and then control that.
    Cheers,
    Julius

  • Hi all, can someone help me in getting last login date of a user in CQ5 please?

    Hi all, can someone help me in getting last login date of a user in CQ5 please?

    CQ is REST based and does not have the concept of session. So there is no feature to track login or logout details.  Most of our customers use some kind of central authentication Ex- SSO hence no need arises to have such functionality built in.  However if needed you have the ability to implement such at a project level solution. Ex:- custom login modules or auth-handler by taking project specific constraints and requirements into account

  • How to replicate session data at the user level?

    Hi all,
    my client has users who use laptop/tablet computers in the field with wireless connections. The application requires the users to complete long multi-page forms where the data is only submitted to the EIS layer at the end of the process. The connections regularly drop out which understandably is a cause of some grief. In addition, the users want to be able to switch to another machine in order to complete their session.
    The 'switching machine' requirement kills the idea of using persistent cookies and session replication unfortunately. So I am faced with the idea of storing the session data (keyed by user id), in serialized form, either on a stand-alone disk which is accessible by each webserver in the cluster or is the database. The problem with the database idea is the performance hit of traversing the EJB and JDBC layers.
    Can anyone suggest the best practice in this case? Or point to an article or tool that covers the problem?
    BTW, the app serves a small (<50) and stable base of authenticated users so scalability is not really an issue whereas failover is.
    Regards,
    Dave.

    > Is it possible to close a PO at the header level
    Po can be closed at Item level and not Header level. You can set Deletion Indicator and further can be archived thru SARA MM_EKKO
    or a way to deactivate the PO so that no new items can be added?
    You can activate Release strategy and Choose a Proper Release indicatory so that no new changes to be carried out.
    Else go for User Exits

  • GRC 10.0 Access Request Creation- Data Source of User Details

    Hi Experts,
    I was doing GRC 10.0 Configuration and found a query which I am not able to resolve.
    While creation of any kind of Access Request in GRC through NWBC> Acces Management Tab>Access Request>Access Request Creation.
    In the user details section, I can see the HR records( like Pernr, position, manager) have been visible to some extent.
    My question is where from these details came in GRC. What configuration we should maintain to achieve these HR records?
    Hope to get a quick response as this is one of the requirement of the implementation which I am doing with my customer.
    Thanks,
    Atanu

    Alessandro,
    Thanks for your response. It helped me to know certain things.
    But when I am navigating to SPRO > GRC > Access Control > Maintain Data Sources Configuration > [User Detail Data Source], it is configured with a ECC system in target connector and User data type is maintained as "SU01".
    Now my question is where from in my case the GRC is pulling the HR records (PA20) like PERNR, POSITION,PERSONEL AREA etc? SU01 does not provide these information. My ECC box is integrated with HR module, so is it taking the data from HR directly?
    Thanks in advance!
    Atanu

  • How to determine Organizational Data based on User Login

    Dear all,
    How to determine organizational data based on user login in Activity transaction, currently org determination is happening after entering customer number in the transaction.
    We have used 'Responsibility' determination rule for this configuration. Now the requirement is to determine org data based on user login.
    In Org model we have assigned user to org data through a business partner. But still org data is not getting determined in the transaction.
    Please help me to trace out the problem.. your suggestions will be highly appreciated.
    Best regards
    Raghu ram

    You just have to use other organization determination rule. In your case this would be rule 10000194 (ORGMAN_12). This determination rule delivers the responsible organizational unit of the user
    User is defined as a business partner in the container attribute 'PARTNER'. If not, the system user (sy-uname) is used.
    So you have to do the following:
    - use this determination rule
    - in BP link username with employee
    - assign in PPOMA_CRM employee or user to organizational unit
    This should solve your problem.

  • Unable to Access Data Form with Users Provisioned as 'Planner'

    Hello,
    I am currently experiencing an issue that I can't seem to resolve. I was hoping someone else might have some insight and/or have come across this issue.
    I created two data forms. Users have been assigned permissions to the dimensions included in the data form. I have also assigned users access to the data form. The model is a single currency model.
    Upon logging into the application, the user is unable to open the data form unless he/she is provisioned as an 'Administrator'. Provisioning the user as a 'Planner' or 'Interactive User' does not allow the user to open the data form. The following message appears:
    *"Security and/or filtering has resulted in a required dimension not being represented on this data form."*
    My data form uses the following dimensions:
    POV: ELEMENT
    PAGE: SCENARIO, YEAR, VERSION, ENTITY
    ROWS: ACCOUNT
    COLUMNS: PERIOD
    We are currently implementing Hyperion Planning 11.1.2.0. The operating system is Windows Server 2008 64-bit R2.
    Any advice/suggestions on how to resolve this would be greatly appreciated. Thank you.
    Corey

    I went ahead a created a data form that just used level 0 members and confirmed that the user had access to the members defined in the form. Still no luck.
    I also checked to make sure the filters existed in Essbase. Here is what I found in Essbase:
    Access: None
    Member Specification: @IDES("Account"),@IDES("Scenario"),@IDES("Version"),@IDES("Entity"),@IDES("NTTA_ELEMENT")
    I have no issues accessing the data through the Essbase Add-in.
    I did notice some additional items in my Planning setup:
    1. Task>Manage Process - Sub-Status states 'Failed' when I attempt to validate
    2. Task>Manage Process - Status changes from 'Not Started' to 'Under Review' when I start the cycle.
    3. Dimension Security - Users are attached to a group that has write access at the Descendent(Inclusive) level.
    4. In the Account, Department, Scenario and Version dimensions I also setup the user to have write access at the member level.
    As for my earlier post with the data forms, that was just my way of showing the dimensions used. I do have two data forms, 1) with top level and descendants/children and 2) with level 0 members only.
    I checked the logs and there isn't really much info there. I have a case open with Oracle and a webex scheduled for tomorrow.
    Thoughts?
    Thanks
    Corey

  • Organizational Data on the User - Master Data

    Folks,
    I want to extract and load data from the datasources:
    0CRM_HR_UNAME_ORG
    - Organizational Data on the User
    0CRM_POSITION_ATTR
    - CRM Position Master Data.
    But I unable to locate the required infosources.
    The datasources are present but do not have any standard transformation to infoobjects.
    Can anyone pls help on the required infosources and infoobjects.
    Thanks & Regards,
    Raj Jain

    Hi,
    pls check if authorization problem ?
    Note 397208 - BW: Authorizations for HR data extraction
    *other note Note 872506 - 0HR_PA_PD_2: Only data in status '1' extracted **
    Organizational Management (PA-OS):
    For example, DataSource 0HR_PA_OS_1, 0ORGUNIT_ATTR, 0ORGUNIT_HR01_HIER, 0HRPOSITION_ATTR, 0CRM_HR_PA_OS_1, 0CRM_ORGUNIT_HR01_HIER, 0CRM_POSITION_ATTR
    P_PLAN_ALL and P_BAS_ALL
    hope this helps.
    regards
    CSM Reddy

  • Defining end user requirements

    Hi I'm new to discoverer and I would like to know how do you go about defining end user requirements. Is there some sort of rules or documentation around to help with this analysis stage, because I'm told that you need this sort ofinformation to enable you to build the EUL and the business area.
    Thank you in advance.
    Maria

    maria,
    well you would first want to identify needed reports capability of your user base. Then locate the current report base to see if some of the requests are already handled. The GAP could then be identified as a GAP in reporting Requirements. As you go through the reports requests you can identify needed data and fields. Then group that data into related items, or related functional needs.
    Christopher

Maybe you are looking for

  • Reading a XML file in ORACLE 8i

    I hv a XML file something like this.... <?xml version="1.0" ?> - <ROWSET> - <ROW num="1"> <COD001_VEK4>2</COD001_VEK4> <NUM040_VEKT>2</NUM040_VEKT> <COD467_VEKT>2</COD467_VEKT> <COD459_LVIO>5</COD459_LVIO> <NUM258_INDI>InfoSys</NUM258_INDI> - <RELATI

  • I cant load some web pages from safari?

    My Mac has over the last 24 hrs become very slow!  It will load some pages but not others.  I can access my email on Hotmail but not google or apple etc?  When I click on safari the apple address comes up but the page doesn't load the blue bar is hal

  • Multiple signatures (and certificates) for one user

    I'm using Adobe 8 Standard.  I need two signatures with the same name but with two separate and distinct companies (old and new).  Thus, I would two separate and distinct signatures to be associated with two certificates (old and new respectively). 

  • Help with Cross-tab

    Hello everyone... Here is some quick background info on my project: 1) I am attempting to write a Crystal Report (version 10) to automatically capture crime statistics for a previous time period based on a current time period entered into the Crystal

  • Java for Mac OS X 10.6 Update 8

    Apple has just posted a Java security update which "removes the most common variants of the Flashback malware." It's not  on the Apple Support Downloads website yet but is in Software Update.