Variables in screen painter

Hi. I'm creating a SCREEN in screenpainter. I'm painting a Input/Output Field ang give it's name: EKKO-LIFNR. When I launch screen it works correctly (the corresponding records from DB appears after click on the field). But when I choose some value, how to refer to it in the code later? Greetings. P.

The steps I take when adding a field like this to a dynpro are:
1. Add the field and call it EKKO-EKORG.
2. When the popup asks you "The new name EKKO-EKORG is a field name from the ABAP Dictionary. / Do you want the screen element to refer to the Dictionary", confirm "Yes", and also "Yes" to "Dictionary field EKKO-EKORG / Do you want to copy field from Dictionary all attributes?"... this will bring through all the attributes such as conversion exits and parameter IDs.
3. Rename the field to the name you have defined in your code... typically in my programs this would be something like "GS_0200-EKORG" as I like to set up a structure for all fields on a screen (as it makes it quick to clear them, and document their use)... see step 5 below.
4. Change the settings on the "Poss. entries" if you want to force the Searchhelp icon to be forced on or off.
5. In the top include for the module pool define the variable e.g.
data:
  begin of gs_0200,   "named because g=Global, s=Structure, Dynpro = 0200
    ekorg                  like ekko-ekorg,
    field2                 like something-else, "etc etc
  end of gs_0200.
6. In your code you can refer to gs_0200-ekorg to pick up the value entered, or the value chosen from the picklist.

