Loading modules when using enter-pssession

Hello
I see some thing that appears unusual to me.
Server1 is running PowerShell v2
Client1 is running PowerShell v2
If I am logged directly to Server1 and do
$Host
$PSVersionTable
I get the result I would expect e.g. version 2 and PSVersion2. I can also load Modules in the normal way directly from Server1 e.g. Import-Module ...
From Client1 (or any other client) if I Enter-PSSession Server1 then
$Host
$PSVersionTable
I get the following verion 1 and PSVersion 2
So basically even though the PSVersion is 2 the Host (e.g. PS-Session Host) is version 1, and therefore I cannot load Modules as I get the following error if I try
Import-Module : The current PowerShell host is: 'ServerRemoteHost' (version 1.0.0.0). The module
'C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\pspki\pspki.psd1' requires a minimum PowerShell ho
st version of '2.0' to execute.
So it occurs to me the "Host" execution environment you get with PS-Session is a cut down version e.g. version 1
Is this normal? is there a work around for it?
Thanks All
AAnotherUser__
AAnotherUser__

What is a client system? YOu say "client1" which is some PC that is not a "server class" PC is running PowerShell V2.  What does that mean.
At any V2 system prompt this is what V2 displays:
PS C:\scripts> $host
Name : ConsoleHost
Version : 2.0
InstanceId : 5bfce22c-8b10-4c67-8dd7-435ff1c351a7
UI : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture : en-US
CurrentUICulture : en-US
PrivateData : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy
IsRunspacePushed : False
Runspace : System.Management.Automation.Runspaces.LocalRunspace
PS C:\scripts> $psversiontable
Name Value
CLRVersion 2.0.50727.3655
BuildVersion 6.0.6002.18111
PSVersion 2.0
WSManStackVersion 2.0
PSCompatibleVersions {1.0, 2.0}
SerializationVersion 1.1.0.1
PSRemotingProtocolVersion 2.1
Host will report Version 2.0  if it doesn;t you are not running V2 you are running V1.
¯\_(ツ)_/¯

