Give suggestion for the scenario

Hi all
Reports version 6i
data model query
select  eid_incr_code,eam_amount
from  employee_increment_details, employee_allowance_master
where  eid_orgn=:p_orgn
and( eid_ctry =:p_ctry or :p_ctry is null)
and (eid_loc =:p_loc or :p_loc is null)
and (eid_oru =:p_oru or :p_oru is null)
and eam_orgn=eid_orgn
and (eam_ctry=eid_ctry or eid_ctry is null)
and (eam_loc=eid_loc or eid_loc is null)
and (eam_oru=eid_oru or eid_oru is null)
and eam_emp_code=eid_emp_code
and (eam_allw_code = eid_incr_code)
and eid_emp_code =:employee_code
and eid_eff_date= to_date(:p_eff_date)
and eid_status='A' From the above query i am getting two records for emp_code 001,
something like
hra 100
oth 200
total 300
In employee_increment_details for this emp_code 001 has an eid_incr_code 'BASIC' which is not in employee_allowance_master.eam_allw_code .
so i have to take the value of BASIC from employee_master.emp_basic .
and i my report i have to show it like
Basic 2000
hra 100
oth 200
total 2300
How i can achieve this ?

i got soultion

Similar Messages

  • Is there any suggestion for the "SafeNamedCache was explicitly released"

    I deployed the coherence-java-3.6.0-java on red had with core 2.6.18 with 64 bit.
    Then the deployed the coherence-3.6.0-cpp on the same manchine and complied the example "hellogrid" and it works ok . No any error .
    My requirement is to integrate the Coherence into the Nginx0.7.62 for my web server . And i wrote a thread pool for the NameCache::handle and get a newly hendle after a 5 seconds just because of the error "was explicitly released" . But it is not useful for solving the problem .
    Anybody please give me a suggestion for the root cause of this problem .
    Thanks .
    And the configurate as follows which are all copied from the configurate file for the example "hellogrid"(coherence-cpp/examples/config/extend-server-config.xml and coherence-cpp/examples/config/extend-cache-config.xml):
    extend-server-config.xm:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <defaults>
    <serializer>pof</serializer>
    </defaults>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>dist-*</cache-name>
    <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>repl-*</cache-name>
    <scheme-name>example-replicated</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>local-*</cache-name>
    <scheme-name>example-local</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>example-distributed</scheme-name>
    <service-name>DistributedCache</service-name>
    <lease-granularity>member</lease-granularity>
    <backing-map-scheme>
    <local-scheme/>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    <replicated-scheme>
    <scheme-name>example-replicated</scheme-name>
    <service-name>ReplicatedCache</service-name>
    <lease-granularity>member</lease-granularity>
    <backing-map-scheme>
    <local-scheme/>
    </backing-map-scheme>
    <autostart>true</autostart>
    </replicated-scheme>
    <local-scheme>
    <scheme-name>example-local</scheme-name>
    </local-scheme>
    <invocation-scheme>
    <scheme-name>example-invocation</scheme-name>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    <proxy-scheme>
    <scheme-name>example-proxy</scheme-name>
    <service-name>ProxyService</service-name>
    <thread-count system-property="tangosol.coherence.extend.threads">2</thread-count>
    <acceptor-config>
    <tcp-acceptor>
    <local-address>
    <address system-property="tangosol.coherence.extend.address">localhost</address>
    <port system-property="tangosol.coherence.extend.port">9099</port>
    </local-address>
    </tcp-acceptor>
    <outgoing-message-handler>
    <request-timeout>5s</request-timeout>
    </outgoing-message-handler>
    </acceptor-config>
    <autostart>true</autostart>
    </proxy-scheme>
    </caching-schemes>
    </cache-config>
    extend-cache-config.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <defaults>
    <serializer>pof</serializer>
    </defaults>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>local-*</cache-name>
    <scheme-name>local-example</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>near-*</cache-name>
    <scheme-name>near-example</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>dist-*</cache-name>
    <scheme-name>extend-dist</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <local-scheme>
    <scheme-name>local-example</scheme-name>
    </local-scheme>
    <near-scheme>
    <scheme-name>near-example</scheme-name>
    <front-scheme>
    <local-scheme>
    <high-units>100</high-units>
    <expiry-delay>1m</expiry-delay>
    </local-scheme>
    </front-scheme>
    <back-scheme>
    <remote-cache-scheme>
    <scheme-ref>extend-dist</scheme-ref>
    </remote-cache-scheme>
    </back-scheme>
    <invalidation-strategy>auto</invalidation-strategy>
    </near-scheme>
    <remote-cache-scheme>
    <scheme-name>extend-dist</scheme-name>
    <service-name>ExtendTcpCacheService</service-name>
    <initiator-config>
    <tcp-initiator>
    <remote-addresses>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">localhost</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">127.0.0.1</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">172.16.1.23</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    </remote-addresses>
    <connect-timeout>10s</connect-timeout>
    </tcp-initiator>
    <outgoing-message-handler>
    <request-timeout>5s</request-timeout>
    </outgoing-message-handler>
    </initiator-config>
    </remote-cache-scheme>
    </caching-schemes>
    </cache-config>
    Anyone who knows the root cause please tell me . Thanks .

    The original error shown in the console of the Coherence server as follows :
    2010-11-23 22:27:33.742/1566.313 Oracle Coherence GE 3.6.0.0 <D5> (thread=Proxy:ProxyService:TcpAcceptorWorker:0, member=1): An exce
    ption occurred while processing a PutRequest for Service=Proxy:ProxyService:TcpAcceptor: java.lang.IllegalStateException: SafeNamedC
    ache was explicitly released
    at com.tangosol.coherence.component.util.SafeNamedCache.ensureRunningNamedCache(SafeNamedCache.CDB:23)
    at com.tangosol.coherence.component.util.SafeNamedCache.getRunningNamedCache(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.put$Router(NamedCacheProxy.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.put(NamedCacheProxy.CDB:2)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$PutRequest.onRun(NamedCacheFactory.CDB:6)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:39)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    It is shown again and again for any operation before the Coherence server is restart.

  • I would like to make a suggestion for the next iso iphone 4-4s update.  Include a seperate treble and bass switch. What do u people out there think about this

    I would like to make a suggestion for the next iso itunes software update for the iphone 4-4s.  Include a serperate treble and bass switch for the ipod on the iphone.  What to you people out there think about this?

    vince20 wrote:
    Obviously you dont like listening to music on your ipod in iphone.  The EQ is crap
    Not true at all.
    I listen to music on my iphone all the time.
    It is your position that anyone who does not agree with you does not listen to music?
    Really?
    What a leap.

  • HT1491 If I purchase one song from an albumn in iTunes, but later want to purchase the entire albumn, does iTunes give credit for the single song purchased, or will I be charged once for the single song, and then the regular full price for the albumn?

    If I purchase one song from an albumn in iTunes, but later want to purchase the entire albumn, does iTunes give credit for the single song purchased, or will I be charged once for the single song, and then the regular full price for the albumn?

    Welcome to the Apple Support Communities
    You'll purchase the rest of the album, so you'll pay the same as the cost of the album but without the cost of the previously purchased song

  • Please suggest me a suitable design pattern for the scenario below

    Hello,
    I have around three to four methods in a class. And their invocation is mutually exclusive that only one of them can be called depending upon the scenario. usually to acheive this, what we do is, write if and else loops and depending upon the scenario, we call the method correspondingly. i thought of avoiding this if else loops and would like to know whether there is any possibility for achieving the same without if else loops? if yes how do we do this? is there any design pattern available?
    Thanks, Aravinth

    Hi,
    In java we have something is called reflection; reflection is very powerful API. I would suggest the below to start with
    public class Foo {
         public static final String METHOD_ONE="methodOne";
         public static final String METHOD_TWO="methodTwo";
         public void methodOne() {
              System.out.println("method one is being invoked..");
         public void methodTwo() {
              System.out.println("method two is being invoked..");
         public void methodInvoker(String scenario) throws Exception {
              Class clazz =this.getClass();     
              Method method =clazz.getMethod(scenario, new Class[]{} );
              method.invoke(this, new Object[]{});
         public static void main(String args[] ) throws Exception  {
              Foo foo = new Foo();
              foo.methodInvoker(Foo.METHOD_ONE);
              foo.methodInvoker(Foo.METHOD_TWO);
         }I hope this could help
    Regards,
    Alan Mehio

  • Could you please suggest me the scenario for this requirement ?

    In module booking process we need the following process
    1.Student select their interested event package via website.
    2.Advisor review the student's event package list.
           2.1 In case of REJECT : student need to revise their list
           2.2 In case of APPROVE : all event package have confirm and run fee calculation.
    The information above is shortly requirement , if any one have suggestion for this requirement please suggest me.

    Vorad,
    I have some suggestions for you:
    1.  Create the module/event booking with 'Manual Conditional' flag.  Then, when the advisor approves a booking, remove the conditional flag.  If the advisor rejects, cancel the booking.  Here, you need to create some kind of UI for the advisor to review and approve/reject the requests.
    OR
    2.  Create the booking using a booking status such as 'pre-booked'.
    OR
    3.  Don't create any bookings from the student side.  Just create a booking plan instead.
    OR
    4. Look at a subtle process change that would let you use more out-of-the-box user interfaces/processes.  Students simply request special booking authorization for the event packages they want.  This automatically sends workflow approval messages to the advisor.  Then, just have a general rule which blocks all bookings that don't have this special authorization.   Once the student has a special booking authorization, he can just go into the course registration self-service and book the approved event packages.
    Michael

  • Can anyone please  suggest for the following query relating to OEDQ ?

    I have to process 10M  records through batch matching by Oracle EDQ.  There will be 10 file(.csv)  each size 1M. They will be placed landing area of EDQ one by one separately. Given, All 10 file should have same number of columns & same order of columns. I have to process them one by one sequentially through only single batch contact match job.
    Condition is : 
    Only one batch job will be executed 10 times to process them. At each iteration/operation, one file (.csv) will be taken as input in that job. As we know, only one source is present in  job. I have to create /run ShellScript which will be passing  one file to the single snapshot  via single datastore from the landing area of EDQ. Once the one input file  is passed and complete matching is done, Without changing anything, Is it possible to pass 2nd input file  to that snapshot via previously created datastore by that Shell-script.
    I mean, I want to pass one by one file  sequentially  via  single snapshot via single datastore to a batch job  using unix shellscript. 
    Is it feasible to consider in my project????
    Any suggestion will be highly appreciated. Thanks in advance.

    Hi Mike,
    Thanks for the quick response.
    Keeping in mind source will be changed sequentially/one after another but the target is constant & the same JOB will be executed each time.
    suppose, I have two file in the landing area of EDQ. These file are:  PersonData.csv  and goutam.csv
    PersonData.csv is used in current data store.
    File in the working area:    C:\Program Files\Datanomic\dnDirector\config\landingarea\PersonData.csv
    Snapshot is using  this datastore. I have right clicked on the snapshot. I have done setting externalize option enable.
    I am using the command:
    java -jar jmxtools.jar runopsjob -job "Testing for R3  source A" -project EDQ-CDS -runlabel Nov2014 -nowait -u dnadmin -p p4dqnvo2 localhost:9005
    This command is successfully executing batch job "Testing for R3  source A "   where source is PersonData.csv.
    Now, I  want to use the following command with externalize option to execute  the file goutam.csv as source  by the above job.
    I am using the below command:
    java -jar jmxtools.jar runopsjob -job "Testing for R3  source A" -project EDQ-CDS -runlabel Nov2014 -D externalized=goutam -nowait -u dnadmin -p p4dqnvo2 localhost:9005
    this command also executes the file PersonData.csv instead of goutam.csv file.  In the above command I have highlighted  externalize option with deep black color . please let me know how I write this externalize option in the command so that it should execute goutam.csv file.
    Meanwhile, I am googling to find solution.
    Regards,
    Goutam Samanta

  • SAP TAO | getting an error "replay Error" for the scenario

    Hi,
    I am getting the "replay error" for a scenario.
    When tested the individual components, they were passing separately in HP ALM, but when consolidate all of those test cases in one test scenario then this error "replay error" is shown.
    Could anyone help in resolving this issue.
    regards,
    Sunil Kumar

    Dear sunil kumar
    You have posted the query in Career Center..
    Is your question related about Career ???
    Please read the document before posting any query.
    Find Topic Spaces on SCN (Forums)

  • How to rate and give review for the product in SharePoint Contoso demo site by the customer/user from publishing site?

    Hi,
    I am new to SharePoint, and am working on Contoso demo site.
    I want to know where to give star rating and review for the product in SharePoint Contoso demo site. Even after spending enough hours i didn't find solution for this problem. All the answers i got was changing the List/Library settings -> Rating settings,
    if i follow that, i get the rating column displayed in my catalog site. How can i bring it on my publishing site and let the customers give rating or review for the product from publishing site. Is there any OOTB feature in sharepoint or it shoul be customized.
    Thanks in advance. 
    Akshaya

    Are you using the Content Search Web Part?  Just tweaking that once the source library has had the rating column applied should work.  Have you tried this?
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Any suggestions for the ITEM NUMBER field

    We sell DVDs, Books, CDs, etc. for which we have item groups setup.
    We are using the ISBN based EAN barcode for the bar code field.
    Any best practices for coming up with the ITEM NUMBER naming convention that people have for us.
    Currently we use the short form title of the DVD or book to denote the item number.
    Mike

    Hi Mike,
    There are always pros and cons for something like Item Code convention.
    In my experience, I would like to make them in the same length whenever possible.  Because they are internal codes, they should be easier to be used for both technical and non-technical users.  Sometimes you might not be able to make both parties happy.  In that case, you have to give up something to compromise.  The most important above all is to eliminate any duplicated codes.  You will find that could the most difficult job if you give more users the abilities to create Item Code.  If that is a must for your business, more training will be needed for all those users.
    Thanks,
    Gordon

  • Reports -- Creation for the Scenarios Mentioned

    Hi All:
    I need to create a Report and Dash Board using the following scenarios as mentioned below, Please let me know the procedure for the same.
    Region Wise Lead Reports
    1 Region
    2 Lead amount
    3 No of leads
    4 Subtotal
    5 Grand total
    Top 10 Performer Report
    Account Owner, Region, Location, No. of Leads, Lead Amount
    Pipeline by Lead Status
    1 lead Status
    2 lead Name
    3 Owner
    4 Account Name
    5 lead Closure Date
    6 Expected Closure Date
    7 Amount Display
    8 Sub Total
    9 Grand Total
    Any help appreciated.
    Warm Regards,

    Please post this question in the CRM On Demand Analytics and Reports forum. Thanks for your help.

  • Where can I leave suggestion for the manufacturers???

    Anybody knows where can suggestions can be posted for the future improvements for the software to our Ipods??
    Some things that I'd love to see in the next Ipods or software are:
    - Scrolling of the whole album name, Artist name on the screen of the Ipod
    - During the mode sleep would be nice to set the volume low level for sleep and for "alarm" mode it would be perfect wake up with a louder volume.
    - For the clock settings moving the digits each one 9,8,7,6,5,4,3,2,1,0 independently instead to go around the clock for 12 hours everytime when a new alarm is set.
    - Timer for sleep if could be "open" to everybody own time it would be great other than 15 mins 30 mins 60 mins etc there 1,2,3,4,5,6,7,8,9 etc much better in this case for sleep.
    I wish that the people that is involved with the development and manufacturing of our favorite player could do something about it otherwise who else???
    Share this message all around if there something can be done it is here and is with apple.
    Any ideas around???
    Thank you all for the interest and enthusiasm!!!
    5 gen   Windows XP Pro  
    5gen   Windows XP Pro  
    5 gen   Windows XP Pro  

    Hey!
    Try hereApple Feed Back
    Cheers,
    John
    iMac G5 1.8GHz 20"   Mac OS X (10.4.7)   ipod 30GB Video Black v.1.2 Agent 18 Case iTunes 7.0.1 Bose Sounddock

  • HT3275 Any other suggestions for the message the backup volume is read only

    I keep getting the message Time machine is unable to complete the backup because it appears the backup volume is read only.  I've tried the suggested repairs from apple for this but keep getting the same problem.  Any suggestions?

    The Master of the Time Machine, Pondini has extensive documentation and he mentions your particular problem in the following link.
    http://pondini.org/TM/C6.html

  • Any printer suggestions for the ibook g4

    I am completely overwhelmed and in need of some suggestion of the most compatable printer for the ibook g4. Mine is a 2004 model

    Hi Hotrodgirlly,
    Welcome to Apple Discussions
    What are you going to use the computer for and what features do you want(example: mostly printing documents, normal amount of pictures, professional photography, as well as all-in-one, scanner, fax, fast printing, portability, quality of print outs, etc)? Price range?
    You may want to look at the following threads...
    http://discussions.apple.com/thread.jspa?messageID=1718307
    http://discussions.apple.com/thread.jspa?messageID=1198652
    http://discussions.apple.com/thread.jspa?messageID=1858479
    http://discussions.apple.com/thread.jspa?messageID=594421
    There are a ton of posts in Apple Discussions alone that can help you make a decision or narrow down your options. I suggest searching AD, Google, and any other search engine on the internet. Consumer Reports probably has a review section on new printers, but you can either buy it in the store or buy an online subscription (I believe).
    Jon
    Macbook 2.0 White (100Gb HD 2Gb RAM) Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • Album suggestions for the music store

    Has anyone suggested albums for the music store and actually gotten it listed for sale? I've suggested a few and just wondering if this is a waste of time

    I will keep suggesting, I no longer like ordering cds. But if the music store does nothing with the suggestions then I'll have to do that.
    It would be nice if they could post whether or not they could get the album but I doubt if they will ever have the manpower to do that

Maybe you are looking for