Conversion of Infotype into Wagetype

Dear Consultants,
I wish to print some information about employee which is stored as Infotype on the Payslip. Eg. Leaves availed in current Month, Overtime Hours in current month, Actual Basic & other WT stored in IT 0008 etc. I was suggested to convert this IT data into WT data. Then this WT data can be extracted from RT & table RT can be called in PE51. Can we convert all kinds of data in WT ?
May I know how to convert IT data into Wagetype data?
Regards
Bindumadhav

Dear Sikinder,
Thanx for your guidence. I want to print OT hours on payslip. I have added table P2010 in Form class CEDT in country grouping 99 (international). Then I added the same in country 40 (India). I added field ANZHL (number) which represent OT hours. I included this table & field in PE51. but as P2010 contains many other details like some earning in amounts, some production in units etc, I need to identify this Number as OT hours.
May I know how & where to define the Identifiers?
Regards
Bindumadhav

Similar Messages

  • Retro issue Infotype 14 wagetypes

    Hi Experts,
    Changes in Infotype 0008 wagetype is working fine and is appearing in /551 .
    Similar thing is not happening for IT0014 wagetypes. I've changed them from past date but the /551 doesn't get affected.
    Already checked the retro settings in tables V_51P6_C & V_51P6_B
    Appreciate your comments in this regard.

    Could not able to understand,
    The issue is some of the wage types in IT0014 which are changed from a past date aren't getting recalculated and arrears getting processed.
    What is aren't getting recalculated- (no calculation no arrears)
    Arrears getting processed - (calculation then only arrears comes into picture).
    Regards
    Venkatesh

  • Direct Conversion of smartform into PDF system has to take spool request ?

    does anybody know:
    Direct Conversion of smartform into PDF, system has to take spool request dynamically..
    i don't mean to use the SE38 calling PRG RSTXPDFT4 to transfer SAP sript into PDF.
    thanks
    SRIDHAR

    --strike Yes this is what I understood.
    In the structure job_output_info of your function you'll find your OTF data :
    st_ssfcrescl-otfdata --
      CALL FUNCTION smartform_fonction_name
            EXPORTING
    *     ARCHIVE_INDEX              =
    *     ARCHIVE_INDEX_TAB          =
    *     ARCHIVE_PARAMETERS         =
          control_parameters         = st_ssfctrlop
    *     MAIL_APPL_OBJ              =
    *     MAIL_RECIPIENT             =
    *     MAIL_SENDER                =
          output_options             = st_ssfcompop
          user_settings              = ' '
        IMPORTING
         document_output_info        = st_ssfcrespd
         job_output_info             = st_ssfcrescl " This is the one which contains OTF data
         job_output_options          = st_ssfcresop
        TABLES
       EXCEPTIONS
         formatting_error           = 1
         internal_error             = 2
         send_error                 = 3
         user_canceled              = 4
         OTHERS                     = 5.
    -- Then you just have to convert, using something like that : --
    * Convert OTF to PDF
      LOOP AT otf_data INTO w_otf.
        CONCATENATE w_otf-tdprintcom w_otf-tdprintpar
        INTO w_pdf.
        APPEND w_pdf TO i_content_txt.
      ENDLOOP.
      CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
        EXPORTING
          format_src      = 'OTF'
          format_dst      = 'PDF'
        CHANGING
          transfer_bin    = w_transfer_bin
          content_txt     = i_content_txt
          content_bin     = i_content_bin
          objhead         = i_objhead
          len             = v_len_in
        EXCEPTIONS
          err_conv_failed = 1
          OTHERS          = 2.
      v_size = v_len_in.
      pdf_itab_size = v_size.
      it_pdfout[] = it_pdf[].
    * Create the PDF File
      CLEAR it_pdfdata.
      REFRESH it_pdfdata.
    *  it_pdfdata[] = it_pdfout[].
      LOOP AT it_pdfout.
        MOVE it_pdfout-tline TO it_pdfdata-line.
        APPEND it_pdfdata.
        CLEAR it_pdfdata.
      ENDLOOP.
    -- The smartform creation and the PDF creation are done in the same time...--
    OK, So what do'nt you want to use the RSTXPDFT4 program ?
    Hope this helps,
    Erwan
    Edited by: Erwan LE BRUN on Aug 28, 2008 12:02 PM
    Edited by: Erwan LE BRUN on Aug 28, 2008 12:03 PM

  • Conversion of FG into Scrap

    Dear All,
    Conversion of FG into Scrap.
    one step process (mvt. type 309)
    Accounting entry   
    scrap inventory a/c dr
    gain /loss on scrapping a/c dr.
    To, FG inventory a/c cr.
    two step process
    scrapping through 551 movt type -
    gain/loss on scrapping a/c dr.
    To, FG inventory a/c cr.
    generating scrap 902 movt. type  (customized) -
    scrap inventory a/c dr
    to gain/loss on scrapping cr.
    my question is our client is following two step proces is it correct. moreover gl getting hit is price difference instead of loss on scrapping. what is the correct scenario and which movement type should be involved.
    Regards,
    Divraj

    Hi Divraj,
    We follow the first step and i personally feel that this is the best method of scrapping of Finish Good.
    As the difference between the cost of FG and Scrap is going in Gain and Loss Account. IT IS NOT A PRICE DIFFERENCE.
    Regards,
    Shayam

  • Conversion of string into XML object

    Hi
    I am having some problems with conversion of string (containing XML data) into Flex XML object and binding it later to UI elements to output/maintain this data.
    Binding of XML structure to UI elements works perfectly fine if I will do following:
    1)      Hardcode XML object within Flex file
    2)      Read xml file from repository (xml file inside the Flex project)
    3)      Use HTTP request to retrieve XML data
    Unfortunately none of the above scenarios suits my solution.
    I am developing a prototype application for processing Flex forms inside SAP system. I have decided to make data bindings using XML structure stored in Data Base. When rendering form inside web browser based application I am retrieving corresponding XML schema (empty for new forms and populated for saved forms) and pass it to Flex form as a string type import parameter. Data is being passed correctly (I can display it on TextArea control for instance) but after conversion to XML and binding to DataGrid I am not getting any results.
    I am converting string (containing XML) to XML object in following way:
    Private var xml_obj:XML = new XML(string_xml );
    I am catching any potential errors but conversion is going well. After conversion I am not getting any results after binding it to DataGrid control and I am not able to access any of the nodes using AS code either. At the same time variable xml_obj is not empty (not null).
    Any help would be much appreciated.
    Regards
    Michael

    David
    First of all sorry for not stating it clearly but I am using Flex 3 for this development (at the moment it is the only choice when embedding Flex objects inside SAP applications).
    You must have missed the bit where I am describing how this XML data finds its way inside Flex. I am passing it to Flex as String type parameter during rendering (directly from DB where it is stored).
    Now, following code works perfect (XML is embedded inside Flex project):
                    <mx:XML id="form_data" source="../assets/example_xml_data.xml"/>
                    <mx:Script>
                                    <![CDATA[
                                                    import mx.collections.XMLListCollection;
                                                    import mx.controls.Alert;
                                                    [Bindable]
                                                    public var XML_list:XMLListCollection;
                                                    private function setParameters():void
                                                                   XML_list = new XMLListCollection(form_data.*);             
                                    ]]>
                    </mx:Script>
                    <mx:DataGrid id="myDataGrid" dataProvider="{XML_list}">
                                    <mx:columns>
                                                    <mx:DataGridColumn dataField="COMMON" headerText="Popular name"/>
                                                    <mx:DataGridColumn dataField="BOTANICAL" headerText="Botanical name"/>
                                                    <mx:DataGridColumn dataField="ZONE" headerText="Zone"/>
                                                    <mx:DataGridColumn dataField="LIGHT" headerText="Light"/>                                                                                                                                               
                                                    <mx:DataGridColumn dataField="PRICE" headerText="Price"/>                                               
                                                    <mx:DataGridColumn dataField="AVAILABILITY" headerText="Availability"/>                                    
                                    </mx:columns>               
                    </mx:DataGrid>
    But following code does not work (XML passed to Flex form as String input parameter):
    import sap.FlashIsland;
    import mx.controls.Alert;
    import mx.collections.XMLListCollection;
    [Bindable]
    public var xml_data:String;
    private var form_data:XML;
    [Bindable]
    private var XML_list:XMLListCollection;
    private function initApp():void
                    FlashIsland.register(this);
    private function setParameters():void
                    try
                                    form_data=new XML(xml_data);
                    catch (error:Error)
                                    Alert.show(error.toString());
                      XML_list = new XMLListCollection(form_data.*);           
    XML string does find its way inside Flex form. I can display content of variable xml_data in TextArea and all looks fine. Conversion to XML (variable form_data) goes well (no error)
    Please helpJ
    Regards
    Michael

  • Enhanced field in Infotype into the iView - ESS

    Dear All,
         I am working in ESS and I have the following scenario. The screen "Family/Related Person"  has to shown to the endusers, for this the standard iView is available (PZ12), but the infotype 0021 (Family Member/Dependents) has been enhanced to include additional field. Here the requirement is to include the customized field into the iView.
        How can I proceed with this requirement, whether I should go for new webdynpro development or can I copy the program of standard iView into a z-progrm and include the field and necessary coding, if i go with second option is there is anywhere the dependencies will get affected while updating the Infotype 21.
        Your valuable inputs on the same pls.
    Thanks
    Gargam

    Thanks Saurabh
    I read the wiki page, its helpful and in my case I am not adding a custom field, but I want to show a field which is already present in infotype record...
    Wiki says "If you do not need to add a new custom field to the front end, but just an already existing field of the Infotype record, you do not have to do anything at this point."
    So it appears, if I change the structure and add a new field in iview that will be sufficient.Any toughts on this?
    I am going to give it a try a see if that works.
    Thanks

  • Exporting ProRes conversion of HDV into Motion 3 darkens image

    When I export an HDV clip from FCP into Motion 3, apply Optical Flow frame blending, then export to FCP as an HDV file, the brightness and saturation of the resulting QT HDV file are essentially identical to the original. But when I begin by exporting the original clip to ProRes(HQ) via QT conversion or Compressor, bring the ProRes file into Motion and afterwards export to FCP as HDV, the resulting clip is considerably darker (and maybe more saturated) than the original. In the QT conversion, I'm not applying any brightness or contrast filtering. Any clues about what I'm doing wrong?
    Alfred Guzzetti

    hi,
    why do you need to convert the codec into motion and then back again into FCP. Why not send to motion from fcp keeping the same format, and then drop thew motion file itself onto the fcp timeline and use it as a clip. ( although the need to render it everytime something moves can be a pain I know). I find that the less codec changes in a work flow the better.
    hth
    adam

  • Radial gradient corrupted during conversion from EPS10 into bigger JPEG

    I use Illustrator CS4 and Photoshop CS4 extended.
    recently came scross rasteirizing of radial gradient when convert from AI CS4 file to EPS10 file and then buyer converts it into big 4000x4000 pxls JPEG. Never experienced that before.
    It is visible only after conversion EPS into big JPEG.
    Linear gradients are all smooth after conversion but radial is corrupted.
    I clean my illustration before saving as EPS.
    When I save my illustration AICS4 as EPS10,  I check:
    -preview-transparent;
    -transparency preset : high resolution 100%,
         -convert all strokes in outline,
         -convert text in outline (if I have it in my illustration);
    -include CMYK PostScript in RGB file,
    -Compatible Gradient and Gradient Mash Printing.
    I check then EPS file for rasteirizing : window-links.
    No sign of any rasteirization. All nice and smooth.
    here, how looks corrupted radial gradient after conversion to big JPEG from small EPS10. Note, that on the bottom of image  linear gradient is almost ok.
    What I am doing wrong?
    When I upsize my AI CS4 file to 4000x4000pxls and then convert to EPS10, and then into JPEG of the same size, - Radial gradient is smoother, almost perfect. But the size of of EPS file is too big and out of acceptable limits.
    Jim

    Thank you for reply.
    Now I see that I did not explain it properly.
    Sorry for that.
    I need to provide my illustration saved as EPS10 with small Jpeg for preview via internet to the client, the way he requires to have it. I do not know why he wants it that way.
    After receiving my EPS file with small Jpeg, he is making from that EPS10 file a big JPEG for  his needs. It is what he wants.
    When he is convertin' EPS10 file into big JEPEG, radial gradient becomes corrupted.
    I followed his steps to try to undertstand what went wrong and got the same corrupted radial gradient in JPEG file, as you see on provided image.
    What I want to know is how to accomplish what he wants without loosing quality.
    Could you tell me, please, how to save illustration as EPS10 in Illustrator CS4 proper way.
    Thank you.

  • Regarding conversion of idoc into xml/edifact

    hi everyone, i am using 5.0 version and i want to know that without using subsystem can be change my idoc into xml/edifact, if yes then plz let me know procedure
    regards,
    vimarsh

    Hello Vimarsh
    Basically you have to following steps in the EDI conversion process:
    (1) Send business object (e.g. invoice) as IDoc-XML to external system
    (2) EDI converter converts IDoc-XML to EDIFACT (flat file) (e.g. Seeburger, mendelson, etc.)
    (3) Send EDI file to EDI provider (e.g. GXS, IBM-IE, Tradanet, etc.)
    In our case the EDI conversion takes place on SAP-XI (Note: the EDI converter is not part of SAP-XI but a third-party product). The EDI file is placed on a FTP server and then send via ODEX / OFTP to an EDI provider.
    Regards,
      Uwe

  • UOM Conversion from PO into SO

    Can anyone tell me how to convert the unit of measure of the material from what is coming in 850 into the uom of the sales order uom.
    thought would use a user exit and a function module Material_unit_conversion.
    but wat user exit should be used?
    Suggestions greatly appreciated.
    Michelle.

    Define the UOM conversion in Oracle.
    Also if you are in R12, then you may setup the primary and secondary UOMs at the item master level to deal with both UOM.

  • Conversations splitting msgs into 2 SMS's

    Running Symbian Anna on Nokia C7-00. Conversations is doing a weird thing where it will inconsistently breakup outgoing messages into multiple SMSes. This happens long before 140 or 160 characters is hit.
    For example, I just sent this message to Twitter (forgive the lack of context):
    "@mister_aok i have the same vague memory but haven't been able to conjure it from the net yet!"
    But Twitter received (and tweeted!) the following 2 messages:
    1. "@mister_aok i have the same vague memory but haven't been able to c"
    2. "onjure it from the net yet!"
    Obviously, this is undesirable behavior - not only because it uses up my SMSes but because it is confusing for the recipient.
    Anyone else experiencing this? Any advice?

    Try uninstalling the conversation application and conversation server from your installed application and check for software updates. If they're still available in the servers, you should get them back again. Install them and see whether the problem is corrected or not. Seems like a corrupted installation of conversations application.
    blitZkid
    Nokia C7: Running on Nokia Belle
    "If I'm helpful in anyway, a click of appreciation on the star would be nice"

  • Is Possible to Merge Some Infotypes (10 infotypes) into One Infoprovider?

    Hi All
    I'm really confused with HR Model Data Design. Right now, I need to create report like this (using Bex Analyzer)
    (PA0000,PA0001,PA0002)
    Name:
    Age:
    Job Title:
    Division:
    Section
    Date Joined (dd/mm/yyyy)
    (another infotype)
    Education
    Lever | Start Date | End Date
    Junior School | 1992 | 1998
    Middle School | 1998 | 2001
    (another infotype)
    Career History
    Prev Comp | Start Date | End Date
    PT ABC | 2002 | 2003
    PT XYZ | 2003 | 2004
    My plan, first is to combine all of them into 0EMPLOYEE (become attribute of 0EMPLOYEE).
    But this plan is fail because there was an error time overlap dependency.
    Because of this, I separate them into DSOs (one DSO for one infotype). Now one thing that I confused is how to combine them into one InfoProvider (InfoCube/Multiprovider/InfoSet), because the key (Begin Date and End Date) are not sync one another.
    The simple logic is build like this
    Employee Id | Begin Date (PA0001) | End Date (PA0001) | Begin Date (education) | End Date (education) | Begin Date (contract) | End Date (contract) but the combination will be bombastic (the performance will be drop).
    Could you anyone help me to solve this? Thank you
    Regards,
    Satria

    Hi satria
    I would try using expertroutine with ABAP code 'perform'
    here an example:
    http://abapreports.blogspot.com/2009/10/sap-programming-syntax-for-provide-in.html
    gregards
    Tom

  • Conversion of string into date????????????

    Can anyone tell how to convert a String into date??
    if the string is in the format "Thu Mar 25 17:11:34 GMT+05:30 2004"
    i have converted it. code is
    SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM d yyyy HH:mm:ss");
         dateFormat.setTimeZone(TimeZone.getTimeZone("GMT+00:00"));
    Date date = null;
    try
              //date = dateFormat.parse(new Date().toString());
              date = dateFormat.parse(dateLine);
         catch(ParseException ex)
    but i am not able to specify the year.
    so when i getYear on the new Date it return 1970.

    @duffymo, I'm pretty sure "d" is good for a two digit date, "dd" gives you zero-padding.
    The problem, presumably, is that the format string "EEE MMM d yyyy HH:mm:ss" does not match the actual format "Thu Mar 25 17:11:34 GMT+05:30 2004".
    The correct format string would be "EEE MMM d HH:mm:ss z yyyy"

  • Conversion of Date into Number of Days

    Hai All,
               Can anyone pls tell how to convert the Date format into Number of days.
    For example I have 2 dates, 25.03.2009 and 25.02.2009.
    I have to take the difference of these two dates, means its 30 days.
    Later I have to move this 30 days to a variable and display.
    Can anyone help me.

    Try these FMs.
    CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
    EXPORTING
    i_datum_bis = p_sdate
    i_datum_von = p_edate
    IMPORTING
    e_tage = l_differ
    EXCEPTIONS
    days_method_not_defined = 1
    others = 2.
    WRITE:/ l_differ.
    call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'
    exporting
    i_date_from = p_sdate
    i_date_to = p_edate
    I_FLG_SEPARATE = ' '
    IMPORTING
    E_DAYS = EDAYS
    E_MONTHS = EMONTHS
    E_YEARS = EYEARS.
    WRITE:/ No of Days ', EDAYS.
    Regards,
    Joan

  • Conversion of image into byte array

    I have a problem in converting .png image into bytestream, if anyone can help in this pls do so.....

    Hi,
    To convert an Image to bytes you can use the Image.getRGB() method.
    http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/lcdui/Image.html#getRGB(int[], int, int, int, int, int, int)
    -Henrik

Maybe you are looking for