Time conversion ZVAR_UNIT with FLTP InfoObject gives an error

Hello,
Situation:
ZVGW03X is "a copy" of AFVV.VGW03 but with FLTP instead of QUAN data type:
It has to be FLTP, because we do some divisions and multiplications with the InfoObject. When doing the same calculations with Data Type QUAN we get results that are slightly wrong (because of omitted data for QUAN values (QUAN saves only 2 or 3 digits behind the comma, FLTP has many moe digits behind the comma)).
So, we have the FLTP values in the cube and we can use them in the report and also the UoM (MIN or H) is displayed correctly in the report.
The problem: Unit Conversion
tcode RSUOM -> we created the Quantity Conversion Type Z_MIN_H.
This works very well for all Time Key Figures that are QUAN.
But when I use it for the FLTP InfoObjects the report does not even get to the Variable Page:
Any idea why the TIME conversion does not work with FLTP and how I can fix that?
br
Alex

Hi Alexander,
The link below might help you:
CONVERSION OF FLOAT TO DATE IN BI
Regards,
Ashvin

Similar Messages

  • I have an iPod Classic 160GB and now it will not sync.  I have restored to factory settings multiple times.  It freezes during sync, gives -50 error code and says video is not supported on iPod.  Please help.

    I have an iPod Classic 160GB and now it will not sync.  I have restored to factory settings multiple times.  It freezes during sync, gives -50 error code and says video is not supported on iPod.  Please help.

    This is the iPod touch forum. I requested the moderators to move your post to the iPod classic forum.

  • So i made a direct download of iOS 5, then when i try to update my update my iPod with it, it gives me error 3002

    so i made a direct download of iOS 5, then when i try to update my update my iPod with it, it gives me error 3002

    Error 3002: If you experience this error while updating an iPod touch (2nd generation) or iPhone 3G, please use the standard update or restore process in iTunes (click Update or Restore).
    From:
    http://support.apple.com/kb/TS3694#error3002
    I also suspect you have a 2G iPod. Those can only go to iOS 4.2.1
    Identifying iPod models
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.

  • Time conversion from u0085.Any help on this error in the PSA?

    Hi,
    In IDES, I chose a random infosource to test init and delta loads; in the process I created an infopackage for the load. During the load, Monitor displayed showed failure (Red); The details of the message in PSA is:
    “Time conversion from 0Calday to 0FISCPER (discal year) failed with value 19911021 “
    Any guide on how to fix this problem?
    Thanks

    hi Amanda,
    0fiscper has compound infoobject 0fiscvarnt (you can check RSD1 tab 'compound').
    when uploading data, conversion will failed if 0fiscvarnt is blank/initial or the date format/value is incorret, your date from 0calday seems correct so 0fiscvarnt blank
    seems it's your case, try to check in your transfer rules and mapped 0fiscvarnt infoobject, you can fill it with constant value, choose option 'constant' and fill with K4, you can only fill with values that exist in table T009T.
    you can transfer these values from r/3 via rsa1->source system->transfer global settings, mark 'fiscal year' something and option 'update table' and execute.
    hope this helps.

  • HT3275 Time Machine won't backup and gives this error message. The backup disk image "/Volumes/Data/Walter Wood's iMac.sparsebundle" is already in use

    My time capsule stopped backing up and the following error message popped up, The backup disk image "/Volumes/Data/iMac.sparsebundle" is already in use.
    Any ideas how to troubleshoot?

    Have a look here...
    The Backup disk image ... sparsebundle ... is already in use.
    From Pondini’s excellent Information Here...
    http://pondini.org/TM/Troubleshooting.htm

  • Registering with taken username gives wrong error message.

    When you register and you select a username that is already taken, it comes back as the answer being wrong, even though the answer is correct. I just thought I should let you guys know.

    rockstarrem wrote:On the forum. And I was a little vague with the answer thing, I meant the whole find the output of date etc etc, it says that is wrong when in reality the username is actually taken.
    You're sure the answer was correct on the time you got the message, I guess. Sorry, I have to check.
    Thanks for bringing this up, we'll check it out.
    EDIT: I just tried reregistering with a taken name, and I got two error messages, the first saying my answer was wrong and the second saying the username is already registered. Was that your experience?
    Last edited by ngoonee (2012-08-29 01:29:13)

  • Bdc recording with fk01 .. gives .. error

    hi experts i m now to .. abap .. i have done .. recordin on BDC fk01..
    but .. it is not uploadin .. the the data from excel sheet .. kindly help me out in this ...
    here is the source code of it .....
    report ZBDC no standard page heading line-size 255.
    *include bdcrecx1.
    tables: bdcdata.
    types : begin of scr,
           lifnr(016),
           bukrs(004),
           ktokk(004),
           name1(035),
           sortl(010),
           stras(035),
           pfach(010),
           ORT01(035),
           land1(003),
           spras(002),
           telf1(016),
           akont(010),
           fdgrv(010),
           end of scr.
    DATA:it_xl  TYPE STANDARD TABLE OF alsmex_tabline,
         wa_xl TYPE alsmex_tabline.
    data:itab TYPE STANDARD TABLE OF scr,
         it_bdc type standard table of bdcdata with header line,
         wa_tab TYPE scr.
    DATA:it_msg  TYPE STANDARD TABLE OF bdcmsgcoll,
         wa_msg TYPE  bdcmsgcoll,
         v_str  TYPE string.
    selection-screen:begin of block b1 with frame title text-001.
    parameter:p_path type localfile.
    selection-screen:end of block b1.
    at selection-screen on value-request for p_path.
      CALL FUNCTION 'F4_FILENAME'
    EXPORTING
      PROGRAM_NAME        = SYST-CPROG
      DYNPRO_NUMBER       = SYST-DYNNR
       FIELD_NAME          = 'p_path'
       IMPORTING
         FILE_NAME           = p_path.
    start-of-selection.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME                = p_path
          I_BEGIN_COL             = 1
          I_BEGIN_ROW             = 1
          I_END_COL               = 13
          I_END_ROW               = 999
        TABLES
          INTERN                  = it_xl
        EXCEPTIONS
          INCONSISTENT_PARAMETERS = 1
          UPLOAD_OLE              = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        LOOP AT it_xl INTO wa_xl.
          CASE wa_xl-col.
            WHEN '1'.
              wa_tab-LIFNR = wa_xl-value.
            WHEN '4'.
              wa_tab-name1 = wa_xl-value.
            when '13'.
              wa_tab-akont = wa_xl-value.
              MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          endcase.
          AT END OF row.
            APPEND wa_tab  TO itab.
          ENDAT.
        endloop.
      ENDIF.
    ****START-OF-SELECTION.
    perform open_group.
      loop at itab INTO wa_tab.
        clear it_bdc.
        refresh it_bdc.
        perform bdc_dynpro      using 'SAPMF02K' '0105'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RF02K-KTOKK'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'RF02K-LIFNR'
                                        wa_tab-lifnr.           "'12'.
        perform bdc_field       using 'RF02K-BUKRS'
                                      '1000'.
        perform bdc_field       using 'RF02K-KTOKK'
                                      '0001'.
        perform bdc_dynpro      using 'SAPMF02K' '0110'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'LFA1-TELF1'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=UPDA'.
        perform bdc_field       using 'LFA1-NAME1'
                                       wa_tab-name1.     "'jasprit singh'
        "'jasprit singh'.
        perform bdc_field       using 'LFA1-SORTL'
                                      'J'.
        perform bdc_field       using 'LFA1-STRAS'
                                     'zakaria street'.
        perform bdc_field       using 'LFA1-PFACH'
                                      '700108'.
        perform bdc_field       using 'LFA1-ORT01'
                                      'kolkata'.
        perform bdc_field       using 'LFA1-LAND1'
                                      'IN'.
        perform bdc_field       using 'LFA1-SPRAS'
                                      'EN'.
        perform bdc_field       using 'LFA1-TELF1'
                                      '03325788268'.
        perform bdc_dynpro      using 'SAPMF02K' '0210'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'LFB1-FDGRV'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '=UPDA'.
        perform bdc_field       using 'LFB1-AKONT'
                                       wa_tab-akont.            "'31000'.
                                      '31000'.
        perform bdc_field       using 'LFB1-FDGRV'
                                      'A1'.
       perform bdc_transaction using 'FK01'.
       call transaction 'fk01' using it_bdc mode 'A'
       update 'S' messages INTO it_msg .
      endloop.
    perform close_group.
      LOOP AT it_msg INTO wa_msg.
        wa_msg-msgid = 'YMSG4'.
        IF wa_msg-msgnr = '349'.
          wa_msg-msgnr = '000'.
        ENDIF.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            id        = wa_msg-msgid
            lang      = sy-langu
            no        = wa_msg-msgnr
            v1        = wa_msg-msgv1
            v2        = wa_msg-msgv2
            v3        = wa_msg-msgv3
            v4        = wa_msg-msgv4
          IMPORTING
            msg       = v_str
          EXCEPTIONS
            not_found = 1
            OTHERS    = 2.
        IF sy-subrc = 0.
          WRITE:/1  v_str.
        ENDIF.
      ENDLOOP.
           Start new screen                                              *
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR it_bdc.
    BDCDATA-PROGRAM  = PROGRAM.
    BDCDATA-DYNPRO   = DYNPRO.
    BDCDATA-DYNBEGIN = 'X'.
      it_bdc-PROGRAM  = PROGRAM.
      it_bdc-DYNPRO   = DYNPRO.
      it_bdc-DYNBEGIN = 'X'.
      APPEND it_bdc.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM BDC_FIELD USING FNAM FVAL.
    IF FVAL <> NODATA.
      CLEAR it_bdc.
    BDCDATA-FNAM = FNAM.
    BDCDATA-FVAL = FVAL.
    APPEND itab.
      it_bdc-FNAM = FNAM.
      it_bdc-FVAL = FVAL.
      APPEND it_bdc.
    ENDIF.
    ENDFORM.                    "BDC_FIELD

    Hi Singh,
    I think your F4_filename function module it not triggering.
    Change your F4_FILENAME code to the below code and check
    CALL FUNCTION 'F4_FILENAME'
       EXPORTING
         program_name   = syst-cprog
         dynpro_number  = syst-dynnr
       IMPORTING
         file_name      = p_path
    And at the AT end statement clear your workarea.
    AT END OF row.
    APPEND wa_tab TO itab.
    clear: wa_tab .
    ENDAT.
    endloop.
    Cheers!!
    VEnk@

  • Synchronizing with LDIF "changetype" gives an error

    Hi,
    I've configured our system to synchronize via LDIF files. In my LDIF data file, for each user record, I include "changetype:" followed by one of "add", "modify", or "delete" for whichever action is supposed to happen for the user record we're synchronizing. The initial bootstrap worked great, however, when regular sync goes to happen, we keep getting this error:
    Error in executing mapping oracle.ldap.util.InvalidLDIFRecordException: INVALID_ATTRIBUTE_CHANGE_TYPE
    If changetype is not valid, how, during sync, can we tell oid to delete a user that no longer exists?
    Thanks,
    -mm

    I take it you are using ldapmodify?
    Remember ldapmodify is fundamentally for modifying attributes. If you are using it to try to delete an entry (rather than an attribute value) that could be your problem. To nuke an entry you can only have two LDIF statements to do so with ldapmodify; the dn and changetype. E.G.
    dn: dc=my, dc=test, dc=com
    changetype: delete
    This works because you are telling it to delete all attributes for stated dn. You may want to post a snippet of the LDIF that fails.
    regards,
    tt

  • Final Cut Pro 7 crashed and will not open (only gives unusual error)

    Final Cut Pro 7 (from Final Cut Studio 2 installation) crashed sometime yesterday at 8 and any time it was opened it oulde give an error saying that this version of Final Cut wasn't supported by G4 and needed to be upgraded to G5. This is far from true though since it's been working properly and without trouble for about 2 months.
    Also, and I'm not sure if it's related or not, but installer.app stopped working after this happened. Of course, I want to know what could have caused this to happen. Could it have been from switching any settings or working with certain HD footage?
    It's a MacBook with Snow Leapord if that helps.

    yeah, you have to be careful with your terminology, otherwise you start a firestorm.
    Given the ONLY information we get in solving issues is what people write, accurate terminology is critical to solving the problem. If people need someone to read their mind, then they should to take their problem into a repair facility where the tech people can directly deal with the machine.
    Have fun.
    x

  • I've bought the first season of Death Note on itunes, and i've was never able to download the 11th episode (Assault), it gives me error -50 each time I try. Can anyone please help me with this?

    the title pretty much has my question i guess. it's my first post so i'm not sur if you'll see all of it. I'll just copy paste it anyhow.
    i've bought the first season of Death Note on itunes, and i've was never able to download the 11th episode (Assault), it gives me error -50 each time I try. Can anyone please help me with this?

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Good night, do not know what is happening can not buy gold with my visa card for itunes gives me error, but I have money on the card, always worked but this time not accepted!!

    good night, do not know what is happening can not buy gold with my visa card for itunes gives me error, but I have money on the card, always worked but this time not accepted!!

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I have a iphone 4s and its stuck at the apple logo to comes up then fades away and every time i try to restoring with iTunes it gives me a 4013 error i changed the charging port/dock and the battery ive also used a different computer and cable

    i have a iphone 4s and its stuck at the apple logo to comes up then fades away and every time i try to restoring with iTunes it gives me a 4013 error i changed the charging port/dock and the battery ive also used a different computer and cable

    See: http://support.apple.com/kb/TS3694#USB
    However, the most likely reason is your self-repair of a device that is only factory repairable broke something. Note that Apple does not sell replacement parts, so whatever parts you used were not made by Apple's supplier and are of questionable quality.

  • Urgent : FLTP  to time conversion

    I have used the function module as C14W_NUMBER_CHAR_CONVERSION for time conversion.
    But it produces the output as follows.
    E_STRING                        86,400.000000000
    E_FLOAT                         8.6400000000000000E+04
    E_DEC                           86,400.0000
    E_DECIMALS                      15
    Here which one will have to be converted as time output.
    Regards.
    Sankar.

    I think the o/p is given in seconds ... 1 Day : 86400secs
    Use this
    E_DEC 86,400.0000

  • Can't use Final Cut Express Export Using Quick Time Conversion with iDVD.

    I am using iDVD 08v 7.0.4 and until 3 days ago I could import and create iDVD's using Final Cut Express export using Quick Time Conversion. There was an update that downloaded for iDVD. Since then, I can only use Final Cut Express Exports that is a self contained Quick Time Movie.
    I have never had this kind of apple and apple problem. I am disappointed that I'm having apple issues like this.

    Are you on latest 10.5.x release and latest FCE updates? Your info line says 10.5.1 and you didn't list FCE version. Not saying that will fix problem, but might help. You also might want to explain how you did your Quicktime conversion.

  • I am trying to map the fields in R3 system  with the infoobjects in BW.

    I am mapping the fields with in R3 with the infoobjects in BW.
    Can any please let me know the relavent mapping infoobjects and the procedure to find for the following fields.
    Description                          Type          Length
    Purchase Order     VARCHAR2     10
    PO Line Number     NUMBER     10
    Line Item Description     VARCHAR2     60
    Order Quantity          
    Unit of Measure     VARCHAR2     3
    Performance Start Date     DATE     7
    Performance End Date     DATE     7
    Order Date                           DATE      7
    PO Line Extended Amount     NUMBER     14
    PO Line Total Amount     NUMBER     14
    Project                         VARCHAR2     30
    Account ID                         VARCHAR2     15
    Cost Amount                             NUMBER      14
    Prime Contract ID     VARCHAR2     20
    Requisition ID     VARCHAR2     10
    Vendor ID                            VARCHAR2     12
    Vendor Name     VARCHAR2     25
    Entry Date/Time      DATE     7
    Address Descriptive Code     VARCHAR2     10
    Address Line 1     VARCHAR2     40
    City Name                         VARCHAR2     25
    Mail State                          VARCHAR2     15
    Postal Code                         VARCHAR2     10
    Country Code     VARCHAR2     8
    Phone Number     VARCHAR2     25
    Fax Number ID     VARCHAR2     25
    Other Phone Number ID     VARCHAR2     25

    Hi,
    You can find the fields and related infoobject for the datasource as follows
    Step1
    log on to the BW system
    Step2
    Go to SE11 ---> give the table name as RSOSFIELDMAP and execute
    Step3
    give the data source name for OLTPSOURCE field and execute
    Step4
    you will find the mapping between fields and relevent infoobjects
    Hope this helps
    Santosh

Maybe you are looking for