Please Help....Need base tables link from Trade management to General Ledge

HI,
As per our current requirement we need to pull data from Trademanagement Module to General Ledger.
we are able get exact data which is posted in GL.
since we need to display only finished Items in product column. we are getting some unfinished Products also.
is there any table which has correct link trademanagement to GL. Version R12:
we have used the below query:
------------------------------------Start TM-GL Item Level-------------------------------------------
SELECT 'FY'||substr(batch_period_name,5,2) Year
, substr(batch_period_name,0,3) Period
, 'Final' version
, 'Actual' Scenario
, ('C'||substr(account,0,3)) Company
, ('A'||substr(account,5,5)) GL_Account
, substr(account,11,2) BU
, ('PC'||substr(account,14,3)) Profit_Center
, Plan_Dist
, decode(Product,'','No_Product',Product) Product
, Site_No
, currency_code
, substr(account,18,2) Country
, sum(nvl(accounted_dr,0)-nvl(accounted_cr,0)) Amount
, batch_period_name
FROM (SELECT
gjh.currency_code
, gjh.je_category
, gjh.je_source
, gjh.period_name je_period_name
, gjh.name journal_name
, gjb.name batch_name
, gjh.status journal_status
, gjh.creation_date je_created_date
, gjL.period_name batch_period_name
, gjl.je_line_num line_number
, gjl.ledger_id
, gjl.entered_dr
, gjl.entered_cr
, gjl.accounted_dr
, gjl.accounted_cr
, gjl.description
, gjh.running_total_accounted_dr je_total_dr
, gjh.running_total_accounted_cr je_total_cr
, gcc.concatenated_segments Account
, xdl.source_distribution_type
, xdl.source_distribution_id_num_1
, xlate.source_id_int_1
, (select distinct segment1
from mtl_system_items_b@ebs_link
where inventory_item_id= ofuab.product_id ) Product
, (select distinct HCSusesal.attribute4
from HZ_CUST_ACCT_SITES_ALL@ebs_link hcasiteall
,HZ_CUST_SITE_USES_ALL@ebs_link HCSusesal
,HZ_CUST_ACCOUNTS@ebs_link hca
where HCSusesal.cust_acct_site_id= hcasiteall.cust_acct_site_id
AND ofuab.ship_to_site_use_id=HCSusesal.site_use_id
AND hcasiteall.cust_account_id=hca.cust_account_id) Site_No
,(select distinct hpsites.party_site_number
from HZ_PARTIES@ebs_link hpart
,HZ_LOCATIONS@ebs_link hloc
,HZ_CUST_ACCOUNTS@ebs_link z
,HZ_PARTY_SITES@ebs_link hpsites
,HZ_CUST_ACCT_SITES_ALL@ebs_link hcasiteall
,HZ_CUST_SITE_USES_ALL@ebs_link HCSusesal
,HZ_CUST_ACCOUNTS@ebs_link hca
-- ,HZ_CUST_SITE_USES_ALL_MNC mnc
where hpsites.location_id= hloc.location_id
and hpart.party_id= hpsites.party_id
and hpsites.party_site_id= hcasiteall.party_site_id
and HCSusesal.cust_acct_site_id= hcasiteall.cust_acct_site_id
and hpart.party_id= hca.party_id
-- and mnc.cust_acct_site_id= hcasiteall.cust_acct_site_id
and z.party_id= hpart.party_id
and ofuab.ship_to_site_use_id=HCSusesal.site_use_id) Plan_Dist
FROM gl_je_headers@ebs_link gjh,
gl_je_lines@ebs_link gjl,
gl_import_references@ebs_link gir,
gl_code_combinations_kfv@ebs_link gcc,
gl_je_batches@ebs_link gjb,
xla_ae_lines@ebs_link xal,
xla_ae_headers@ebs_link xah,
xla_events@ebs_link xe,
xla_event_types_tl@ebs_link xet,
xla_event_classes_tl@ebs_link xect,
xla_distribution_links@ebs_link xdl,
xla.xla_transaction_entities@ebs_link xlate,
ozf_funds_utilized_all_b@ebs_link ofuab
WHERE gjh.je_header_id = gjl.je_header_id
--AND gjh.reversed_je_header_id = gjl.je_header_id
--AND gjh.je_header_id = gir.je_header_id
AND (gjh.reversed_je_header_id = gir.je_header_id OR gjh.je_header_id = gir.je_header_id)
--AND gjl.je_header_id = gir.je_header_id
AND gir.je_line_num = gjl.je_line_num
AND gcc.code_combination_id = gjl.code_combination_id
AND gjb.je_batch_id = gjh.je_batch_id
AND gir.gl_sl_link_id = xal.gl_sl_link_id
AND xal.ae_header_id = xah.ae_header_id
AND xah.event_id = xe.event_id
AND xe.event_type_code = xet.event_type_code
AND xe.application_id = xet.application_id
AND xet.LANGUAGE = USERENV ('LANG')
AND xect.event_class_code = xet.event_class_code
AND xect.application_id = xe.application_id
AND xect.LANGUAGE = USERENV ('LANG')
AND xah.ae_header_id = xdl.ae_header_id
AND xal.ae_line_num = xdl.ae_line_num
AND xe.entity_id = xlate.entity_id
AND xe.application_id = xlate.application_id
AND xlate.source_id_int_1=ofuab.utilization_id
AND gjh.je_source = 'Marketing'
AND gjl.status='P'
AND gcc.segment3 in ('10')
AND gcc.segment1 <> 'C01'
AND substr(gcc.concatenated_segments,5,1) in (4,5)
AND gcc.segment6 not like ('SPO%')
AND ofuab.utilization_type <> 'ADJUSTMENT'
-- AND gcc.concatenated_segments = '101.41220.10.999.US.BAZ2503.000.0000'
-- AND gjl.je_line_num in( 5674,5675,5676,5677)
-- AND gjl.period_name = 'AUG-12'
-- AND gjh.je_header_id IN (7236,7235)
-- AND gjl.je_line_num = 3830
AND substr(gcc.concatenated_segments,5,2) not in('40'))
AND gjl.je_line_num in( 5674,5675,5676,5677)) PG -- 11/23/12
GROUP BY 'FY'||substr(batch_period_name,5,2)
, substr(batch_period_name,0,3)
, 'Actual'
, substr(account,0,3)
, substr(account,5,5)
, substr(account,11,2)
, substr(account,14,3)
, substr(account,21,7)
, currency_code
, Product
, substr(account,18,2)
, Site_No
, Plan_dist
, batch_period_name
, 'Final'
------------------------------------End TM-GL Item Level-------------------------------------------
Please help me if any body worked on this issue.
Thanks,
Ram

