How to use functional module in crystal report

Hi all,
      I have imported my functional module to crystal report,
      but when i am previewing it  i am not getting data in that, according to my functional module.
      how to run my functional module through crystal report.
thanks in advance

Post Author: mewdied
CA Forum: .NET
'EXPORT to EMAIL        ''' Code for exporting the report to Mapi (.Net Windows application)        ''' *For a Web application you must export to disk as a PDF file first.
        crReportDocument.Load(Application.StartupPath + "\World Sales Report.rpt")        crMicrosoftMailDestinationOptions = New MicrosoftMailDestinationOptions        With crMicrosoftMailDestinationOptions            .MailCCList = "[email protected]"            .MailToList = "[email protected]"            .MailSubject = "Attached exported report"            .UserName = "admin"            .Password = "password"        End With
        crExportOptions = crReportDocument.ExportOptions        With crExportOptions            .DestinationOptions = crMicrosoftMailDestinationOptions            .ExportDestinationType = ExportDestinationType.MicrosoftMail            .ExportFormatType = ExportFormatType.PortableDocFormat        End With
        'Add some error handling        Try            crReportDocument.Export()            MsgBox("Report exported successfully.")        Catch err As Exception            MessageBox.Show(err.ToString())        End Try
Hope this helps

Similar Messages

  • Not able to Access R/3 Tables, Function Modules through Crystal Reports

    Hi Gurus,
    I am working on Crystal Reports 2008 - V12.2.0,  When I am trying to connect SAP R/3 system through the Data  connectivity SAP Table,Cluster or FM, 
    I could see only the very few tables ,  and cannot see all Tables and not any Info sets or Function Modules, 
    But, I can access BW system,  problem facing only with SAP R/3 system,
    Suggest me on this,
    Thanks
    Siva

    Hey here..,,
    There is a limitation to show all Tables, Function Modules in Crystal reports for R/3. To see them,
    In Options:
    You will see Table_Name Like%: Text box, go there and give the starting or ending characters of FM's.
    Eg: Z% or %Z
    Then Click on Ok.
    Now try to connect to R/3 again or Refresh the Connection, it will list out as you opted.
    Hope it should help you.
    Thank You!!

  • How to Use Function Module READ_TEXT

    Hi
    Anyone give me code or link or example for how to use function module READ_TEXT
    and what are the parameters which we have to pass in module.
    Regards.
    Mohsin

    Hi,
    refer the given below code.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        id                            = 'KOPF'uF0E0 these details we will get thru transaction , where we enter these details.
        language                      = 'EN'uF0E0 these details we will get thru transaction , where we enter these details.
        name                          = TNAME  "table name
        object                        = 'AUFK'    " these details we will get thru transaction , where we enter these details.
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    IMPORTING
       HEADER                        = HTEXT
      tables
        lines                          = LTEXT
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks
    Arun

  • How to use functional module " DETERMINE_DUE_DATE"

    Hi All,
    Can anyone suggest how to use functional module " DETERMINE_DUE_DATE" as it is used in an FI transaction code "FBL5N" and i have to use it in my zprogram to capture the net due date..please suggest..
    Regards,
    Shanu

    hi,
    CALL FUNCTION 'DETERMINE_DUE_DATE'
                 EXPORTING
                      I_FAEDE = LS_FAEDE
                 IMPORTING
                      E_FAEDE = LS_FAEDE
                 EXCEPTIONS
                      OTHERS  = 1

  • HOW TO USE FUNCTION MODULE IN ALV

    hi guyz
    I developed an alv report using join statements .But i got all that fields in a function module. so how can i use function module in alv .
    if i got a function module with all the fileds do i need to use select statement.
    plz help me.
    thanks
    sudheer

    Hi,
    Hope the following helps..
    1)
    LOOP AT IT_OUTPUT.
    Call the function module to get the tracking number and store the output in the
    variable V_TRACKINGNO.
      IT_OUTPUT-TRACKING_NO = V_TRACKINGNO.
      MODIFY IT_OUTPUT TRANSPORTING TRACKING_NO.
    ENDLOOP.
    2) Date conversion
    DATA: V_CHAR(10) VALUE '2006.11.17'.
    DATA: V_DATE       TYPE SYDATUM.
    CONCATENATE V_CHAR(4) V_CHAR5(2) V_CHAR8(2) INTO V_DATE.
    WRITE: V_DATE TO V_CHAR MM/DD/YYYY.
    WRITE: / 'MM/DD/YYY Format - ',  V_CHAR.
    Please make sure to reward points for helpful answers..
    Thanks,
    Naren

  • How to use function module to update data

    Hello ,
    Can any body have idea how we can use function module SAVE_TEXT to update the master recipe header and operation long text.
    I want to use this functional module to update the master recipe long text
    step by step procedure is highly appreciated
    thanks & regards
    siddhasrth

    Hi
    SAVE_TEXT
    SAVE_TEXT writes a text module back to the text file or the text memory, depending on the storage mode of the corresponding text object.
    You can use this module either to change existing texts or to create new texts. If you know for sure that the text is new, use the parameter INSERT to indicate this. The system then does not have to read the text first, which improves the performance of the function module.
    If the lines table passed with the function module is empty, the system deletes the text from the text file.
    Function call:
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING CLIENT = SY-MANDT
    HEADER = ?...
    INSERT = SPACE
    SAVEMODE_DIRECT = SPACE
    OWNER_SPECIFIED = SPACE
    IMPORTING FUNCTION =
    NEWHEADER =
    TABLES LINES = ?...
    EXCEPTIONS ID =
    LANGUAGE =
    NAME =
    check thi sample code
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
    HEADER = t_header
    SAVEMODE_DIRECT = 'X'
    * OWNER_SPECIFIED = ' '
    * LOCAL_CAT = ' '
    * IMPORTING
    * FUNCTION =
    * NEWHEADER =
    TABLES
    LINES = t_long
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    OBJECT = 4
    OTHERS = 5
    Reward all helpfull answers
    Regards
    Pavan

  • How to use function module together with tables in Crystal Report?

    Dear all expert,
    I have the following situation where I need to use a function module in my crystal report, But how can I link the FM with the tables so that I can pass out some value from the FM to the report?
    Thank You.

    Hi,
    Hope the following helps..
    1)
    LOOP AT IT_OUTPUT.
    Call the function module to get the tracking number and store the output in the
    variable V_TRACKINGNO.
      IT_OUTPUT-TRACKING_NO = V_TRACKINGNO.
      MODIFY IT_OUTPUT TRANSPORTING TRACKING_NO.
    ENDLOOP.
    2) Date conversion
    DATA: V_CHAR(10) VALUE '2006.11.17'.
    DATA: V_DATE       TYPE SYDATUM.
    CONCATENATE V_CHAR(4) V_CHAR5(2) V_CHAR8(2) INTO V_DATE.
    WRITE: V_DATE TO V_CHAR MM/DD/YYYY.
    WRITE: / 'MM/DD/YYY Format - ',  V_CHAR.
    Please make sure to reward points for helpful answers..
    Thanks,
    Naren

  • Function module in crystal reports using tables as input

    We had a function module created with a few import parameters. We successfully linked it in crystal and were able to retrieve the data.
    To accommodate the requirement of being able to pick multiple values for some of the parameters, the import parameters were changed to tables. When testing in ECC, we are able to retrieve the data using the function module.
    However, when we're using the same approach as before in crystal reports, we are not able to retrieve the data.
    Is it possible in crystal to pass the input parameters to tables ?
    Any ideas what I might be doing wrong?
    Thanks,
    Mat

    Hi John,
    The solution is very simple. 
    You create a function module in ECC (t-code SE37) that will receive you input parameters, process them, and export a table with your results.
    In the function module you define an input parameter using a CHAR120 data type (ex. PERNR).
    In the function module source code you add logic to split the input parameter
    [SPLIT i_PERNR AT ',' INTO TABLE itab_PERNRS.]
    You then create a crystal report against your function module.
    In your crystal report you create a parameter using type "string" (ex. I_PERNR).
    When you execute the crystal report, you input a comma delimited string in the parameter.
    [00001234,00005678,00009123]
    The function module will receive the string of values, split the string to an internal table, and process accordingly.
    I still have no solution for the 120 character restriction in the CR->ECC interface.  In the meantime, I get around this by creating multiple parameters (PERNR1, PERNR2, PERNR3, etc.). 
    Each parameter is set up to pass a string of 120 characters to ECC.
    The function module is set up to concatenate the parameters before splitting.
    [CONCATENATE PERNR1 PERNR2 PERNR3 into I_PERNR]
    Hope this helps.

  • How to get data from function module in crystal report

    Hi,
    I installed Crystal Reports 2008 and BO SAP Integration kit for CR.
    I connected successfully to SAP system from CR but unable to get the data into Report ...
    But data is present in function module.
    Could you please tell me what may be the reason ...!!
    Thanks
    Raghavendra

    Hi,
    I connected successfully to SAP system from CR but unable to get the data into Report with all the Input parameters and data is present in function module.
    Note: - If we take Start date as input parameter in Crystal report data is coming for single parameter, whereas we take input parameters like Partner function, Region and Customer - we are not getting data. (These fields we created parameters in Crystal report)
    In Function Module IMPORT Parameters are below mentioned and Export parameter is Blank
                                                                                    Start Date (Mandatory field)
                                                                                    Partner Function (Mandatory)
                                                                                    Region
                                                                                    Customer
    Please let us know if required any information.
    Regards,
    Raghavendra

  • How to use the DLL in crystal report (Additional applications)

    Hi,
    i have created a win32 dll, and now i want to use that dll in my crystal report how can i do so?, what i tried is i went to to Addntional functions catagory in formula workshop, and there i can see some dlls listed, similary i put my dll in the same path like "C:\Program Files\Common Files\Crystal Decisions\1.0\Bin" and other folder too. but i am not able to see that dll in "Addtional functions". can you plesase tell how can i achive this.
    Regards,
    Prabhakar J.

    Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • How to use Function module generated to update CDHDR CDPOS

    Hi,
    I have a Z-table, and I want to tracks the value changes in some fields,
    the data elements for those specific fields are marked for "Change document".
    I created a Change document object using the transaction SCDO and I got the function module.
    now can any one tell me how to use these function modules like ( what values need to be passed to function module. what value do we need to pass for   OBJECTID,..value for tables ...etc )
    I have a custom program to update/delete entries in the custom table so should I use the function module in my custom program to result an entry in CDHDR & CDPOS.
    how to display the old value and new values  for the fields specified to changes.
    Regards,
    Nagu.

    check in SE37
    RV_ORDER_FLOW_INFORMATION
    SD_SALES_DOCUMENT_READ
    SD_SALES_DOCUMENT_READ_POS
    SD_DOCUMENT_PARTNER_READ
    SD_DETERMINE_CONTRACT_TYPE
    SD_SALES_DOCUMENT_COPY
    SD_SALES_DOCUMENT_SAVE
    SD_SALES_DOCUMENT_ENQUEUE
    SD_PARTNER_READ
    RV_DELIVERY_PRINT_VIEW
    SD_PACKING_PRINT_VIEW
    SD_DELIVERY_VIEW
    RV_BILLING_PRINT_VIEW
    RV_PRICE_PRINT_HEAD
    RV_PRICE_PRINT_ITEM
    Rewards if useful...........
    Minal

  • How to use CRAXDDRT.DLL in crystal report 2008?

    Hello All,
    We have purchased Crystal report 2008 Full software.
    We need to insert BLOB field into Crystal report 2008 at runtime using *CRAXDDRT.DLL*.
    How can I insert OLE object and bind it at Runtime using crystal report 2008?
    Is it possible to insert Ole Object runtime using crystal report 2008? If yes how and if not is there alternative to perform this job.
    Please let me know your feedback.
    Thanks

    CrxDDrt.dll is only provided in order for the Crystal Reports designer in the .NET IDE.
    1) You are not licensed to use this CraxDDrt.dll
    2) Even if you were, in previous versions of CR, there were licensing implications to using the craxDDrt.dll (read $$)
    3) Once your project would be done, using CR 2008, you would not be able to distribute the runtime as there is no CR MSM or MSI that contains the craxDDrt.dll and it's supporting runtime.
    In your original post you say:
    "I need to show Word and Pdf file in to Crystal report 2008 using CRAXDDRT.DLL";
    I do not understand why you'd need to do this using the craxddrt.dll? You should be able to insert a BLOB field using the RAS SDK for .NET and CR 2008. Now, one hting you will have to keep in mind. If you insert a multipage .doc or .pdf file into the report, you will only get the first page of that document. I suggest you try this in the CR designer first. Always remember that if you can not do a certain thing in the designer, you will not be able to do it at runtime either. Giving all the limitations above, if you are still interested in doing this using RAS, let me know and I'll set you up with some resources to get you going.
    Ludek

  • How to use function module 'MC_POPUP_TO_MARK_VALUES' ?

    Hai,
    I  used   CALL FUNCTION  'MC_POPUP_TO_MARK_VALUES'   to delete duplicates in the F4 help  but    in my program ,When we press F4 help , radio buttons are appearing in the F4 help window. How to avoid that ? Or is there any other function module which will give me the same result  without radio button ?
    Plz help me out to solve this , and get rewards ..........

    See MMCP3FG0
      INCLUDE MMCP3FG0                                                   *
    FORM GET_VALUES.
    Funktionscode ist nur aktiv, wenn auch Daten besorgt werden können
    sollte später so sein! => jetzt message wenn nicht möglich
    DATA: GV_HLP_VALUES LIKE MCVALUES OCCURS 0   WITH HEADER LINE,
          GV_MRK_VALUES LIKE MCMARKED_VALUES OCCURS 0   WITH HEADER LINE,
          GV_HLP_KEYS   LIKE IKEYF    OCCURS 0   WITH HEADER LINE,
          GV_ICONTEXT   LIKE RSEU1-ICON_TEXT,
          GV_ICONINFO   LIKE RSEU1-ICON_INFO,
          GV_OFFSET      TYPE I,
          GV_MITAB_INDEX TYPE I,
          GV_POPUP_TITLE(30),
          GV_AKTION,
          GV_FLG_APPEND.
    feststehende Ausprägungen der drüberliegenden Ebenen besorgen:
      GV_HLP_KEYS[] = KEYS[].
      PERFORM FILL_KEYFELDERVALUES IN PROGRAM (PNAME)
                       TABLES GV_HLP_KEYS
                       USING  H_PLOBO.
    zuerst darf der User mal versuchen Ausprägungen vorzuschlagen:
      CALL CUSTOMER-FUNCTION '018'
           EXPORTING
                I_GSTRU                 =  TMC4-GSTRU
                I_FIELDNAME             =  PFAD_ALLG_HIER-FIELDNAME
           TABLES
                T_CHARACTERISTIC_VALUES =  GV_HLP_KEYS
                T_VALUE_TAB             =  GV_HLP_VALUES
           EXCEPTIONS
                OTHERS                  = 0.
      READ TABLE GV_HLP_VALUES INDEX 1.
      IF SY-SUBRC <> 0.
      jetzt im Standard versuchen Ausprägungen vorzuschlagen:
        CALL FUNCTION 'MC_HIERARCHIE_ANREICHERN'
             EXPORTING
                  I_GSTRU                 = TMC4-GSTRU
                  I_FIELDNAME             = PFAD_ALLG_HIER-FIELDNAME
             TABLES
                  T_MCDDOWN               = SAV_MCDDOWN
                  T_CHARACTERISTIC_VALUES = GV_HLP_KEYS
                  T_VALUE_TAB             = GV_HLP_VALUES
             EXCEPTIONS
                  OTHERS                  = 0.
        READ TABLE GV_HLP_VALUES INDEX 1.
        IF SY-SUBRC <> 0.
          MESSAGE S363.
       Es kann keine Ausprägung vorgeschlagen werden.
          EXIT.
        ENDIF.
      ENDIF.
    doppelte rausschmeißen
      PERFORM KILL_DOUBLED_ENTRIES  IN PROGRAM (PNAME)
                TABLES GV_HLP_VALUES
                USING  PFAD_ALLG_HIER-FIELDNAME.
      READ TABLE GV_HLP_VALUES INDEX 1.
      IF SY-SUBRC <> 0.
        MESSAGE S363.
    Es kann keine Ausprägung vorgeschlagen werden.
        EXIT.
      ENDIF.
    aus den vorgeschlagenen welche aussuchen lassen:
      LOOP AT GV_HLP_VALUES.
        GV_MRK_VALUES-VALUE = GV_HLP_VALUES-VALUE.
        GV_MRK_VALUES-MARKED = TRUE.
        APPEND GV_MRK_VALUES.
      ENDLOOP.
    Popuptitel setzen:
      READ TABLE GV_HLP_KEYS WITH KEY FIELDNAME = PFAD_ALLG_HIER-FIELDNAME.
      GV_POPUP_TITLE = TEXT-301.
      GV_OFFSET = STRLEN( GV_POPUP_TITLE ).
      ADD 2 TO GV_OFFSET.
      WRITE GV_HLP_KEYS-FTEXT TO GV_POPUP_TITLE+GV_OFFSET.
    Icontext setzen: (Übernehmen)
      GV_ICONTEXT   = TEXT-300.
      GV_ICONINFO   = TEXT-300.
    Popup:
      CALL FUNCTION 'MC_POPUP_TO_MARK_VALUES'
           EXPORTING
              I_MAX_MARKED_VALUES  =
                I_MIN_MARKED_VALUES  = 0
                I_POPUP_TITLE        = GV_POPUP_TITLE
              i_textline           = ' '
              I_TEXT_LENGTH        = 40
                I_ICONTEXT_FOR_ENTER = GV_ICONTEXT
                I_ICONINFO_FOR_ENTER = GV_ICONINFO
           TABLES
                T_VALUES_FOR_MARKING = GV_MRK_VALUES
           EXCEPTIONS
                CANCEL_PUSHED        = 1
                OTHERS               = 2.
      IF SY-SUBRC = 1.
      Abbrechen wurde gedrückt oder es ist nix markiert:
       EXIT.
      ENDIF.
    die markierten Ausprägungen übernehmen und zwar jeweils
    Strategie: es wird so getan als ob die Ausprägungen per Hand
               eingetragen worden sind: (siehe MODULE zeile_uebern_5510.)
    die letzte Ausprägung suchen:
      GV_MITAB_INDEX = 1.
      LOOP AT MITAB_PLOBJ WHERE PLOBU <> SPACE.
        ADD 1 TO GV_MITAB_INDEX.
      ENDLOOP.
      LOOP AT GV_MRK_VALUES WHERE MARKED = TRUE.
      1. value im generierten Coding setzen
        PERFORM SET_FIELDVALUE_IN_SXYZ IN PROGRAM (PNAME)
                      USING PFAD_ALLG_HIER-FIELDNAME
                            GV_MRK_VALUES-VALUE.
        READ TABLE MITAB_PLOBJ INDEX GV_MITAB_INDEX.
        IF SY-SUBRC <> 0.
          GV_FLG_APPEND = TRUE.
        ENDIF.
        CLEAR GV_AKTION.
        PERFORM CHECK_FIELD IN PROGRAM (PNAME)
                            TABLES KEYS
                            USING GV_MITAB_INDEX
                                  PFAD_ALLG_HIER-FIELDNAME
                                  PFAD_ALLG_HIER-KEYID
                                  H_PLOBO
                                  KZ_AKTION
                                  H_PLOBU
                                  RMCP3-HPRGR
                                  RMCP3-HWERK.
        CASE KZ_AKTION.
          WHEN 'S'.
    M-Auspraegung hat sich nicht geaendert + ist <> space.
          darf nicht vorkommen
            CONTINUE.
          WHEN 'C'.
    M-Auspraegung hat sich nicht geaendert + ist space.
          darf nicht vorkommen
            CONTINUE.
          WHEN 'D'.
    Doppeleintrag
          darf nicht vorkommen
            CONTINUE.
          WHEN 'N'.
    Neueintrag
          darum geht's
            MITAB_PLOBJ-MANDT = SY-MANDT.
            MITAB_PLOBJ-PLOBO = H_PLOBO.
            MITAB_PLOBJ-PLOBU = H_PLOBU.
            MITAB_PLOBJ-FIXKZ = KZ_FIXIERUNG.
            MITAB_PLOBJ-GSTRU = TMC4-GSTRU.
            MITAB_PLOBJ-DATUM = BISDATUM.
            MITAB_PLOBJ-PRKOF = 1.
            MITAB_PLOBJ-ANTEI = 0.
          keine Einheitenverprobung, weil nur konsistente Planung
            MODIFY MITAB_PLOBJ INDEX GV_MITAB_INDEX.
    Anfuegen Leerzeilen sowohl in MITAB_PLOBJ als auch in gener.
            PERFORM CLEAR_MERKMAL IN PROGRAM (PNAME)
                             TABLES KEYS
                             USING PFAD_ALLG_HIER-FIELDNAME
                                   PFAD_ALLG_HIER-KEYID.
            PERFORM PLUS_MITGLIEDER IN PROGRAM (PNAME) USING 1.
            CLEAR MITAB_PLOBJ.
            APPEND MITAB_PLOBJ.
            KZ_AENDERUNG_STUFE = TRUE.
            ADD 1 TO GV_MITAB_INDEX.
        ENDCASE.
      ENDLOOP.
    ENDFORM.
    FORM GET_VALUES_CHECK
           CHANGING   GV_FLG_GETV.
    eventuell Prüfungen durchführen, ob values besorgt werden können
    CHECK T445A-FLGPL = 'K'.
    GV_FLG_GETV = TRUE.
    ENDFORM.
    übergeordnetes Material der Planungshierarchie besorgen
    FORM GET_MATERIAL_OF_TREE USING GM_MATNR LIKE MARC-MATNR.
      DATA: GM_HLP_KEYS   LIKE IKEYF    OCCURS 0   WITH HEADER LINE.
      CLEAR GM_MATNR.
    feststehende Ausprägungen der darüberliegenden Ebenen besorgen:
      GM_HLP_KEYS[] = KEYS[].
      PERFORM FILL_KEYFELDERVALUES IN PROGRAM (PNAME)
                       TABLES GM_HLP_KEYS
                       USING  H_PLOBO.
      READ TABLE GM_HLP_KEYS WITH KEY KEYID = 'M'.
      IF SY-SUBRC = 0.
        GM_MATNR = GM_HLP_KEYS-VALUE.
      ENDIF.
    ENDFORM.
    übergeordnetes Clint der Planungshierarchie besorgen
    FORM GET_CLINT_OF_TREE USING GC_CLINT LIKE KLAH-CLINT.
      DATA: GC_HLP_KEYS   LIKE IKEYF    OCCURS 0   WITH HEADER LINE.
      CLEAR GC_CLINT.
    feststehende Ausprägungen der darüberliegenden Ebenen besorgen:
      GC_HLP_KEYS[] = KEYS[].
      PERFORM FILL_KEYFELDERVALUES IN PROGRAM (PNAME)
                       TABLES GC_HLP_KEYS
                       USING  H_PLOBO.
      READ TABLE GC_HLP_KEYS WITH KEY KEYID = 'C'.
      IF SY-SUBRC = 0.
        GC_CLINT = GC_HLP_KEYS-VALUE.
      ENDIF.
    ENDFORM.

  • HOW TO USE FUNCTION MODULE

    Hi friends,
      i have one function module which converts the number of Seconds into TIME format( HH:MM:SS)..
    the function module name is :MONI_TIME_CONVERT
    for this   we need to give the seconds as input..  that function module will convert those and it will give the out put..
    how can we define as variables..  and   can u  give me the  code for using this FM..
    how many variables can we decalr.. and how..?
    regards
    Babu

    Hi,
    pass the No of seconds in LD_DURATION
    and you get out put in LT_OUTPUT_DURATION in hours.
    Copy paste the program below
    <b>data: lv_in type sytabix,
          lv_out type SWL_PM_CVH-DURATION.
    lv_in = '76'. "76 seconds output should be 1 hrs 16 minutes
    CALL FUNCTION 'MONI_TIME_CONVERT'
      EXPORTING
        ld_duration              =  lv_in
    IMPORTING
       LT_OUTPUT_DURATION       = lv_out
              write lv_out.</b>rewards if useful,
    regards,
    Nazeer

  • How to use function module IBPP_CHANGE_IBASE

    Hello Experts,
    I am looking for a function module which can change ( or append components) an existing IBASE.
    I already got a function module IBPP_CHANGE_IBASE, but I am not able to use this FM,
    If anyone used this before then pls help me.
    Thanks,
    Rock
    Edited by: Rock on Mar 16, 2009 10:57 AM

    Hi,
    This link may give some IDEA how to proceed ...
    Link:[Re: Creation of IBASE (TA IB51) with ABAP;

Maybe you are looking for

  • Report without saving the records

    Hello all of you, i have a master detail block,, and i want to take a print from oracle report 6i without saving the record,, i just enter the record in the text boxes and then press the report button to generate the report i am using oracle forms an

  • Unable to create new query using query manager

    Hi friends, I have been trying to create a query using query manager for couple of hours but still not able to.I am following the instructions given in oracle Peopletools 8.52 : Peoplesoft query Chapter - creating new queries. Below are the steps I a

  • "Extraction Failed: Cannot Open Output File" error message when installing new drivers

    Hello, I'm trying to install new drivers for my HP Photosmart C4385 Printer.  I downloaded the full feature drivers for Windows XP 32-bit, and when I start to install (extract), I get the error message: Extraction Failed Cannot Open Output File And t

  • Outgoing Invoice - PLD-Docnum, Ven ref. no.

    Hi All, In PLD for Outgoing payment, need to print the relevant A/P Invoice document no.  and as well as Vendor ref. No. Could you any one please suggest how to do it and would be appreciable. Regards, Venkatesan G.

  • MM intercompany account determination

    Hallo Everybody, when purchasing (ME21N) I would like to use a different G/L account for intercompany and third party purchases without creating a separate plant or using split valuation For stock postings my FI substitution based on trading partner