PERFORM in Z Function Module

Greetings!
I'm creating a Z function module and within it I will looping through an internal table and would like to add a PERFORM routine where I pass a couple of data variables from my itab and then within the PERFORM routine take that data with some other coding/validating and fill an internal table from the main function module however when I build the PERFORM routine in the fm include it doesn't recognize my internal table.
my code looks a little like this in the fm..
loop at itab...
perform validate_data using var1 var2 va3.
endloop.
Do I need to pass the itab with a CHANGING parameter of the PERFORM call?

Hi
U can became the parameters of fm interface as global data:
In trx SM37 go to EDIT->INTERFACE->GLOBALIZE PARAMETER
else
- or u need to use an USING parameter in your FORM in order to transfer the data from z fm to form;
- or u need to use a workarea defined as global data in order to transfer the data from z fm to form.
Max

Similar Messages

  • Perform In RFC function Module

    Hi Experts,
    Can we use perform statement inside the RFC function module.
    I am working with 4.6b version.
    I am not sure about the cause of error.
    Earlier without perform it was working well.
    Now I have written perform , it is giving me error.
    What would be the cause of the error.
    Thanks In Advance
    Irfan Hussain

    Hi,
    what is the error, what it is saying. and are you sure of that.
    try to use using parameter
      PERFORM MOVE_HEADER_IN  TABLES RETURN
                              <b>USING</b> SALESDOCUMENT
                                    SALES_HEADER_IN.
    Regards
    vijay

  • The performance of  SELECT_TEXT  function module

    hi all,
    i have customize report program  when i execute it by giving the inputs in selection screen it is taking around 6 minutes to display the output list. iby using se30 and st05 i found out that
    the function module " SELECT_TEXT " is consuming more time
    below is the function module can one help me in miimizing the performance  the sy-subrc = 0 after the FM is called. but the only problem is it is fectiching 576,800 records consuming more time . can any one help me ?
    CALL FUNCTION 'SELECT_TEXT'
           EXPORTING
                client     = sy-mandt
                id         = '0001'
                language   = sy-langu
                name       = f_tdname
                object     = c_tdobject
           TABLES
                selections = tab_rbkp_text.

    If you explain further why you are that function module then we can give other options
    this is what the Function module help lists
    SAPscript: Select text
    +The SELECT_TEXT creates a table with the text headers of all text modules which correspond to the requirements specified in OBJECT, NAME, ID, and LANGUAGE. The entries in the parameters OBJECT, NAME, ID, and LANGUAGE can also be generic.+
    The search area can be limited further via the parameter TEXTMEMORY_ONLY or DATABASE_ONLY.

  • Performance testing of a functional module

    Hi
    Based on the input and corresponding expected output parameters we will test a particular functional module
    Here how to check the performance of that functional module
    Output is correct,but is there any standard specified timelimit  for the runtime , Load or it depends upon the complexity of that funct mod.
    Please provide some inputs regarding this
    Regards
    Amuthan M

    http://www.javaperformancetuning.com/tips/webservice.shtml

  • ALV code in function module

    Hi
    I have created a report and it gets displayed in ALV. My requirement was to put the whole code in a function module, including the ALV functionality...I have put the same..the problem is that I am not able to see the TOP-OF-PAGE..
    I am putting a sample code of what exactly I did in the function module..let me know what needs to be done..
    FUNCTION ZAZTEST.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(GV_REPID) TYPE  SY-REPID
    *"  TABLES
    *"      S_KUNNR STRUCTURE  JITO_KUNNR_RANGE
    perform sub_get_customers tables s_kunnr
                              changing gt_kna1.
    perform sub_prepare_fieldcatalog using :
    'KUNNR'       'Customer No'       '10'          'GT_KNA1'    space         space changing   gt_fieldcat,
        'NAME1'         'Name'       '35'           'GT_KNA1'    space         space changing   gt_fieldcat,
        'LAND1'         'Country'       '4'           'GT_KNA1'    space         space changing  gt_fieldcat,
        'ORT01'         'City'       '35'           'GT_KNA1'    space         space changing  gt_fieldcat.
    perform sub_build_alv_events changing gt_events.
    perform sub_comment_build tables s_kunnr changing gt_list_top_of_page.
    PERFORM sub_display using gv_repid gt_fieldcat   gt_events    gt_kna1.
    ENDFUNCTION.
    form sub_get_customers tables p_kunnr structure JITO_KUNNR_RANGE
    changing p_it_kna1 type tt_kna1.
    select kunnr name1 land1 ort01
    from kna1
    into table p_it_kna1
    where kunnr in p_kunnr.
    if sy-subrc eq 0.
      sort p_it_kna1 by kunnr.
    endif.
    endform.
          Prepare Field Catalog
         -->lv_F  fieldname
         -->lv_D  column Description
         -->lv_L  Output length
         -->lv_T  Tablename
         --lv_A  Reference table name
         --lv_B  Reference Field Name
    FORM sub_prepare_fieldcatalog using value(lv_f)
                                        value(lv_d)
                                      value(lv_t)
                                        value(lv_l)
                                        value(lv_a)
                                         value(lv_b)
                                         changing pt_fieldcat TYPE  slis_t_fieldcat_alv.
    DATA:  gs_fieldcat TYPE slis_fieldcat_alv.
      gs_fieldcat-fieldname = lv_f.
      gs_fieldcat-seltext_m = lv_d.
       gs_fieldcat-tabname   = lv_t.
      gs_fieldcat-outputlen = lv_l.
      gs_fieldcat-ref_tabname    = lv_a.
      gs_fieldcat-ref_fieldname = lv_b.
      APPEND gs_fieldcat TO Pt_fieldcat.
      CLEAR gs_fieldcat.
    ENDFORM.                    "sub_prepare_fieldcatalog
    *&      Form  sub_build_alv_events
    FORM sub_build_alv_events CHANGING PT_EVENTS TYPE slis_t_event.
      DATA: ls_index TYPE sy-tabix,
      GS_EVENTS TYPE  slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = Pt_events[]
        EXCEPTIONS
          list_type_wrong = 0
          OTHERS          = 0.
      READ TABLE Pt_events
            INTO gs_events
            WITH KEY name = slis_ev_top_of_page
      IF sy-subrc = 0.
        ls_index = sy-tabix.
        gs_events-form    = c_ev_top_of_page.
        MODIFY Pt_events FROM gs_events INDEX ls_index.
      ENDIF.
      CLEAR gs_events.
    ENDFORM.                    " sub_build_alv_events
    *&      Form  sub_comment_build
          text: print select options in the output
    FORM sub_comment_build tables p_kunnr structure JITO_KUNNR_RANGE
    changing gt_top_of_page type slis_t_listheader.
      DATA: ls_line TYPE slis_listheader,
            lv_Low(10) type c,
            lv_high(10) type c.
      lv_low = p_kunnr-low.
      lv_high = p_kunnr-high.
      CLEAR: ls_line.
      ls_line-typ  = 'H'.
      ls_line-info = 'Customer Details'.
      APPEND ls_line TO gt_top_of_page.
      IF NOT lv_low IS INITIAL AND NOT lv_high IS INITIAL.
        CLEAR: ls_line.
        ls_line-typ  = 'S'.
        ls_line-key  = 'Customer No'.   "TEXT DESCRIPTION
        CONCATENATE lv_low 'to' lv_high INTO ls_line-info
        SEPARATED BY space.
        APPEND ls_line TO gt_top_of_page.
    elseif  lv_low is initial and lv_high is initial.
        CLEAR: ls_line.
        ls_line-typ  = 'S'.
        ls_line-key  = 'Customer No'.
        ls_line-info = 'ALL Values'.
        APPEND ls_line TO gt_top_of_page.
      ELSEIF lv_high IS INITIAL.
        CLEAR: ls_line.
        ls_line-typ  = 'S'.
        ls_line-key  = 'Customer No'.
        ls_line-info = lv_low.
        APPEND ls_line TO gt_top_of_page.
      ENDIF.
    endform.
    form SUB_EVENT_TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = gt_list_top_of_page.
    ENDFORM.                    "sub_comment_build
    **&      Form  sub_display
        ALV Grid Display
    Form sub_display using pv_repid type sy-repid
            pt_fieldcat TYPE slis_t_fieldcat_alv
              pt_events type slis_t_event
             pt_kna1 type TT_kna1.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = pv_repid
          it_fieldcat        = Pt_fieldcat
          it_events          = Pt_events[]
        TABLES
          t_outtab           = Pt_kna1
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                                      "sub_display

    Hello shakir,
    You can refer to the code below:
    TYPE-POOLS : slis.
    * internal table declaration
    Data:i_fieldcat TYPE STANDARD TABLE OF slis_fieldcat_alv,
          top_header TYPE slis_t_listheader.  "Table to store The Values of Top-Of-Page Parameter for ALV  
    * work area declaration
    Data: wa_top_header TYPE slis_listheader,
            wa_fieldcat   TYPE slis_fieldcat_alv.
    * CONSTANTS
    CONSTANTS: c_h    TYPE slis_listheader VALUE 'H',
                         c_s    TYPE slis_listheader VALUE 'S'.
    ********* calling a subroutine to display the fields ********************
        PERFORM zalv_display.
    ********* function module to display the report in Grid format ***********
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program     = sy-repid
            i_callback_top_of_page = 'TOP_OF_PAGE'
            it_fieldcat            = i_fieldcat
          TABLES
            t_outtab               = i_final
          EXCEPTIONS
            program_error          = 1
            OTHERS                 = 2.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    *&      Form  zalv_display
    *       Subroutine To display the fields in grid format
    FORM zalv_display .
      PERFORM zalv_grid_disp USING '1'  'CHARG'      'I_FINAL'    'Shotton coil id'.
      PERFORM zalv_grid_disp USING '2'  'MATNR'      'I_FINAL'    'Material number'.
      PERFORM zalv_grid_disp USING '3'  'BESTQ'      'I_FINAL'    'Stock Status'.
      PERFORM zalv_grid_disp USING '4'  'AUFNR'      'I_FINAL'    'PROCESS ORDER NUMBER'.
      PERFORM zalv_grid_disp USING '5'  'KDAUF'      'I_FINAL'    'SALES ORDER NUM'.
      PERFORM zalv_grid_disp USING '6'  'GESME'      'I_FINAL'    'Coil Weight'.
      PERFORM zalv_grid_disp USING '7'  'WDATU'      'I_FINAL'    'Date of coil receipt'.
      PERFORM zalv_grid_disp USING '8'  'LGTYP'      'I_FINAL'    'Storage Type'.
      PERFORM zalv_grid_disp USING '9'  'LGPLA'      'I_FINAL'    'Storage Bin'.
      PERFORM zalv_grid_disp USING '10' 'COIL_STAT'  'I_FINAL'    'COIL STATUS'.
      PERFORM zalv_grid_disp USING '11' 'MAKTX'      'I_FINAL'    'MATERIAL DESP'.
    ENDFORM.                    " zalv_display
    *&      Form  zalv_grid_disp
    *       text
    *      -->P_0691   column position
    *      -->P_0692   field name
    *      -->P_0693   table name
    *      -->P_0694   field text
    FORM zalv_grid_disp  USING    value(col_pos)     TYPE n
                                  value(field_name)  TYPE c
                                  value(tab_name)    TYPE c
                                  value(sel_text)    TYPE c.
      wa_fieldcat-col_pos = col_pos.
      wa_fieldcat-fieldname = field_name.
      wa_fieldcat-tabname = tab_name.
      wa_fieldcat-seltext_l = sel_text.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR wa_fieldcat.
    ENDFORM.                    " zalv_grid_disp
    *&      Form  top_of_page
    *       module to display Header Information
    FORM top_of_page.
    ************************     HEADER     ********************************
      wa_top_header-typ = c_h.
      CONCATENATE 'CONCESSION'
                  'COIL'
                  'REPORT'
                  INTO wa_top_header-info
                  SEPARATED BY space.
      APPEND wa_top_header TO top_header.
      CLEAR wa_top_header.
      wa_top_header-typ  = c_s.
      wa_top_header-key  = 'Date:'.
      WRITE sy-datum TO wa_top_header-info.
      APPEND wa_top_header TO top_header.
      CLEAR wa_top_header.
      wa_top_header-typ  = c_s.
      wa_top_header-key  = 'User Name:'.
      WRITE sy-uname TO wa_top_header-info.
      APPEND wa_top_header TO top_header.
      CLEAR wa_top_header.
    *  wa_top_header-typ  = c_s.
    *  wa_top_header-key  = 'No.Of Records :'.
    *  WRITE sy-dbcnt TO wa_top_header-info.
    *  APPEND wa_top_header TO top_header.
    *  CLEAR wa_top_header.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = top_header.
    ENDFORM.                    "top_of_page

  • 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

  • Generic delta extraction using function module

    Hi.
    I have a generic datasource , extraction being performed by a function module. The extraction works fine in full update mode. The extract structure has a timestamp field.
    I have enabled generic delta using this field(i.e., marked this field in RSO2). I understand that with this setting, I should be able to get delta data when I do a delta request. But it does not seem to happen.
    I checked the ROOSPRMSC table for the last(local) timestamp stored there. Now when I do the delta upload I expect to see only those records which are younger than the stored timestamp of last upload.
    But I still get the entire set of records.
    Questions are :
    1. Do I need to explicitly code for fetching the delta in the extractor ?
    2. If not, what could be the reason why generic delta is not working ?
    Thanks and regards,
    Anuradha

    Hi GFV,
    I read-up all the forum entries on this topic but could not find anything specifically dealing with my problem. I have browsed through the how-to paper on generic delta as well.
    I am quite sure that we don't need any special coding in the extrator for generating delta generically. Even the how-to paper does not mention that.
    I have used the FM RSAX_BIW_GET_DATA_SIMPLE as a template
    for my extractor(as suggested by F1 help in RSO2). This FM does not even have the i_updmode flag in its interface. 
    Thus this function module always does full extraction and I expect the system to take care of delta using the timestamp field.
    Are these assumptions incorrect ?
    Regards,
    Anuradha

  • Problem while copying function modules..

    Hi,
    I am trying to copy a function module called MRM_ENTRY_ERS to Z function module.
    Now the problem is there are 6 performs inside the function module and again in those 6 performs there
    are around 10s of performs.
    So its really hectic to create includes for form-endform for all of those performs.
    Is there a way that when I copy all those form-endform without creating includes for every perform ?
    I mean is there some  easier way to do it ?
    Thanks.
    Rajesh.

    Hi,
    I think copy the total Function group MRMN of this FM (MRM_ENTRY_ERS) into new function group like ZMRMN.
    Please go to SE80, select function group, enter MRMN, press enter. Select the Function group MRMN, press the right butoon, click copy option, now you enter the new function group like ZMRMN,click copy, then after you select the copy function module(only if you need to Z fm), given the Z FM name and then press copy button, then it copies the function module successfully
    subbarao

  • Performance issue for this function-module(HR_TIM_REPORT_ABSENCE_DATA)

    Hi Friends
    I am having performance issue for this function-module(HR_TIM_REPORT_ABSENCE_DATA) and one my client got over 8 thousend employees . This function-module taking forever to read the data. is there any other function-module to read the absences data IT2001 .
    I did use like this .if i take out this F.M 'HR_TIM_REPORT_ABSENCE_DATA_INI' its not working other Function-module.please Suggest me .
    call function 'HR_TIM_REPORT_ABSENCE_DATA_INI'
    exporting "Publishing to global memory
    option_string = option_s "string of sel org fields
    trig_string = trig_s "string of req data
    alemp_flag = sw_alemp "all employee req
    infot_flag = space "split per IT neccessary
    sel_modus = sw_apa
    importing
    org_num = fdpos_lines "number of sel org fields
    tables
    fieldtab = fdtab "all org fields
    field_sel = fieldnametab_m. "sel org fields
    To Read all infotypes from Absences type.
    RP_READ_ALL_TIME_ITY PN-BEGDA PN-ENDDA.
    central function unit to provide internal tables: abse orgs empl
    call function 'HR_TIM_REPORT_ABSENCE_DATA'
    exporting
    pernr = pernr-pernr
    begda = pn-begda
    endda = pn-endda
    IMPORTING
    SUBRC = SUBRC_RTA
    tables
    absences = absences_01
    org_fields = orgs
    emp_fields = empl
    REFTAB =
    APLTAB =
    awart_sel_p = awart_s[]
    awart_sel_a = awart_s[]
    abstp_sel = abstp_s[]
    i0000 = p0000
    i0001 = p0001
    i0002 = p0002
    i0007 = p0007
    i2001 = p2001
    i2002 = p2002
    i2003 = p2003.
    Thanks & Regards
    Reddy

    guessing will not help you much, check with SE30 to get a better insight
    SE30
    The ABAP Runtime Trace (SE30) -  Quick and Easy
    what is the total time, what are the Top 10 in the hitlist.
    Siegfried

  • How to Measure Function Module Performance?

    Please can you tell me how I can measure the performance and trace the actions of a Function Module in R/3?
    The function module in R/3 is run when a user calls a WebDynpro action from a WebDynpro screen within the SAP Portal.
    I have tried running a trace on a user (ST05) but that only shows table actions (e.g. reads/fetch etc.). Also it does not appear in ST04 or ST03N. I would like to know how long the program actually takes to run.
    Thanks.
    Paul

    Hi,
    if I want to measure the runtime required to run some Abap, I use SE30. However i used it only for normal Dynpro application, not WebDynpro.
    The detail level of the created trace can be configured. The aggregation level should be set to "Full" or "By call" at the beginning. Disabling aggregation leads to huge trace files.
    You can select which statements should be traced. If you disable an option it's runtime is not lost but add to the traced action in the next level. If for example "Open SQL" is disabled, the time used by it is added into the net time of the method, function module of subroutine. Otherwise if "Open SQL" is enabled the net time of a function module does not include SQL time. SQL time is then listed separately.
    Greetings

  • Performance improvement in a function module

    Hi All,
    I am using SAP 6.0 version. I have a function module to retrive the PO's . for just 10,000 records its taking long time.
    Can any one sugguest the ways to improve the performance.
    Thanks in advance.

    Moderator message - Welcome to SCN.
    But
    Moderator message - Please see Please Read before Posting in the Performance and Tuning Forum before posting
    Just 10,000 records? The first rule in performance improvement is to reduce the amount of selected data. If you cannot do that, it's going to take time.
    I wouldn't bother with a BAPI for so many records. Write some custom code to get only the data you need.
    Tob

  • Function Module performance in Crystal Reports - Best practices

    Hi all,
    We are following a function module based approach for our crystal reporting needs. We tried to follow an infoset approach, but found that most of the critical fields required for reports were retrieved from function modules and bapis.
    Our reports contain some project filters/parameter fields based on which the task reports would be created. I was wondering what would be the best approach/best practices to be considered while designing the FM so as not to impact the crystal report performance? 
    We created a sample FM in our test system with just the table descriptions ( without the input parameters) which would retrieve all the projects and found that crystal reports crashed while trying to retrieve all the records. I am not sure if this is the right approach since this is our project in using FMs for crystal reports.
    Thank you
    Vinnie

    yes. We did try following the infoset approach against the tables however since our project reports contain long text fields and status texts ( retrieved via FMs), we opted for the FM approach. Do you know how texts can be handles from ABAP to Crystal reports?

  • ABAP Function Module to perform validation

    Hi Developers,
    I'm am trying to create a function module to be later used by a Web Dynpro application. The function module should be structured as followed:
    Importing
    USER_ID : User ID to be searched that is entered by user.
    TENANT: Tenant ID that is to be searched, also entered by user.
    Changing
    EXIST: A flag that will return the values Y or N based on a return from the function module.
    The function module must be able to access a specified Oracle database table and perform a check on the table with the provided import values. If the combination exists, it should return a Y. If the combination does not exist it should return an N. Assumption is that tenant and userid fields exist in this table in addition to two other. User ID is the primary key.
    Regards,
    JD

    Hi,
    For getting data from oracle the following threads may help you;
    Access external Oracle database with ABAP
    Accessing an external Oracle database from ABAP
    You can get more threads by [Searching|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_library&adv=true] the Forum.
    Regards
    Karthik D

  • Performance in function module interfaces

    Does anyone know if there is any significant performance difference between passing a set of export parameters back from a function module as opposed to putting the parameters in a table and passing back the table.  I am working on a function that interprets barcodes and is called thousands of times daily, so performance will be critical.

    Hi,
    Is surely just a difference between some microsecos till some millisecond depending of the application server load.
    The fastest way to do so is to use pointers (type ref to data) and changing parms.
    Example for calling the function module:
    data:
    wa_1_ref type ref to data,
    wa_2_ref type ref to data.
    get referenence of wa_1 into wa1_ref.
    get referenence of wa_2 into wa2_ref.
    call function 'example_function'
    changing
    ch_parm1 = wa1_ref
    ch_parm2 = wa2_ref.
    Then your function have to do something like that:
    Field-symbols:
    <ch_parm1> type YOUR_EXPECTED_TYPE,
    <ch_parm2> type YOUR_EXPECTED_TYPE.
    assign ch_parm1->* to <ch_parm1>.
    assign ch_parm2->* to <ch_parm2>.
    *now you can use the field symbols normally
    Doing it so, minimize the memory handling for the runtime environment.
    Regards,
    Gianpietro

  • Delivered Function Module to perform UOM conversions??

    Hi Gurus,
    Is there any SAP delivered function module that I can use to perform any UOM conversions at all. For eg, Gallons to liters etc.
    Appreciate your inputs.
    Thanks,
    Reddy

    Dinesh and Anil,
    Thanks for your inputs. I ended up using UNIT_CONVERSION_SIMPLE. It met my requirement.
    Regards,
    Reddy

