How to index our online journal in MIcrosoft Academic Search

Dear Sir, I'm Publication Coordinator of peer-reviewed bimonthly academic journal  and currently indexed in google scholar only.
I would like to know how to index of  Microsoft Academic Search.
Please help our journal improvement as soon as possible.
Thanking you.

LeoRobert --
First of all, you have posted this question in a user forum dedicated to questions about Microsoft Project Server, an enterprise project management application.  So, your question is in the wrong user forum.  Second, after viewing the Microsoft
Academic Search web site, I noted that the site is only an experimental site, and will be taken offline when Microsoft has met its research goals.  In any case, if you want to ask a question about how to index your journal on the Microsoft Academic Search
web site, I would recommend you contact them directly at the following e-mail address:
[email protected]
Hope this helps.
Dale A. Howard [MVP]

Similar Messages

  • How to get an AppID for the Microsoft Academic Data?

    Hi,
    I have just signed up for the Microsoft Academic Data at http://datamarket.azure.com/dataset/mrc/microsoftacademic, but I need to get an Application ID to make it work on my website. 
    Perhaps, this this requirement could be found in this file: http://academic.research.microsoft.com/about/Microsoft%20Academic%20Search%20API%20User%20Manual.pdf
    Where can I find the AppID?
    Thanks in advance

    Hi,
    From the PDF file that you provided, we can found how to request a AppID.
    Here is snippet of PDF file.
    Requesting an AppID
    To identify each application using the MAS API, an AppID is required. To request an AppID, please provide the following information in an email request to
    [email protected]
    Contact Person
    Contact Email
    Project URL
    Project Brief Introduction
    Confirmation that you agree to the
    MAS Terms of Useand
    MS Terms of Use.
    o
    E.g. "We have read and agreed with the Microsoft/MAS Terms of Use" 
    o
    Include a link to theMAS
    Terms of Use,
    MS Terms of Use. 
    What we can do just follow as above process. Hope this helps.
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to display our own selected data in a search help using a exit

    Hello,
    I had created a Search Help Exit to restrict the values to be displayed in the search help. This code was written under the event 'DISP' in the exit. But it is not giving the desired result. So I want to replace the RECORD_TAB of the exit with my own selected data. For this I had written code for selection under the event 'SELECT'. But when I try to overwrite RECORD_TAB with this, this create errors.
    What should I do to overwrite the values of the RECORD_TAB field with my own values?
    Regards,
    Abijith

    Hi,
    This is how we implemented the code modify the values in search help exit.
    Check if display process button is pressed
      IF callcontrol-step = 'DISP'.
    Read the parameter ID for company code.
        GET PARAMETER ID 'BUK' FIELD lv_bukrs.
        IF sy-subrc EQ 0.
          lwa_bukrs-sign   = 'I'.
          lwa_bukrs-option = 'EQ'.
          lwa_bukrs-low    = lv_bukrs.
          APPEND lwa_bukrs TO lr_bukrs.
        ENDIF.
      Check if any entry is made in Test account/Testity account name
        LOOP AT shlp-selopt INTO lwa_selopt.
          CASE lwa_selopt-shlpfield.
            WHEN  'ZZTEST'.
              lwa_roy-sign = lwa_selopt-sign.
              lwa_roy-option = lwa_selopt-option.
              lwa_roy-low = lwa_selopt-low.
              APPEND lwa_roy TO lr_roy.
            WHEN 'ZZTEST_NAME'.
              lwa_roy_name-sign = lwa_selopt-sign.
              lwa_roy_name-option = lwa_selopt-option.
              lwa_roy_name-low = lwa_selopt-low.
              APPEND lwa_roy_name TO lr_roy_name.
          ENDCASE.
        ENDLOOP.
      Get customer in entered for a company code
        SELECT kunnr
               bukrs
          FROM knb1
          INTO TABLE lt_knb1
          WHERE kunnr IN lr_roy
            AND bukrs IN lr_bukrs.
        IF sy-subrc EQ 0.
          SORT lt_knb1 BY kunnr.
        Get customer name for  the customer.
          SELECT kunnr
                 name1
            FROM kna1
            INTO TABLE lt_kna1
            FOR ALL ENTRIES IN lt_knb1
            WHERE kunnr EQ lt_knb1-kunnr
              AND mcod1   IN  lr_roy_name.
          IF sy-subrc EQ 0.
            SORT lt_kna1 BY kunnr.
          ENDIF.
        ENDIF.
      Get Values for Testty account selected by standard search help
        CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'
          EXPORTING
            parameter   = 'Ztest'
            fieldname   = 'Ztest'                                    " Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            results_tab = lt_test_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
      Get Values for Testty account Name selected by standard search help
        CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'
          EXPORTING
            parameter   = 'Ztest1'
            fieldname   = 'Ztest1'                                    " Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            results_tab = lt_roy_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
        LOOP AT lt_knb1 INTO lwa_knb1.
          CLEAR lwa_kna1.
          READ TABLE lt_kna1
                INTO lwa_kna1
                WITH KEY kunnr = lwa_knb1-kunnr
                BINARY SEARCH.
          IF sy-subrc EQ 0.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                input  = lwa_kna1-kunnr
              IMPORTING
                output = lv_kunnr.
            lwa_roy_help-ztest1 = lv_kunnr.
            lwa_roy_help-ztest = lwa_kna1-name1.
            APPEND lwa_roy_help TO lt_roy_help .
          ENDIF.
        ENDLOOP.
        SORT lt_ztest_help.
        DELETE ADJACENT DUPLICATES FROM lt_roy_help COMPARING ZTEST1.
    Finally transport the computed numbers into the search help data.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
          EXPORTING
            parameter   = 'ZTEST1'
            fieldname   = 'ZTEST1'" Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            source_tab  = lt_roy_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
    Finally transport the computed numbers into the search help data.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
          EXPORTING
            parameter   = 'ZTEST''
            fieldname   = 'ZTEST''                                  " Reference to search help parameter
          TABLES
            shlp_tab    = shlp_tab                                    " Reference to field of Seatinfo
            record_tab  = record_tab
            source_tab  = lt_roy_help
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
      ENDIF.
    Nabheet

  • How to index a network drive so spotlight can search there as well

    Now i like the speed of the search for Indexed drives but it is useless on my network if i am looking for a special document which is backup on our network spotlight does not find one single document any other search options or tool available.

    I found this page that informs you how to activate indexing on network drives. However this was written during the Tiger days so I'm not sure if this applies any more. Someone in the comments noted that indexing of network drives for spotlight was disabled permanently in Leopard so I'm not sure if that's changed for Snow Leopard.
    Anway, here's the link: http://forum.multiplexapp.com/comments.php?DiscussionID=17

  • We use an add-on in one of our online solutions and we've identified a security vulnerability. The issue has been addressed in our latest add-ons and we would like to know how we may blocklist our previous player through a firefox update?

    We use an add-on in one of our online solutions and we've identified a security vulnerability. The issue has been addressed in our latest add-ons and we would like to know how we may blocklist our previous player through a firefox update?

    You can file a bug report to do that request.
    http://developer.mozilla.org/en/docs/Bug_writing_guidelines

  • I want to insert a online journal into a keynote slide show.  How do I do this?

    I want to insert a online journal into a keynote slide show.  How do I do it?

    what do you mean by an online journal (a periodical )?
    create a link to the website and it will display on screen

  • Wach how o ran our draon online free now

    wach how o ran our draon online free now
    is his for real how it can be like that 22 Jump Street Full movie online leaked now The genuine story could be fortifying and likewise as an aftereffect of globe inside impacts with a specific end goal to Cap's past treks – normally inspecting, positively,
    for a motion picture in which continues voyaging huge test courses, bionic hands and wrists, voyaging suits and additionally anybody care fit to escape utilizing a machine
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/652904
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-the-other-woman-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653010
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-maleficent-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653054
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-edge-of-tomorrow-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653124
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-22-jump-street-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653230
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-how-to-train-your-dragon-2-online-free-2014
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653308
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-the-fault-in-our-stars-online-free-2014
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653370
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-x-men-days-of-future-past-online-free-2014
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653425
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-a-million-ways-to-die-in-the-west-online-free
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653485
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-neighbors-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653536
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-godzilla-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653575
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-blended-online-free-2014-streaming
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653625
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-the-amazing-spider-man-2-online-free-2014
    http://www.bauwesen.tu-dortmund.de/ka/networkenergy/?q=node/653661
    http://www.centralcoasttoday.com/profiles/blogs/full-movie-watch-captain-america-the-winter-soldier-online-free

    Perhaps this web page will help: http://support.apple.com/kb/ht1229
    But I must point out that leaving the iPhoto Library on the external is worth considering. Your internal drive would be better off without having to carry the photos.
    When you booted with the external connected and you were asked for the library, did you try navigating to the Library in on the external drive?

  • How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?

    How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?
    I wish to retrieve sharepoint online data in html page (hosted in windows azure) using javascript and then need to play with AngularJS

    Hi,
    According to your description, you might want to get data from Office 365 SharePoint Online(also known as host web) and pass to the Provider Hosted App which is hosted
    in Windows Azure site.
    I would suggest you take a look at the links below about accessing data from the host web
     for a quick start:
    https://msdn.microsoft.com/en-us/library/office/fp179927(v=office.15).aspx#SP15Accessdatafromremoteapp_Codeexample
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Aother sample solution for your reference:
    https://code.msdn.microsoft.com/SharePoint-2013-Get-the-0ec36bb6
    Best regards
    Patrick Liang
    TechNet Community Support

  • AP to GL Transfer: How to have a custom Journal Header name in GL.

    Hi,
    Does any one know how to have a custom Journal Header name while transferring the Journals from AP to GL?
    Assume that I am transferring the Journals which belongs to a Single Invoice from AP to GL. When these Journals are transferred from AP to GL, Oracle will create a Journal Header with the default naming convention. The Oracle generated Header name will be as shown below.
    *123456 Purchase Invoices USD*. Where 123456 is AE_HEADER_ID and USD is the Invoice Currency code.
    Our requirement is, we want the Journal Header name something like *"Hello World"+TIMESTAMP*, where TIMESTAMP is the date when the user has ran the AP to GL transfer program.
    I know that when building the AAD(Application Accounting Definition) we can define the Journal Header descriptions and Journal Lines descriptions. But, I did not see any setup option to have the custom Journal Header name in GL.
    Any suggestions on this issue are highly appreciated.
    Advanced Thanks,
    Lokesh.

    Hi Lokesh,
    The best way to have a custom journal header name is using hook package.
    When data move from XLA to GL, every time it creates a new dynamic table as GL_INTERFACE table but the name is different (XLA_GLT_XXXXX).
    This table information stores in 'gl_interface_control' table but after use the record has deleted from 'gl_interface_control'.
    So we can't see table information after finishing create accounting program.
    What the modification you will made in this table it will affect GL base table. So to made custom journal header name, we need to change Reference4 column of dynamic table.
    Here is the code to get the table name and through procedure you can update the Reference4 column.
    FUNCTION pre_module_hook(run_id IN NUMBER,
                   errbuf IN OUT NOCOPY VARCHAR2) RETURN BOOLEAN IS
    chr_errbuf varchar2(50);
    chr_retcode varchar2(50);
    l_interface_Table_name varchar2(2000);
    BEGIN
         SELECT interface_table_name
    into l_interface_Table_name
    FROM gl_interface_control
    WHERE interface_run_id = run_id;
         BEGIN     
    xxdb_gl_icaccntgdist_pkg.gl_int_jrnl_update (chr_errbuf,chr_retcode,l_interface_Table_name);
    RETURN(TRUE);
         END;
    END pre_module_hook;
    Make these changes in GL_IMPORT_HOOK_PKG.pre_module_hook function.
    You can make the changes through calling procedure using dynamic query under the function pre_module_hook.
    Thanks,
    Gaurav K
    Edited by: 972729 on Nov 22, 2012 4:46 AM

  • How To... We Printing with Microsoft Excel in 7.0 / 2004s

    We implemented the How To... Web Printing with Microsoft Excel in BW 3.5.  We have upgraded a test box to 7.0 ( 2004s ) and the functionality is no longer working.  We have buttons in our web templates which call the help service and when they are clicked nothing happens.
    An example of the code we are using is:
    <A href="<sap_bw_url cmd='PROCESS_HELP_WINDOW' help_service='HELP_SERVICE_PRINT' item='GR1TABLE' subcmd='PRINT_EXCEL'>">
    Have other folks successfully continued to use this functionality in 2004s?  I know that formatted printing is an option in the new version but we intend to do a technical upgrade first and subsequently leverage this new functionality.
    Thanks!

    Thanks for the help.  I didn't think that there would be an SAP note for the How To but note 995142 has the exact changes required.  Thanks for pointing that out.

  • How to debug ABAP Web services from Microsoft Visual Studio

    When developing .NET based Web services clients using Visual Studio that call Web services in SAP NetWeaver .NET developers would like to be able to debug inside SAP. In my blog <a href="/people/andre.fischer/blog/2007/02/07/how-to-debug-abap-web-services-from-microsoft-visual-studio to debug ABAP Web services from Microsoft Visual Studio</a> I would like to point .NET developers to the fact that SAP NetWeaver offers the option of external debugging to perform this task. Though the steps that have to be performed are described in the SAP Online Help I am sure that this option is not well known amongst the .NET developer community.

    Hello WilliamIV,
    >>How can I "configure" Visual Studio debugger to allow validation to work?
    Since I do not have a VS2012 environment, according to your provided link, I created a test demo with VS2013, however, both ways catch the validation error:
    If possible, you could have a try with VS2013 to see if it works or run the example on other machine with VS2012 to see if this is caused by the VS environment, in my side, I do not change any configuration, all are default.
    If I misunderstood this issue, please feel free to let me know.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Creating an online journal

    I would like to create an online journal so that my users can
    sign in to get a username and password and then keep a daily
    diary/journal. Does anyone know of a good plugin that I could use
    to do this or a good place to start?

    I would agree with Pete here that Blog software is the best
    option. This is what I was going to lead into.
    http://wordpress.org/ - Wordpress
    is probably the most common. However, like phpBB forums, it is a
    favorite target so keeping this up to date like anything else is
    very important.
    http://www.simplephpblog.com/
    http://s9y.org/
    http://www.hotscripts.com/PHP/Scripts_and_Programs/Blog/index.html
    - This link is a collection of PHP Blog scripts
    I think this should give you a few options to look at to get
    you started.

  • How to exclude a file/folder from Microsoft Security Essentials scan in Windows 7/Vista/XP?

    How to exclude a file/folder from Microsoft Security Essentials scan
    in Windows 7/Vista/XP?
    Hetti Arachchige V Aravinda | Network & System Administrator (B.Sc, Microsoft Small Business Specialist, MCP, MCTS, MCSA, MCSE,MCITP, CCNA, CEH, MBCS)

    Hi,
    Thanks for sharing this link.
    Nice job!
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Are there any simple photoshop tricks which can help to get rich look to our online inspiration magazine blog?

    We created our online web design inspiration magazine blog a year ago. Just wondering how can we utilize rich look to our blog
    Thanks in advance!

    It sounds to me like you have created a valid MP3, or AAC or some other audio format iTunes can recognize, but you have not yet made an RSS+XML file as described here:
    http://www.apple.com/itunes/store/podcaststechspecs.html
    A file like that should probably work just fine if you open it up with iTunes. On Windows, you may need to make the filename end in .xml or .rss to get it to work right.
    You also could consider installing Apache (http://apache.org) an Open Source (free) web-server which is in use on a majority of "real" web servers on the Internet.
    This would effectively give you your own tiny little Intranet of one (1) computer, so that you could "surf" to your own computer, just like a real website, only not, for testing purposes.
    That's real handy for checking out how something will "flow" on the real website, and can help avoid a lot of pitfalls.
    You do have to be aware that different configurations of web servers can cause different results; but that's generally something that you acquire with experience, and you just re-configure Apache to be more and more like the "real" server you use, in an ongoing behaviour-shaping model -- like working with that problem kid to convert them into the model student. It's not an overnight process, but it's very do-able, and the rewards are immense.
    Not that I ever had any problem kids in my classroom, oh no.

  • Ipad planed for enterprise use - how can we do online support

    Our CEO plans iPads for enterprise use - our critical assumption is: How can we do online support like using teamviewer?
    Teamviewer works just the other way round.
    Any suggestions or better use Windows8-pads?
    Argus

    If being to RC the devices is a requirement, then you won't currently be able to use iOS devices.  On the other hand based on past experience with Windows based devices, I'm not sure the plus of RC capability is worth the possible negatives that have plagued Windows based devices in the past. I'd do some serious suitabilitly testing before I went forward in a major way.  The bottom line is general supportability by IT and usability by end users.  RC, while nice, in my mind and at our organization isn't a requirement.  Your CEO may feel differently. 

Maybe you are looking for

  • Adding a new server to Enterprise pool failing when installing local configuration store

    We have Enterprise edition running. It includes one Enterprise pool, on director pool and one edge pool. SQL is installed on a separate backend server in default instance. No other databases on the same server. The problem comes up when trying to add

  • How to create saveable forms for Adobe Reader 6.0 using Acrobat Pro 9?

    Hi I'm using LiveCycle Designer ES (Acrobat Pro 9). I only need to create a simple pdf form where the user enters data and saves the file with the data using Adobe Reader 6. What are the steps to convert a Reader Extended PDF forms version 1.6 (Reade

  • Interconnect HTTP Adapter Send / Response

    Hi, I'm setting up an Interconnect HTTP adapter to send XML data to an outside partner. Based upon my XML I get a response XML file from that partner. The XML I'm sending is a list of requests. The response XML is either a list of verifications and/o

  • How to enforce developers to override toString() method

    Hi, Right now we are in design stage of our application. I want that all our BO classes should override toString(), equals() and hashCode() methods. We expect that our application would be running for next 5 to 10 years, and so looking for ways to en

  • Media control button

    i use satellite a305-s6858 and the touchable media buttons ( mute,play,pause... etc) stopped working. i tried all methods like bios reset and reinstall the value added package by toshiba but no thing change. please help me