Extensive Accounting Application

Hi All,
Hi All,
Thank you for your valuable time in advance. I have created a challenging task for myself by myself and need some sort of solution.
Accounting requires that the payment should be recognized in the month when service was provided and not when the actual payment was made. FAC_SUMMARY's E_MONTH is SERVICE_MONTH.
Company's line of business and operations tends to throw off the accounting principles. Payment month is completly irrelevant but, included to see the differences in methodology. Payments in FAC_PAYMENTS table should just be summed at F_ID level and then allocate to FAC_SUMMARY E_MONTH.
Fields(HIST_BALANCE, HIST_PAYMENT, HIST_BALANCE_AFTER_PAYMENT, PAYMENT_DUE_BALANCE) described on OUTPUT will need to be generated before determining the payments.
Here is a walk-through for F001.
F001 has a total 53,000 in payments. These payments needs to be allocated FAC_SUMMARY F001s positive PAYMENT_DUE_BALANCE at any E_MONTH.
For example:
@ 11/1/2010
BALANCE = 10,000
HIST_BALANCE = ACCUMULATED BALANCE Since this is first month, 0 + 10,000 = 10,000
PAYMENT = Needs to be CALCULATED = 10,000
HIST_PAYMENT = ACCUMULATED BALANCE Since this is first month, = PAYMENT = 10,000
PAYMENT_DUE_BALANCE = PAYMENT 10,000 HIST_BALANCE-HIST_PAYMENT = 10,000-0 = 10,000
@ 12/1/2010
BALANCE = -5000
HIST_BALANCE = ACCUMULATED BALANCE , 10000 + (-5000) = 5,000
PAYMENT = 0 bcz PAYMENT_DUE_BALANCE is -5,000
HIST_PAYMENT = ACCUMULATED BALANCE 10,000 + 0 = 10,000
PAYMENT_DUE_BALANCE = HIST_BALANCE - HIST_PAYMENT = 5,000-10,000 = -5,000
@ 01/1/2011
BALANCE = 5000
HIST_BALANCE = ACCUMULATED BALANCE , 10000 + (-5000) + 5,000 = 10,000
PAYMENT = 0 bcz PAYMENT_DUE_BALANCE is 0
HIST_PAYMENT = ACCUMULATED BALANCE 10,000 + 0 + 0 = 10,000
PAYMENT_DUE_BALANCE = HIST_BALANCE - HIST_PAYMENT = 10,000-10,000 = 0
@ 04/1/2011
BALANCE = 40000
HIST_BALANCE = ACCUMULATED BALANCE , 10000 + (-5000) + 5,000 + (-20000) + 3000 + 40000 = 33,000
PAYMENT = 23,000 bcz PAYMENT_DUE_BALANCE is 23,000
HIST_PAYMENT = ACCUMULATED BALANCE 10,000 + 0 + 0 + 0 + 0 + 0 = 10,000
PAYMENT_DUE_BALANCE = HIST_BALANCE - HIST_PAYMENT = 33,000-10,000 = 23,000
HIST_PAYMENT can never be more than TOTAL PAYMENTS in FAC_PAYMENTS.
There cannot be any negative payment however; negative balance carrries forward in HIST_BALANCE.
Please note that all activity besided BALANCE have 0s for months > SYSMONTH-4.
Please let me know if I can provide any more detail.
DROP TABLE FAC_SUMMARY ;
CREATE TABLE FAC_SUMMARY (
F_ID    CHAR(4),
E_MONTH DATE,
BALANCE FLOAT
COMMIT ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-NOV-2010',  10000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-DEC-2010',  -5000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-JAN-2011',  5000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-FEB-2011',  -20000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-MAR-2011',  3000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-APR-2011',  40000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-MAY-2011',  10000  ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-JUN-2011',  -80000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-JUL-2011',  6000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-AUG-2011',  15000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-SEP-2011',  -12500  ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-OCT-2011',  7500    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F001', '01-NOV-2011',  100000  ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-NOV-2010',  -10000  ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-DEC-2010',  5000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-JAN-2011',  -5000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-FEB-2011',  20000    ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-MAR-2011',  -3000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-APR-2011',  -40000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-MAY-2011',  -10000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-JUN-2011',  80000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-JUL-2011',  -6000   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-AUG-2011',  -15000  ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-SEP-2011',  12500   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-OCT-2011',  -7500   ) ;
INSERT INTO FAC_SUMMARY ( F_ID, E_MONTH,    BALANCE )   VALUES (    'F002', '01-NOV-2011',  -100000 ) ;
COMMIT ;
DROP TABLE FAC_PAYMENTS;
COMMIT ;
CREATE TABLE FAC_PAYMENTS (
F_ID    CHAR(4),
P_MONTH DATE,
PAYMENT FLOAT
COMMIT ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F001', '25-FEB-2011',  10000  ) ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F001', '25-MAR-2010',  25000  ) ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F001', '25-AUG-2011',  15000  ) ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F001', '25-OCT-2011',  3000   ) ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F002', '25-JUN-2011',  7000   ) ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F002', '25-AUG-2011',  3000   ) ;
INSERT INTO FAC_PAYMENTS ( F_ID, P_MONTH,    PAYMENT )   VALUES (    'F002', '25-OCT-2011',  27000  ) ;
COMMIT ;Output
F_ID     E_MONTH     BALANCE     HIST_BALANCE     PAYMENT     HIST_PAYMENT     PAYMENT_DUE_BALANCE
F001     11/1/2010     10,000     10,000     10,000     0     10,000
F001     12/1/2010     -5,000     5,000     0     10,000     -5,000
F001     1/1/2011     5,000     10,000     0     10,000     0
F001     2/1/2011     -20,000     -10,000     0     10,000     -20,000
F001     3/1/2011     3,000     -7,000     0     10,000     -17,000
F001     4/1/2011     40,000     33,000     23,000     10,000     23,000
F001     5/1/2011     10,000     43,000     10,000     33,000     10,000
F001     6/1/2011     -80,000     -37,000     0     43,000     -80,000
F001     7/1/2011     6,000     -31,000     0     43,000     -74,000
F001     8/1/2011     15,000     0     0     0     0
F001     9/1/2011     -12,500     0     0     0     0
F001     10/1/2011     7,500     0     0     0     0
F001     11/1/2011     100,000     0     0     0     0
F002     11/1/2010     -10,000     -10,000     0     0     -10,000
F002     12/1/2010     5,000     -5,000     0     0     -5,000
F002     1/1/2011     -5,000     -10,000     0     0     -10,000
F002     2/1/2011     20,000     10,000     10,000     0     10,000
F002     3/1/2011     -3,000     7,000     0     10,000     -3,000
F002     4/1/2011     -40,000     -33,000     0     10,000     -43,000
F002     5/1/2011     -10,000     -43,000     0     10,000     -53,000
F002     6/1/2011     80,000     37,000     27,000     10,000     27,000
F002     7/1/2011     -6,000     31,000     0     37,000     -6,000
F002     8/1/2011     -15,000     0     0     0     0
F002     9/1/2011     12,500     0     0     0     0
F002     10/1/2011     -7,500     0     0     0     0
F002     11/1/2011     -100,000     0     0     0     0Edited by: 788729 on Nov 21, 2011 10:16 AM