Maybe you are looking for

  • Drag and drop issue, please help.

    I can no longer drag and drop photos within photoshop elements 12.  When working with a layer, I want to move it to a layer within another existing file, and no longer have the option.  The only way I have fixed the issue in the past is uninstall and

  • Ios 6 Phone app disappointment

    those guys at apple runing of ideal, now they change thing around not for good but for worst, the phone app was working perfectly for me as having of all different group of clients. now it's getting harder to manage, so complicated. is there any good

  • Plug Ins and how to ISynch cell phone?

    Just got Motorola KRZR K1m phone which I don't particularly like. I can't get the computer to see the device. Do I need to download plug in? From where? Anyone have good luck with synching any cell phone (Verizon service)? I need both addressbook & i

  • NI-scope PCI-5105 with 2 triggers

    Hello, I have a similar problem like in the post of NI-scope PCI-5124 with 2 triggers. http://forums.ni.com/t5/High-Speed-Digitizers/NI-scope-PCI-5124-with-2-triggers/m-p/1132555/highligh... I tried to use this code with my PCI-5105 NI-scope card, bu

  • Mac pro jumping pixels on cinema display

    Anyone ever seen the attached pixel issue ? I thought it was hardware but, not sure if i start Quicktime and click record screen the screen snaps back to normal and stays good for 4-5 minutes same result if i change the color calibration I hooked up