How to see 'Salary amount transfered to bank from - 'S_AHR_61015609'

How to see 'Salary amount transfered to bank from - 'S_AHR_61015609' report.
S_AHR_61015609 is not showing amount

Hi,
I advice you to create a Z report
1.) Use IT0009 record for the selection period for each employee with /559 , check for pmt mode as 'T'
     Generete Bank wise employee list and a summary list
2.) Also check payment list for /557 records from RT
Mean while your Z program gets ready
1.) Download the WT reporter amount for /559 for bank pmt and /557 for cash payment
     with the employee details in one excel file
2.) From table PA0009 download the Employees Bank details in another excel file
    ( here you can use Adhoc query)
3.)  Take a Vlookup and add the abnk details in excel file 1 , check for the totals properly
Regards
Hemant V. Mahale

Similar Messages

  • How to extract tax amount in item level from a Purchase order

    Hi experts,
    How to extract the tax amount data for each item in a Purchase order.
    I am using the data sources 2lis_02_itm, 2lis_02_scl, 2lis_02_S012.
    Please provide me which data source brings this tax amount data in item level and also the technical
    field name of tax amount.
    <Removed by moderator - soliciting points for answers is frowned upon>
    Regards,
    Bhadri M.
    Edited by: Arun Varadarajan on Nov 14, 2008 3:55 PM

    Dear Bhadri
    Did you look 2LIS_13_VDKON data source whther it can throw or not for billing related. Here you should look some billing conditions relates to particular document like taxable or not.
    (KAWRT, KAWRT_K, BIWGEO)
    Those informations will be maintained each with billing conditions.
    May not sure. Please look.
    Raju Saravanan

  • How to Recover Playlists when Transferring iTunes Library from External Drive to New Computer

    iTunes library copied to external drive and then loaded to new computer. All songs are there but all of the playlists that I had set up do not appear. I cannot figure out how to retrieve/recover them. The back-up was not done by me so I'm not sure of the steps that were followed. Is there something special that needs to be done when backing up to external drive in terms of saving playlists? Help!

    Hello TNCGRCT,
    It sounds like the library was successfully transferred to the new computer, but the songs were imported into a new iTunes library. If you still have access to the external drive, or better yet the previous computer, we will want to transfer the iTunesLibrary.itl file and open it with iTunes:
    iTunes: How to open an alternate iTunes Library file or create a new one
    http://support.apple.com/kb/HT1589
    More helpful information...
    Where are my iTunes files located?
    http://support.apple.com/kb/HT1391
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Thanks,
    Matt M.

  • How to see the BOM or the comsumption From one PRO. order

    hi,friends,
    i want to see what kind of the material and what quantity of material from one production order, how to do by TO?  if these informations can be known, the warehouse should do the delivery conveiently.if you know how to do,would you please tell me ?
    tks and best regards!

    Hi MG,
    What do you want exactly?
    Generally, when a PrdOrd is released a TR will be generated. You can see this in LB10 - and processing this TR from LB10 a TO will be created and warehouse workers can move the goods to production area.
    You can check the content of this TR by clicking on it in LB10 or you can use LB03+TR no. as well.
    If your production order release doesn't trigger a TR but you use LP10 to create TR for pick part.
    You can also disply your PrdOrd in CO03 and choose menu > Goto > WM pick list. Or you can also use
    the 'Components' icon.
    If you want to get information of consumption concerning a particular PrdOrd please use MB51 (you can use the PrdOrd field as filter criteria within the report) or CO03 (> menu > Goto > Documented goods movements).
    Please clarify your question.
    BR
    Csaba

  • How to see when ipod was last synced from the pc

    I think my iPod is either lost/stolen and the only way to find out for sure is to see when my iPod was last synced on my computer. how do you find out the time that this happened?

    Welcome to the discussions,
    every time you sync a backup is created. You can find the list of stored backups in iTunes/Settings/Devices. Hover over the name of the device and you'll see the serial number of the device and right next to the backup the date it took place.
    But you can't find out if your ipod has been synced on another computer using your PC.
    Message was edited by: Ingo2711

  • How to see my code drawing a line from one point to another

    hi, im wondering if you could help me.
    i am working on my project which is to visualise travelling salesman heuristics.
    i have managed to make my first heuristic work, but my problem is that when i clicked the run button on my GUI,
    the output is already a complete tour with all the edges already drawn, but what i want is to see how it solves or draw the lines from one vertex to another just by clickin the run button once.
    would be great if you could advice me of what method or technique i need to use to see my application solving the tour or drawing the edges.
    below is my cofe for drawing the edges from one point to another
      void drawLineNNh(Graphics g){
             Graphics2D g2 = (Graphics2D) g;
             g2.setColor(Color.blue);
             int i = 0;
             if (P == null) return;
             else
                 for(i=0; i<P.getSize(); i++)
                 Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    below is my code for calling the above method to draw edges, actionlistererun.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();

    I AM USING SWING.
    HERE IS MY CODE, HOPEFULLY ENOUGH TO UNDERSTAND THE PROBLEM.
    class Plot extends Panel{
         public static int num;
         NNheuristic nnH;
         Closest_insertion CI;
         Points P;
         public static boolean useNNh= false;
         boolean useCI=false;
         boolean triangleDrawn = false;
         boolean CIupdate;
         void drawpoints (Graphics g)
             Graphics2D g2 = (Graphics2D) g;
             Graphics2D g3 = (Graphics2D) g;
             int i=1;
             g2.setColor(Color.red);
                    if (P==null) return;
                    else
                    while (i<P.getSize())
                         Ellipse2D.Double vertices = new Ellipse2D.Double(P.x_coor,P.y_coor[i],10,10);
    g2.fill(vertices);
    i++;
    g3.setColor(Color.MAGENTA);
    Ellipse2D.Double initial = new Ellipse2D.Double(P.x_coor[0],P.y_coor[0],10,10);
    g3.fill(initial);
    System.out.println("No. of Vertices: " + P.getSize());
    for(int k = 0; k < P.getSize(); k++)
    System.out.println("x coordinate: " + P.x_coor[k] + ", " + "y coordinate :" + P.y_coor[k] );
    // System.out.println("next:"+ P.x_coor[k+1]);
    triangleDrawn = false;
    void drawLineNNh(Graphics g){
    Graphics2D g2 = (Graphics2D) g;
    g2.setColor(Color.blue);
    int i = 0;
    if (P == null) return;
    else
    for(i=0; i<P.getSize(); i++)
    Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen[i]]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void set (Points p)
    P=p;
    useNNh = false;
    useCI = false;
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    void frame (Graphics g)
    g.setColor(Color.white);
              g.fillRect(0,0,size().width,size().height);
              g.setColor(Color.green);
              g.drawRect(0,0,579,280);
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    else if(useCI)
    if(!CIupdate)
    drawTriCI(g);
    else
    drawRestCI(g);
    // drawLineNNh(g);
    public void clear ()
         // remove the points and the graph.
    P=null;
    triangleDrawn = false;
    code of my GUIpublic class TSP extends JFrame{
    JButton run;
    ...................codes...........
    TSP() {
    ...............................codes...........
    run = new JButton ("Run");
    run.setPreferredSize(new Dimension(113,30));
    run.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();
    else if(chooseHeur.getSelectedItem()=="Closest-Insertion")
    PlotArea.setC_I(points);
    PlotArea.repaint();
    pane2.add(run);

  • HT201493 how can see my messages on my iphone from my pc

    i need to know if i can read my iphone messages from my pc?

    You can delete the photos from the iPhone directly after import (http://support.apple.com/kb/HT4083)- iPhoto on your Mac or Aperture will prompt you, if you want to delete the imported photos from the device. If you missed that opportunity, delete the photos on the iPhone by opening the Camera Roll and tapping the trash icon.
    See this Help text:  http://iphonphone.blogspot.nl/2014/01/how-to-delete-photos-from-iphone.html

  • How to see deleted records in delta extraction from view

    Hi folks,
    i am currently reflecting about delta extraction from a view:
    The view contains a date field (change date) which is used to identify new or changed records.
    So the delta extraction of new and changed records works without problems.
    But what is happening with records that are deleted in the source system?
    My current understanding is that deleted records will not be shown in the view. Therefore the deletion is not visible in the extraction.
    - Is there a workaround for this problem?
    - How is deletion of records normaly handled in generic extractors? 
    - Is it impossible to extract a deletion when using views?
    any suggestions and help will be appretiated...
    bye

    Hello Florian,
    Generally records will not be deleted (until if you physically delete it from table) but will have a status deleted.
    So it doesn't matter whether you use view or tables the deleted records will be extracted through the view to update the BW data targets.
    Thanks
    Chandran

  • How do i go about transfering my music from my ipod to my itunes?

    i reformatted my PC a while ago and i wana put my music from my ipod back onto my itunes.
    how do i do this??
    i dnt wana pay for one of those transfer programs.
    (i updated my ipod firmware stuff or watever it is to the newest one.)

    There's a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide

  • How to see IP Address(DHCP) of Guest from CLI

    Dear Experts
    How to find out the IP address (DHCP assigned) of a guest image from the ovm server cli while the guest is already started. Here I am working on 'Weblogic Server Virtual Edition' image and do not get a login through console. Please help.
    Rgds

    You can follow this steps:
    1) check MAC address
    2) check in DHCP server logs what IP is set to MAC address listed in 1st point
    Hope this help,
    Dominik

  • How to export & email images transferred to lightroom from a disk

    I loaded some old, saved images I have on disk to Lightroom. When I attempt to export the image to email, the command states It can't locate the mage, even though I am looking at it. What am I doing wrong?

    When you export, the disk that contains the original image must be available to Lightroom. Is the disk containing the original images mounted when you attempt to export?

  • How to tell record amount in Cube or DSO in GB

    All,
    I  me trying to figure out how to see data amount in cubes and DSOs in GB. I appreciate any help.
    Regards,
    Mike

    Thanks for your reply Srikanth. I do not have DB02 access however I do have access to ORA_COCKPIT. What I see there is SPACE->Tablespaces-Overview
                                         Detailed Analysis
    I remember there was a program for cubes which was showing data amount for the cubes but not for the DSOs. I cannot recall the program name

  • How i see my current service using select query

    Hi,
    How i see my current net service name from query .
    Regards
    Faheem

    Hi,
    Do you talking about the database service configured at listener?
    I'm not sure if the DBA_SERVICES or V$SERVICES can be used to get this information.
    oracle@icaro:~> lsnrctl services
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 10-MAR-2008 09:55:57
    Copyright (c) 1991, 2004, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=icaro)(PORT=1521)))
    Services Summary...
    Service "DB01" has 2 instance(s).
      Instance "DB01", status UNKNOWN, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:8 refused:0
             LOCAL SERVER
      Instance "DB01", status READY, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:2331 refused:0 state:ready
             LOCAL SERVER
    The command completed successfully
    oracle@icaro:~> sqlplus / as sysdba
    SQL*Plus: Release 10.1.0.2.0 - Production on Mon Mar 10 09:56:02 2008
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select service_id,name from dba_services;
    SERVICE_ID NAME
             1 SYS$BACKGROUND
             2 SYS$USERS
    3 DB01Cheers
    Legatti

  • Transferring the data from one system to another system.

    Hi All,
       I need to transfer the material master data from one system(e.g - dev1)
    to another system (e.g - dev2).
      front end application is BSP.
      if the user enters the material number 1 to 20 and if he presses the submit
      button, the entire data should be transferred to another system.
      This transferring of data should be done in background.
      1. which method we should opt for this ? either ALE or any other method like XI.
      2. Is there any standard bapi function module to transfer the material master from one system to another system.
      3.  whether this above transferring can be done thru XI and which will be best approach for doing this?
    Points will be awarded.
    Regards,
    Vinoth.

    Hi amole,
       Thanks for the reply.
        How to use lsmw for transferring fo data from one system to another system.?
       whether to download the data from one system in excel or notepad and again to upload into other system?
       can u explain me.
    Regards,
    vinoth.

  • How to get Basic salary amount in the Housing formula to calculate the housing value as I used the DBI (NICDP_EMPLOYEE_BASIC_SALARY_AMOUNT_ASG_ENTRY_VALUE) but when run the Quick pay for the housing element alone result come 0, How to get Basic salary amo

    How to get Basic salary amount in the Housing formula to calculate the housing value as I used the DBI (NICDP_EMPLOYEE_BASIC_SALARY_AMOUNT_ASG_ENTRY_VALUE) but when run the Quick pay for the housing element alone result come 0, How to get Basic salary amount in the Housing formula to calculate the housing value as I used the DBI (NICDP_EMPLOYEE_BASIC_SALARY_AMOUNT_ASG_ENTRY_VALUE) but when run the Quick pay for the housing element alone result come 0

    Hi,
    Is your formula attached to basic salary element or some other element? You need to make sure that basic salary element has some value and is processed before this formula is called. Are you able to see value for basic salary element after payroll run?
    Regards,
    Pawan

Maybe you are looking for

  • Submit RIMODGEN in Background

    Does anyone know how to submit RIMODGEN in the background?  Here's a small clip of my code.  I don't think the problem is with my parameters.  The program executes but the integration model is not created.     CLEAR gt_params.     PERFORM load_params

  • Recurring Kernal Panic (Late 2011 macbook pro 13 inch)

    this is the error code i got before sending my report. anyone know what any of this means? Interval Since Last Panic Report:  151713 sec Panics Since Last Report:          51 Anonymous UUID:                    B3CED32A-3D5A-45E6-A233-FD7074A09B77 Fri

  • No TV sounds

    I have a Dynex 32' LCD TV and the sound just stopped yesterday (it's approximately 1 1/2 yrs old).  I tried unplugging and replugging several times but the sound has not returned!  It is connected by Cable and I also have a DVD/VCR player connected t

  • What is the system keychain password?

    Every single time I logon to my PB12, an alert pops up asking me for the system keychain password. I have tried the only password on this system but it tells me that is invalid. I click cancel and everything works fine. It is 'Airport' that is causin

  • IPod Classic not restore -error 1430

    My iPod doesn't want to restore anymore. Error 1430 in itunes, I performed the procedures shown on the site without success. What should I do?