Hi,
Sorry, I'm still not sure I understand.
788729 wrote:
Company's line of business and operations tends to throw off the accounting principles. Payment month is completly irrelevant but, included to see the differences in methodology. Payments in FAC_PAYMENTS table should just be summed at F_ID level and then allocate to FAC_SUMMARY E_MONTH. Explain exactly how fac_payments is used in this problem. I think I got the right results for this sample data wihout using fac_payments at all.
Fields(HIST_BALANCE, HIST_PAYMENT, HIST_BALANCE_AFTER_PAYMENT, PAYMENT_DUE_BALANCE) described on OUTPUT will need to be generated before determining the payments. Why? I seem to have gotten the right results calculating payments before hist_payment or balance_due_payment. In your new output, there is no hist_balance_after_payment column.
Output
F_ID     E_MONTH     BALANCE     HIST_BALANCE     PAYMENT     HIST_PAYMENT     PAYMENT_DUE_BALANCE
F001     11/1/2010     10,000     10,000     10,000     0     10,000
F001     12/1/2010     -5,000     5,000     0     10,000     -5,000
F001     1/1/2011     5,000     10,000     0     10,000     0
Here is a walk-through for F001.
F001 has a total 53,000 in payments. These payments needs to be allocated FAC_SUMMARY F001s positive PAYMENT_DUE_BALANCE at any E_MONTH.
For example:
@ 11/1/2010
BALANCE = 10,000
HIST_BALANCE = ACCUMULATED BALANCE Since this is first month, 0 + 10,000 = 10,000
PAYMENT = Needs to be CALCULATED = 10,000Of course it needs to be calculated. The question is: How it is calculated.
HIST_PAYMENT = ACCUMULATED BALANCE Since this is first month, = PAYMENT = 10,000
PAYMENT_DUE_BALANCE = PAYMENT 10,000 HIST_BALANCE-HIST_PAYMENT = 10,000-0 = 10,000
@ 12/1/2010
BALANCE = -5000
HIST_BALANCE = ACCUMULATED BALANCE , 10000 + (-5000) = 5,000
PAYMENT = 0 bcz PAYMENT_DUE_BALANCE is -5,000
HIST_PAYMENT = ACCUMULATED BALANCE 10,000 + 0 = 10,000I don't understand/ The balance numbers at this point are 10,000 and *5,000* (not 0).
PAYMENT_DUE_BALANCE = HIST_BALANCE - HIST_PAYMENT = 5,000-10,000 = -5,000
...This is not pretty, but it gets the results you requested:
WITH     got_hist_balance     AS
     SELECT       f_id
     ,       e_month
     ,       balance
     ,       SUM (balance) OVER ( PARTITION BY  f_id
                                        ORDER BY      e_month
                                )       AS hist_balance
     FROM       fac_summary