Similar Messages

  • Unwanted Extra Zeros in Output - Screen Painter Variable Field

    I made this program to leanr screen painting which is a calculator. It all works fine but any calculation I do has extra zeros I don't want for example,
    If I do 3.5 divide by 0.5 it shold give me an answer of 7.00 but it appears like 00000000007.00 and I can't figure out why. My fields for this output and the input are set to DEC - Decimal type.in the screen painter. My variables are specified to two decimals. So whats with these extra zeros?
    Thanks in Advance.  

    Hi James,
    In the fields attributes, tab program, have a look if "Leading zeroes" checkbox is checked. It should not be.
    Regards,
    Custodio

  • How to create a drop down box and text box in screen painter?

    Hi i am totally new to this concept of screen painter..please can any tell me
    how to create drop down box in screen painter?
    How to create or display default date and time values?
    How to create text box for giving comments?
    How to store the records that we are entering in a table?
    Please can any one send me the procedure for creating all these its very urgent useful information will be surely rewarded.

    Hi,
    Check all these.
    1.how to create drop down box in screen painter?
    To get Drop Drown Box on screen .
    Follow these steps.
    1.
    Go to T.Code SE51 and Select Laypout for the Screen.
    2.
    Double click on the field for which u want Dropdown box.
    3.
    Then U will see Name ,Text ,DROPDOWN.Click on that and select List Box or ListBox with key . Better to to select first one.
    4.
    Save and Activate ur screen .
    5.
    Enter the following piece of code in the PBO of the screen.(Change for ur requirement).
    6.
    The following code should be written under PROCESS BEFORE EVENT in the MODULE.
    TYPE-POOLS :vrm.
    DATA:
      i_natio TYPE vrm_values, "-->Table that is passed through FM vrm_set_values
      w_natio LIKE LINE OF i_natio.
    DATA:
    BEGIN OF i_t005t OCCURS 0,
        land1 TYPE t005t-land1,
        natio TYPE t005t-natio,
    END OF i_t005t.
    IF i_t005t[] IS INITIAL.
      SELECT land1 natio
         FROM t005t
           INTO TABLE i_t005t
       WHERE spras = sy-langu.
      IF sy-subrc = 0.
      LOOP AT i_t005t .
          w_natio-key = i_t005t-land1.
          w_natio-text = i_t005t-natio.
          APPEND w_natio TO i_natio.
          CLEAR w_natio.
      ENDLOOP.
      ENDIF.
    ENDIF.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
                          id = 'I_IT0002-NATIO' "-->Field for which dropdown is needed.
                    values = i_natio
    EXCEPTIONS
       id_illegal_name = 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.
    2.1.How to create or display default date and time values?
    1.
    create input field for DATE and TIME on screen.ex. DATE1 and TIME1 are screen field names .
    2.
    Just assign SY-DATUM to DATE1 and SY-UZEIT to TIME1 under PROCESS BEFORE EVENT.
    3.How to create text box for giving comments?
    1.
    Define one variable in the TOP include with type STRING means Global variable.
    2.
    Create one input field by giving screen field name which u have defined in the above step.
    4.How to store the records that we are entering in a table?
    For this case.. Create one table control. you can select one record and create record in the Z table by pressing button on Application toolbar..
    Check the following steps to handle Table control.
    1).
    U should take one variable in your internal table or in structure which
    is used for table control fields
    ex :
    data :
    begin of itab occurs 0 ,
        mark type c , "This is to select the record.
        matnr like mara-matnr ,
        matkl like mara-matkl,
        maktx like makt-maktx,
    end of itab .
    Controls: TABC types TABLEVIEW using screen 100.
    2).
    This mark variable should be given in Table control properties.
    follow the path
    double click on the table control-->attributes .->select
    w/SelColumn and in that itab-mark. Check in the figure.
    [Table control properties screen|http://bp2.blogger.com/_O5f8iAlgdNQ/R99gOUH8CXI/AAAAAAAAA9I/d3gOum1fJ6s/s1600-h/pic28145-796618.jpg]
    3).
    After that. Take this example.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    LOOP AT ITAB WITH CONTROL tabc
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE CANCEL AT EXIT-COMMAND.
    LOOP AT ITAB.
       Module read_table_control.
    ENDLOOP.
    module user_command_0100.
    In this Module read_table_control, You should write the following code
    MODULE read_table_control INPUT.
    MODIFY itab INDEX tabc-current_line."( This will update the
    "ITAB table MARK field with 'X ' whatever we have selected
    "on table control.)
    ENDMODULE.
    4)
    If you want to Delete some of the records from Table control
    follow this code …Create one pushbutton and give Fucnction code to that
    and write below code
    CASE OKCODE.
    WHEN 'CREATE'.
    LOOP AT itab WHERE mark = 'X'.
    "Use UPDATE statement to create new record.
    ENDLOOP.
    ENDCASE.
    I hope that you will get something.
    Regards,
    Venkat.O

  • How to insert tabstrip control in module pool screen painter

    Hi all!
    plz tell e how to use tabstrip control in module pool screen painter.Also plz give me an example program using tabstrip control.

    To insert tabstrip just open layout of screen and press on the tabstrip button there .
    Use this souce code further to activate it .
    CONTROLS tabstrip TYPE TABSTRIP.
    DATA: okcode TYPE sy-ucomm,
    dynnr TYPE sy-dynnr,
    flag type flag,
    active like tabstrip-activetab .
    call SCREEN 100.
    *& Module USER_COMMAND_0100 INPUT
    text
    MODULE USER_COMMAND_0100 INPUT.
    data: lv_okcode type syucomm.
    lv_okcode = okcode.
    clear okcode.
    case lv_okcode.
    WHEN 'TAB1'.
    dynnr = '0110'.
    WHEN 'TAB2'.
    dynnr = '0120'.
    WHEN 'TAB3'.
    dynnr = '0130'.
    WHEN 'TAB4'.
    dynnr = '0140'.
    WHEN 'TAB5'.
    "check authorization, if authorization fails
    flag = 'X'. "set the global flag
    active = 'TAB1'. "store active tab in global variable
    dynnr = '0110'. "set the screen number
    WHEN 'BACK' or 'EXIT'.
    leave program.
    ENDCASE.
    IF lv_okcode(3) = 'TAB'.
    tabstrip-activetab = lv_okcode.
    ENDIF.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *& Module STATUS_0100 OUTPUT
    text
    MODULE STATUS_0100 OUTPUT.
    SET PF-STATUS 'MAIN'.
    SET TITLEBAR 'xxx'.
    IF tabstrip-activetab IS INITIAL OR
    dynnr IS INITIAL.
    tabstrip-activetab = 'TAB1'.
    dynnr = '0110'.
    ENDIF.
    "set the activetab explicilty here
    if flag eq 'X'. "from authorization failure
    tabstrip-activetab = active. "'TAB1'
    clear flag.
    endif.
    ENDMODULE. " STATUS_0100 OUTPUT

  • How to read the contents of Input Field created via Screen Painter?

    Hi All,
    I have a module program / dialog program, on my second screen, I created an input/outbox field via screen painter of course,
    now in my PAI, how can I read the contents of the input/outbox field?
    Let's say the name of my input/outbox field is: P_WEKRS.  Note: Get Parameter and Set Parameter is ticked.
    PROCESS AFTER INPUT.
      LOOP WITH CONTROL TC_DATA.
        MODULE MODIFY_DATA.
      ENDLOOP.
    I want to get the value of the input/outbox field before my loop in table control?  I thought that it will work like normal parameter in non-dialog programs.
    Any helpful inputs will be appreciated/rewarded.
    Thanks.
    Jaime

    Hi, Jaime
    Do the following Change in you Follow Logic
    PROCESS AFTER INPUT.
    MODULE read_or_change_value. " Add this
    LOOP WITH CONTROL TC_DATA.
      MODULE MODIFY_DATA.
    ENDLOOP.
    Add the Bellow Module code in you Driver Program.
    MODULE read_or_change_value.
    DATA: P_WEKRS like " the Field on Screen. Must be the same name as on SCREEN. and Type must be same too.
    " Here you will find the Value in that Variable or if you will change the Value here you will find it change on Screen
    END MODULE.
    Please Reply if any Issue..
    Best Regards,
    Faisal

  • How to use Value Variable in Report Painter Column defined as Formula

    Hi Gurus,
    In report painter, how can I add one field (exchange rate) in selection screen, so that user can provide the exchange rate to be used, then execute the report, the exchange rate will used to multiple local currency amount.
    The reason for this is we want use provided exchange rate to convert the amount from once currency to the other currency.
    Alternatively I am studying the functionality of "Value Variable" and found that I can perform the task from this. I have created the value variable but when I am using the variable in Report Painter columns as "&ZVALVAR", system is giving me error. I read the help and it states that use the variable with "&" and do it as it is mentioned.
    Can anybody suggest what I need to do to make it workable.
    Thanks

    I did try using the presentation variable, but that does not work too. I am setting session variable in the dashboard prompt (select 'request variable'). When I use presentation variable, it hard codes the value of the variable name.
    sql is
    select date from work_order where facility = @{p_facility}
    the physical log sql is
    select date from work_order where facility = 'p_facility'

  • Regarding the flow logic in screen painter

    Hi Experts
    I am a BW guy and i am new to ABAP and i need your help to solve my problem.
    I have created a table for master data(zemp_data) in R/3 se11..which has fields like zempid,zempname,zmgrid,zdeptid,zdeptname and i have created the respective fields in screen painter too but my problem is i dont know how to link this fields  in the screen painter to the  fields in table .to be more clear i want the flow logic or module pool code to link this table when i give an entry in the screen painter for the respective  fields..i will really appreciate your answers and award the maximum points for the usefull answer ..as i dont know ABAP much if it is a step by step approach ..that would be helpfull
    Regards,
    RK.

    Hi Karthik,
    Please consider the following
    In the screen...the fields must be from the database table in Se11..(in screen painter -> use.."get from Dictionary" -> enter the table name -> select the fields -> drag and drop on the screen) or must have the same name in the database table..This will be a link but unless you code to fetch values from database or update values to database there will be no action taking place
    Usually in the PBO(process befor output) we write the code to display values before we accept data from the user ie,set default values on the screen if required and prepare the screen for user input
    in the PAI of the screen painter we can do data processing ie, data validations,checks and saving based on what the user wants
    So imagine you have buttons placed on the screen and there are buttons from standard application bar like BACK,SAVE, set using PFstatus..all the user actions will be linked to a function cod..ie whenever user presses a button we can uniquely idntify what was pressed by assigning a function code to each button in the menu painter or PF status and do the action accordingly
    Assume that you have created a push button on the screen painter and assigned it a function code "PUSH"
    so whenever you press the button in the variable sy-ucomm "PUSH" will be captured..this you can check in PAI for the screen like
    Case sy-ucomm.
    when 'PUSH'.
    do the needful coding
    when 'SAVE'
    Modify database table
    endcase.
    you can check the standard demo programs in SE38 -> program name-> display for basic ABAP coding you have asked for
    (1)demo_dynpro_input_output .
    (2)demo_dynpro_dictionary
    (3)demo_dynpro_push_button
    Pls let us know if you need more help on the same
    Reward if helpful
    Regards
    Byju

  • Subscreen in Screen Painter

    Hi Friends,
    I have created a layout in screen painter using Tabstrip with wizard which is having Tabstrip control with four tabs. 
    Now I want to attach to table to each tab,so that I can input some data and save in the table.
    I request you to kindly guide me as to how to do the same.
    TIA.
    Regards,
    Mark K

    Hi
      Insert subscreens in 4 tabs and give names to those subscreens, and create these 4 screens and change the attributes of these screens to subscreen, and call them in main screen like this.
    process before output.
    MODULE STATUS_1000.
    call subscreen: <subscreen area1> including sy-repid s_no, -> <b>Screen no variable</b>
                             <subscreen area2> including sy-repid s_no,
    process after input.
      module user_command_1000.
    call subscreen : <subscreen area1>,<subscreen area2>.
    In the main screen code the program somewhat like this.
    *& Module pool       ZHTABSTRIP_CONTROL                                *
    program  zhtabstrip_control                      .
    tables : lfa1,kna1,mara,vbak.
    data : begin of itab occurs 0,
             lifnr like lfa1-lifnr,
             name1 like lfa1-name1,
             kunnr like kna1-kunnr,
             land1 like kna1-land1,
             matnr like mara-matnr,
             ersda like mara-ersda,
             ernam like mara-ernam,
             vbeln like vbak-vbeln,
             erdat like vbak-erdat,
             erzet like vbak-erzet,
           end of itab.
    controls : tabstrip type tabstrip.
    data: s_no like sy-dynnr value 100. -> <b>screen no which u r calling for the subscreen.</b>
    *&      Module  USER_COMMAND_1000  INPUT
          text
    module user_command_1000 input.
      case sy-ucomm.
        when 'VEND'.
         s_no = 100.
         tabstrip-activetab = 'VEND'.
        when 'CUST'.
         s_no = 200.
         tabstrip-activetab = 'CUST'.
        when 'MAT'.
         s_no = 300.
         tabstrip-activetab = 'MAT'.
        when 'SD'.
         s_no = 400.
         tabstrip-activetab = 'SD'.
        when 'EXIT'.
         leave program.
      endcase.
    endmodule.                 " USER_COMMAND_1000  INPUT
    *&      Module  STATUS_0100  OUTPUT
          text
    module status_0100 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    select * from lfa1 into corresponding fields of table itab.
    read table itab index 3.
      lfa1-lifnr = itab-lifnr.
      lfa1-name1 = itab-name1.
    refresh itab.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Module  STATUS_0200  OUTPUT
          text
    module status_0200 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    refresh itab.
    select * from kna1 into corresponding fields of table itab.
    read table itab index 1.
      kna1-kunnr = itab-kunnr.
      kna1-land1 = itab-land1.
    endmodule.                 " STATUS_0200  OUTPUT
    *&      Module  STATUS_0300  OUTPUT
          text
    module status_0300 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    refresh itab.
    select * from mara into corresponding fields of table itab.
    read table itab index 5.
      mara-matnr = itab-matnr.
      mara-ersda = itab-ersda.
      mara-ernam = itab-ernam.
    endmodule.                 " STATUS_0300  OUTPUT
    *&      Module  STATUS_0400  OUTPUT
          text
    module status_0400 output.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    refresh itab.
    select * from vbak into corresponding fields of table itab.
    read table itab index 7.
      vbak-vbeln = itab-vbeln.
      vbak-erdat = itab-erdat.
      vbak-erzet = itab-erzet.
    endmodule.
    Hope this code will give you some idea.
    Regards
    Haritha.

  • Update-time in screen painter

    hi,
    i want to know the coding for updating sy-time in screen painter form

    Hi Siva,
    You can update the sy-time by defining a time variable in PBO module and modifying it as you want. It will display the changed time when the screen is displayed.
    You cannot directly changed the time in the screen painter as it's only purpose is to setup the screen layout and outlook. Rest all of its logic is given in PBO and PAI modules.
    Hope it helps.
    Regards,
    Johnny

  • How to degin a  select-option in screen painter?

    Help me !
    How can i create an object  like select-option  in screen painter.
    I want to input a range ,but there are no button or text   in screen painter  like  select-option?

    hai u can create select options on screen but in little differernt way..
    1st way : if u want to give only 1 interval then declare on screen as two different variables in same line
    and after that append the value in ranges.
    2nd way: here u can define as asingle input vriable  beside that variable u can give a icon as extension in select option and give give some function code to that.if we click on that in user command write following code :
      IF V_OKCODE = 'EXT'.
        CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
            EXPORTING
                 TITLE             = 'Title'
                 TEXT              = 'Text'
                 SIGNED            = 'X'
            LOWER_CASE        = ' '
            NO_INTERVAL_CHECK = ' '
            JUST_DISPLAY      = ' '
            JUST_INCL         = ' '
            EXCLUDED_OPTIONS  =
            DESCRIPTION       =
                 HELP_FIELD        = 'T001W-WERKS'
            SEARCH_HELP       =
             TABLES
                  RANGE             = R_WERKS
            EXCEPTIONS
                 NO_RANGE_TAB      = 1
                 CANCELLED         = 2
                 INTERNAL_ERROR    = 3
                 OTHERS            = 4
        IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    help field the field reference wich u want to declare and range is where values will be stored atomatically as in select options.
    once we click the icon if we execute the function module a window will open as in selection option in reports.there user can enter the values.once the user enters the values it will stored automatically in ranges declared like r_werks in above example.
    try it..

  • Display recods when cliking save in screen painter

    Hi all,
    I am dispalying a table using screen painter.I have 5 records in my internal table.
    My need is if i click "save" button in PAI first record should be displayed in the table,
    again if i click the "save" button then next record from internal table should be displayed by replacing
    first record and so on... until last record it shld be done.
    I did it but records are not displayed one by one.
    Kindly any one can  provide the required solution.
    Regards
    Ranjith C

    Hi dinesh,
    First we declare a global variable type i.
    if sy-ucomm = 'SAVE' and glob_var is initial.
    describe table int_table lines glob_var.
    ......count the total number of records
    endif.
    case sy-ucomm.
    when save.
    ........if u need a particular order like 1,2,3,4,5
    ........sort internal table as 5,4,3,2,1....
    ........read the last record => u will read 1
    sort int_tab by field descending
    read table int_table index glob_var.  ( n = 5 )
    ........u have the required data in int_table's work area ..do the needful
    ........coding to process it
    if glob_var > 0.   "if read index is done for index 0 ..shortdump will occur
    glob_var = glob_var - 1.
    endif.
    .........decrement counter so that in next loop we read the nearby record
    so everytime u press save...the table index read will be that of the next immediate record
    based on the sort order
    Hope it helps,Pls check and revert
    Regards
    Byju

  • UI: Event Handling of forms created with the Screen Painter

    Hi,
    I created a form with the Screen Painter and saved it as XML document. After that, I loaded this form with the following code:
    <i>Dim oXMLdoc As MSXML2.DOMDocument
    oXMLdoc = New MSXML2.DOMDocument
    oXMLdoc.load("C:\form1.xml")
    SBO_Application.LoadBatchActions(oXMLdoc.xml)</i>
    Then the loaded form appears in the SBO application with all added items.
    Now, I would like to know how I could handle an ITEM_PRESSED event for a button of this imported form.
    It would be great if someone could help me with this problem and post some example code.
    Regards,
    Dennis

    Dennis,
    you have to create a function that will handle all the event receive from B1
    <i>    Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If (pVal.FormUid = "YourUIDForm") Then
                If ((pVal.itemUID = "YourItemUID") And _
                    (pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED) And _
                    (pVal.Before_Action = False)) Then
                    ' Here write the coe you need....
                End If
            End If
        End Sub</i>
    Off course, you need your variable SBO_Appliation declared as follow :
    Private WithEvents SBO_Application As SAPbouiCOM.Application

  • How do you open graphical screen painter

    Hi all-
    I'm using PlatinGUI 6.30r2.  How do I open the graphical screen painter (after going into object navigator, I want to place controls on a screen)?
    I clicked Layout, but get what appears to be a bunch of horizontal lines-- nothing like a screen painter.
    thanks,
    Kevin

    Actually, the GUI provided on the CD is 6.30r4.  After trying to install I got this:
    rpm –Uvh path/PlatinGUI-Linux-6.30-4.i386.rpm
    >./gui
    JAVA=/usr/lib/java/bin/java: Command not found
    PH=/opt/sapgui/6.30rev4/jar: Command not found
    SOI=/opt/staroffice7/program/classes: Command not found
    JAVA: undefined variable
    I read elsewhere on one of these forums that the free GUI on the sneak preview doesn't work so well with the database (and learned this by sad experience myself), so I downloaded and installed an earlier version from the website:
    ftp –d ftp.sap.com
    name: anonymous
    pw: email account
    cd to /pub/sapgui/
    get PlatinGUI-Linux-630r2.jar
    I installed that with java –jar PlatinGUI-Linux-630r2.jar, but I didn't see any prompts about installing specific components, so I have no idea what you are referring to (must be on the software that people pay for).  That is the version I am currently using, and it is working fine except for this graphical screen painter is not coming up.  Now my ABAP book is from 2002, so I'm sure it is included somewhere.  Do you have any suggestions?  Don't worry, you will get your points.
    thanks-

  • I/O field in screen painter

    Hi,
    I have a I/O field created in screen painter (single line will do).Now I need to output values to the IO field through program.I need to know which is the class linked to the IO field and which method will write values to it?
    thanks
    Suganya

    Hi,
    I created a IO field in the screen painter with the name IO_TEXT and as you said created a variable in the program with IO_TEXT like below,
    DATA: IO_TEXT (not sure of the reference type).
    and tried to assign a text to it as below,
    IO_TEXT = 'sample'.
    but I don't get that in the output.Not sure of what is the mistake i am making.
    thanks
    Suganya

  • Error while opening a screen painter

    Hi all,
    I am trying to modify a screen in SE80. But when i am clicking on the screen painter it shows 'EU_SCRP_WN32 : timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Message no. 37033. Please let me know how to resolve this issue. Thanks a lot for your help!
    Regards,
    Priti

    For the Future Problem Facers:
    I too faced the same problem and the below steps helped me.
    Re: SFLIGHT is NOT defined for the current logical database.
    You can check the completeness of the program installation by starting the program gneux.exe locally in the SAPGUI directory (for example, by double-clicking on the program name in the Explorer window).The Layout Editor is displayed with German texts and an empty drawing area for the pseudo screen EUSPDYND 0000.
    If the installation is not complete, an error dialog box provides information regarding the cause of the error, for example, sometimes the DLL eumfcdll.dll is missing after reinstalling the SAPGUI. For example, the eumfcdll.dll DLL was sometimes missing after the SAPGUI was reinstalled.

