General Ledger Interface i got a an answer ...

Hi friends,
this program is working fine now check it ...
CREATE OR REPLACE PACKAGE BODY APPS.gl_interface_pkg
AS
PROCEDURE gl_interface_proc (errbuf OUT VARCHAR2, retcode OUT VARCHAR2)
IS
-- cursor declaration
CURSOR gl_cur
IS
SELECT *
FROM xtg_gl_interface_stg;
TYPE gl_data_tbl IS TABLE OF xtg_gl_interface_stg%ROWTYPE
INDEX BY BINARY_INTEGER;
rec_cur gl_data_tbl;
l_currencycode VARCHAR2 (25);
l_set_of_books_id NUMBER (5);
l_flag VARCHAR2 (2);
l_error_msg VARCHAR2 (100);
l_err_flag VARCHAR2 (10);
l_category VARCHAR2 (100);
l_userid NUMBER (10);
l_count NUMBER (9) DEFAULT 0;
BEGIN
DELETE FROM gl_interface;
COMMIT;
OPEN gl_cur;
FETCH gl_cur
BULK COLLECT INTO rec_cur;
CLOSE gl_cur;
FOR rec_cur IN gl_cur
LOOP
l_count := l_count + 1;
l_flag := 'A';
--Category Column Validation
BEGIN
SELECT user_je_category_name
INTO l_category
FROM gl_je_categories
WHERE user_je_category_name = rec_cur.user_je_category_name;
EXCEPTION
WHEN OTHERS
THEN
l_flag := 'E';
l_error_msg := 'Category does not exist ';
fnd_file.put_line
(fnd_file.LOG,
'Inserting data into the Interface TABLE'
|| '-'
|| l_count
|| ' '
|| l_error_msg
END;
--End Category Column Validation
--User ID column validation
BEGIN
SELECT user_id
INTO l_userid
FROM fnd_user
WHERE user_id = rec_cur.created_by;
EXCEPTION
WHEN OTHERS
THEN
l_flag := 'E';
l_error_msg := 'User ID does not exist ';
fnd_file.put_line
(fnd_file.LOG,
'Inserting data into the Interface TABLE'
|| '-'
|| l_count
|| ' '
|| l_error_msg
END;
--End of Created_by OR UserID column Validation
--Set of  books Validation
BEGIN
SELECT set_of_books_id
INTO l_set_of_books_id
FROM gl_sets_of_books
WHERE set_of_books_id = rec_cur.set_of_books_id;
EXCEPTION
WHEN OTHERS
THEN
l_flag := 'E';
l_error_msg := 'set of Books ID does not exist ';
fnd_file.put_line
(fnd_file.LOG,
'Inserting data into the Interface TABLE'
|| '-'
|| l_count
|| ' '
|| l_error_msg
END;
--Cuurency Code Validation
BEGIN
SELECT currency_code
INTO l_currencycode
FROM fnd_currencies
WHERE currency_code = rec_cur.currency_code
AND currency_code = 'USD';
EXCEPTION
WHEN OTHERS
THEN
l_flag := 'E';
l_error_msg := 'currency code does not exists';
fnd_file.put_line
(fnd_file.LOG,
'Inserting data into the Interface TABLE'
|| '-'
|| l_count
|| ' '
|| l_error_msg
END;
IF l_flag != 'E'
THEN
fnd_file.put_line (fnd_file.LOG,
'Inserting data into the Interface TABLE'
INSERT INTO gl_interface
(status, set_of_books_id,
accounting_date, currency_code,
date_created, created_by,
actual_flag, user_je_category_name,
user_je_source_name,
user_currency_conversion_type,
segment1, segment2,
segment3, segment4,
segment5, entered_dr,
entered_cr, accounted_dr,
accounted_cr, GROUP_ID,
reference1, reference2,
reference4, reference5
VALUES (rec_cur.status, rec_cur.set_of_books_id,
rec_cur.accounting_date, rec_cur.currency_code,
rec_cur.date_created, rec_cur.created_by,
rec_cur.actual_flag, rec_cur.user_je_category_name,
rec_cur.user_je_source_name,
rec_cur.user_currency_conversion_type,
rec_cur.segment1, rec_cur.segment2,
rec_cur.segment3, rec_cur.segment4,
rec_cur.segment5, rec_cur.entered_dr,
rec_cur.entered_cr, rec_cur.accounted_dr,
rec_cur.accounted_cr, rec_cur.GROUP_ID,
rec_cur.reference1, rec_cur.reference2,
rec_cur.reference4, rec_cur.reference5
END IF;
l_flag := NULL;
l_error_msg := NULL;
END LOOP;
COMMIT;
END;
END;
Edited by: sandeep on Jul 14, 2011 9:54 AM
Edited by: sandeep on Jul 14, 2011 6:15 PM
Edited by: sandeep on Jul 14, 2011 6:17 PM

Hello,
I think the way you define your variables are not correct..
Try doing this for all your variables:
TYPE status_TBL IS TABLE OF gl_interface.status%TYPE INDEX BY PLS_INTEGER;
TYPE set_of_books_id_TBL IS TABLE OF gl_interface.set_of_books_id%TYPE INDEX BY PLS_INTEGER;
+...+
+...+
TYPE reference5_TBL IS TABLE OF gl_interface.reference5%TYPE INDEX BY PLS_INTEGER;
v_status status_TBL;
v_set_of_books_id set_of_books_id_TBL;
+...+
+...+
v_reference5  reference5_TBL;
Hope this help,
Vikram

Similar Messages

  • General Ledger Interface Table

    Does anybody know which field on the GL Interface Table will hold the description for a journal line?

    REFERENCE4 (Journal entry name): Enter a journal entry name
    for your journal entry. Journal Import creates a default journal
    entry name using the following format: (Category Name)
    (Currency) (Currency Conversion Type, if applicable) (Currency
    Conversion Rate, if applicable) (Currency Conversion Date, if
    applicable) (Encumbrance Type ID, if applicable) (Budget Version
    ID, if applicable). If you enter a journal entry name, Journal Import
    prepends the first 25 characters of your journal entry name to the
    above format.
    REFERENCE5 (Journal entry description): Enter a description for
    your journal entry. If you do not enter a journal entry description,
    Journal Import automatically gives your journal entry a description
    using the format: Journal Import Concurrent Request ID.

  • Running AP transfer to General Ledger: Complete with Error

    Below is the error I got while trying to run : AP transfer to General Ledger and I got Complete with Error:
    Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_selection_type='1'
    p_set_of_books_id='1'
    p_include_reporting_sob='N'
    p_batch_name='jginv'
    p_from_date='2007/01/01 00:00:00'
    p_to_date='2008/12/31 00:00:00'
    p_accounting_method='Accrual'
    p_journal_category='A'
    p_validate_account='Y'
    p_gl_transfer_mode='D'
    p_submit_journal_import='Y'
    p_summary_journal_entry='N'
    p_debug_flag='N'
    p_trace_flag='N'
    APPLLCSP Environment Variable set to :
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    LOG :
    Report: c:\oracle11i\visappl\ap\11.5.0\reports\US\APXGLTRN.rdf
    Logged onto server:
    Username:
    LOG :
    Logged onto server:
    Username: APPS
    MSG MSG-00001: After SRWINIT
    MSG MSG-00002: After Get_Sob_Ids
    MSG MSG-00002: After Get_Company_Name
    MSG MSG-00003: After Get_NLS_Strings
    MSG MSG-00004: After Get_Base_Curr_Data
    MSG MSG-00005: Calling Transfer Request
    MSG MSG-00005: After calling Transfer Request
    MSG MSG-00100: Error occured in Insert_Liability_Balance
    MSG MSG-00101: Error Code :-20100
    MSG MSG-00102: Error Message :ORA-20100: File o0059033.tmp creation for FND_FILE failed.
    You will find more information on the cause of the error in request log.
    ORA-06512: at "APPS.FND_FILE", line 396
    ORA-06512: at "APPS.FND_FILE", line 499
    ORA-06512: at "APPS.AP_TRIAL_BALANCE_PKG", line 1252
    MSG MSG-00005: Insert_Liability_Balance Failed.
    MSG MSG-00000: User-Defined Exception
    ERR REP-1419: 'beforereport': PL/SQL program aborted.
    Program exited with status 3
    Cause: The program terminated, returning status code 3.
    Action: Check your installation manual for the meaning of this code on this operating system.
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 2748532.
    Review your concurrent request log and/or report output file for more detailed information.
    Jon

    Remember that this problem is from Vision training database and not real life productionIt does not matter whether you have a Vision demo database or fresh database installation.
    The APPLPTMP directory does not even exist- Open a new DOS session
    - cd c:\oracle11i\visappl
    - Run envshell.cmd
    - Type "echo %APPLPTMP%", does it return something?

  • Hi There, What is General ledger Transfer in Accounting Close Cycle (INV)

    Hi There,
    What is "General ledger Transfer" in Inventory
    <N>Accounting Close Cycle inside -->General ledger Transfer
    Can any one breaf on the topic
    Thanks Bachan
    Message was edited by:
    Bachan

    Hi,
    You can transfer a summarized inventory/work in process activity for a given period
    into the general ledger interface. Using Journal Import in Oracle General Ledger, you can then post this information to the general ledger. You can perform the general ledger transfer at any time during an open period-not just at period close. The transfer loads summary or detail accounting activity for any open period into the general ledger interface, including both inventory and work in process entries. When more than one period is open, the transfer selects transactions from the
    first open period up to the entered transfer date, and passes the correct accounting date and financial information into the general ledger interface.
    When transferring detail entries, the accounting date in the GL_interface table is
    populated with the period end date of the accounting period. When you transfer
    summary entries with two periods open, and you enter a transfer date in the second period, the transfer process assigns the period one end date for all the summarized transactions in period one, and assigns the entered transfer date for the summarized transactions in period two. Using Journal Import and Post Journals processes in Oracle General Ledger, you can then post this information to the general ledger.
    Interim transfers allow you to reconcile and transfer information weekly, for
    example, making the month-end period close process much simpler and faster.
    Note: If time permits, run the general ledger transfer process up to the period end date before closing the period. Since you cannot reopen a closed period, running this process before period close allows you to proof the summary transactions and make adjustments to the period via new inventory transactions as necessary. This makes the month-end period close process much simpler and faster
    Thanks,
    Anish Daniel

  • Outbound interfaces from oracle general ledger

    Hi,
    I have a requirement of exporting :
    • Stores transactions
    • Invoice transactions
    • Payment transactions
    • Bank reconciliation transactions
    • Goods Received Not invoiced (GRNI) Accrual transactions
    Please let me know if there are any stadard interfaces or open API from oracle general ledger for exporting these transactions.
    Any links/pointers in this regard would be helpful.
    Thanks & Regards,
    Parag Gurjar

    Hi,
    I believe what you have heard is false, you can work with multiple periods open at the same time. But as a best practice its better if you could close the relevant month period on due dates so as to avoid transaction being entered to previous open periods...  Because the accounts will go on a mess if transaction rolls in from future periods.
    Hope this helps,
    Regards,

  • PRC: Interface Usage and Miscellaneous Costs to General Ledger

    Urgent request
    We have the AP team that run the request PRC: Interface Usage and Miscellaneous Costs to General Ledger and it has been running for 2 hours+
    This report is run every month without any problems.
    Work Around: had end user cancel and resubmit request. Again taking awhile, it is still running.
    ANYONE WHO HAS RUN INTO THIS PROBLEM, PLEASE LET ME KNOW OF A SOLUTION. THANKS IN ADVANCE.

    are u using lower than 11.5.10.2, then i think you need to raise an SR with Oracle.
    Sometime back my client experinces this and raised an SR with Oracle ,and what i understood there is missing index on one of the underline table
    There was an issue with pa_bc_commitments table . Check out the Bug No. 7206084 on metalink.

  • Menu General Ledger- Setup:Accounts- Manager got error

    Good Morning friends, I need some help.
    I started learning using VIS, and have done some setup like GL Segment,
    Organization etc.
    But when I went to General Ledger->Setup:Accounts->Manager,
    It went to Java Console but nothing show up, then hit show console
    I got some error.
    Oracle JInitiator: Version 1.3.1.21
    Using JRE version 1.3.1.21-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\GM
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\GM\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndewt.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndswing.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndaol.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndctx.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndlist.jar from JAR cache
    connectMode=Socket
    serverHost=ogt.risval.com
    serverPort=9000
    Forms Applet version is : 60825
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndutil.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/gl/jar/glahelcl.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/gl/jar/glahelib.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/jbodatum111.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndaroraclnt.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndconnectionmanager.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndjewtall.jar from JAR cache
    ........VOListDragger getSourceActions()
    oracle.apps.gl.jahe.javaui.client.Jahe: init() reached.
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndjndi.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/fndswingall.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/jbodomorcl.jar from JAR cache
    Loading http://ogt.risval.com:8000/OA_JAVA/oracle/apps/fnd/jar/jdev-rt.jar from JAR cache
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.sql.SQLException, msg=ORA-20001: APP-FND-01542: This Applications Server is not authorized to access this database.
    ORA-06512: at "APPS.APP_EXCEPTION", line 70
    ORA-06512: at "APPS.FND_SECURITY_PKG", line 125
    ORA-06512: at "APPS.FND_SECURITY_PKG", line 147
    ORA-06512: at line 1
    ; (Could not lookup message because there is no database connection)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModuleInternal(OAApplicationModuleFactory.java:375)
         at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModule(OAApplicationModuleFactory.java:300)
         at oracle.apps.gl.jahe.javaui.client.Jahe.jbInit(Jahe.java:728)
         at oracle.apps.gl.jahe.javaui.client.Jahe.init(Jahe.java:631)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    ## Detail 0 ##
    java.sql.SQLException: ORA-20001: APP-FND-01542: This Applications Server is not authorized to access this database.
    ORA-06512: at "APPS.APP_EXCEPTION", line 70
    ORA-06512: at "APPS.FND_SECURITY_PKG", line 125
    ORA-06512: at "APPS.FND_SECURITY_PKG", line 147
    ORA-06512: at line 1
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:589)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1972)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2185)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2059)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2976)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:656)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:734)
         at oracle.apps.fnd.framework.server.OASecurityAMImpl.getEncApplsysPwd(OASecurityAMImpl.java:96)
         at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModuleInternal(OAApplicationModuleFactory.java:364)
         at oracle.apps.fnd.framework.OAApplicationModuleFactory.createRootOAApplicationModule(OAApplicationModuleFactory.java:300)
         at oracle.apps.gl.jahe.javaui.client.Jahe.jbInit(Jahe.java:728)
         at oracle.apps.gl.jahe.javaui.client.Jahe.init(Jahe.java:631)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Can somebody help ?
    Thank you,

    Type "GUEST/ORACLE" instead of "ORACLE" in your Guest User Password profile option as follows:
    - Login to System Administrator responsibility
    - Navigate to Profile > System
    - Query Guest User Password profile option
    - Set to GUEST/ORACLE
    If the above does not help, then I believe you have to consider applying Patch 4994984 with its prerequisites. Please refer to Note: 397003.1 (Account Hierarchy Editor Hangs Applet Started) for more details.

  • How to implement a General Ledger in Dynpro

    Has anyone tried to implement a general ledger in Dynpro using a table?
    In a general ledger, you want the time dimension going across the top in separate columns, and tracked items going down the left hand side.
    The trouble is, the Dynpro table only binds context elements to a column rather than having the option of binding to a row. I can see why this is, but it is still makes life difficult for me.
    Like the table, my data is coming in on a column by column basis with the first column being the date, followed by all the stock ledger items pertaining to that date.
    I want to display a full fiscal year on one page so this means having twelve columns for each of the fiscal months, and one column for the line item names (units sold, inventory, value of sales ... etc)
    One idea for implementing this was to create a generic structure containing twelve attributes. Each attribute would contain the values associated with a particular fiscal month. I would then create a node in my view context based on this structure and bind each column in my table to the corresponding fiscal month attribute in this structure.
    Upon loading the stock ledger data, I would create a series of node instances for each one of my stock ledger items and copy the data into the appropriate attribute.
    This procedure seems REALLLY complex and I am hoping there is someone out there who may have a simpler solution.
    Any suggestions?

    Just an adendum to this thread.
    I have now got the display working correctly for this application ...ie. the fiscal periods are displayed in columns and the attributes for each fiscal period are displayed row by row.
    Now I am faced with the challenge of update the data on the database once it is edited by the users.
    I can check the .isChangedByClient flag to tell which rows were edited but I also need to know which column(s) were edited since they contain the data that needs to be passed to my update routine.
    So far the only way I can think of implementing this is to maintain a parallel copy of the ledger and do a comparison of the "before" and "after".  With this information I generate my own list of edited columns.  YUCK!
    Perhaps if there was a validation event that was fired whenever a cell was changed then I could hook into that and maintain my own "isChanged" list of columns but I don't see anything like that.
    Any suggestions?

  • Release-12.1.1. General Ledger-Mass Allocation-Error

    Hi,
    I have entered formula for Mass Allocation and I got Valdiated. While I running the Mass Allocation I got an
    error. In the View Output File. "Failure detected. Please see log file." When I seeing the Log file. I got the error
    GLAMAS module: Run MassAllocations
    Current system time is 01-OCT-2009 09:02:38
    glamai() 01-OCT-2009 09:02:38**************************************************
    01-OCT-2009 09:02:38
    AMAS0010: General Ledger MassAllocations Log File
    command_mode = C
    access set id = 1017
    incremental mode = N
    average journal flag = N
    ledger id override value = 1
    ledger override currency = USD
    balance segment override value = 02
    allocation batch id = 10079
    period = Jan-09
    journal effective date = 2009/01/31 00:00:00
    calc effective date = 2009/01/31 00:00:00
    glasob() 01-OCT-2009 09:02:38
    gluini() 01-OCT-2009 09:02:38
    glugsn() 01-OCT-2009 09:02:38<< glugsn() 01-OCT-2009 09:02:38
    << gluini() 01-OCT-2009 09:02:38
    accounted period type = Month
    chart_of_accounts_id = 101
    number of flexfield segments = 5
    balancing segment name = SEGMENT1
    management segment name = NA
    security segment name = NA
    flexfield delimiter = '-'
    active segments =
    SEGMENT1
    SEGMENT2
    SEGMENT3
    SEGMENT4
    SEGMENT5
    flex value sets =
    1002470
    1002471
    1002472
    1002473
    1002474
    account segment = SEGMENT3
    account segment length= 5
    flexfield length = 21
    << glasob() 01-OCT-2009 09:02:38
    glasys() 01-OCT-2009 09:02:38***********************************************
    * Warning: profile option has not been set up:*
    * GL: Number of Records to Process at Once *
    * Warning: profile option has not been set up:*
    * GL: Number of Accounts In Memory *
    foundation user id = 1013417
    foundation user name = ZUNAITHA
    concurrent request id = 5807601
    number of target records to process at a time = 1000
    number of flexfields to cache = 2500
    cache control segment = SEGMENT3
    length of control segment = 5
    length of flexfield = 21
    << glasys() 01-OCT-2009 09:02:38
    glavcmd() 01-OCT-2009 09:02:38SHRD0117: Inserted 1 record(s) into gl_alloc_history
    << glavcmd() 01-OCT-2009 09:02:38
    glacab() 01-OCT-2009 09:02:38glacab() - tf = 1, sqlerrd[2] = 1
    glacab--loopcnt = 1 and size 2b Malloced is 984
    << glacab() 01-OCT-2009 09:02:38
    glapst() 01-OCT-2009 09:02:38glapst() - pst0_stmt.arr =
    SELECT period_name,
         to_char(start_date, 'YYYY/MM/DD'),
         to_char(end_date, 'YYYY/MM/DD'),
         to_number(to_char(start_date,'J')),
         to_number(to_char(end_date,'J')),
         period_type,
         period_year,
         period_num,
         adjustment_period_flag
    FROM gl_periods
    WHERE      period_set_name ='Accounting'
    AND period_type ='Month'
    ORDER BY period_year, period_num
    AMAS0025: glapst() - Found 225 periods (COA=101)
    control->coa_rec.pstat[0].period_name = Dec-95
    control->coa_rec.pstat[0].start_date = 1995/12/01
    control->coa_rec.pstat[0].end_date = 1995/12/31
    control->coa_rec.pstat[0].jstart_date = 2450053
    control->coa_rec.pstat[0].jend_date = 2450083
    control->coa_rec.pstat[0].period_type = Month
    control->coa_rec.pstat[0].period_year = 1995
    control->coa_rec.pstat[0].period_num = 12
    control->coa_rec.pstat[1].period_name = Adj-95
    control->coa_rec.pstat[1].start_date = 1995/12/31
    control->coa_rec.pstat[1].end_date = 1995/12/31
    control->coa_rec.pstat[1].jstart_date = 2450083
    control->coa_rec.pstat[1].jend_date = 2450083
    control->coa_rec.pstat[1].period_type = Month
    control->coa_rec.pstat[1].period_year = 1995
    control->coa_rec.pstat[1].period_num = 13
    control->coa_rec.pstat[2].period_name = Jan-96
    control->coa_rec.pstat[2].start_date = 1996/01/01
    control->coa_rec.pstat[2].end_date = 1996/01/31
    control->coa_rec.pstat[2].jstart_date = 2450084
    control->coa_rec.pstat[2].jend_date = 2450114
    control->coa_rec.pstat[2].period_type = Month
    control->coa_rec.pstat[2].period_year = 1996
    control->coa_rec.pstat[2].period_num = 1
    control->coa_rec.pstat[3].period_name = Feb-96
    control->coa_rec.pstat[3].start_date = 1996/02/01
    control->coa_rec.pstat[3].end_date = 1996/02/29
    control->coa_rec.pstat[3].jstart_date = 2450115
    control->coa_rec.pstat[3].jend_date = 2450143
    control->coa_rec.pstat[3].period_type = Month
    control->coa_rec.pstat[3].period_year = 1996
    control->coa_rec.pstat[3].period_num = 2
    control->coa_rec.pstat[4].period_name = Mar-96
    control->coa_rec.pstat[4].start_date = 1996/03/01
    control->coa_rec.pstat[4].end_date = 1996/03/31
    control->coa_rec.pstat[4].jstart_date = 2450144
    control->coa_rec.pstat[4].jend_date = 2450174
    control->coa_rec.pstat[4].period_type = Month
    control->coa_rec.pstat[4].period_year = 1996
    control->coa_rec.pstat[4].period_num = 3
    control->coa_rec.pstat[5].period_name = Apr-96
    control->coa_rec.pstat[5].start_date = 1996/04/01
    control->coa_rec.pstat[5].end_date = 1996/04/30
    control->coa_rec.pstat[5].jstart_date = 2450175
    control->coa_rec.pstat[5].jend_date = 2450204
    control->coa_rec.pstat[5].period_type = Month
    control->coa_rec.pstat[5].period_year = 1996
    control->coa_rec.pstat[5].period_num = 4
    control->coa_rec.pstat[6].period_name = May-96
    control->coa_rec.pstat[6].start_date = 1996/05/01
    control->coa_rec.pstat[6].end_date = 1996/05/31
    control->coa_rec.pstat[6].jstart_date = 2450205
    control->coa_rec.pstat[6].jend_date = 2450235
    control->coa_rec.pstat[6].period_type = Month
    control->coa_rec.pstat[6].period_year = 1996
    control->coa_rec.pstat[6].period_num = 5
    control->coa_rec.pstat[7].period_name = Jun-96
    control->coa_rec.pstat[7].start_date = 1996/06/01
    control->coa_rec.pstat[7].end_date = 1996/06/30
    control->coa_rec.pstat[7].jstart_date = 2450236
    control->coa_rec.pstat[7].jend_date = 2450265
    control->coa_rec.pstat[7].period_type = Month
    control->coa_rec.pstat[7].period_year = 1996
    control->coa_rec.pstat[7].period_num = 6
    control->coa_rec.pstat[8].period_name = Jul-96
    control->coa_rec.pstat[8].start_date = 1996/07/01
    control->coa_rec.pstat[8].end_date = 1996/07/31
    control->coa_rec.pstat[8].jstart_date = 2450266
    control->coa_rec.pstat[8].jend_date = 2450296
    control->coa_rec.pstat[8].period_type = Month
    control->coa_rec.pstat[8].period_year = 1996
    control->coa_rec.pstat[8].period_num = 7
    control->coa_rec.pstat[9].period_name = Aug-96
    control->coa_rec.pstat[9].start_date = 1996/08/01
    control->coa_rec.pstat[9].end_date = 1996/08/31
    control->coa_rec.pstat[9].jstart_date = 2450297
    control->coa_rec.pstat[9].jend_date = 2450327
    control->coa_rec.pstat[9].period_type = Month
    control->coa_rec.pstat[9].period_year = 1996
    control->coa_rec.pstat[9].period_num = 8
    control->coa_rec.pstat[10].period_name = Sep-96
    control->coa_rec.pstat[10].start_date = 1996/09/01
    control->coa_rec.pstat[10].end_date = 1996/09/30
    control->coa_rec.pstat[10].jstart_date = 2450328
    control->coa_rec.pstat[10].jend_date = 2450357
    control->coa_rec.pstat[10].period_type = Month
    control->coa_rec.pstat[10].period_year = 1996
    control->coa_rec.pstat[10].period_num = 9
    control->coa_rec.pstat[11].period_name = Oct-96
    control->coa_rec.pstat[11].start_date = 1996/10/01
    control->coa_rec.pstat[11].end_date = 1996/10/31
    control->coa_rec.pstat[11].jstart_date = 2450358
    control->coa_rec.pstat[11].jend_date = 2450388
    control->coa_rec.pstat[11].period_type = Month
    control->coa_rec.pstat[11].period_year = 1996
    control->
    glamtt() - sqlcode alloc-target drop table = 942
    glamtt() - mtt_stmt.arr is
    CREATE TABLE gl_alloc_target_5807601 (
         allocation_formula_id number(15) not null,
         request_id number(15) not null,
         entered_amount number not null,
         accounted_amount number not null,
         je_batch_id number(15) not null,
         je_header_id number(15) not null,
         je_line_num number(15) not null,
         period_name varchar2(15) not null,
         accounting_date date not null,
         max_amount_flag VARCHAR2(1),
         description      varchar2(240),
         code_combination_id number(15),
         message_number      number(15),
         line_type VARCHAR2(1),
         ledger_id number(15),
         validation_error VARCHAR2(30),
         SEGMENT1      VARCHAR2(25),
         SEGMENT2 VARCHAR2(25),
         SEGMENT3 VARCHAR2(25),
         SEGMENT4 VARCHAR2(25),
         SEGMENT5 VARCHAR2(25),
         SEGMENT6 VARCHAR2(25),
         SEGMENT7 VARCHAR2(25),
         SEGMENT8 VARCHAR2(25),
         SEGMENT9      VARCHAR2(25),
         SEGMENT10      VARCHAR2(25),
         SEGMENT11      VARCHAR2(25),
         SEGMENT12      VARCHAR2(25),
         SEGMENT13      VARCHAR2(25),
         SEGMENT14      VARCHAR2(25),
         SEGMENT15      VARCHAR2(25),
         SEGMENT16      VARCHAR2(25),
         SEGMENT17      VARCHAR2(25),
         SEGMENT18      VARCHAR2(25),
         SEGMENT19      VARCHAR2(25),
         SEGMENT20      VARCHAR2(25),
         SEGMENT21      VARCHAR2(25),
         SEGMENT22      VARCHAR2(25),
         SEGMENT23      VARCHAR2(25),
         SEGMENT24      VARCHAR2(25),
         SEGMENT25      VARCHAR2(25),
         SEGMENT26               VARCHAR2(25),
         SEGMENT27               VARCHAR2(25),
         SEGMENT28               VARCHAR2(25),
         SEGMENT29               VARCHAR2(25),
         SEGMENT30               VARCHAR2(25))
    tablespace APPS_TS_INTERFACE
    PCTFREE 50
    STORAGE(initial 200K next 200K maxextents 121 pctincrease 0)
    gluddl() 01-OCT-2009 09:02:39<< gluddl() 01-OCT-2009 09:02:40
    glamtt() - sqlcode alloc target create table = 0
    glamtt() - mtt_stmt.arr is
    CREATE INDEX gl_alloc_target_5807601_n1
    on gl_alloc_target_5807601 (je_header_id)
    TABLESPACE APPS_TS_INTERFACE
    STORAGE(INITIAL 20K NEXT 20K MINEXTENTS 1 MAXEXTENTS 121 PCTINCREASE 0)
    gluddl() 01-OCT-2009 09:02:40<< gluddl() 01-OCT-2009 09:02:40
    glamtt() - sqlcode alloc targets create n1 index = 0
    glamtt() - mtt_stmt.arr is
    CREATE INDEX gl_alloc_target_5807601_n2
    on gl_alloc_target_5807601 (allocation_formula_id, je_line_num)
    TABLESPACE APPS_TS_INTERFACE
    STORAGE(INITIAL 20K NEXT 20K MINEXTENTS 1 MAXEXTENTS 121 PCTINCREASE 0)
    gluddl() 01-OCT-2009 09:02:40<< gluddl() 01-OCT-2009 09:02:40
    glamtt() - sqlcode alloc target create n2 index = 0
    << glamtt() 01-OCT-2009 09:02:40
    SHRD0119: Deleted 0 record(s) from GL_ALLOC_JE_ID_INT.
    sqlcaid: sqlabc: 0 sqlcode: 0 sqlerrml: 0
    sqlerrmc:
    ORA-00942: table or view does not exist
    sqlerrp:      sqlerrd: 0 0 0 0 0 538976288
    sqlwarn: sqltext:
    oracaid:      oracabc: 0
    oracchf: 0 oradbgf: 0 orahchf: 0 orastxtf: 0 orastxtl: 0
    orastxtc:
    orasfnmc: oraslnr: 0 orasfnml: 0
    orahoc: 0 ormoc: 0 oracoc: 0
    oranor: 0 oranpr: 0 oranex: 0
    SHRD0015: glamai failed:
    SHRD0033: Error Status: 0
    SHRD0103: Function warning number: -1
    glamai() - fatal sql error
    Process logging off database and exiting ...
    Can anyone help me in this regard
    Thanks
    Zunaitha

    Hello.
    Have a look on Metalink Doc ID: 857664.1
    Octavio

  • Payment method for Special General Ledger

    Dear Friends,
    Can anyone please explain me about the Payment method and Payment request difference.
    I got a two definitions in SAP liabiary
    Under head Payment method and bank determination:
    The payment program supports all payment methods including special G/L ledger account transactions (e.g payment with bill of exchange, down payment,u2026)
    and Under head Payment methods:
    The payment program for payment requests does not support payment methods portrayed via special general ledger transactions (e.g. bill of exchange, bill of exchange payment request).
    Please let me know why he mentioned that the special gl trans. are suported by one defination and other one is not supported.
    Please explain in simple english language.
    Thanks in advance,
    Mahendra Dev

    Dear Mahendra,
    There is a simple logic behind these two:
    Payment requests are not the real documents like payment dues. If there is any due then these are generated. So It says system does not consider the Payment requests for Spl GL transactions.
    Regards,
    Venkata Raju

  • Oracle 11i e-Business General Ledger Lead

    Skills -- Oracle 11i e-Business General Ledger implementation
    Job description:
    High profile consulting client seeks a solid Oracle 11i GL Lead for an overseas contract position. This is an excellent opportunity for anyone seeking to gain experience overseas with a Fortune 500 company. All visa requirements will be taken care of by the company.
    Candidate must have experience implementing Oracle e-Business Suite 11i for the GL module with three+ years implementing relevant Oracle products.
    Application Team Lead for Oracle GL
    * Design the Oracle Applications configuration and RICEW component customizations to meet the business process design and application requirements.
    * Use the business process requirements to drive out application requirements and metrics.
    * Assist in defining and reviewing requirements for the application.
    * Validate the design with the stakeholders to ensure that the design satisfies the requirements.
    * Supervise client in completing designs.
    * Inform the project manager of any issues that may affect other areas of the project as discovered.
    * Participate in quality management reviews as outlined in the Validation Task Overview ensuring the application design and related work products satisfy the requirements.
    * Develop an application prototype and conduct conference room pilot to validate the configuration design and explore Oracle Applications gap resolution options.
    * Conduct Oracle Applications training for conference room pilot participants.
    * Participate in transitioning the designs to the programmers and ensure a clear and complete understanding of the designs.
    * Understand that this role is more focused on the overall process flow and user experience than the integration solution designer role.
    * Provide status to project management regarding the process area.
    * Knowledge of the functionality provided by Oracle Applications
    * Ability to transform customer requirements into a workable design at the functional and/or technical levels
    * Ability to translate functional requirements into technical terms relevant to Oracle Applications to coordinate and assist with the detailed technical design tasks
    * Facilitation experience for conducting user design and review sessions and running stakeholder agreement meetings
    * Familiarity with Joint Application Design (JAD) session, Conference Room Pilot (CRP), and similar approaches and principles
    * Familiarity with business process design concepts and principles
    * Deep functional knowledge of Oracle Applications: configuration/development experience is not necessary, but knowledge of how functionality can be supported through the technology is needed
    * Some project management skills
    Location: Hong Kong, HK
    Pay rate: open and daily expenses will be covered with benefits
    Length: 6 months+
    Project language: is English
    NOTE: CHAINESE LANGUAGE IS MANDATORY AND ANY EXPERIENCE IN CHINA OR HONG KONG IS ADVANTAGEOUS
    Kindly apply your resume to [email protected] contact nos: India: +91-9989482244, London: +44 7799 112 005 with updated resume, contact details, pay rates and availability for the project

    Thanks to previous responder for tip regarding JDK/JRE anchor strings. I'm not sure if that is a problem. After letting the install process (java.exe) run for over an hour, I finally got past the InstantiateFile step. It looks like the process just takes a long time with no visible progress sometimes. After 5-6 hrs, it looked like the install succeeded (for the most part). There were still some errors in the error logs related to the Concurrent Manager (TNS-12541: TNS:no listener) I believe. If anyone has insight on what this error msg means, I would greatly appreciate a reply.
    The other problem I am tackling right now is how to explicitly set the Forms processing mode to HTTP rather than the default socket mode. According to the 11i docs (and Forms Developer 6i docs), you should only have to set "connectMode=HTTP" in the config file, appsweb.cfg, to make this happen. However, when I try bringing up a client form, the form hangs. So, obviously, something is amiss. A related question is whether one can run Forms in only HTTP mode and not HTTPS (and thus avoid having to install SSL). I would greatly appreciate any insight from fellow users.

  • General Ledger veiw button is missing at the time doc. entry

    Hi,
    i am facing a problem in ECC 5.0, that the general ledger view button is not displayed at the time of FI document entry, or in T. Code FB02 or FB03. Document Splitting is active in company code.
    Please suggest what could be the possible reason.
    Thanks

    Dear,
    Dhananjay.
    Greetings for the day !
    I got a solution for your problem I hope it will help.
    Please follow the path as I said.
    SPRO- Financial Accounting New- Asset Accounting---- Valuation---- Depreciation Area-- Define depreciation area.
    Execute.
    Select Define Depreciation area.
    1 ) For area 1 in GL column it must 1 that is area post in real time.
    2 ) Select that area click on details button.
    3 ) Posting to GL must be 1 Area post in real time.
    4 ) Acquisition value :- All values allowed.
    Please see these settings are available or not ?
    If not please maintain so error will be flush out.
    I hope this solves your issue.
    Please revert for further clarification.
    Regards,
    Pankaj.
    Edited by: pankaj_ab on Sep 18, 2009 8:52 AM

  • Transaction Context Is Lost in General Ledger

    Hi,
    I got 'Transaction Context is Lost' in General Ledger 'Accounting Setup Manager' while creating new Ledger, in R12.
    I tried restarting machine, but same problem.
    How to fix problem?
    See Attached SHT - http://www.mediafire.com/?fusvfp6q7cv6rdz

    Please post the application release, database version and OS.
    Can you find any errors in the database log file?
    user78995 wrote:
    Hi,
    I got 'Transaction Context is Lost' in General Ledger 'Accounting Setup Manager' while creating new Ledger, in R12.
    I tried restarting machine, but same problem.
    How to fix problem?
    See Attached SHT - http://www.mediafire.com/?fusvfp6q7cv6rdz
    Please see if these docs help.
    11i/R12 How to Debug "Transaction Context Is Lost" or "You are trying to access a page that is no longer active" [ID 456906.1]
    Transaction Context Is Lost in iSupplier portal [ID 761421.1]
    How To Check Session Persistence On BigIP F5, Cisco Ace, Citrix Netscaler or Radware AppDirector Load Balancer Appliances [ID 601694.1]
    Self-Service Pages Are Failing After Changing the s_oc4j_sesstimeout [ID 780612.1]
    Enhancement Request: PLM Login Timeout Can Cause Loss of Data (Passivation) [ID 1108454.1]
    Please also check Apache log files (and the application.log) for details about the error.
    If you cannot find any errors in the logs and you still have the same issue, then please log a SR.
    Thanks,
    Hussein

  • Specific Internal Orders for general ledger code (expense)

    Hi
    at the time of data entry,  users enters ill logical internal orders , can we restrict them or provide them any list or object so that they can select specific internal orders for that general ledger.
    it will force them to use that internal orders only.
    is there any standard provision to control this situation ???
    regds
    sanju

    When we got the same requirement, it was implemented via checking a specific internal table in a CO validation rule. (OKC7)
    Regards,
    Raymond

  • General Ledger Tax in R12

    To me it looks like R12 GL module only supports simple "Tax Rate Code" based tax calculations. Tax Rules are not supported. Can anyone confirm this?
    Thanks

    In R-12 To initiate the transfer of Receivables accounting information from Oracle Subledger Accounting to Oracle General Ledger, run the Create Accounting program in final
    mode. When you create final accounting, the Create Accounting program transfers data about your adjustments, chargebacks, credit memos, commitments, debit memos,
    invoices, and receipts to a Subledger Accounting interface table and, depending on other entered parameters, runs Journal Import and posts the journal entries in General
    Ledger. Or, you can create draft accounting first; later, when you create the final accounting, you can complete the transfer and posting process. Draft accounting entries cannot be transferred to General Ledger.

