Smartform causing dump

sir,
During debugging  for occurence of dump in smartform , i found it is happening in following code.
&W_SUB0(255)&&W_SUB256(255)&&W_SUB+512(255)&
could any one please help me to solve it.
Srinivasa Murthy

Hi Murthy,
The dump might be because the string W_SUB which you are accessing is not having so many characters.
Before displaying the sub strings
try to check if the string lenght greater that what you want. if true then pass that value to one variable and then try to print it in smart form in this format &Var1(C)&.
if suppose ur string is W_SUB = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
if strlen(W_SUB) > 10.
v_str1 = w_sub+3(6).
endif.
in the text element write &V_STR1(C)&.
hope this will solve your problem.
regards,
Tulasi.

Similar Messages

  • ERP EhP4 causing dump in MIRO posting

    We just implemented ERP EhP4 w/SAPAPPL603 and are now getting a dump when using MIRO to posting a vendor invoice against a PO. The error seems to involve new logic for multiple account assignment introduced with this EHP.  The dump is in include LMRMBWF02 of SAPLMRMBM, and indicates that data object S_MCRBPO does not contain component XHISTMA.  The lines in LMRMBWF02 are (starting at 772):
    FORM bw_read_co_history_dyn_sub  USING   event  TYPE bwmode
                                     s_index_mcrbpo TYPE eval_iv_index_key_s
                                     s_mcrbpo       TYPE mcrbitm
                            CHANGING s_mcrbco       TYPE mcrbco.
      DATA: s_ekbe LIKE ekbe,
            s_ekbz LIKE ekbz,
            s_ekbz_ma TYPE ekbz_ma,                             "MAA EhP4
            s_ekbe_ma TYPE ekbe_ma,                             "MAA EhP4
            f_arewr TYPE ekbz-arewr,                            "MAA EhP4
            f_areww TYPE ekbz-areww.                            "MAA EhP4
    CASE event.
        WHEN c_recompilation.
          IF s_mcrbco-xunpl = space.
    Not for unplanned account assignments
            IF ( s_mcrbpo-exkbe = 'X' ).
    Read PO history for goods item
              IF s_mcrbpo-xhistma = space.                      "MAA EhP4
    ...with the last line being the culprit.  The actual break in execution occurs at line 119 of SAPLMRMP, BESTELLUNG_BUCHEN where function MRM_BW_PO_HISTORY is called.
    Had some other errors where tables weren't properly activated after the EHP installation, but here most everything seems to be activated properly.  The exception is table EKBE, which activates but with warnings about missing enhancement categories of tables or includes/subtypes for four active dependent tables.  That's the only lead I've got. 
    Can't find any notes or other posts about this error, any ideas would be greatly appreciated!

    Per the recommendation I've moved this thread to the ABAP forum:
    ERP EHP4 causing dump when posting invoice in MIRO

  • Smartform preview dump when color graphics in form

    Seems I have found a SAP BUG in the smartforms Print Preview.
    A dump occurs in preview of pages beyond the first page.  The first page previews fine.  The dump occurs when you page down.  The error is an overflow because a field called stringlength2 is equal to 0 but it is used as in index for a string operation.  There should be a check for this in SAP's code before the offending line:.
    wa_otf_preview-tdprintpar+4 =          
      hexstring+stringlength(stringlength2).
    How are bugs reported to SAP if you are a developer?  Or am I doing something else wrong.  The dump does not occur if I remove the color graphic!
    Analyse erreur                                                      
    An exception occurred. This exception is dealt with in more detail be
    . The exception, which is assigned to the class 'CX_SY_RANGE_OUT_OF_B
    was neither caught nor passed along using a RAISING clause, in the procedure  "PREPARE_OTF_FOR_GUI_PREVIEWER" "(FUNCTION)" .                                                                   
    Since the caller of the procedure could not have expected this except
    to occur, the running program was terminated. The reason for the exception is: In program "SAPLSTXBW" the system tried to access field "HEXSTRING" w
    0.  Partial field access to fields with length 0 is not allowed, however.

    Hi
    U should find some notes in OSS.
    Max

  • SMARTFORM short dump

    I've made few changes to SMARTFORM in development and imported to quality.
    when I tried to display same form in quality, getting short dump with below message
    Error when importing object "T_NTOKENS"
    and the error is coming in standard FM SSF_READ_FORM at below code..
    import t_ntokens from database stxfcont(xx) id i_formname
    Please suggest me how can I fix this error.
    Thanks

    OSS note is not relevant to my issue.
    Runtime Errors         IMPORT_ALIGNMENT_MISMATCH
    Exception              CX_SY_IMPORT_MISMATCH_ERROR
    Date and Time          21.02.2012 14:12:34
    Short text
    Error when importing object "T_NTOKENS".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLSTXBX" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
    not caught in
    procedure "SSF_READ_FORM" "(FUNCTION)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    When importing object "T_NTOKENS", the structure did not match the
    structure of the target object. The error occurred in component
    no. 2.
    This may be due to one of the following reasons:
    - the structure is actually different (the next field has, for
    example, a different data type) or
    - the same sequence of components were exported and imported,
    but the fields were from other include units.
    Source Code Extract
    Line
    SourceCde
    20
    21
    data: l_stxfadm  type stxfadm.
    22
    23
    Test, ob das Formular überhaupt existiert
    24
    Lesen der Verwaltungsdaten
    25
    select single * from stxfadm into l_stxfadm
    26
    where formname = i_formname.
    27
    if sy-subrc = 0.
    28
    o_admdata = l_stxfadm.
    29
    else.
    30
    raise no_form.
    31
    endif.
    32
    33
    Lesen des Formulars gemäß der geforderten Fassung
    34
    falls die gesicherte Fassung nicht existiert, wird die aktive Fassung
    35
    gelesen
    36
    perform init_datatabs.
    37
    38
    o_active = i_active.
    39
    40
    if i_active = space.                 " gesicherte Fassung
    41
    import t_ntokens t_objt t_ltext
    42
    from database stxfconts(xx) id i_formname
    43
    ignoring conversion errors.
    44
    if sy-subrc <> 0.
    45
    select * from stxfobjt into table t_objt
    46
    where formname = i_formname.
    47
    select * from stxftxt into table t_ltext
    48
    where txtype   = c_text_form
    49
    and formname = i_formname.
    >>>>>
    import t_ntokens from database stxfcont(xx) id i_formname
    51
    ignoring conversion errors.

  • SAP Smartform Timeout Dump in Production for the invoice form

    Hi Friends,
    I am working on Invoice Smartform. It is working fine when it is having avg line items. where as in my case one invoice iss having more than 500 line items in production. For this in production it is giving timeout short dump.
    In that invoice i am displaying standard fuctionality of invoice form and at the same tim i am displaying Serial Numbers based on delivery and Open Quantity based on Order. So it will take time for back processing.
    Insted of Back ground processing is there any other possibility to solve this. If not Please give me some steps how to implement this form in background based on conditions (if it is having more than 200 line items then only i need to run in background else foreground)
    Pls give me your valuble inputs.
    Thanks,
    Srinivas.

    Hi Vipin,
    Pls provide more details like SP level , Kernel level etc.
    I can see two probable reasons:
    Incorrect installtion of GUI , pls try reinstalling the GUI and then try
    Kernel upgrade but this solely depends on the current level and defer for further investigation.
    Best Regards
    Umesh

  • Using RH_RELATION_MAINTAIN from RFC causes dumps

    Hello,
    We had a need to make the "RH_RELATION_MAINTAIN" function to be an RFC function.
    What we've done in order to do this, is to copy the code from the original function into a Z function.
    We are using the visual composer to call this function using RFC
    Most of the times, it works without a problem, but sometimes creating a relation between a person and an position causes a dump
    what we're getting is a weird system dump, that reads "CNTL_SYSTEM_ERROR".
    If the same data is run through R3 without rfc, everything works fine.
    Is there anything we can do about this?
    thanks in advance, Udi.

    im bumping this up after a week with no replies.
    sorry.

  • Why does certain warnings are causing dumps during Upgrade?

    Hi  friends ,
    During Upgrade , I made an EPC check .There I got synatx errors and warnings as well. I corrected all the syntax errors except one warning. But later the same warning caused a serious dump though it usually doesnot happen. So is it required to correct warnings resulted in EPC check ? If yes , is there any convenient way to monitor the warnings that cause suich dumps as the number of warnings exceeds  far more in  amount as compared to  syntax errors?

    Hi,
    I don't think warning might cause serious errors like errors.. Please check why you got the dump for the warning message...
    You should avoid Errors...
    Regards,
    Nagaraj

  • Color graphic in a PDF generated from a SmartForm causes error

    I have a SmartForm containing a color graphic. It works correctly,
    appears just the way it should in Print Preview, and it prints
    correctly. However, when I generate a PDF file from, Adobe Reader
    complains that the PDF file is corrupt and refuses to print it. If I
    remove the color graphic from the SmartForm and don't make any other
    changes, I get a good PDF file that can be parsed, displayed, and
    printed without any problems.
    Why is the presence of the color graphic in the SmartForm leading to a
    corrupt PDF file? Is there any workaround (short of removing the color
    graphic) that I can use to get a good PDF file?
    Here is a more detailed description of what I am doing.
    1.     Creating the color graphic
         A. I started with a color .TIF file
         B. I went to transaction SE78,
            Form Graphics -> Stored on Document Server ->
              GRAPHICS General Graphics -> BMAP Bitmap Images
         C. Clicked on the "Import" icon
         D. In the "File name" field, navigated to my .TIF file
         E. Typed the name of my graphic in the "Name" field and some
            descriptive text in the "Description" field
         F. Selected the "Color Bitmap Image" radio button
         G. Set the "Print Attributes" as follows:
            Unchecked - Resides in the Printer Memory
            Checked   - Reserve Height Automatically
            Unchecked - Compression
         H. The color graphic seems to upload correctly
         I. When I click on Print Preview, it is displayed perfectly.
         J. When I use the Search Help associated with the name field to
            find the graphic, it is shown with the name and description
            that I gave it, the Object field is displayed as "GRAPHICS",
            the ID field is displayed as "BMAP".
         K. When I select Graphic -> Graphic Information, the Resolution is
            75 DPI and the Size is 26.86 x 8.26 cm. When I use this graphic
            in the SmartForm, I will enter the resolution as 300 DPI - in
            order to get an image whose dimensions are one-quarter of these
            dimensions, but which will have a good resolution for a laser
            printer.
    2.     The use of the color graphic in the SmartForm
         A. It is a "Graphic" node which is the first node on the first
            (and only) page of the SmartForm.
            i.   The Name is the name of the graphic I created
            ii.  Object = "GRAPHICS"
            iii. ID = "BMAP"
            iv.  The "Color Bitmap Image (BCOL)" radio button is selected
            v.   The Resolution = 300 DPI
         B. The position and size are:
            i.   Left Margin = 15.00 MM
            ii.  Width = 69.00 MM
            iii. Upper margin = 15.00 MM
            iv.  Height = 21.77 MM
    3.     The process of producing the PDF file
         A. The function SSF_FUNCTION_MODULE_NAME is called to obtain the
            name of the function module associated with the SmartForm.
         B. The function module (whose name was returned by
            SSF_FUNCTION_MODULE_NAME) is called with:
            i.   CONTROL_PARAMETERS = a SSFCTRLOP structure with
                 GETOTF = 'X'
                 NO_OPEN = space
                 NO_CLOSE = space
                 NO_DIALOG = 'X'
            ii.  OUTPUT_OPTIONS = a SSFCOMOP structure with:
                 TDPRINTER = 'POST2'
                 TDDEST = space
                 TDNEWID = 'X'
                 TDIMMED = 'X'
                 TDDELETE = space
                 TDCOVER = space
                 TDCOPOES = 1
           iii. JOB_OUTPUT_INFO = a structure of type SSFCRESCL used to
                 receive the OTF file
         C. The function CONVERT_OTF is called with:
            i.   FORMAT parameter = 'PDF'
            ii.  OTF table parameter = the OTFDATA table contained within
                 the JOB_OUTPUT_INFO SSFCRESCL structure returned from the
                 SmartForm function module.
            iii. BIN_FILE parameter = an XSTRING used to receive the PDF
                 file
            iv.  BIN_FILESIZE parameter = an integer used to receive the
                 size of the PDF file.

    Hello David,
    The reason for this problem is probably related to the FlateDecode compression described  in SAP Note 843480 (PDF conversion: Compression of bitmaps and TrueType fonts).
    Try switching off the usage of FlateDecode compression again via report RSTXPDF3 as described in Note #843480.
    It is a little confusing. The option 'FLATE_COMPR_OFF' needs to be set to 'On' to turn off the FlateDecode compression.
    To set this run as follows:
       se38 -> RSTXPDF3 -> enter 'FLATE_COMPR_OFF' in the 'Name' field
             -> Select 'Change Settings' radio button
    You will get a pop-up 'Do not use flat compression'.
    Select the 'on' button.
    After this create a new PDF and check if the problem is resovled.
    Regards,
    Aidan

  • ERP EHP4 causing dump when posting invoice in MIRO

    I originally posted this in the MM forum but was advised to move it here.
    We just implemented ERP EhP4 w/SAPAPPL603 and are now getting a dump when using MIRO to posting a vendor invoice against a PO. The error seems to involve new logic for multiple account assignment introduced with this EHP. The dump is in include LMRMBWF02 of SAPLMRMBM, and indicates that data object S_MCRBPO does not contain component XHISTMA. The lines in LMRMBWF02 are (starting at 772):
    FORM bw_read_co_history_dyn_sub USING event TYPE bwmode
    s_index_mcrbpo TYPE eval_iv_index_key_s
    s_mcrbpo TYPE mcrbitm
    CHANGING s_mcrbco TYPE mcrbco.
    DATA: s_ekbe LIKE ekbe,
    s_ekbz LIKE ekbz,
    s_ekbz_ma TYPE ekbz_ma, "MAA EhP4
    s_ekbe_ma TYPE ekbe_ma, "MAA EhP4
    f_arewr TYPE ekbz-arewr, "MAA EhP4
    f_areww TYPE ekbz-areww. "MAA EhP4
    CASE event.
    WHEN c_recompilation.
    IF s_mcrbco-xunpl = space.
    Not for unplanned account assignments
    IF ( s_mcrbpo-exkbe = 'X' ).
    Read PO history for goods item
    IF s_mcrbpo-xhistma = space. "MAA EhP4
    ...with the last line being the culprit. The actual break in execution occurs at line 119 of SAPLMRMP, BESTELLUNG_BUCHEN where function MRM_BW_PO_HISTORY is called.
    Had some other errors where tables weren't properly activated after the EHP installation, but here most everything seems to be activated properly. The exception is table EKBE, which activates but with warnings about missing enhancement categories of tables or includes/subtypes for four active dependent tables. That's the only lead I've got.
    Can't find any notes or other posts about this error, any ideas would be greatly appreciated!

    Hi,
    the only thing i´ve found is this OSS Note:
    https://service.sap.com/sap/support/notes/1105679
    Best regards.

  • DateTime Field causes dump in SOAP webservice

    We're consuming a web service written in C# (.NET 4.0) which has datetime (xsd:dateTime) fields. The ABAP proxy class dumps when the service response is returned with:
    CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1SAI/TXS72F7E0958348097F34D9.Value 2011-12-15T00:00:00 is not a valid date with time in accordance with the XML format for ABAP
    Apparently SAP expects 2011-12-15T00:00:00Z but we are getting 2011-12-15T00:00:00 (without the Z). What does this mean and how can we fix it? Our .NET developer apparently has no control over the "Z" and this all seems a bit of strange reason to dump.
    Here is the partial SOAP response:
    <Expires>2011-07-18T00:00:00</Expires>
    Here is the relevant WSDL:
    <xsd:element minOccurs="0" name="expires" type="xsd:dateTime" />

    ping

  • Call customer-subscreen causes dump in one box but not in another box

    Hi guys,
    Just wondering if anyone here encountered this situation before and knows of any explanation or solution.
    There's two development boxes with a program that contains the following code/statement:
    call customer-subscreen SSCR903 including 'SAPLXXXXXX' '2000'
    SAPLXXXXXX happens to not exist in both boxes. In the first box, when execution reaches that statement above it will generate a dump saying that 'SAPLXXXXXX doesn't exist'. But in the second box, when execution reaches that statement above it won't generate a dump and execution continues to the next statement in the program.
    I checked SAP documentation on the CALL CUSTOMER-SUBSCREEN keywords, but I didn't find anything that would explain why it dumps in the first box, but not in the second one.
    Anyone encountered the same situation before? Any explanation why it's dumping in one box, but not in the other box?
    Thanks in advance for any help.
    Kind regards,
    Carl

    Welcome to sdn.
    Abap doesn't check existence of the dynpro, it only check activation of the exit in CMOD, that may explain the, difference.
    Regards,
    Raymond

  • ListBox causes dump only in MVC

    Hi,
    I have a working ListBox that is working in a "regular" BSP.
    I copied this app to an MVC type BSP and I am trying to do the same.
    The problem is that I get a dump on a listBox command.
    The dump is: ASSIGN_TYPE_CONFLICT
    "Type conflict in the ASSIGN statement in the program CL_HTMLB_LISTBOX==============CP "
    It is definitely from the listBox.
    I stripped down the code until I got the HTMLB:
                        <htmlb:listBox id                = "agg_number"
                                       table             = "//model/agg_list"
                                       nameOfKeyColumn   = "AGG_KEY"
                                       nameOfValueColumn = "NAME"
                                       multiple          = "true"
                                       size              = "12" />
    the definition is:
    agg_list TYPE TP_AGG_LIST_TBL
    the type is:
           begin of tp_agg_list,
             AGG_KEY type kunnr,
             NAME        type NAME1_GP,
             ACCOUNT type HKONT,
           end of tp_agg_list,
           tp_agg_list_tbl  type standard table of tp_agg_list,
           tp_agg_tbl       type standard table of kunnr
    I have no idea why it is dumping.
    I think that the code is right and it is working in a different app.
    Do you have any ideas?
    Thanks,
    Itay

    Hi ,
    In the list box "Selection" or "Selections" is missing .
    Without this , you cannot get the selected values.
    Please check this.
    <htmlb:listBox id = "agg_number"
               table = "//model/agg_list"
               nameOfKeyColumn = "AGG_KEY"
               nameOfValueColumn = "NAME"
               multiple = "true"
               size = "12"
               selection
               selections --- string table />
    Reward if useful.
    Regards
    Meikandan

  • ALERT Causes Dump at Login

    hi,
    When the following query is used to create and ALERT the application crashes and creates a dump at login.
    This query is used to validate the Item Revenue GL Account.(yes we have a strange arrangement).
    When the script is run it detects any setup issues with the item.
    I have tried removing nearly all returned fields and used TOP 10, to keep characters returned <4000.
    So I assume there is some problem with the table accessed and joins.
    The query runs fine in Query Generator and returns correct result with no error.
    Kind Regards and Thank for any help,
    Eric
    select distinct
    Item_Code          =     T0.ItemCode,
    Is_Inventory              =     T0.InvntItem ,
    Item_BU               =     (case when T0.U_BU = '0' then '00' else T0.U_BU  end ),
    Grp_BU               =     (case when T1.U_BU = '0' then '00' else T1.U_BU  end) ,
    SYS_BU               =     T2.Segment_1,
    Item_BU_Grp_ERROR =     case when not((case when T0.U_BU = '0' then '00' else T0.U_BU  end ) = (case when T1.U_BU         = '0' then '00' else T1.U_BU  end)) then 'ERROR' else '' end,
    Item_BU_SYS_ERROR =     case when not((case when T0.U_BU = '0' then '00' else T0.U_BU  end )  = T2.Segment_1) then 'ERROR' else '' end,
    Item_Dept          =     (case when T0.U_Dept = '0' then '00' else T0.U_Dept  end ),
    Grp_Dept          =     (case when T1.U_Dept = '0' then '00' else T1.U_Dept  end ),
    SYS_Dept          =     T2.Segment_2,
    Item_Dept_Grp_ERROR =case when not((case when T0.U_Dept = '0' then '00' else T0.U_Dept  end ) = (case when T1.U_Dept = '0' then '00' else T1.U_Dept  end )) then 'ERROR' else '' end,
    Item_Dept_SYS_ERROR =case when not((case when T0.U_Dept = '0' then '00' else T0.U_Dept  end ) = T2.Segment_2) then 'ERROR' else '' end,
    Segment_2          =     T2.Segment_2,
    Grp_Code           =     T0.ItmsGrpCod,
    Grp_Name          =     T1.ItmsGrpNam,
    GrpType                 =     T1.U_GrpType,
    GRP_Rev_acct          =     T1.RevenuesAc,
    Grp_GL_Account         =     T2.Segment_0'-'T2.Segment_1'-'T2.Segment_2,
    SYS_Acct          =     T2.Segment_0
    FROM               
    OITM          T0          
    INNER  JOIN               OITB          T1          ON T0.ItmsGrpCod = T1.ItmsGrpCod
    INNER JOIN               OACT          T2          ON T1.RevenuesAc= T2.Acctcode
    INNER JOIN               [@EVOS_GL]     T3          ON T1.U_GrpType = T3.U_Type
    and
    NOT((case when T0.U_BU = '0' then '00' else T0.U_BU  end ) =(case when T1.U_BU = '0' then '00' else T1.U_BU  end))
    OR
    NOT((case when T0.U_Dept = '0' then '00' else T0.U_Dept  end ) =(case when T1.U_Dept = '0' then '00' else T1.U_Dept  end ))
    OR
    NOT((case when T0.U_BU = '0' then '00' else T0.U_BU  end ) =T2.Segment_1)
    OR
    NOT((case when T0.U_Dept = '0' then '00' else T0.U_Dept  end ) =T2.Segment_2)
    order by  T0.Itemcode

    Please check this thread:
    Re: Alert Problem
    Thanks,
    Gordon

  • Why do smartforms take so long to activate?

    I have a moderately simple smartform.
    Page1
      about 10 nodes with a table in main, two graphics
    Next Page
    Last Page
      about 5 nodes
    It takes 5 minutes to activate!  Anyone know why or if this can be improved?  Do most smartforms take soooo long?
    Olivier

    Hi Christian,
    I am back to this again and tried your suggestions.
    Here some results:                                                                               
    Transaction     SMARTFORMS = SAP Smart Forms                       Hre     11:25:17
    Program.        SMARTFORMS                                         Date    21.03.07
    Utilis.         me                                                                               
    Temps d'exécution en microsecondes                                                                               
    ABAP                                                229369,542  =  94.3% 
          Base donn                                                13,639,079  =   5.6% 
             Système                                                  162,009  =   0.1%                                                                               
    0%                  50%                 100%   243170,630  = 100,0% 
    Sorted by net time
    Appel                                                                            Nombre         Brut =          Net Brute % Nette % Programme                        Type
    Syn-Check for IT_1392                                                                92 219,571,422  = 219,571,422    90.3    90.3  SAPLSTXB                             
    Delete Report /1BCDWB/SAPLSF00000352                                                  2  13,263,825  =  13,263,825     5.5     5.5  SAPLSEU2                         BD  
    Call M. CL_OO_INCLUDE_NAMING=>IF_OO_CLASS_INCL_NAMING~GET_MTDNAME_BY_INCLUDE        327   3,169,406      3,167,799     1.3     1.3  SAPLSEQ0                             
    Rfc OLE_FLUSH_CALL                                                                    5   1,205,226      1,101,795     0.5     0.5  SAPLOLEA                             
    Call Func. DDIF_FIELDINFO_GET                                                        80     991,196        749,508     0.4     0.3  SAPLSEUH                             
    Perform SAVE_LTEXT                                                                    1     547,623        546,661     0.2     0.2  SAPLSTXBX                            
    Call Func. SSF_SAVE_FORM                                                              1     826,579        225,804     0.3     0.1  CL_SSF_FB_SMART_FORM==========CP     
    Perform READ_PATTERN_INFO                                                           702     197,357        188,678     0.1     0.1  RSAQGENI                             
    Perform PH_CHECK_LIKEFIELD                                                           80   1,180,960        188,278     0.5     0.1  SAPLSEUH                             
    Perform SEARCH_COMPONENT                                                          5,526     220,487        138,244     0.1     0.1  SAPLSTXBX                            
    Read Table IT_127                                                                31,764     123,548  =     123,548     0.1     0.1  SAPLSTXBX                            
    Wait for RFC                                                                          5     103,431  =     103,431     0.0     0.0  SAPLOLEA                             
    Perform X031L_TO_DFIES                                                            3,743      84,192  =      84,192     0.0     0.0  SAPLSDIFRUNTIME                      
    Call GET_PREDEF_TYPES                                                                80      78,732  =      78,732     0.0     0.0  SAPLSANA                             
    Insert Report /1BCDWB/LSF00000352F01                                                  2      73,794  =      73,794     0.0     0.0  SAPLSTXB                         BD  
    Perform FILL_DATA                                                                 4,879     115,674         62,858     0.0     0.0  SAPLSTXB                             
    Append IT_1392                                                                   27,523      59,483  =      59,483     0.0     0.0  SAPLSTXB                             
    Load Report SAPLSTXB                                                                  1      59,404  =      59,404     0.0     0.0  SAPMSSFO                         Syst
    Perform READ_DATE_ITEM                                                            5,526     352,214         46,880     0.1     0.0  SAPLSTXBX                            
    Call Func. RS_GET_ALL_INCLUDES                                                        1   3,329,654         44,950     1.4     0.0  SAPLSEU2                             
    Loop at IT_128                                                                    1,152     215,528         44,292     0.1     0.0  SAPLSTXBX                            
    Call Func. SSF_READ_STYLE                                                            52      49,831         41,939     0.0     0.0  SAPLSTXB                             
    Call Func. RS_PROGNAME_SPLIT                                                        388   3,274,751         41,927     1.3     0.0  SAPLSEDA                             
    Perform PROGRAM_ACTUALIZE                                                             1     143,534         38,659     0.1     0.0  SAPLSEWB                             
    Perform %EXPAND_LINE                                                              2,276      70,901         38,159     0.0     0.0  SAPLSTXB                             
    Call Func. SSF_READ_STYLE                                                             8      74,181         37,377     0.0     0.0  SAPLSTXBR                            
    Insert Report /1BCDWB/LSF00000352U01                                                  1      36,686  =      36,686     0.0     0.0  SAPLSTXB                         BD  
    Perform WRITE_DATE_ITEM                                                           5,516     145,033         35,554     0.1     0.0  SAPLSTXBX                            
    Call M. CL_WB_CROSSREFERENCE=>PROGRAM_INDEX                                           1      68,086         34,202     0.0     0.0  SAPLSEWB                             
    Commit Work                                                                           1      34,013  =      34,013     0.0     0.0  SAPLSTXB                         BD  
    Perform CREATE_LINK                                                               1,138      49,717         33,663     0.0     0.0  SAPLSTXBX                            
    Perform READ_NAME                                                                 5,473      39,338         32,215     0.0     0.0  SAPLSTXBX                            
    Call Func. SSF_READ_DATE                                                          1,189     197,188         31,845     0.1     0.0  CL_SSF_FB_OUTATTR=============CP     
    Perform COMPUTE_VARIANT_TABLES                                                        1     219,868         31,818     0.1     0.0  SAPLSTXB                             
    Perform PA_INSERT_PARAMETER                                                           1      31,903         31,480     0.0     0.0  SAPMS38L                             
    Call Func. FUNCTION_POOL_CREATE                                                       1     282,273         30,834     0.1     0.0  SAPLSTXB                             
    Delete Report /1BCDWB/LSF00000352U01                                                  2      30,689  =      30,689     0.0     0.0  SAPMS38L                         BD  
    Call Func. SSF_SAVE_DATE                                                          1,189      85,133         30,400     0.0     0.0  CL_SSF_FB_OUTATTR=============CP     
    Read Table IT_65                                                                    779      29,498  =      29,498     0.0     0.0  SAPLSTXBX                            
    Insert Report /1BCDWB/LSF00000352UXX                                                  4      29,417  =      29,417     0.0     0.0  SAPMS38L                         BD  
    Call Func. DDIF_NAMETAB_GET                                                          82     170,196         28,876     0.1     0.0  SAPLSDIFRUNTIME                      
    Perform(Ext) IMPORT                                                                   1      28,703  =      28,703     0.0     0.0  SAPLSTXB                             
    Call Screen 0100                                                                      1 241,283,125         28,647    99.2     0.0  SAPLSTXB                             
    Perform(Ext) FU_DELETE_FUNCTION                                                       1     174,742         28,181     0.1     0.0  SAPLSUNI                             
    Perform ED_INSERT_TRDIR                                                               6      27,950  =      27,950     0.0     0.0  SAPMS38L                             
    Sorted by Brut time
    Appel                                                                            Nombre         Brut =          Net Brute % Nette % Programme
    Runtime analysis                                                                      1 243,170,630              0   100.0     0.0          
    Call Transaction SMARTFORMS                                                           1 243,170,514          4,168   100.0     0.0  SAPMS38T
    Program SAPMSSFO                                                                      1 243,159,635         24,524   100.0     0.0          
    Perform USER_COMMAND_0100                                                             2 241,999,441          1,920    99.5     0.0  SAPMSSFO
    Call Func. FB_CHANGE_FORM                                                             1 241,938,100            442    99.5     0.0  SAPMSSFO
    Perform FORM_BUILDER_CALL                                                             1 241,300,250             46    99.2     0.0  SAPLSTXB
    Call Screen 0100                                                                      1 241,283,125         28,647    99.2     0.0  SAPLSTXB
    Perform FCODE_0100                                                                    2 241,007,900            453    99.1     0.0  SAPLSTXB
    Perform SF_ACTIVATE                                                                   1 240,981,405             78    99.1     0.0  SAPLSTXB
    Perform SF_GLOBAL_CHECK                                                               1 221,721,573          4,918    91.2     0.0  SAPLSTXB
    Syn-Check for IT_1392                                                                92 219,571,422  = 219,571,422    90.3    90.3  SAPLSTXB
    Perform CHECK_ABAP_PARAMS_CODING                                                     44 171,465,741         11,500    70.5     0.0  SAPLSTXB
    Loop at IT_2081                                                                       1 123,788,890            591    50.9     0.0  SAPLSTXB
    Perform CHECK_NODE                                                                   59 123,787,517          2,817    50.9     0.0  SAPLSTXB
    Perform CHECK_TEXT_ANYTYPE                                                           22  96,261,997          2,066    39.6     0.0  SAPLSTXB
    Perform CHECK_NODE_TEXT                                                              18  82,612,118            483    34.0     0.0  SAPLSTXB
    Loop at IT_758                                                                        8  73,753,377            131    30.3     0.0  SAPLSTXB
    Perform CHECK_NODE_SECTION                                                           18  73,712,684          1,464    30.3     0.0  SAPLSTXB
    Loop at IT_411                                                                        9  71,481,557            256    29.4     0.0  SAPLSTXB
    Loop at IT_541                                                                        9  71,477,841            193    29.4     0.0  SAPLSTXB
    Perform CHECK_NODE_EVENT                                                              3  71,443,749            137    29.4     0.0  SAPLSTXB
    Perform NODE_NAVIGATE                                                                 7  71,443,703            115    29.4     0.0  SAPLSTXB
    Loop at IT_984                                                                        1  61,012,940          5,524    25.1     0.0  SAPLSTXB
    Loop at IT_609                                                                        9  38,831,708            292    16.0     0.0  SAPLSTXB
    Perform CHECK_ABAP_CONDITIONS                                                        11  36,297,118          1,052    14.9     0.0  SAPLSTXB
    Loop at IT_443                                                                        9  27,983,971            215    11.5     0.0  SAPLSTXB
    Perform CHECK_TEXT_SYMBOLS                                                           11  26,930,225            759    11.1     0.0  SAPLSTXB
    Perform CHECK_ABAP_PARAMS                                                            11  26,915,720            784    11.1     0.0  SAPLSTXB
    Loop at IT_481                                                                        9  25,612,827            420    10.5     0.0  SAPLSTXB
    Perform CHECK_ABAP_GLOBALS                                                            5  22,989,241            468     9.5     0.0  SAPLSTXB
    Loop at IT_715                                                                        9  18,424,132            264     7.6     0.0  SAPLSTXB
    Perform GENERATE                                                                      1  18,118,233             66     7.5     0.0  SAPLSTXB
    Perform GENERATE_FUNCTION_POOL                                                        1  17,889,819          1,063     7.4     0.0  SAPLSTXB
    Perform DELETE_FUNCTION_POOL                                                          1  16,944,972            708     7.0     0.0  SAPLSTXB
    Call Func. FUNCTION_POOL_DELETE                                                       1  16,755,712          3,082     6.9     0.0  SAPLSTXB
    Perform DELETE_FUNCTION_POOL_INCLUDES                                                 1  16,752,580          1,571     6.9     0.0  SAPLSUNI
    Call Func. RS_DELETE_PROGRAM                                                          1  16,726,224            311     6.9     0.0  SAPLSUNI
    Perform CHECK_NODE_GRAPHIC                                                            4  13,650,621            142     5.6     0.0  SAPLSTXB
    Perform DELETE_PROGRAM                                                                1  13,293,608          1,683     5.5     0.0  SAPLSEU2
    Delete Report /1BCDWB/SAPLSF00000352                                                  2  13,263,825  =  13,263,825     5.5     5.5  SAPLSEU2
    Loop at IT_696                                                                        9   9,293,278            215     3.8     0.0  SAPLSTXB
    Loop at IT_633                                                                        9   6,825,879            159     2.8     0.0  SAPLSTXB
    Loop at IT_577                                                                        9   6,797,319            223     2.8     0.0  SAPLSTXB
    Loop at IT_512                                                                        9   5,101,294            110     2.1     0.0  SAPLSTXB
    Perform CHECK_GRAPHIC                                                                 2   4,941,119            178     2.0     0.0  SAPLSTXB
    I hope this helps some.  I did not notice any new buttons appearing but there are a number of IT's now listed in the results.
    If you do post a change request.  Here are some other bugs and anoyances that I would like to see addressed:
    Other problems with smart forms
    1. Global Definitions - Initialization section
       - no clean way to add and remove parameters.  Gaps seem to cause no problems.  Some add/remove buttons like on the Global Data section would be nice.
    2. Print preview problems
      - bug with color graphics:  See my Thread: smartform preview dump when color graphics in form - crash on page down if color graphics in form.
      - Loop texts do not line up vertically in the preview - looks ragged on left.  Printing seeems fine though.
    3. Double click on compile errors does nothing - even worse it sometimes puts line breaks in odd places in your initialization code.
    4. Cannot copy windows from one smartform to another
    Best regards,
    Olivier

  • Job SWWDHEX getting cancelled - Report RSWWDHEX giving dump

    Hi Everyone,
    All instances of the Job SWWDHEX are being shown as cancelled in the background job log (SM37). On checking the job log, I found that the report RSWWDHEX is causing dump in the system. The job log shows:
    Job started
    Step 001 started (program RSWWDHEX, variant &0000000000001, user ID WF-BATCH)
    ABAP/4 processor: OBJECTS_OBJREF_NOT_ASSIGNED
    Job cancelled
    On checking ST22 for the runtime error-
    Error analysis
    An exception occurred that is explained in detail below. The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not caught in procedure "IF_SWF_WFM_COMPONENT~RAISE_EXCEPTION" "(METHOD)", nor was it propagated by a RAISING clause.
    The dump started happening yesterday onwards. We can't figure out what happened that started this. I tried to find some relevant notes & solutions, but was unable to find anything useful.
    Any suggestions or ideas would be very appreciated. Thanks.

    Hello,
    Check if WF-BATCH is okay, ie password not changed and password not expired and it still has its roles.
    regards
    Rick Bakker
    Hanabi Technology

Maybe you are looking for

  • Not able to get the database data into the Tree Control

    Hi Everybody,                     I have to populate the tree control with nodes and items, which is to be populated from the database, and the tree control is <b>dynamic</b>. I mean, there is a <b>toolbar</b>, whenever a <b>pushbutton is clicked</b>

  • Don't have original songs and need to do a system restore

    When I add music to my iTunes library I make sure it gets added to iTunes match and delete the original files. Now I have to do a system restore on the computer that iTunes match originates on. I don't want to lose everything since I no longer have t

  • Why does backbean's method be invoked when page navigation to other page

    Hi, All Why does backbean's method getBeans() be invoked when current page(list.jsp) navigation to other page(edit.jsp)? //client list.jsp <h:dataTable id="items" value="#{userDelegate.beans}" var="user" rowClasses="oddRow, evenRow" headerClass="tabl

  • Help with setting up a basic mail server for Notes sync

    Hello, I have managed to setup a CalDAV and CardDAV server for local syncing of my iOS devices with Mavericks via Mavericks Server. I wish to also sync notes. I understand a mail server is required and I have been trying to set one up solely for note

  • A3 color printer with scanner price

    I want to buy A3 color printer with scanner.so plz send details a list of printer with price.