Maybe you are looking for

  • Export to PDF Issue (SSRS 2012 with Integration SharePoint 2013)

    Problem Description: We have an operational report that returns around 43,000 records, based on a stored procedure.  The Stored Procedure itself runs pretty quickly (under ~15 seconds).The report renders in 20 seconds. However, we get an error like “

  • Is bootcamp good for audio apps?

    hi, ive tried vmware fusion and im getting unusable sound (distortion / crackling) i want to use cubase, soundforge and wavelab on windows xp on my macbook. all these apps say to use ASIO drivers/audio settings when possible, for best sound and low l

  • Can't update Audio Information in 7.6

    The new version won't let me edit the information, does anyone know a way around this?

  • SQL LOGIC

    I have a question regarding a SQL statement that I wrote. The following SQL statement brings back no records: SELECT PROP_BOOK_SI.EMP_ID, AMPEMP.CLOCK_NUMBER, AMPEMP.LAST_NAME, AMPEMP.FIRST_NAME FROM PROP_BOOK_SI LEFT JOIN AMPEMP ON AMPEMP.EMP_ID = P

  • Web gallery order

    at the moment in iphoto we can only sort web galleries alphabetically. this is the visible on the web. but we cannot get the order of the albums "zacharias" followed by "adam" followed by "gabriel". manual sorting would be nice. at the moment i give