I have find the answer for my Question...
We can have 2 columns in ozf_funds_utilized_all_b. product_type and Product_id.
If product_type is Family then Product_id would be the Item Category ID.
If Product_type is Product then Product_id would be the Inventory_item_id.
Thanks,
Ram

Similar Messages

  • The tracking tables between Oracle Trade management and General Ledger

    Hello,
    I need some help about the Oracle Trade management(R12), I have a requirement to find the records which exist in the Claim tables but not in the GL table, I found OZF_AE_HEADERS and OZF_AE_LINES tables, but did not find the relationship between these two tables and GL import reference table. Is there any subledger table between Trade management and GL modules? Please kindly provide some information about this, thanks a lot.
    Best Regards
    Spark

    Check whether OZF has uptaken XLA in your R12 release.
    http://www.orafaq.com/node/2242
    By
    Vamsi

  • Help Please - having difficulties creating af link from the text to an attached file i acrobat

    I have been reading the help, but it just wonn't work when I try.
    I have tried as followed (I am working with a danish version, and hope to matched the same word as in the english version of Acrobat Xpro):
    1. From the toolbox i choose content and then 'hyperlink'
    2. I mark the text from which i wish to make a link
    3. Acrobat respond with an popup picture 'create a link'
    4. From the popup I mark 'Open a side' and push 'next'
    5. Acrobat respond with a new popup picture 'create / go to a side'
    6. I go to the navigator and open the list with attached file's that I have embedded in my acrobat file.
    7. I mark the to which i wish to make a link to
    8. In the popup 'create / go to a side' that stilll is open, i push 'Mark hyperlink'
    Then I hoped that I have created a link from the acrobat text to the attached file. In stead Acrobat has made a link to the same sidenumber that respond to the text from which i wish to make a link . F.ex. the linktext is on side 10 - then the link goes to side 10.
    How do i do it right?
    Please help.

    Hello Bernd
    Thanks for a quick respond.
    This corresponds to the text I have tried myself, but apparently I do something wrong
    1.      Open a PDF that contains a PDF file attachment – done
    2.      Go to where you want to create a link. If that location is in the file attachment, click the Attachments button in the navigation pane, select the file attachment, and click open.
    Here I go to side number 10 from which I wish to make a link from (I am not open the attachment file at this moment, as the location not is inside the file attachment).
    (I earlier also tried to  mark the attachment file and click open, and It result that the attached file just opened normally without creating a link to the file).
    3.      Choose Tools > Content > link, and select the area for the link
    Here  I mark the text on side 10 from which I wish to make a link to a attached file
    4.      In the Create Link dialog box, set the link appearance, select Go To A Page View, and then click Next
    Here I have selected ‘Go to a page view’ as told and I click Next
    5.      Set the page number and view magnification you want, either in the parent PDF document or in the file attachment, and then click set link.
    Here I go to the navigation pane and mark the attached file from the file list (the files in the list hasn’t any side number in the list) and then I click Set Link.
    Then I hoped that I have created a link from the acrobat text to the attached file. In stead Acrobat has made a link to the same sidenumber that respond to the text from which i wish to make a link . F.ex. the linktext is on side 10 - then the link goes to side 10.
    What do I do wrong.?
    Med venlig hilsen
    Mogens Pedersen
    Specialkonsulent
    T 33 63 13 07
    F 33 63 10 11
    [email protected]<mailto:[email protected]>
    Fra: Bernd Alheit [email protected]
    Sendt: 2. marts 2012 13:11
    Til: Mogens Pedersen
    Emne: Help Please - having difficulties creating af link from the text to an attached file i acrobat
    Re: Help Please - having difficulties creating af link from the text to an attached file i acrobat
    created by Bernd Alheit<http://forums.adobe.com/people/Bernd+Alheit> in Creating, Editing & Exporting PDFs - View the full discussion<http://forums.adobe.com/message/4241290#4241290

  • Please help needed os x lion I wish to transfer photos from the iPhoto library to a album or folder then delete them from the Library but when I do this it also deletes them from the album ? how do I do this please.

    Please help needed os x lion I wish to transfer photos from the iPhoto library to a album or folder then delete them from the Library but when I do this it also deletes them from the album ? how do I do this please.

    Albums are not places to store photos, they're more like "labels" you can apply to photos to better organize them. A single image file can be in multiple albums... they are not copies, it's simply been labelled as being in all those albums. So what you're trying to do doesn't make sense, because it's based on incorrect assumptions.
    The iPhoto library will always show all photos that you have added to iPhoto.

  • Please help me in finding link to downlaod oracle BI discover

    Please help me in finding link to downlaod oracle BI discover
    i didnot find discover in obiee so where can find
    Thanks in Advance

    Hi,
    Discoverer is part of BI Standard Edition. You can down load BI from here. You need the 2 CDs for Discoverer Plus and Viewer and the Tools CD for Discoverer Admin and Desktop.
    You should also apply the patches to go to the latest version. The LearnDiscoverer blog has details of the latest patches.
    Rod West

  • HT5631 how do I verify my apple id? I can't sign in to it in mail and I can't make a new one because it just will not process I'm trying to set up iCloud between iPad and iPhone and having ALOT of difficulty pleAse help need it done by later on today!!!!!

    how do I verify my apple id? I can't sign in to it in mail and I can't make a new one because it just will not process I'm trying to set up iCloud between iPad and iPhone and having ALOT of difficulty pleAse help need it done by later on today!!!!!

    In order to use your Apple ID to create an iCloud account, the primary email address associated with the ID must first be verified.  To do this, Apple will send a verification email to your account and you must respond to the email by clicking the Verify Now link.  Make sure you are check the spam/junk folder as well as the inbox.  If it isn't there, go to https://appleid.apple.com, click Manage your Apple ID, sign in, click on Name, ID and Email addresses on the left, then to the right click Resend under your Primary Email Address to resend the verification email.

  • The enter key is not working in firefox but it has working fine in chrome and IE so please help me to rid out from this.

    The enter key is not working in firefox but it has working fine in chrome and IE so please help me to rid out from this.

    Hello gokulaan, '''try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • HT3702 please help to solve the violation from itunes

    please help to solve the violation from itunes

    Sorry, but the minimal amount of information you have provided does not allow us to understand what problem you are having. You will need to post a more complete description of your issue before anyone can even guess at suggestions.
    Regards.

  • Please help me transfer purchased apps from my current ios6 to new ios7 program.

    Please help me transfer purchased apps from my current ios6 to new ios7 program.

    There is no need to transfer anything.
    Update the device via iTunes or Over the Air... no content on the device should be affected.
    If the device is used as designed and regularly backed up to iCloud or iTunes on the computer, should anything go wrong it can be restored.

  • Guys i need to get m itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    guys i need to get my itunes account unlocked its stopping mefor making in app purchases please help need to make a purchase within 30 minutes

    If you've tried to buy something and your've been charged for it (and it's not a temporary store holding charge) but haven't received it then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Hi there. Can someone please help me with copying photos from my old iPad to my new one? Thanks.

    Hi there. Can someone please help me with copying photos from my old iPad to my new ipad2? Thanks.

    If you have a pc, when you plug your iPad in you should see the windows pop up window offering to backup the photos. Do that and it will save all your photos and videos to your computer where you can then sync them back to your new one.
    If the pop up doesn't come up, double click on my computer and navigate your way to the iPad. Double cick on it an d navigate to the DCIM folder. Drag your photos and videos to your pc, then sync them back onto your iPad.

  • Please help i bought an iphone from ebay and it is unlocked and refirbished by apple how do i know what sim card to buy for it? iPhone 3GS

    please help i bought an iphone from ebay and it is unlocked and refirbished by apple how do i know what sim card to buy for it? iPhone 3G

    Contact your chosen cellular provider to obtain a compatible SIM card.

  • Please help in unlocking my iPhone3GS from at&t

    please help in unlocking my iPhone3GS from at&t

    Read here:
    http://www.att.com/esupport/article.jsp?sid=KB414532&cv=820&title=What%20are%20t he%20eligibility%20requirements%20for%20unlocking%20iPhone%3F#fbid=q2Tus0RX3ir
    See if you qualify & it so, request AT&T unlock your phone.

  • How to load data from Quikbooks into PeopleSoft General Ledger module ?

    Folks,
    Hello.
    My client's data is currently stored in Quikbooks.
    After install PeopleSoft FSCM 9.0, I need to load the data from Quickbooks into PeopleSoft General Ledger module. But I don't know how to use PeopleSoft Integration Broker to integrate with Quikbooks.
    Can any folks tell me how to load data from Quikbooks into PeopleSoft General Ledger module ?

    Hi,
    If the data load is one time process, then you can use PL/SQL or datamover to load the data to PeopleSoft application.
    If you want to load the data in real time, then you need to create In-bound and out-bound nodes to perform the transaction.
    Thanks
    Soundappan

  • Need help setting up DB Link from my Oracle 11g XE to SQL Server.

    Hi,
    I'm trying to create a DB Link from my Oracle 11g Express Edition in a Windows XP machine to an SQL Server. Here are the steps I've done so far.
    1. Created and setup an ODBC Connection for the SQL Server DB. Named it SQLSERVER. Windows Authenticated.
    2. Modified listener.ora. See below.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
          (PROGRAM = extproc)
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
          (PROGRAM = extproc)
        (SID_DESC =
          (SID_NAME = SQLSERVER)
          (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
          (PROGRAM = hsodbc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)3. Modified tnsnames.ora. See below.
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    SQLSERVER =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT=1521))
        (CONNECT_DATA =
          (SID = SQLSERVER)
      (HS = OK)
    )4. Copied C:\oraclexe\app\oracle\product\11.2.0\server\hs\admin\initdg4odbc.ora to C:\oraclexe\app\oracle\product\11.2.0\server\hs\admin\initSQLSERVER.ora and modified it. See below.
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = SQLSERVER
    HS_FDS_TRACE_LEVEL = off
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>5. Restarted listener.
    C:\>lsnrctl stop
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 18-SEP-2012 11:33
    :51
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    The command completed successfully
    C:\>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 18-SEP-2012 11:33
    :54
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Production
    System parameter file is C:\oraclexe\app\oracle\product\11.2.0\server\network\ad
    min\listener.ora
    Log messages written to C:\oraclexe\app\oracle\diag\tnslsnr\PHAILORTD000012\list
    ener\alert\log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
    ction
    Start Date                18-SEP-2012 11:33:57
    Uptime                    0 days 0 hr. 0 min. 3 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Default Service           XE
    Listener Parameter File   C:\oraclexe\app\oracle\product\11.2.0\server\network\a
    dmin\listener.ora
    Listener Log File         C:\oraclexe\app\oracle\diag\tnslsnr\PHAILORTD000012\li
    stener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "SQLSERVER" has 1 instance(s).
      Instance "SQLSERVER", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully6. Created database link using the following command.
    create database link sqlserver using 'SQLSERVER';7. Test using
    select * from "dbo.mytable"@sqlserver;
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from SQLSERVER
    select * from dbo.mytable@sqlserver;
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from SQLSERVER
    select * from mytable@sqlserver;
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from SQLSERVERI followed the steps provided in this link but not sure where I went wrong. Can someone help me.
    http://www.dba-oracle.com/t_heterogeneous_database_connections_sql_server.htm
    Thanks,
    Allen

    Here's more information on the machines.
    Machine where the Oracle Database 11g Express Edition: IP Address is 10.162.128.67
    Machine where the SQL Server database: IP Address is 142.120.51.30.
    I've modified the tnsnames.ora to the following:
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.162.128.67)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    SQLSERVER =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 142.120.51.30)(PORT=1433))
        (CONNECT_DATA =
          (SID = SQLSERVER)
      (HS = OK)
    )But now I'm getting the following error:
    C:\>tnsping sqlserver
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.2.0 - Production on 18-SEP-2
    012 14:52:59
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\11.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = 142.120.51.30)(PORT=1434))) (CONNECT_DATA = (SID = SQLSERVER)) (HS = OK)
    TNS-12541: TNS:no listener
    C:\>Regards,
    Allen

Maybe you are looking for

  • Problems to compile Perl DBD::Oracle with InstantClient 11.1.0.7

    machine:~/.cpan/build/DBD-Oracle-1.22-WXjXWy# perl Makefile.PL Using DBI 1.607 (for perl 5.010000 on x86_64-linux-gnu-thread-multi) installed in /usr/local/lib/perl/5.10.0/auto/DBI/ Configuring DBD::Oracle for perl 5.010000 on linux (x86_64-linux-gnu

  • Bank Entry & Report Query

    Hello, If I do the Bank payment entry directly from Journal Entry instead of going thru Outgoing Payment in SAP B1 2007B, What are the problems may occur? Are the both ways right? Which reports I'll not get in case of Journal? Rgds Subrata

  • How to remove update

    I keep getting the notice that there is a printer update ready from the app store. I don't want this update. How can I put this update alert on hold without stopping other update alerts that I may want to install?

  • Is it possible to use a Java command to RRI and then Drill Down?

    I am trying to build a Java command to jump from Report "A" to Report "B" through an RRI and then apply the same drill downs to report B as the user had entered in Report A. I want to use an RRI as this saves the user re-entering the selection criter

  • 2 PX gap in IE

    I have looked everywhere to try to fix this in IE Just under the main navigation Home, Join, Super Members I have a 2px gap instead of it sitting flush onto the scrolling banner. This only seems to be in IE http://www.australiancheapholidays.com/site