Similar Messages

  • I have some web pages that loaded completely when using 3G but partially loaded using Wifi.

    I have some web pages that loaded completely when using 3G but partially loaded (only text without any images ) using Wifi. Is it a site specific issue?

    Can you rule out the NoScript extension as a cause of the issues on those sites? Even if you allow the main site to run scripts, often a website will spread its content over additional servers, so you may need to visit the "S" button menu a second or third time to get full functionality. (Over time, you'll recognize some the servers as being for ads, tracking, or sharing buttons and you can just let those parts of the page not work.)

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • Impact of Function Modules when used in upgraded versions

    Hello Experts,
              I wan to know the Impact of Function Modules when used in upgraded versions. How the function module works irrespective of changes done to it in the latest verisons
    Thanks in Advance

    Hi,
    If the function modules is released, it should not have any impact. However if not released, use them with caution as SAP does not support non-released function modules.
    Cheers.
    ...Reward if useful.

  • Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery

    Partial page load problem when using Muse in an existing non-Muse Masterpage; how to issue a jquery args.get_isPartialLoad().
    My page is loaded into a palcehold within the Ajax update panel within the current Masterpage, so page loadload doesn't occur. But if my Muse page can capture  the partial pageload then I can tell jquery to run the Muse formating routine.

    Jackie,  I am having the same issue and agree that it obscures our site analytics.
    I only have the "WebMarketing" subscription - so I cannot see how often people visit my site (unless I just dont know how to view that).  Here is a screen shot of how many different locations I have and how much it affects my site visitor count based on the other locations which seem "legit" because they have more page views than visits.
    I hope there is a way to fix or block this.

  • Af:inputListOfValues sets value of first item in result set when using enter key or tab and component set to autosubmit=true

    I'm using JDev 11.1.1.6 and when I type a value into an af:inputListOfValues component and hit either the enter key or the tab key it will replace the value I entered with the first item in the LOV result set. If enter a value and just click out of the af:inputListOfValues component it works correctly. If I use the popup and search for a value it works correctly as well. I have a programmatic view object which contains a single transient attribute (this is the view object which is used to create the list of value component from) and then I have another entity based view object which defines one of its attributes as a list of value attribute. I tried using an entity based view object to create the LOV from and everything works as expected so I'm not sure if this is a bug when using programmatic view objects or if I need more code in the VOImpl. Also, it seems that after the first time of the value being replaced by the first value in the result set that it will work correctly as well. Below are some of the important code snippets.
    Also, it looks like it only doesn't work if the text entered in the af:inputListOfValues component would only have a single match returned in the result set. For instance given the result set in the code: Brad, Adam, Aaron, Fred, Charles, Charlie, Jimmy
    If we enter Cha, the component works as expected
    If we enter A, the component works as expected
    If we enter Jimmy, the component does not work as expected and returns the first value of the result set ie. Brad
    If we enter Fred, the component does not work as expected and returns the first value of the result set ie. Brad
    I also verified that I get the same behavior in JDev 11.1.1.7
    UsersVOImpl (Programmatic View Object with 1 transient attribute)
    import java.sql.ResultSet;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import oracle.adf.share.logging.ADFLogger;
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Sep 18 15:59:44 CDT 2013
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class UsersVOImpl extends ViewObjectImpl {
        private static ADFLogger LOGGER = ADFLogger.createADFLogger(UsersVOImpl.class);
        private long hitCount = 0;
         * This is the default constructor (do not remove).
        public UsersVOImpl () {
         * executeQueryForCollection - overridden for custom java data source support.
        protected void executeQueryForCollection (Object qc, Object[] params, int noUserParams) {
             List<String> usersList = new ArrayList<String>();
             usersList.add("Brad");
             usersList.add("Adam");
             usersList.add("Aaron");
             usersList.add("Fred");
             usersList.add("Charles");
             usersList.add("Charlie");
             usersList.add("Jimmy");
             Iterator usersIterator = usersList.iterator();
             setUserDataForCollection(qc, usersIterator);
             hitCount = usersList.size();
             super.executeQueryForCollection(qc, params, noUserParams);
        } // end executeQueryForCollection
         * hasNextForCollection - overridden for custom java data source support.
        protected boolean hasNextForCollection (Object qc) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             if (usersListIterator.hasNext()) {
                 return true;
             } else {
                 setFetchCompleteForCollection(qc, true);
                 return false;
             } // end if
        } // end hasNextForCollection
         * createRowFromResultSet - overridden for custom java data source support.
        protected ViewRowImpl createRowFromResultSet (Object qc, ResultSet resultSet) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             String user = (String)usersListIterator.next();
             ViewRowImpl viewRowImpl = createNewRowForCollection(qc);
             try {
                 populateAttributeForRow(viewRowImpl, 0, user.toString());
             } catch (Exception e) {
                 LOGGER.severe("Error Initializing Data", e);
                 throw new JboException(e);
             } // end try/catch
             return viewRowImpl;
        } // end createRowFromResultSet
         * getQueryHitCount - overridden for custom java data source support.
        public long getQueryHitCount (ViewRowSetImpl viewRowSet) {
             return hitCount;
        } // end getQueryHitCount
        @Override
        protected void create () {
             getViewDef().setQuery(null);
             getViewDef().setSelectClause(null);
             setQuery(null);
        } // end create
        @Override
        protected void releaseUserDataForCollection (Object qc, Object rs) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             usersListIterator = null;
             super.releaseUserDataForCollection(qc, rs);
        } // end releaseUserDataForCollection
    } // end class
    <af:inputListOfValues id="userName" popupTitle="Search and Select: #{bindings.UserName.hints.label}" value="#{bindings.UserName.inputValue}"
                                                  label="#{bindings.UserName.hints.label}" model="#{bindings.UserName.listOfValuesModel}" required="#{bindings.UserName.hints.mandatory}"
                                                  columns="#{bindings.UserName.hints.displayWidth}" shortDesc="#{bindings.UserName.hints.tooltip}" autoSubmit="true"
                                                  searchDesc="#{bindings.UserName.hints.tooltip}"                                          
                                                  simple="true">
                              <f:validator binding="#{bindings.UserName.validator}"/>                      
    </af:inputListOfValues>

    I have found a solution to this issue. It seems that when using a programmatic view object which has a transient attribute as its primary key you need to override more methods in the ViewObjectImpl so that it knows how to locate the row related to the primary key when the view object records aren't in the cache. This is why it would work correctly sometimes but not all the time. Below are the additional methods you need to override. The logic you use in retrieveByKey would be on a view object by view object basis and would be different if you had a primary key which consisted of more than one attribute.
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i) {
        return retrieveByKey(viewRowSetImpl, null, key, i, false);
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, String string, Key key, int i, boolean b) {
        RowSetIterator usersRowSetIterator = this.createRowSet(null);
        Row[] userRows = usersRowSetIterator.getFilteredRows("UserId", key.getAttribute(this.getAttributeIndexOf("UserId")));
        usersRowSetIterator.closeRowSetIterator();
        return userRows;
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i, boolean b) {
        return retrieveByKey(viewRowSetImpl, null, key, i, b);

  • Documents in Sharepoint don't load correctly when using Windows 8.1

    Hi All,
    We currently have a problem with SharePoint incorrectly loading Documents when on a Windows 8 machine when the link to the document is within an iFrame or a direct link.
    For example:
    Windows 7 User clicks on a SharePoint document link (for example: http://intranet/Customers/Customer/Proposal.docx), this link is embedded in an iFrame in another site (for example: http://crm/Customers/Customer/Proposals).
    The document then loads or presents a 'Open, Save or Save As' option.
    Windows 8 User clicks on the same SharePoint document link, The document loads in the background of the user. The process WINWORD.exe is in the task manager, but nothing is displayed.
    This is only for Windows 8 users. I have tried both on IE 11 and 10 on Windows 7 machines and as long as the user has the Office Document Cache Handler installed and enabled, the user is fine.
    Navigating directly to the Intranet with the Windows 8 User and locating the document opens the document as normal with no Issues.
    Directly copying the address to the document and pasting it into the address bar presents the same issue.
    The issue seems to be the way in which Windows 8 computers deal with SharePoint documents, in that the addin which helps with version controlling documents in Office 2013 does not load when a document is directly clicked, rather than navigating to sharepoint
    and then finding the document.
    I can provide further information if needed.

    Hi,
    I wonder if you directly insert a link to document from address in the curren site home page, it still does not work:
    From your description, I suspect the issue might be related to browser. Could you please test the issue with other browser on the Windows 8.1? I am using Windows 8.1 as client machine and I cannot reproduce the issue.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Function module when used should not display ALV

    Hi ,
    All ABAP Gurus
    I want to use a function module WS_DELIVERY_MONITOR which should give the VBELN on the basis of CHARG in internal table so that on the basis of VBELN I can fulfil further requirement and display the final output in ALV.
    But this function module when executed display an ALV.
    My requirement is that it should retrieve all the VBELN on the basis of CHARG (which is in the internal table and is passed to the function module) in an internal table and do not display the ALV so that when all the VBELN come in internal table then I can perform further calculation.
    Please guide me in this matter.
    Thanks & Regards
    Bharti Jain

    Hi Bharti,
    Please try calling FM 'WS_LM_DATA_SELECTION' instead. This FM is callled inside main FM 'WS_DELIVERY_MONITOR' and is used to fetch data. You will only need to fill extra import parameter for using  this FM ( if_flag_inbound) and two changing tables  (lt_postab) and  ( lt_postab_kodat), which will have results. 'if_flag_inbound' field will be having value X for all inbound cases.
    I have used the same FM to get open deliveries:
    CALL FUNCTION 'WS_LM_DATA_SELECTION'
        EXPORTING
          if_proctype                 = c_proc_type_f
        TABLES
          it_matnr                    = i_deliv_matnr
          it_lgort                    = i_deliv_lgort
          it_lfart                    = i_deliv_type
          it_kostk                    = i_deliv_kostk
          it_wbstk                    = i_deliv_wbstk
          ct_postab                   = i_deliv_nos
        CT_POSTAB_KODAT             =
        EXCEPTIONS
          no_data_found               = 1
          wrong_proc_type             = 2
          OTHERS                      = 3 .
      IF sy-subrc = 0.
    **-Calculate open delivery quantity
        LOOP AT i_deliv_nos INTO wa_deliv_nos
                                 WHERE NOT posnr IS INITIAL.
          pc_open_deliv_qty = pc_open_deliv_qty + wa_deliv_nos-lfimg.
        ENDLOOP.
      ENDIF.
    <removed by moderator>
    Edited by: Thomas Zloch on Sep 7, 2010 9:06 AM - please do not ask for ...

  • Display Item cleared when using 'Enter-Query'

    Hi all,
    i am going to develop a multilanguage application with very
    special heading texts using display items for these headings.
    BUT- if I press EnterQuery, they are cleared also.
    How can I restrict cleanup of these display items used as
    headings ?
    I was looking in the properties, but no idea.
    Thanks for help,
    udo

    I'm showing how to do it when switching modes. I'm
    not suggesting this is the best way to do a query.We need to look at this in the context of the original probelm in the thread linked to above. For most cases the when-timer-expired etc is just a huge detour around using the pre-query trigger but it's an interesting approach to the specific problem in the earlier thread. The OP there wanted to be able to type '>5000' into a number field in a non-database block, which we can do in a database block in enter-query mode, and use it as a query parameter in the database block. Perhaps if we enter this into a character field in the non-database block and populate the numeric field in the database block whilst in enter-query mode then we can do searches on ranges of data? Unfortunately it doesn't work - you get an ora-06502 error just like you do when using the pre-query trigger. For the situation in the original thread you would have to use a 'default where'.

  • CL_GUI_ALV_GRID Problems when using enter and f4 in one ALV

    Hi guys,
    i have the following problem:
    I Use a ALV, which has a column MATNR. The ALV provides the standard search help for this field automatically. so far so good. BUT i also need to read additional data, such as GLD, Material shortext etc, when the users presses the Enter Key.
    Here is my coding:
          CLASS lcl_events DEFINITION
    CLASS lcl_events_0300 DEFINITION.
      PUBLIC SECTION.
        METHODS:
          handle_data_changed
                FOR EVENT data_changed OF  cl_gui_alv_grid
                IMPORTING er_data_changed sender.
    ENDCLASS.                    "lcl_events DEFINITION
    The problem that occurs: if i select a material via f4, i just can add one material to the alv. if i place the cursor into the second line, press f4 again, the alv overwrites the MATNR in the first line
    i think the problem has to do with the fact, that the alv runs throug my enter event, when pressing f4.
    thats how i registered my event:
      g_o_alv_grid_bart_0300->register_edit_event(
      EXPORTING
       " i_event_id = g_o_alv_grid->MC_EVT_MODIFIED ).
         i_event_id = g_o_alv_grid->mc_evt_enter ).
    ...und EventHandler zuweisen
      CREATE OBJECT g_o_alv_events_0300.
      SET HANDLER g_o_alv_events_0300->handle_data_changed FOR g_o_alv_grid_bart_0300.
    kind regards, mark
    Edited by: Mark Wagener on Aug 19, 2010 11:39 AM
    Edited by: Mark Wagener on Aug 19, 2010 11:40 AM

    Sorry for forgetting the impl. part of the class!
          CLASS lcl_events_0300 IMPLEMENTATION
    CLASS lcl_events_0300 IMPLEMENTATION.
      METHOD handle_data_changed.
    HandleDataChanged                  ***
        DATA: ls_good                TYPE lvc_s_modi.
         FIELD-SYMBOLS: .
    alle Inhalte der geänderten Zellen in die interne Tabelle schreiben
        LOOP AT er_data_changed->mt_good_cells INTO ls_good.
    Dazu auf die richtige Zeile in der ITAB positionieren:
          READ TABLE  INDEX ls_good-row_id.
          IF sy-subrc = 0.
    Und das geänderte Feld dem Feldsymbol zuweisen
            ASSIGN COMPONENT ls_good-fieldname OF STRUCTURE .
            IF sy-subrc = 0.
    Feldwert zuweisen
              -matnr
            AND bwkey = werks.
      ENDLOOP.
    Und neu ausgeben
        g_o_alv_grid_bart_0300->refresh_table_display( ).
      ENDMETHOD.                    "handle_data_changed

  • Why do some webpages not finish loading images when using cellular data instead of WiFi?

    I'm using iPhone 6 64gb. The problem existed with iOS 8.0.0 and the iOS 8.0.2 update.
    I have had trouble with webpages loading slowly over AT&T LTE. Sites with multiple images frequently have trouble loading all the images entirely. Instead, the unloaded portion of the image fills in with black or the image fails to load at all. If I switch to WiFi when available and refresh the page, the images will usually reload completely. I never had this problem with the iPhone 5s on the same websites.

    I'm on AT&T with an iPhone 5 first gen. This problem is happening across iPhone4s al of the way to iPhone6+
    Thought it was only affecting newer iPhones with new Graphic Processors but I later ruled that out.
    Seems to only be happening on LTE / 4G. Is not affected on WIFI for me.
    I clear cache, crash browser and even reset the phone but will still get unexpected results in LTE or 4G.
    The images seem to be getting prematurely cached and are only partially rendering.
    When I save the these half loaded images in photoshop I get a warning that they are damaged and/or truncated.
    I have saved images out as PNG and JPGs renders poorly.
    About the images-
    These images are only 15k and there are 16 on the page so I can't see why they would get bottlenecked when loading.
    also, there is no background-color of black anywhere in the CSS.
    Note the TV-Like static on the bottom image similar to the comment  ryzer08 above.
    NEXT IMAGE.....

  • Ribbon Stuck At Loading Only When Using VPN??

    Hey SharePoint Fam,
    Just ran into a very weird issue that I am not sure where to start.  Basically the ribbon works 100% for myself and all users at the office on the network.  We have vendors/contractors that vpn using sslvpn and they are totally unable to get to
    the ribbon or click the add a document link.  The ribbon just stays at loading and the add a document link does nothing when clicked.  I logged into SharePoint with my username which has full admin access and got same issue when going the sslvpn
    route but no issue here on the network at office.....I enabled the allow dns suffix setting and did a flush but still no luck..
    thanks for any help

    Thanks for advice.  Turns out that our Cisco WebVPN and SharePoint 2010 don't like each other I guess.  I had to add the following to webconfig file and now everything is working 100% for all outside users that vpn into our system.
    <system.web.extensions>
         <scripting>
               <scriptResourceHandler
    enableCompression="false" enableCaching="true" />
         </scripting>
    </system.web.extensions>
    site that helped:
    http://www.jbmurphy.com/2012/12/06/problems-with-sharepoint-2010-menus-and-javascript-using-a-cisco-webvpn-asa/comment-page-1/#comment-58555

  • EIGRP load balancing when using HSRP on LAN

    Hi 
    I have a question about my topology. I have two routers  with EIGRP on both of them connected through 2 ISPs to other site. On those routers i have HSRP runing. Now my question is: HSRP is standby/active protocol so when one router act as active will it send data to other site only through one ISP??? will load balancing work on WAN side? will routers use both ISPs or just one- the one which is active in HSRP when sending data???

    Hi sotiris_pafitis, may be I didn't understand what you mean but if the idea is to configure one static on each router  (pointing it's ISP) and redistribute it in EGRIP, I disagree: is useless because the other router will prefer the static route due to its better administrative distance. Using EIGRP unequal load balancing is useless because  it balanced EIGRP path with different metric, not different Administrative distance. Isn't it ?
    If you want to use static route simply configure two static route on each router: one though WAN interface and the other through the LAN.
    For example:
    R1#conf t
    ip route 0.0.0.0 0.0.0.0 192.168.13.3
    ip route 0.0.0.0 0.0.0.0 192.168.12.2
    The result is:
    R1#sh ip route 0.0.0.0
    Routing entry for 0.0.0.0/0, supernet
      Known via "static", distance 1, metric 0, candidate default path
      Redistributing via eigrp 100
      Advertised by eigrp 100
      Routing Descriptor Blocks:
      * 192.168.13.3
          Route metric is 0, traffic share count is 1
        192.168.12.2
          Route metric is 0, traffic share count is 1
    In any case I think static router is not a good choice: in case of a fault on ISP 1, WAN interface can remain up producing a routing blackhole. If possible it's better to have a dynamic routing protocol between router and ISP, receving the default route and changing delay on interf to have the same metric for both  the path 
    Bye,
    enrico

  • Some of my AOL mails are not loading properly when using Firefox, they do come up when I use the AOL desktop, but they are S O SLOW

    I have been using Firefox for a long time now since AOL became
    S O SLOW with their Desktop Version in loading up mail.
    But in the last two months I have been loading my AOL mail and some of mine and my husband's do not come up at all, even when they are forwarded by other people.
    The header is there and it says the mail was loaded, but nothing in the actual page comes up

    OK you need to upload these images to your remote server because they are missing from the server or that they have gone to a different folder.
    http://www.elchocomining.net/double%20drawings/Florentino.jpg
    http://www.elchocomining.net/double%20drawings/Mujer+matracaA.jpg
    http://www.elchocomining.net/drawings%20/DJMujerarreglandocanal.jpg
    http://www.elchocomining.net/drawings%20/DibujoProhibido.jpg
    http://www.elchocomining.net/drawings%20/LTCocinaA.jpg
    http://www.elchocomining.net/drawings%20/BbTrilladoradeArroz.jpg
    http://www.elchocomining.net/drawings%20/TallerCoserA.jpg
    In future always define your site correctly with all folders and file names without spaces in them.  For example "drawings 20" is not a good name.  You should rename it to "drawings20".
    When you have corrected this especially when you have uploaded the photos again then they will appear all right on the page.  after that you need to validate your pages for correct HTML and CSS but this can wait for now.
    Good luck.

  • Firefox stops loading webpages when uses 99% CPU ( mozcrt19.dll )

    When are opened differents webpages ( not many pages, even with 2 ) Firefox uses 99% cpu and doesn't load pages anymore until i restart it or kill the process. ( sometimes i need to kill it because the process never finishes ).
    With a process viewer software, i can see this file using the CPU ( mozcrt19.dll ). This is an intermittent problem, there's no a specific page.

    This is why i hate free software.
    Support sucks.

Maybe you are looking for

  • New Photos Library Not Showing up in Media Browser

    Hi, all-- I have the new Photos Library app, but I cannot select photos from it in other apps (like Twitter) because it doesn't show up the Media Browser that appears in the sidebar. The Photos Library is stored in my Pictures folder, and although I

  • I can't add simple HTML link to HTMLDocument in jEditorPane

    h5. How to construct a link to make it work? HTMLDocument doc = (HTMLDocument) jEditorPane.getDocument(); String link = dialogSlownikEkranow.getLink(); SimpleAttributeSet tag = new SimpleAttributeSet(); SimpleAttributeSet attrs = new SimpleAttributeS

  • Date format Problem in forms&reports Services 10g

    Hi Dears, I Faced a problem during running reports ( i am using forms& Reports Services 10g), when i pass the parameters via parameter form to the report (built in forms10g Rel 2.0) its appearing in arabic like (25-يناير-2010) as my Date Formate is (

  • BAPI to check ATP Against Product Allocation

    My client has a requirement to check the ATP Against allocation when he create Sales Order Thr SAP CRM. Can anyone suggest which BAPI suits this requirement.? In brief - I required a Function Module that will return the quantity of material availabil

  • Audigy 2NX Recording Issu

    I am using the Audigy 2NX Sound Blaster to record voice recordings used for a training demo. I have tried recording and saving as both wav and Mp3. For some reason the recording sounds like there is small echo. To be more specific, it sounds like a P