Maybe you are looking for

  • What is the best way to find what version of PDF Reader from Adobe is installed on a windows OS?

    Hi, I am developing a .Net App in which i want to find which version of PDF Reader from Adobe is installed on an Windows OS. It can be any of the software Adobe Reader Adobe Acrobat X Pro or any other. How to find out?

  • BPEL Process Manager Clustering

    Hi I want to cluster BPEL Process Manager. I have following components ready with me. 1) Two instances of SOA Suite 2) Oracle Web Cache Standalone 3) Oracle Database 10g I have been following this link as a guide but this doesnt seem to be helping ht

  • How to pass pdf documents through idocs

    I wanted to know how to pass pdf document along with a transaction code like sales order or travel expense manager with the help of IDOCs.

  • [SOLVED] Urxvt-256color shows no lineart or colors.

    My rxvt-unicode terminal does display my prompt correctly. However, when I use rxvt-unicode-256color, it shows no line art or color on my prompt. Any help would be nice. My .zshrc: http://db.tt/HyIdR4 My .Xdefaults: http://db.tt/GPAXQr (The font cure

  • ICal, Exchange2007 and shared calendars

    Hi there, as there's no dedicated iCal topic I thought I'd dare to post this here, it's the most appropriate. Just installed my brandnew snow covered cat, connected Mail/Addressbook/iCal to our company's Exchange2007, so far, so good. Now, I'd like t