--     WHERE       ...     -- If you need any filtering, put it here
,     got_payment     AS
     SELECT     hb.*
     ,     CASE
              WHEN  hist_balance <= 0
              THEN  0
              ELSE  GREATEST ( 0
                             , hist_balance - GREATEST ( 0
                                                    , NVL ( MAX (hist_balance) OVER ( PARTITION BY  f_id
                                                                                       ORDER BY          e_month
                                                                    ROWS BETWEEN  UNBOUNDED PRECEDING
                                                                                  AND          1            PRECEDING                  
                                              , 0
          END          AS payment
     FROM    got_hist_balance  hb
,     got_hist_payment     AS
     SELECT  p.*
     ,     SUM (payment) OVER ( PARTITION BY  f_id
                            ORDER BY      e_month
                       ) - payment          AS hist_payment
     ,     CASE
               WHEN  e_month     < ADD_MONTHS ( TRUNC (SYSDATE, 'MONTH')
                                           , -3
               THEN  1
               ELSE  0
          END          AS b          -- Black-out factor
     FROM    got_payment     p
SELECT       f_id
,       e_month
,       balance
,       b * hist_balance               AS hist_balance
,       b * payment                    AS payment
,       b * hist_payment               AS hist_payment
,       b * (hist_balance - hist_payment)     AS payment_due_balance
FROM       got_hist_payment
ORDER BY  f_id
,            e_month
;Output:
`                                                     PAYMENT
                             HIST_             HIST_    _DUE_
F_ID E_MONTH      BALANCE  BALANCE  PAYMENT  PAYMENT  BALANCE
F001 01-Nov-2010   10,000   10,000   10,000        0   10,000
F001 01-Dec-2010   -5,000    5,000        0   10,000   -5,000
F001 01-Jan-2011    5,000   10,000        0   10,000        0
F001 01-Feb-2011  -20,000  -10,000        0   10,000  -20,000
F001 01-Mar-2011    3,000   -7,000        0   10,000  -17,000
F001 01-Apr-2011   40,000   33,000   23,000   10,000   23,000
F001 01-May-2011   10,000   43,000   10,000   33,000   10,000
F001 01-Jun-2011  -80,000  -37,000        0   43,000  -80,000
F001 01-Jul-2011    6,000  -31,000        0   43,000  -74,000
F001 01-Aug-2011   15,000        0        0        0        0
F001 01-Sep-2011  -12,500        0        0        0        0
F001 01-Oct-2011    7,500        0        0        0        0
F001 01-Nov-2011  100,000        0        0        0        0
F002 01-Nov-2010  -10,000  -10,000        0        0  -10,000
F002 01-Dec-2010    5,000   -5,000        0        0   -5,000
F002 01-Jan-2011   -5,000  -10,000        0        0  -10,000
F002 01-Feb-2011   20,000   10,000   10,000        0   10,000
F002 01-Mar-2011   -3,000    7,000        0   10,000   -3,000
F002 01-Apr-2011  -40,000  -33,000        0   10,000  -43,000
F002 01-May-2011  -10,000  -43,000        0   10,000  -53,000
F002 01-Jun-2011   80,000   37,000   27,000   10,000   27,000
F002 01-Jul-2011   -6,000   31,000        0   37,000   -6,000
F002 01-Aug-2011  -15,000        0        0        0        0
F002 01-Sep-2011   12,500        0        0        0        0
F002 01-Oct-2011   -7,500        0        0        0        0
F002 01-Nov-2011 -100,000        0        0        0        0I suspect I'm getting some of these figures in a very round-about manner, and could do better if I understood the business requirements better.

Similar Messages

  • Error while creating activities from Account application (Activity tab page

    Hi Experts,
                       We are using CRM 5.0 with PCUI ( EP 7.0 version). We are getting  below error when try to create activities from Account application in PCUI ( from activity tab page):
    Error : Activity contains error.
    Diagnosis
    This transaction has errors.
    Procedure
    To correct the errors, go to the maintenance interface of the transaction.
    To navigate to there, use the link to the account application
    Pls suggest how to proceed with this error & helpful solutions would be rewrded generously.
    Regards,
    Basavaraj Patil

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

  • Does anyone know of a simple home accounting application? iBank does not seem to be that user friendly and has more features than I need. I would like something that will connect to my bank and will allow the creation of a budget that is simple.

    I am looking for a very simple home accounting application. iBank seems to not be very intuitive and it has more features than I need. I am looking for the ability to create a budget and keep a bank register with the ability to connect to my bank and do updates.

    I have a small business, I chose Quickbooks because anything else cost much more. That triggered the hiring of a bookkeeper who knew how to use it. It was not the cheapest choice after all.

  • Data types for accounting applications

    Hi all. I'm in the process of writing a financial/accounting application.
    I'd like to get hints about the right data types to be used to represent monetary data (amounts and prices in USD or EUR; discounts and so on). Should I use the java's primitives double or float or something like BIgDecimals? Any drawbacks (a lot of objects allocation/garbage collection?, ...)?.
    Is there any open source-something I can study?
    Thanks in advance

    Really, your employer doesn't mind you freely
    distributing source that you wrote as part of your
    job?He doesn't have to tell his employer that, does he?
    Or is this wrong ethics...Well ethically it seems wrong to me.
    And depending on the country, region, type of employer and contractual agreements it could open the employee up to criminal and civil penalties.

  • Calling opportunity from accounts application

    Hi All,
               I tried calling opportunity application from accounts application by clicking on a tab , just like calling bsp application from pcui.Unfortunately it is calling the same accounts application.
              I tried this in opportunity application too,it is calling the same application which calls it.
              Where do you think I went wrong?
    Regards,
    Ruby.

    Hi ,
          I created a button in opportunity tab in account application.When i click on it no processing takes place? I added an event  in the toolgroup of opportunity (tab).
    Did the changes in the application layout.Is it possible to call a pcui application from another? I have not used any object linking.My screen element type is html.
    Regards,
    Ruby.

  • Error in creating activity from Account application ( from activity tab)

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

  • CRM 5.2 - Search on Custom fields in Accounts application

    Hi all,
                 We are in process of implementing crm 5.2 for the client. We have added a custom field ZZPRIMARY in Accounts application. Though the field is coming in dropdown for search, but search is not working on it. Do we have write some code, or customization, and if yes where to write the code?
       A custom field 'Date' is added in Opportunity and search is working fine in that.
    Anyone help from SAP????
    Anything specific to be done in Accounts application?
       Any help will be highly appreciated!
    Thanks and Regards,
    Rohit Khetarpal

    Hi,
         We implemented a badi to filter out the already coming results with the new parameter to achieve the desired search result.
      Hope it helps.
    Thanks.

  • Advice for creating an accounting application in Air

    I would like some advice from anyone that has creating an accounting application in Air. I'm thinking what would be the best sql lite structure to go for. I intend to focus on Small-medium sized businesses.
    What sort of financial information should I capture?
    Expenses + profit etc
    I would like to export datat in formats that Accounting software like sage can use.
    Suppose I should look at existing products and gets ideas from them?

    Mr Aghmir,
    There may be several reasons for PGI in SD is not creating an FI Posting
    1. OBYC Setting for that movement for (Account Modifier/Valuation Modifier/Val Class)
    2. May be default profit centre is not assigned
    3. CO assignment for that plant is not done
    4. Route master is not defined to that plant
    Please check when releasing for FI Document posting what error message the system is througing , please double click on that error message you will have the diagnosis of that error message then do necessary correction
    Regards,
    Alok

  • The account application created using can see current Blank Site page but no other user account see current page only some old page?

    Hello Community
        Using Sharepoint 2010 Server and the UI, building an intranet
    starting with a Blank Site and then adding subsites can be accomplished.
        However, in this case the current Blank Site page that was created only shows
    when logged in using the account that the application was created under.
        Any other account used to login with when the url is typed into the
    address bar does not show the current Blank Site page.
       Instead when using any other account the page that is returned is
    some page that was created early in in the creation of the site.
        A Blank site is said to be:
            "A blank site for you to customize based on your requirements."
        I checked-in the v4.master and approved it but the problem still exists.
        Then I checked the Site Collection features under Site Collection
    Administration "Active" contains:
        Sharepoint Server Publishing Infrastucture
        Sharepoint Server Standard Site Collection features
        Then I checked under Site Actions has Manage Site features "Active"
    contains:
        Sharepoint Server Publishing
        Sharepoint server Standard Site features
        It is said that maybe the page needs to be "Published".  Basically
    this is a Blank Site page so when the instructions says:
       "To publish a page, on the page that you are editing, on the
    Page Editing toolbar, click Publish."
        I am unable to do it because when I:
           "Edit Page"
        There is not no option on the ribbon to choose "Publish".
        Neither did I see the "Publish"option when editing the v4.master in SPD.
        In summary, when logged in with the account that everything was created
    under I can see the current Blank Site with the Lists and everthing else
    on the page but how come when I login with any other user account
    I don't see the current Blank Site page but instead see some old page that
    I may have created earlier when creating the application?
        Thank you
        Shabeaut

    Hello Community
        I think it is worth mentioning that the Top Link Bar shows what appears
    on the current Blank Site page but it is the OOTB NoteBoard  and Discussion Board
    List which both reside in Left web part on the Blank Site page that has been replaced
    on the page by what had been in an old Content Editor web part during early creation.
        How can I grant permissions to the OOTB NoteBoard and the Discussion Board List
    that would allow other user accounts to see them, thus making the entire current Blank Site page
    visible other user accounts?
        Thank you
        Shabeaut

  • Kuler website and Kuler extension inside application

    I saved some swatches using the Kuler website in Mykuler account. I saved them as swatch exchange files to import into Fireworks CS4. At the time I didn't realize Fireworks CS4 did read swatch exchange files. Now I have learned that Firworks CS4 has a built in Kuler extension under Window in the pull down menu.
    So, I'm all set up with a Kuler panel inside Fireworks CS4. The problem now is, I don't see a way to access my Mykuler account so I can use the swatches I saved already using the website. Do I need to recreate my swatches in the Kuler panel now? I see you can save swatches in the panel and upload them to Kuler. Can I not access my account from the panel?

    Hi,
    You can save your themes as public with some specific tag on kuler website.
    Inside fireworks, just search for theme names or tags or your username. You should be able to see them and use as per your requirements.
    Just to save time, you can also save theme name/tag/username as custom tag. It'll be displayed in your theme feed list just below 'saved'

  • Lost user account applications/settings

    A friend partitioned the hard drive and create 2 separate user accounts. An application was not working on my account (Account 1) and I was also not able to access pictures and music on the second user account (Account 2). I logged into the second user account (Account 2) and dragged and dropped the entired user into the shared folder, figuring this would give my user account access (Account 1) to everything. Instead now I have lost all settings, applications, etc. on the second user account (Account 2). What have I done? How can I fix it?
    G4 Power Book 17"   Mac OS X (10.4)  

    Log back into the second user account and open the Users folder. From here, rename the folder with the house icon to something else. Next, open the Shared folder and hold down the Option key while dragging your old folder back to the top level of the Users folder. Select the copy you left in the Shared folder and choose Get Info from the File menu. Under Ownership & Permissions, set all three access settings to Read & Write.
    (10201)

  • "Account" application not found.

    Recently, I wanted to change my password. But when I opened System Preferences, I could not find an "Account". Is there supposed to be a file/folder somewhere so I can open this application? I tried by using "help", but all I get is "may be disabled or not installed. 2 param error" note. Please Help.

    I tried this but i received this reply.
    "You cannot open Accounts preferences because it doesn't work on an Intel-based Mac."
    Does this mean that The accounts preference doesn't exist?

  • File Name Extension For Applications:

    ......on OS 9????????????? I am organizing lots of files by file extension. I put the similar files into their labeled folder. DMG files are in a "DMG" labeled folder. OS X's applications are in a folder called "APP" for example. But what is the application file extension for OS 9
    ???????????????????????????????

    In an operating system that has its own method of finding content
    that is expected to be in a location, but somehow later is not there,
    issues can result and so it is generally not advisable to move files
    created by the system into places you think (or hope) may make it
    tidy or easy to find certain parts.
    The system may find issue with helpful changes in file locations.
    Just thought I'd let you know. And those files you see in a dual-boot
    OS X & OS 9.1.+ computer that seem odd, while in OS 9? Don't get
    the idea they are out of place. They're invisible in OS X, not in OS 9.
    Some users put OS 9 on a separate partition or another hard drive
    so as to not mess up these things; but that isn't really necessary.
    What leads you to organize file types? Just curious. I found out some
    time ago to be wary of moving items around. I will look into a strange
    system folder, but do not move stuff around. It is a mysterious place.
    Good luck & happy computing!

  • Show Time Account application - where is it?

    hi,
    There is a webdynpro application for Working Time. it is ess~lea. I'm working on ESS 1.0 EP700 ERP 2005.
    In that application there is a link called "Show Time Account". On the click of this link, i get a table.
    My question: Where can i find this application (which view) and the view that opens on the click of the Show Time Account link.
    Any pointers?
    Regards
    Ak.
    PS: Points assured for helpful answers.
    Edited by: Arunkumar Ravi on Feb 7, 2008 3:06 PM

    Hi Reshma,
    Going back & forth, i found something.
    My Scenario is totally different.
    My NWDI source has no application called as ess~quotas.
    but i have an applicaiton ess~lea/LeaveRequest uses up this RFC PT_ARQ_ACCOUNTS_GET. I think this returns the data for time accounts. Component Name: VcAccList
    but my actual problem is that the leave balances returned to portal are wrong. what we see in SAP is not what is returned. To figure this out, i'm trying to see which applicaiton brings that table and which RFC populates the data.
    Any idea how to find out why i'm getting wrong data?
    Regards
    Ak.

  • Trouble launching extension-associated applications through WebLogic Web Server

    We are using WebLogic 7.1 to do a simple document management system. We have a
    servlet that generates HTML. The HTML contains a hyperlink to document that is
    served through WebLogic Web Server, via a Web Application, and is located in the
    application directory.
    The problem is, when you click on the hyperlink, an application associated with
    the extension (for example, Microsoft Word for .doc extension) is not launched.
    Instead, the browser brings up the document in its raw form directly in the browser
    window.
    This feature works properly when you browse to other sites that contain hyperlinks
    to Word Documents (Microsoft Word gets launched properly within the browser).
    Any ideas would be greatly appreciated.

    Hi Jay,
    During my on going testing on our DR site, across all the issues which kind of fixed and working now – I have come across 1 which I am a little amazed with
    While trying to run the ping and buffer on REN SERVER
    ERROR 404 Page not found. Everything is set up perfectly to what I understand.
    Env. – HR to portal .
    Request goes to RPS passes the firewall goes to LB and to REN and so on along with that.
    Initially the Setup was incorrect which is corrected now. Then LB was listening to desired port – which was not activated while RPS was brought up – we have fixed that. so for now LB listens to port.
    We have bounced app/prcs and cleared cache. But when tried to ping test – 404 (page not found error )
    I have checked config.xml / struts-config.xml and web.xml – jus to verify the document root and context is alrite. Looks Good.
    Checked logs - No specific error.
    HR – Websphere … RPS apache...
    Portal – Weblogic
    Tools - 8.49.18
    App - 9.0 (HR)
    RENQ is up and running.
    REN Server Cluster ID: RENCLSTR_0002
    *StateFlag Active
    *REN Server Cluster URL: https://psportal:8065
    *REN Server Browser URL: https://psportal.dowjones.net:8065
    Authentication Domain: dowjones.net
    request your help pls

Maybe you are looking for