Hi Experts, how add a column to MD04 via BADI or some other method?

Hi Experts,
the recommended BADI is MD_ADDD_COL_EZPS.
I am working on a requirement about adding a column to MD04(when you input /nMD04 in the system you will see two tabs, one is Individual access and the other is Collective access), for the Individual access you input material and plant and press 'Enter', you will see a alv-like list about the material, I want to add a column next to the current last column(Available qty), so can anyone tell me how to solve this? thank you in advance!
Kind regards
Dawson

Hi ,
if u want to add a column in table control , you can not do using User exit or badi .
for this u need developer access key , without developer access key , u can not add.
Thanks
Shambhu

Similar Messages

  • How add new column in analysis from two subject area

    which is the right way to add a new column to an existing combined analysis from two subject areas?
    if I add the new column first in my two combined queries, then I saw a new column in the results column panel, but this new column is empty and I can't edit its propreties (the button edit column doesn't work). I can't even save the modified analysis due to a "bad xml" errror.
    if I try to first add a new column from the results panel and then in my combined queries, obiee says that new columns are not of the same type.
    I suppose this is because the new column in results panel has no aggregation formula, unlike new columns in queries.
    But I don't know how to change the properties of the new field in the results panel, with no subject area available.
    I have to restart from a single subject area? possible?
    In this case, there is a way to save/copy filters ecc. from the old analysis?
    If anyone can help.
    Thanks
    Luc

    When you are using union clause in analysis or combining with other subject area you suppose to have same number of columns and their datatypes with other analysis.
    for datatype issues you can use cast in column expression in each analysis. If you want to add a column only from 1 analysis just add and in other analysis use dummy column with exp 0 or ''(for char) based on the datatype.
    These you have to deal with each analysis.
    If helps pls mark

  • Is it possible to add Attribute(column) to entity via Excel addin?

    I can create an entity via the excel addin and update data in it but i cannot add additional columns (attributes)  to it via the excel addin once its created. am i missing something or is it just not possible?

    Winston, is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!
    I worked around it using the excel addin, but the question is to see if its possible to do this in teh MDS web UI, without using excel, as its not very good design to have to jump from the browser based designer to excel and back in order to manage an MDS model.

  • How to populate values dynamically & allows user to edit some other columns

    Hi..I am new to Apex..please help me to sove it out...
    I have a scenario like editing the some of the Customer details where as one field is dynamically populating from a different table.
    Columns like Include, Frequency, Communication, Address and Exclude has to be displayed in tabular format and data should be stored in a table called "om_customer_catalog ".
    In this "Communication " column value is dynamically populating from a table called "om_customer_settings" and the no. of records in the om_customer_settings table may vary time to time as per the settins in the Admin module.
    I want the user to edit all details except Communication column for all the rows which is displayed and the no. of rows should be displayed dynamically as per the settings.
    how can i achieve this?...which way i need to proceed like whether report kind of thing..or someother way..
    hope some reply....
    More Column details:
    Include - a Check box with editable(values Y or N)
    Communication - text field with display only(values like Promotional Email, All Email etc.)
    Frequecny - Drop downbox with editable(values Annually/Monthly/Weekly etc)
    Address - Drop down with editable(static values like Me, Father, Mother,Brother etc)
    Exclude Reason - text field with editable(any text value)
    Apply - a button for saving the changes
    thanks in advace...
    renjish

    Hello Renjish,
    Solution is quite tricky, You have to make a procedure which select each row of your tabular form and executes the update statement (customized).
    e.g
    to select each row of table use
    begin
    FOR I in 1..APEX_APPLICATION.G_F01.COUNT
    LOOP
    insert into table_name values(APEX_APPLICATION.G_F01(i),'PENDING',sysdate,'RESOURCE','','','','');
    end loop;
    end;
    here APEX_APPLICATION.G_F01(i) will return the value of the first column of selected row. Pick the values and make a cutomized update command.
    Regards,
    bhanwar

  • Add site column with ID via Powershell

    Hi,
    Could somebody please help me with this. I want to create a site column using PS script where i can give the display name, internal name, Field ID etc.
    Giving Field ID is important for me. Thanks.
    -Prashant

    Hi,
    It seems like I was writing the correct script but I think i have some different problem.
    Scenario:
    In my old SP2010 environment, one list template was created using feature (via declarative XML). This list template has two custom columns which were also created via feature. Now in so many site collections users have used that list template to create the
    list instances.
    In SP2013 environment, I do not have these features installed in the farm and without these customizations installed in SP2013 environment I have upgraded some sites. Now all those list instances which were created using custom list template type are not
    opening at all since the feature which was used for creating the list template is missing in this new SP 2013 environment.
    So is there any way to fix this problem without installing the features in new environment? I thought if i will add those two site columns again via PS script, it may work but i think its failing because of whole list schema.
    -Prashant

  • How  to exclude columns dynamic using group functions or any other function

    i have a select that look like this
    SELECT *
      FROM (SELECT DISTINCT gruposcomerciales.cod_gcomercial,
                            gruposcomerciales.descripcion,
                            DECODE (:0,
                                    'OFICIAL', pbeoficialesjerarquia.oficial_id,
                                    NULL
                                   ) oficial_id,
                            DECODE (:0,
                                    'BANCA', NULL,
                                    pbeoficialesjerarquia.id_cluster
                                   ) id_cluster,
                            pbeoficialesjerarquia.cod_banca
                       FROM grupos_comerciales gruposcomerciales,
                            clientes clientes,
                            clientes_oficiales clientesoficiales,
                            pbe_oficiales_jerarquia pbeoficialesjerarquia,
                            bancos_clientes bancosclientes
                      WHERE gruposcomerciales.cod_gcomercial =  bancosclientes.cod_gcomercial
                        AND clientes.ID = bancosclientes.cliente_id
                        AND clientes.ID = clientesoficiales.cliente_id
                        AND bancosclientes.cliente_id = clientesoficiales.cliente_id
                        AND bancosclientes.entidad_id = clientesoficiales.entidad_id
                        AND clientesoficiales.oficial_id = pbeoficialesjerarquia.oficial_id
                        AND gruposcomerciales.cod_gcomercial <> 'SINGRUPO100'
                        AND clientesoficiales.tipo_oficial = 'PRINCIPA'
                        AND bancosclientes.estado_clientes_ibs = 'ACTIVO') qrslt
    WHERE (cod_banca = :1 AND id_cluster = :2 AND oficial_id = :3)This SQL duplicate rows so i use a distinct to exclude duplicate rows and decode to set null for columns that not are interested at runtime to avoid duplicate rows
    I use decode to dynamicly set null (a way fo not show duplicate rows from colums)
    If :0 is OFICIAL its show 3 columns values for oficial_id,cod_banca,id_cluster
    if :0 is CLUSTER its show 2 columns values for cod_banca,id_cluster
    There is a way to group by columns without take in consideration duplicate rows of other columns

    If i do my query passing pameters to [b]OFICIAL_ID, ID_CLUSTER, AND COD_BANCA get this info
    COD_GCOMERCIAL  DESCRIPCION                          OFICIAL_ID ID_CLUSTER COD_BANCA
    ==============  ===========                          ========== ========== =========
    GRUPOALC1149     GRUPO ALCAP                          JESS329     39        BANCAEMP
    GRUPOALQ533     GRUPO ALQUILERES NACIONALES          JESS329     39        BANCAEMP
    GRUPOANA649     GRUPO ANA MARIA CHEN                 JESS329     39        BANCAEMP
    GRUPOANC253     GRUPO ANCON                          JESS329     39        BANCAEMP
    GRUPOARI104     GRUPO ARIAS Y DE LA GUARDIA          JESS329     39        BANCAEMP
    GRUPOATL813     GRUPO ATLAS CORPORATION              JESS329     39        BANCAEMP
    IF I pass parameters to ID_CLUSTER, AND COD_BANCA i get
    COD_GCOMERCIAL  DESCRIPCION                          OFICIAL_ID ID_CLUSTER COD_BANCA
    ==============  ===========                          ========== ========== =========
    GRUPOALC1149     GRUPO ALCAP                                    39        BANCAEMP
    GRUPOALQ533     GRUPO ALQUILERES NACIONALES                    39        BANCAEMP
    GRUPOANA649     GRUPO ANA MARIA CHEN                           39        BANCAEMP
    GRUPOANC253     GRUPO ANCON                                    39        BANCAEMP
    GRUPOARI104     GRUPO ARIAS Y DE LA GUARDIA                    39        BANCAEMP
    GRUPOATL813     GRUPO ATLAS CORPORATION                        39        BANCAEMP
    IF I pass parameters to COD_BANCA i get
    COD_GCOMERCIAL  DESCRIPCION                          OFICIAL_ID ID_CLUSTER COD_BANCA
    ==============  ===========                          ========== ========== =========
    GRUPOALC1149     GRUPO ALCAP                                            BANCAEMP
    GRUPOALQ533     GRUPO ALQUILERES NACIONALES                            BANCAEMP
    GRUPOANA649     GRUPO ANA MARIA CHEN                                   BANCAEMP
    GRUPOANC253     GRUPO ANCON                                            BANCAEMP
    GRUPOARI104     GRUPO ARIAS Y DE LA GUARDIA                            BANCAEMP
    GRUPOATL813     GRUPO ATLAS CORPORATION                                BANCAEMPMy decode on select do this functionality of set null to columns because there are sometimes in wich oficial_id or id_cluster get rows
    that i dont need take in consideration.
    this get overhead on my select and on 10g using inline views by dblink not work fine
    this decode on my select do this functionality
    decode('OFICIAL', 'OFICIAL' , pbeoficialesjerarquia.oficial_id, NULL) oficial_id,
    decode('OFICIAL', 'BANCA' , NULL, pbeoficialesjerarquia.id_cluster) id_cluster,
    So i know oracle has a lot off grouping function some of this should help me to get this work
    Tnx Warren

  • How to restore iTunes Library on computer from iCloud or other method after iTunes library suddenly becomes empty?

    I just opened my iTunes on my laptop (which is considerably slow) and all of my music, apps, everything has been wiped for some reason ie. my library is completely empty. I'm not sure what caused this and I really don't care I just want my playlists, music, apps back so I can add more music and sync my iPhone with it again as normal.
    I'm sure that all my music has been backed up to iCloud but I'm not sure how to access that from my computer and how to import it back into my library. I'm afraid to sync my phone and iPod now because I've read that this will wipe them completely again and they are the only places I can see my music/playlists so I don't want them to disappear from these devices also before I can restore everything on my laptop.
    I logged into my apple ID again on my computer hoping that maybe my music would come up when iTunes was connected to my particular account but the library is still empty. Not really sure what to do and would appreciate any advice. Maybe I'm missing something really obvious here and if so could someone point it out, I won't be insulted! Thank you!

    If your music is still in \Music\iTunes Music, I believe your library can be recovered by closing iTunes, then going to \iTunes and renaming iTunes Library.itl to something like iTunes Library.itl.old, then renaming the most recent previous library from your \Music\iTunes\Previous iTunes Libraries folder to Library.itl and moving it to \Music\iTunes.  But I would recommend you post your question over in the iTunes for Windows forum go be sure as they would have more expertise on recovering your iTunes library.

  • How do I properly emulate the old statusbar and some other features?

    I can see the "statusbar issue" have been discussed a lot, but couldn't find a satisfying answer.
    I haven't used Internet Explorer for several years in benefit to Firefox. I hope I can keep it that way while I am also able to stay up to date at the same time.
    After recently updated my FF 3.6(I think) to 4.0.1, and plenty of time trying to customize the new looks and location of bars and buttons etc to my likings, I need help with a few things:
    1. How do I disable the "link hover preview bar" and make it appear on the Add-on Bar(the old statusbar replacement)?
    2. How do I remove the X(close button) on the Add-on bar? I don't know if its only me, but something at the back of my head mistakes it for a pop-up or something else that needs to be closed. Very annoying to have to re-enable it every time.
    3. How do I put a "border" around the new Add-on bar so it doesn't look like an extension of the webpage im currently at? The lack of a border might be the reason why I subconsciously think it's a popup. But even so, I still see no reason for the X.
    4. The new colorless buttons/icons makes it easy to miss click (they all look too similar now), can I get them old ones back?
    5. How do I make the Reload button and Stop button stay separate buttons instead of one combined button?
    6. Lastly, I am used to have a button at the right side of the last tab to open a new tab. Now I need to add another button at the top instead. Or can I get the old "open new tab" feature back somehow?
    Thank you for your time.

    <u>'''Question 1'''</u><br />
    Install the '''''Status-4-Evar''''' extension: https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/<br />
    After install,
    #Be sure the Add-on Bar is displayed;
    #*click Firefox button, click Add-on Bar to place a check mark
    #*if using the Menu Bar, click View > Toolbars, click to check "Add-on Bar"
    #In the Customize Toolbar window
    #*Open Customize Toolbar window
    #**Firefox button > Options > Toolbar Layout
    #**if using the Menu Bar, View > Toolbars > Customize
    #*drag any or all of the 3 items to the position you want them on the Add-on Bar:
    #**'''Status text''' (this will display the website address while loading and "Done" when the page has completed loading in the Add-on Bar instead of as a "tooltip" type display in the lower left corner)
    #**'''Download status''' (will display No Downloads or number of downloads in progress)
    #**'''Progress meter''' (progress of page loading)
    <u>'''Questions 2 & 3'''</u>
    #Set the options for Status-4-Evar
    #*click Firefox button, click Add-ons, click Extensions, scroll down and click Options next to Status-4-Evar
    #*if using the Menu bar, click Tools, click Add-ons, click Extensions, scroll down and click Options next to Status-4-Evar
    #*In the Options window for Status-4-Evar, click on "Add-on Bar" on the top
    #**un-check "Show the close button" to remove the Add-on Bar close (X) button
    #**check "Use alternate toolbar borders" to place a 1 pixel border across the top of the Add-on Bar
    #***You can also do this with a userChrome.css addition and you can color the Add-on Bar, but it is a bit involved. If you want some basic instructions, post back and I will try to provide the information.
    <u>'''Question 4'''</u>
    You can add this Extension to get some color toolbar buttons similar to Firefox 3.6:
    *'''''Firefox 3 Theme for Firefox 4''''': https://addons.mozilla.org/en-US/firefox/addon/firefox-3-theme-for-firefox/
    <u>'''Question 5'''</u>
    #Firefox 4.0 has a '''''combined''''' Go/Reload/Stop button that is positioned at the far right of the location bar.
    #*During the page load process it shows as a Stop button and after the loading has finished the button is changed to a Reload button. If you type in the location bar then that button becomes a Go button.
    #*You can middle-click that button to duplicate the current tab to a new tab.
    #*In Firefox 4.0 you can move the Stop/Reload button out of the location bar and put them wherever you want on the toolbar. You can also make them appear as separate buttons on the toolbar.
    #**click Firefox button > Options > Toolbar Layout
    #**if using the Menu Bar: click View > Toolbars > Customize
    #** Swap the two buttons by dragging them or move them to their previous position at the left of the location bar.
    #** If the order is "Reload - Stop" you will get a combined "Reload/Stop" button.
    #** Swap the order (by dragging) to "Stop - Reload" or separate them otherwise (like inserting another button or a "Space" or "Separator" between them) to get two distinct buttons.
    <u>'''Question 6'''</u>
    There should be a "+" to the right of the last tab by default. If it is not there, open the "Customize Toolbar" window:
    *click Firefox button, click Options, click Toolbar Layout
    *if using the Menu Bar, click View, click Toolbars, click Cutomize
    look for a "New Tab" icon and drag it to the end of the Tab Bar while the Customize Toolbar window is open. You may need to "Restore the default toolbar set". See: https://support.mozilla.com/en-US/kb/Back%20and%20forward%20or%20other%20toolbar%20items%20are%20missing<br />
    What Add-on did you install for the Open New Tab button on the toolbar? Did it disable the "+" on the Tab bar?
    <br />
    <br />
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • How do I make this effect better?  And some other good effects.

    Okay I just put out a new video in which I tried to create an effect of audio waves distorting the air.  I used this process.  base clip, copy clip, new solid, generate radio waves on solid and set color to black, set track matte alpha on duplicate clip, added distort-bulge to duplicate clip.  I will post the video so you can see what it turned out looking like.  My question is what could I do to make this effect look better, and what other effects could I use for this type of clip?

    I doubt you will get people throwing you ideas. After all, experimenting on your own is half the fun. Additionally, nobody will give away their best kept secrets that easily. Essentailyl you are also asking the wrong question: The question is not whether you can use and create 1000 different effects, but rather whether you can develop your own visual and artistic style. In the end, it doesn't matter whether you fry people with lightnings or laser beams, it matters that the execution of the effects is spot on and you have some work ahead of you there. As I already wrote, practice color correction to improve your results. Use the same effects in different scenarios and use variations of them, then learn how to refine them, e.g. in case of your lasers by adding smoke, debris, particles or again using color correction methods to give the illusion of charred trees, furniture or burn marks on the walls....
    Mylenium

  • How can i delete the mails in ibox of some other person

    hi
    im asked to delete the old entries of leave request in the inbox of a manager ,
    do i need to have his login id and password or is there any other option.

    Hi KR,
    probably use the WF Admin user-id to delete the mails,
    SWWL is the t-code
    Aditya

  • How to get data  from an internal table in some other program

    I would like to get data from the internal table in the other program. When I using FM "LIST_FROM_MEMORY" to get the data, it doesn't work and the exception is not fount.
    If any special code need in the other program, like write data to memory .
    Many thx .
    From Ross Wang

    Hi
    <li>You need to have interaction if you want to use EXPORT/IMPORT statments.
    <li>The internal tables in both programs must be same
    <li>Program one ..Calling program
    REPORT ZTEST_NOTEPAD.
    DATA: BEGIN OF it_t001 OCCURS 0,
            bukrs TYPE t001-bukrs,
            butxt TYPE t001-butxt,
          END OF it_t001.
    START-OF-SELECTION.
      SUBMIT ztest_notepad1 AND RETURN.
      IMPORT it_t001 FROM MEMORY ID 'ZTEST_T100'.
      LOOP AT it_t001.
        WRITE:/ it_t001.
      ENDLOOP.
    <li>Program two ...Called program
    REPORT ztest_notepad1.
    DATA: BEGIN OF it_t001 OCCURS 0,
            bukrs TYPE t001-bukrs,
            butxt TYPE t001-butxt,
          END OF it_t001.
    START-OF-SELECTION.
      SELECT * FROM t001 INTO CORRESPONDING FIELDS OF TABLE it_t001 UP TO 10 ROWS.
      IF sy-dbcnt > 1.
        EXPORT it_t001 TO MEMORY ID 'ZTEST_T100'.
      ENDIF.
    I hope that it gets you some idea.
    Thanks
    Venkat.O

  • On a MAC with OS 10 how do I pinch, tap to make larger, and some other gestures that work on Safari but not FireFox

    I can not do all the gestures when I am in FireFox. Example Pinch to increase or decrease size of window. Tap with two fingers to increase the size of window. The other gestures like scrolling, swiping etc work.

    Hello Shona37a, if you have the [http://kb.mozillazine.org/Places.sqlite places.sqlite] file probably you are ok. the places.sqlite file can be edit with SQLite Manager or a specialized editor BUT you can move it to a [https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles#os=mac&browser=fx17 new profile], see informatinos in the above link.
    also think if you must go to [http://www.floodgap.com/software/tenfourfox/ TenFourFox] for PowerPC's running Mac 10.4.11 & 10.5.8 , it is more secure from your 3.6.18 that is unsupported.
    EDIT : [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile#w_copying-files-between-profile-folders Copying files between profile folders]
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    thank you

  • How to read the configuration of a FXP number via property nodes or other methods.

    Hello all,
    I am attempting to store in plain-text the value and configuration specifics of the LV FXP datatype. (please do not suggest I cast it to integer).
    The ini config format does not support FXP. So we'd like to; using property nodes, interrogate the specifics of a FXP numeric control on the FP.
    It appears this is not exposed by control ref's and property nodes.
    Oddly enough, you cannot even interrogate the detailed type of an INT if it is a U8, I8 or I16 etc?! via property nodes, the deepest you can go is 'digital'.
    Specifically, you need to know the following to 'reconstruct' a FXP:
    1. Value
    2. Signed\unsigned
    3. Word length
    4. Integer word length
    Without this, there is a risk of corrupting the value during conversion.i.e we want to load initial FXP from disk at application startup. This is a critical application and we cannot tolerate rounding\conversion errors accumilating with numerous reads\writes of FXP settings.
    It is odd that you cannot interrogate via property nodes the details of a numeric type. ie. you cannot 'discover' via the property node of an INT if it is a U8, I8 or any other type.
    Regards
    Jack Hamilton
    PS: Don't suggest XML either....

    Aristos Queue wrote:
    Alias name here wrote:
    ..second post telling me the 'propertys' of a control have nothing to do with the value is bizzare - via 'properties' for a LV control is the ONLY way to configure the specific type of a numeric...so via the numeric 'property nodes' should\would be able to query it's configuration.
    I do not see any way to set these things through the properties...
    I think he means by right clicking the control on the front panel and configuring with the properties dialog. The properties are exposed there, but not within the property nodes.
    Edit: You beat me.
    CLA, LabVIEW Versions 2010-2013

  • 0RT_C02 - How to load vendor from PO to 0RT_C02 or have other method?

    I have infocube 0RT_C02 and 4 infosource
    2LIS_11_VAITM: Order u2013 Item Data
    2LIS_11_V_ITM: Sales & Shipping: Settlement of Item Data
    2LIS_12_VCITM: Delivery u2013 Item Data
    2LIS_13_VDITM: Billing Data Item
    I have vendor and static vendor that load from article master (purchase view).
    But I have new requirement, want to display vendor from purchase document because 1 article can come form many vendor
    Do you have solution?
    Please help me. Very Thank you.

    I have infocube 0RT_C02 and 4 infosource
    2LIS_11_VAITM: Order u2013 Item Data
    2LIS_11_V_ITM: Sales & Shipping: Settlement of Item Data
    2LIS_12_VCITM: Delivery u2013 Item Data
    2LIS_13_VDITM: Billing Data Item
    I have vendor and static vendor that load from article master (purchase view).
    But I have new requirement, want to display vendor from purchase document because 1 article can come form many vendor
    Do you have solution?
    Please help me. Very Thank you.

  • How can we call creen of one program from some other dynpro Program

    Hi,
    Is it possible to call a screen of one program from some other program as pop up or full scree.
    please give you input if it is possible.
    Thanks in advance.
    Thanks and Regards,
    Praveen.

    Hi,
    But is there is any function module through we can call screen of some other program. PLease let me know if you are aware of that.
    Thanks

Maybe you are looking for

  • Date wise user overview

    Hi Can some one help, how do I see date wise user overview which should contain what are all the tcodes that user had performed in a particular date? Thanks in advance. Regards

  • How do I generate a PDF output report when the layout template is an Excel file in BI publisher 11.1.1.7

    This is what I did .. 1. Create new report 2. Create a report using an existing Data Model (browsed and picked a data model) 3. How do you want to create your report? (clicked on Used Report Editor) 4. Clicked Finished (then saved the report) 5. Then

  • LUMIA 520 MUSIC APP FAILING TO UPDATE

    Can anyone please assist me on getting my Lumia 520 music app update itself on wifi. For a long time now it always gives an error message. Other apps are updating whenever there is a new update.

  • Wired Bridge from Actiontec to Airport Express

    I've seen numerous posts on setting up the Airport Express to act as a wireless bridge with Verizon's Actiontec router. But I want to bridge the Airport Express to the Actiontec over ethernet so the Airport is the sole wireless source. I can't quite

  • Nokia 6300 firmware wishlist

    Hello! Let's give our suggestions for improving the Nokia 6300's firmware. Post feature requests, bugs and ergonomy issues. Contact list: * All the fields of a contact should be searchable (name, surname, phone number etc...) * The user should be abl