About the script need to display

hi team,
                i  am working on the script of hr_ben_conf.... i need to display the data from the structure rpben_da. in these structure i need to take the field to display the EE costs(employee only)...
we have different field :
         Bplan    pltyp     depcv  from the structure of the rpben_da.
         DENT    dent        EE
         visi        visi         ee
          medi    medi     ee
i need to display the data of ee employee only ...... who to write this thing in the script level only........

hi
if u go throu debugging mode to the print program for the correponding script u will find this stucture will flow with values
pass the same to the script.
say for example.
RLVSDR40 is the standard print prog for this example
RLDRI is a struc where in we get TANUM ( transfer order no)
but when u go in debgg mode u will get the struc as XRLDRI in RLVSDR40.
so pass from the zprogram XRLDRI-TANUM to script.
u can able to print the values u require .
same logic try in urs.
try it it is possible.
Hope this might help u.
Thanks and regards,
Venkat.

Similar Messages

  • Conv. based on the month - Need to display the output in quarterly basis.

    Hi Gurus,
    I need to display the output quarterly based on the month.
    For example,
    If the year is 2012 and month is between
    01 to 03 i need to display it as 2012Q1
    likewise 04 to 06 as 2012q2
    and 07 to 09 as 2012q3
    and 10 to 12 as 2012q4.
    Please help me by providing sample codes. Please help yourself by writing the code and get back when you have a specific question.
    Thanks!
    Regards,
    Manoj
    Edited by: kishan P on Mar 2, 2012 3:14 PM

    Hi Vinod
    To get the last 13 months in webi report .follow below approach
    Assuming you have calendar Month object in the report.
    convert your selected date into M/d/yy format . let's say you selected 12/18/13 , your variable should be 12/1/13
    variable :
    Selected Month =ToDate(FormatDate(useresponse("Date");"Mmm yyyy");"Mmm yyyy")
    Flag for month     =ToDate([CalMonth];"Mmm yyyy")<=[Selected Month]
    Report filter          =[Flag for month]+Previous(Self)
    select the table you want to filter
    add filter -> Report filter between 1 to 13.
    Hope this will help.

  • About the Vendor's Name Display Language

    Dear Experts
    I want to know is there have any methods that can let the Vendor name's display language equal with the R3 login Language???
    Exp. when I login R3 with English, and create PO by ME21N, the Vendor's display name shows English automatically.
            when I login R3 with Japanese, and create PO by ME21N, the Vendor's display name shows Japanese automatically.
    I created a Vendor 'ZTEST001' by the T-Code: FK01,
    In the default screen,
    I input an English Vendor Name into the Name column(LFA1-Name1),and I input a Japanese Vendor Name into the Name4 column(LFA1-Name4).  At the End, I setted  the Language 'English'.
    In the Internat. Versions screen,
    I input a Japanese Vendor Name into the Name column(LFA1-Name1),and I input an English Vendor Name into the Name4 column(LFA1-Name4).  At the End, I setted  the Language 'Japanese'.
    And then I logged into R3 with Japanese, by used ME21N I created an Inter-Co. PO documents, and I found the Vendor's name is English,not Japanese....
    Also
    I logged into R3 with English, by used ME21N I created an Inter-Co. PO documents, and I found the Vendor's name is also English.
    Best Regards.
    Zhang

    Finally,
    I added some BAdI source codes into IF_EX_ME_PROCESS_PO_CUST~PROCESS_HEADER
    to set English Vendor name for the vendor into 'Header text' automatically when user login R3 with English and to create  the PO.
    Thank you all.

  • Question about the Microsoft's Wireless Display Adapter (WDA)

    Only one wireless display can be managed via Intel WiDi at a time.

    Hello guys, so my boss got a couple of these WDAs for the conference and training rooms to connect laptops to the TVs and projectors via wireless instead of cables, they work really nice and everything but he also asked me to look into connecting a single computer to two of these adapters at the same time (so sort of using two projectors as dual screen with one laptop for example), anybody has any idea about this? Been doing a little research here on my own but no answers so far, was wondering if anybody can shed some light here.
    But as far as i know, it's not possible, you will need to disconnect from the one you are currently connected to, then you can connect to the other dongle and vice-versa.
    let me know what you guys think.
    This topic first appeared in the Spiceworks Community

  • About the script......

    hi team,
                          i need information on hr-benefits ... i have the standard form  in se71..i.e hr_ben_conf...... and standard program :  hrben0015(tcode) i need the write_from_, open_form... where they are located....in which program it is located.... i need the inforamtion urgently...... ok byeeeeeeeeeee

    IF you have Tcode, soto SE93 and Identify the program name for that tcode. Once program name is identified.
    GOTO se38, give program name and select radiobutton documentation and click display... go through the documentation if you have any standard form(sap script/smartform) it will be written there.
    Close the thread once your question is answered.
    Regards,
    SaiRam

  • SAP Script need to display main window two times on single page.

    Hello Guru's,
    So here is my requirement, we need to print check. We are using F110_PRENUM_CHCK and linked with driver prog RFFOUS_C. We have Letter size paper with three sections,
    1. Check
    2. Voucher Section (containing table of element 515, 525 and 530) 515: Heading, 525 : Regup-Belnr, Regup-XBLNR, Regud-Wrbtr.
                                                                                    530: Regup-SGTXT
    3. Voucher Section (As a receipt for bank itself) : contains same data as 2nd section.
    I tried several things reading all the previous post over here in SDN.
    1. Created Z form created two instances of main window it results just single display of table (voucher section) in section two and not in third.
    2. I also tried pasting two times same code in single main window which gives only last item line for the table.
    3. Created z driver program made changes in Write_form added control form for element 515 that does results in showing element 515 on both the location.
                CALL FUNCTION 'CONTROL_FORM'
                  EXPORTING
                    command   = 'NEW-WINDOW'
                  EXCEPTIONS
                    unopened  = 1
                    unstarted = 2
                    OTHERS    = 3.
                CALL FUNCTION 'WRITE_FORM'
                  EXPORTING
                    element = '515'
                  EXCEPTIONS
                    window  = 1
                    element = 2.
    3. For Element 525 and element 530 is not acting same. In the prog 525 = hlp_ep_element. And there are many write_form for this. I tried pasting each and every place same kind of code. It doesnt work. what it do it gives me three pages of output repeating every thing twice and weirdly.
    I am need this to be done as I already took so much time solving nothing is working.
    Please give me the exact location where to paste this code so I can have two times data of main window.
    Or is there any other way to do this....Any way will be good for me as long as it shows two times data in the form.
    The data is table.

    Hi Manju,
    I create a new window (no main) but does not run, please can you tell me what should I do to make it work.
    Best regards.
    Robert.

  • About the script of restart sap server

    Hi expert,now i want to restart the sap server using window's schedule to execute a script, not using sap's mmc.pls tell me how to do. thanks

    just create a batch file with the stopsap, startsap commands on it and schedule using windows scheduler.
    For more info about start and stop commands read,
    http://help.sap.com/saphelp_nw04s/helpdata/en/70/b38937809c8f71e10000009b38f842/content.htm
    Regards
    Juan

  • About the script-benefit

    hi team,
                          i need information on hr-benefits ... i have the standard form  in se71..i.e hr_ben_conf...... and standard program :  hrben0015(tcode) i need the write_from_, open_form... where they are located....in which program it is located.... i need the inforamtion urgently...... ok byeeeeeeeeeee

    RPUBEN15

  • About the iPhone's LCD display with images

    I was just wondering how many colours the iPhone has on its LCD screen. If anyone perhaps knows, a reply would be appreciated.
    Thanks.

    32bit is actually 4,294,967,296 colors. I don't know if thats how many the phone can display though.

  • On Apple's website it seems like everything about the iPad with retina display is better than the iPad 2. Is this true?

    ????

    The iPad 4 has a higher resolution than the iPad 2 (iPad 2 is 1024 x 768 pixels, on the iPad 3 and 4 it's 2048 x 1536).  The iPad 4 also has a faster processor (A6, the iPad has A5).
    iPad 2 and iPad 4 comparison : http://www.apple.com/ipad/compare/

  • We are considering the Apple Tv.  Can you tell me about the things we need in order to get started?

    Can anyone tell me about the wifi needed for Appletv?

    that's your download speed and it should be fine for the Apple TV, providing you are actually getting that.
    The first thing to check would be your internet download speed, you can do this at www.speedtest.net.
    1080p HD movies require a recommended speed of 8 Mbps, 720p HD movies require a recommended speed of 6 Mbps, while SD movies require a recommended speed of 2.5 Mbps.

  • Calendar script needed

    I need a recommendation for a PHP calendar script. It should
    have both a
    large display for use on a single page as well as a small one
    for use in
    a sidebar, like on a home page. The script needs to be able
    to handle
    links from within an event and must be easy for a user to
    update.
    And finally, it must integrate easily into an existing
    design.
    Any ideas?
    Thanks,
    Harvey Wasserman

    You're welcome!
    eclipsme wrote:
    > Thanks, MD
    >
    > Harvey
    >
    > Mad Dog wrote:
    >> If you want to be able to change the PHP files, then
    this is a
    >> problem. If you don't need to mess with them (and I
    don't know why
    >> you would when there are plenty of variables and CSS
    you can mess
    >> with the make the changes) then there's nothing to
    worry about.
    >> Installation is a breeze as long as you have Zend
    Optimizer or
    >> IonCube on the server. MD
    >>
    >>
    >> "eclipsme" <[email protected]> wrote in message
    >> news:ga8a3l$1o0$[email protected]..
    >>> Thanks for the reference. Yes, this looks
    interesting, but I don't
    >>> like that that the script is encoded. For
    instance, this line
    >>> bothers me: "DON'T GIVE UP! Installation of
    encoded files can be tough.
    >>> If you
    >>> haven't already, try the Auto-installer."
    >>>
    >>> Harvey
    >>>
    >>> Mad Dog wrote:
    >>>> www.easyPHPCalendar.com
    >>>>
    >>>> I've used it on several sites including
    integrating it into a
    >>>> Wordpress-run site.
    >>>>
    >>>> Mad Dog
    >>>>
    >>>>
    >>>> eclipsme wrote:
    >>>>> I need a recommendation for a PHP
    calendar script. It should have
    >>>>> both a large display for use on a single
    page as well as a small
    >>>>> one for use in a sidebar, like on a home
    page. The script needs
    >>>>> to be able to handle links from within
    an event and must be easy
    >>>>> for a user to update.
    >>>>> And finally, it must integrate easily
    into an existing design.
    >>>>>
    >>>>> Any ideas?
    >>>>>
    >>>>> Thanks,
    >>>>> Harvey Wasserman

  • Indesign CS5.5 Relink Script needs help

    Hi, I'm trying to relink images in an InDesign CS5.5 file to a different server using a script. This is what I have so far, but when I run the script I get errors and can't relink because "Either the file does not exist, you do not have permission, or the file may be in use by another application". Does anyone know how to make this script work? I'm fairly new to scripting.
    Here is the script I have:
    tell application "Adobe InDesign CS5.5"
              tell document 1
                        set linkList to links
                        set errInfo to "" -- We'll display error if we can't relink an item
                        repeat with x in linkList
                                  if (x's status) is not normal then -- I usually check for any link that has an error
      -- This should only return an AppleScript path with ":" separators
                                            set linkPath to (x's file path) as string
                                            if "Volumes/Calendars_2013 FPO" is in linkPath then
                                                      set AppleScript's text item delimiters to "Volumes/Calendars_2013 FPO"
                                                      set linkPath to (linkPath's text items) -- Create a list of text items
                                                      set AppleScript's text item delimiters to "Volumes/Calendars_2013"
                                                      set linkPath to (linkPath as string) -- Concatenate with new path
                                                      set AppleScript's text item delimiters to "" -- Reset TIDs
                                                      try
      -- Need to make our string (path) into an alias path
      relink x to alias linkPath
                                                                try
      update x -- This can be helpful
                                                                end try
                                                      on error err
      -- We'll store link name if error occurs
                                                                set errInfo to (errInfo & return & x's name)
                                                      end try
                                            end if
                                  end if
                        end repeat
      -- If an error occurs while trying to relink, we'll display it
                        if (count errInfo) > 0 then display dialog ("Can't relink:" & errInfo)
              end tell
    end tell
    --Hector

    I just tried adding collens to the end of the folder path. For some reason the script skipped the relink line. Below is the code with your update. I'm thinking its not finding the images because the script needs to make a list of all the images and choose the one that matches the missing image.
    tell application "Adobe InDesign CS5.5"
              tell document 1
                        set linkList to links
                        set errInfo to "" -- We'll display error if we can't relink an item
                        repeat with x in linkList
                                  if (x's status) is not normal then -- I usually check for any link that has an error
      -- This should only return an AppleScript path with ":" separators
                                            set linkPath to (x's file path) as string
                                            if "Calendars_2013 FPO:" is in linkPath then
                                                      set AppleScript's text item delimiters to "Calendars_2013 FPO:"
                                                      set linkPath to (linkPath's text items) -- Create a list of text items
                                                      set AppleScript's text item delimiters to "Calendars_2013:"
                                                      set linkPath to (linkPath as string) -- Concatenate with new path
                                                      set AppleScript's text item delimiters to "" -- Reset TIDs
                                                      try
      -- Need to make our string (path) into an alias path
      relink x to alias linkPath
                                                                try
      update x -- This can be helpful
                                                                end try
                                                      on error err
      -- We'll store link name if error occurs
                                                                set errInfo to (errInfo & return & x's name)
                                                      end try
                                            end if
                                  end if
                        end repeat
      -- If an error occurs while trying to relink, we'll display it
                        if (count errInfo) > 0 then display dialog ("Can't relink:" & errInfo)
              end tell
    end tell
    --Thanks for you help

  • Complex Script needed

    Hi - I have two things here I need help on.
    I have a form created in Adobe LiveCycle Designer 8 that has an add and delete row.  The rows have a check box called Sub to Sub for users if a job construction job was sent from a subcontractor to another subcontractor.  Next to that is the description, and then 2 more columns, One is called "Original Amount" and the other is called "Final Amount Paid."  The Original Amount and Final Amount Paid totals at the bottom of the page.  What I need to do is if a user clicks on the Sub to Sub check box, the amount they enter in the  Original Amount and Final Amount Paid does not get added into the Grand Totals at the bottom of the page.  Can someone provide me with a script that will do this?
    My second question - On the "Add Row" and "Delete Row," when it expands to a second page, the "Add Row" and "Delete Row" buttons do not work.  The user has to go back to the first page to add another row or delete another row.  Is there a way to have the add and delete row work on the second page so the user does not have to go back to the first page to add a row or delete a row?
    Any assistance would be appreciated.
    I use Adobe Livecycle Designer 8 and Adobe Acrobat 8.

    Hi Pratyunna D,
    As swapnil bhootwala in the above post you can use Unix and Windows line scripts.
    Please refer the SAP Data Services Technical Manual  for more information about the scripts.
    http://help.sap.com/businessobject/product_guides/sbods42/en/ds_42_tech_manuals_en.pdf#page=334
    Refer to the 3.7 Topic in the technical manual for more about scripts and its functions.
    http://help.sap.com/businessobject/product_guides/sbods42/en/ds_42_tech_manuals_en.pdf#page=1790
    Data Services Scripting:
    Data Services Scripting Language
    I hope this will help you out.
    Regards,
    Akhileshkiran.

  • What is the Best Approach to Display the Top most Accessed linksof a portal

    HI Experts,
    I have req of Displaying the Top Most accessed links of a portal in EP.
    From all the links in the portal, Need to Display the Top Ten  Most Accessed Links BY Users in an Iveiw.
    1) When the user clicks on the link, it is stored in a trace file.
    2)No of clicks in the Portal are of high Volume.25000+
    3)I have created the Java program to seggregete the data.but it uses the buffered input Output operations in the memory. it may memory problems in Production System.
    4) can we use BI method to handle the Large Amount of data??
    5) do we have any Trace File Extractor kind of Tool to seggregate the data?
    Need u r Suggestion to Which Approach i Should Take up BI or EP(Potal Components)??
    Pls Suggest u r Veiws on above Req's..
    Thank You.,
    Mahesh Narkuda

    Hi Mahesh,
    Using the Portal Activity Report (PAR) will allow you to collect the following data: visited pages and iviews and who visited those pages and iviews.
    the data will be collected and flushed to your Database.
    The PAR has it's out of the box reports that you can use for your needs.
    If you decided to use the Activity Data Collector (ADC) the data will be collected and saved to text based files on your operating system.
    The ADC doesn't have an out of the box report system but it is able to collect more types of data and it is more configurable.
    Hope this helps.
    Best Regards,
    Saar Dagan
    Edited by: Saar Dagan on Feb 27, 2012 2:16 PM

Maybe you are looking for

  • Erro: Assinatura digital NF-e: erro de aplicativo PI

    Pessoal, Estamos com problemas para assinar a NFE. Revisei todas as configurações de comunicação, bem como a de assinatura digital (key storage view / element) e está tudo ok! Está em status: 2 - Enviado ao servico de assinatura digital Status do err

  • Message not working with gtalk on Mac in office network, but Gtalk is working in the same network on Windows machine

    I was using Windows machine at my workplace (Office network), gtalk used to work absolutely fine. Now I started using, Mac everything is working fine but my Gtalk account configured in Message is not working. Gtalk is working fine as soon a connect t

  • Can I update DW Photo gallery without re-doing it?

    Hi, I'm on DW CS3 on an intel iMac. I did a regular photo gallery through DW's 'Command menu/Create Web Photo Album' function. My gallery is done etc, but I would like to update it and switch out some photos and add/delete some etc. It looks like the

  • Maximum no. of records in a webdynpro Node

    Hi experts , I wanted to know , is there any limitation on maximum no. of records a webDynpro node can store ?Also maximum no. of records a table can show. Regards, Ashish Shaa

  • SAGUI Internal Session ID

    Hello, I need to find a unique identifier for a logon from another on sapgui session level.. i tried function modules or took a glance at the C system functions i couldn't find any.. The requirement is , abap program should contact to active sapgui,