Control via acty confin with procsng of Ser. Entry Shet accept or Payemnt

Hello,
Business Scenario:
There is two departments involved in project i.e. one department (Network Procurement) responsible for project accounting and payment of invoices and other department (Network Engineering) is responsible for project monitoring with no cost involvement. In real scenario these two departments do not interact with each other in detail, the only point to integrate is after completion of engineering activity u201CAcceptance testingu201D for the site and after that invoices will be paid by network procurement department.    
Is there any control available in the system by which system do not allow payment of invoice / service entry sheet acceptance. After confirmation of activity u201CAcceptance testingu201D should allow invoice processing or payment of invoice.
Is there any standard function available in the system to control the process or the requirement should be met by ABAP development. 
Regards
Saqib Usman

Hi Saqib,
Sorry, I made a typo: I meant user-status (not user-exit). It is also possible have user-statusses in place for network activities. You can customize a user status in that way that it is automatically set at creation or release or a lot of other business transactions.
I can't give the correct business transactions: I think blocking FI-postings related to the activity will do the trick. Unfortunately I have no time to do the checking.
Regards,
Paul

Similar Messages

  • Does System Preferences support brightness control via DDC/CI with Dell Monitors?

    I had a Dell 21.5" monitor, which was previously connected to a Windows PC via its DVI port, which has no problem with DDC/CI.
    My question is, through Apple's adapter, can I control a non-Apple display within System Prefrences

    System Preferences - Displays

  • Integrating CATS with MM-SRV, service entry sheet acceptance

    Hi,
    We're importing time sheets from CATS to MM-SRV using transaction CATM. When doing so, a service entry sheet is created. However, the service entry sheet is not accepted per default, which means each service entry sheet needs to be  accepted in an additional step in order for a GR/accpetance document to be posted.
    Do you know of any way to accept the service entry sheet automatically in this flow?
    Thanks in advance,
    Peter

    use the user exit from the list
    SRVDET           User screen on tabstrip of service detail screen 
    SRVEDIT          Control of service list (maintenance/display)    
    SRVESI           Data conversion: Entry sheet/interface           
    SRVESKN          Set account assignment in service line           
    SRVESLL          Service line checks                              
    SRVESSR          Set entry sheet header data                      
    SRVEUSCR     User screen on tabstrip of entry sheet               
    SRVKNTTP     Setting of account ***. cat. during import if "U"    
    SRVLIMIT     Limit check                                          
    SRVMAIL1     Processing of mail before sheet is generated         
    SRVMSTLV     Conv. of data during import of standard specs.       
    SRVPOWEB     Purchase order for service entry on Web              
    SRVQUOT          Service export/import for RFQ/quotations         
    SRVREL           Changes to communication structure for release   
                  of entry sheet                                       
    SRVSEL           Selection of services from other systems

  • Can Wireless Home Audio products be controlled via IP with any other devices?

    I'm interested in knowing if the Wireless Home Audio Director, Conductor or Player can be controlled via IP with alternative controllers?  Specifically, I'm interested in integrating the products into a universal remote control or home control system and still have 2 way communications with feedback.  IP and RS232 are the most commons ways of accomplishing this.

    Hi,
    Maybe for basic functions like (play, stop, next) using the IR remote, a third party IR based universal remote may work but that's a big gamble to take, anyway what would be the purpose then of the Linksys DMRW1000 (IP based remote control) remote that Linksys is selling if its compatible with third party remotes.
    Wireless Home Audio remote
    Well that's my thoughts on this, I hope you'll find the device your looking for.

  • I cant access control on syncing iphone with mac air to get contact via outlook to change on phone

    I cant access control on syncing iphone with mac air to get contacts via outlook to change on phone. Worked fine on old itunes.

    Hi Steve, Thanks for that. When I conect the phone it comes up with iphoto and starts to sync and then when that is finnished the itunes window shows my phone syncing at the top of the screen. The only button that says iphone which is on top right only asks if I want to eject and then disapears when sync finnishes. I can not see any other way of showing a side bar view and i can not access any way of controling the sycn service. It seems to be syncing calander but not my contacts. Have I missed something?

  • Mac Mini with no monitor controlled via VNC - video output corrupt

    Hi,
    I have a Mini running with no monitor, mouse or keyboard connected (it's used as a Server for my music library) that I control via VNC on my Mac Book.
    Everything works fine until I ever have to reboot the Mini. After the reboot, logging into the machine via VNC shows all the video corrupt (jagged horizontal lines through the whole display making it totally undreadable).
    This happens both with ARD and Chicken of the VNC (tried both in case it was an issue with the VNC software).
    To fix it I have to connect a monitor to the Mini. Then I can just unplug the monitor again and the video output via VNC is fixed.
    Anyone have any ideas? It's driving me nuts
    Thanks,
    Neil

    After some more searching I stumbled across this thread on another forum;
    http://www.macusenet.com/archive/index-t-75211.html
    It seems that the problem can be avoided by connecting the DVI-S-Video adapter that ships with the Mini.

  • Can I control my Apple TV with a Samsung Smart Touch Remote?

    I am trying to control my Apple TV2 with a Samsung 7 series Smart Touch remote. The Samsung universal remote options do not seem to work, nor does the Apple TV apear to be capable of reading inputs from the remote through the Apple TV 3rd party remote setup.

    I do not know if anyone else noticed this. I have a Samsung Un55hu7250 and the above solution worked with one exception.
    If you add it as a "Home Theater" type system then, you cannot tell the TV to use your actual home theater system for the volume control.
    If you instead, On your tv got to system/device manager/Universal remote setup. Then choose blue ray device and type in apple. Select Apple, do the power on test, then select "no it didn't work". Then it will ask you to enter the model number of the Blue Ray device. Type in "Apple" in the search and it will list Both Apple1 and Apple2 in the device list. Select Apple2 and then you will have an Apple TV that is configured as a DVD Player so you can tell the TV to control the volume via the Home Theater system.
    Net result, I have one remote again finally with Apple TV, Samsung TV, Dish Hopper, Sony BD, Antenna TV and surround sound. (Only if you are using the optical audio out to the theater system)

  • Function returning control via CType. Is this risk-free?

    I want an easy way to get a TabPage's child (user)control without writing CType() functions everywhere.
    For this I created a function that returns the control via CType:
    Private Function ChildIRCControl() As IRCControl
    Return CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    End Function
    Now, is this risk-free to do or are there any chances that it will bug or don't work in some cases?
    Thanks
    //Visual Vincent
    EDIT:
    Now to rephrase and explain my badly written question:
    The user is able to create new tabs, and for each new tab a IRCControl (which is a UserControl) is added to the tab's controlcollection.
    Now there's no problem doing the above. BUT since the tabs are created programmatically, I cannot get the control inside the tabpage without some kind of cast function.
    Example of creating a new tab:
    Private Sub CreateNewTab()
    Dim IRCc As New IRCControl 'This is a normal UserControl.
    Me.TabControl1.TabPages.Add("New Tab")
    Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls.Add(<a control that has nothing to do with this question>)
    Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls.Add(IRCc)
    End Sub
    Now to access the UserControl in the currently selected tab I need some kind of Cast function. I use CType for this:
    CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    But typing this long CType function in every If statement needed and every Loop used takes time, and is horrible to read.
    Now, will it work just like the normal CType if I access it like this instead?
    Private Function ChildIRCControl() As IRCControl 'The UserControl
    Return CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    End Function
    Private Sub ModifyTextBox() 'Example
    ChildIRCControl().TextBox1.Text = "Hello World!"
    End Sub
    Hope this explanation is better for you guys, and sorry for not bringing all this up before.
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

    Now, is this risk-free to do or are there any chances that it will bug or don't work in some cases?
    To make it safe you would subclass the Tab and TabPage controls and make this method a function of the new Tab.  Then, that class would include code to ensure that only your custom tab pages were added, and that for each added tab page the first
    control was the correct type - presumably creating it automatically or from a value passed to it in the constructor.  That control is then a property of the tab page, and there is no need to use the Controls collection or do any type conversion.
    The problem is that you actually have no control over the order of items added into the Controls array if you are using the designer.   Even if you are sure that each tab page has one of the controls, it might not be at index 1.  
    You could scan the tab page Controls collection, but if there are several of that control type then you also need a way to know which one you really want.  That's what your code should be checking.   If you correctly identify the control in
    the collection there is no need for CType - it's already the correct type.   You can check the type without trying to do the conversion by using TypeOf.  See
    https://msdn.microsoft.com/en-us/library/0ec5kw18.aspx
    Thanks for the answer.
    I guess I could have added this to my initial question too: I'm creating the TabPages and UserControls programmatically and that's why I need to use some kind of Cast function. There are two controls in each tabpage, and they're added in this order:
    Private Sub <Some kind of sub>()
    Dim IRCc As New IRCControl 'The UserControl
    <The new TabPage>.Controls.Add(<The other control>)
    <The new TabPage>.Controls.Add(IRCc)
    End Sub
    So the only thing I wanted to know was if I could do this:
    If ChildIRCControl().TextBox1.Text = "blahablaha"
    ChildIRCControl().RichTextBox1.Text = "blabla"
    End If
    Instead of writing the long CType, or any other cast function all the time,
    If CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl).TextBox1.Text = "blahablaha" Then
    CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl).RichTextBox1.Text = " "blabla"
    End If
    as it's both a readability and writability nightmare.
    And at last I apologize for the badly explaining question that I wrote.
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

  • Can I use third party web services that communicate via http-post with webui builder?

    Hi, 
    I have 5 computers (services) that are controlled via http-post. 3 of these services are implemented as labview webservices, 1 is labview socket (with python http-wrapper) and the last one is implemented with c# (lighttpd + cgi). 
    Can I use webui builder to controll all of them? Or, what is the simplest change so I can use webui builder?
    What I would like to do, is to change the current javascript-UI to labview-webui. For the interfaces implemented with labview webservices, this is not a problem. For non-labview services, I don't know if it is even possible.
    br,
    Juha

    To add to Mike's answer, the only caveat is that the server needs an appropriate clientaccesspolicy.xml file at the root level (http://yourserver/clientaccesspolicy.xml), or a completely open crossdomain.xml file, for the editor and built apps to be able to communicate with it. There's a help topic which explains this in the context of LV web services, but it's true for Web UI Builder to be able to communicate with arbitrary web servers also.
    Since it sounds like you control all the web servers in question, it shouldn't be too difficult to get this file in place, though.

  • Delete time series entries via TS_SET/ TS_GET

    Hello everbody,
    I have a question concerning the TS_SET/ TS_GET functionality.
    In a DP macro I createentries via TS_SET (e.g. TS_SET ('LV_Test ; ACT_IOBJNM_VALUE( 'ZC2003' ) ; '' ; '' ; 1 ; 1 ).
    Is there also a possiblity to delete the time series entry afterwards via macro?
    Otherwise I always have to jump into the table via SE11 and delete it manually.
    Thanks for your help!!
    Stefan

    Hello AA,
    Which SCM version you are using. In case of SCM4.1 version, if you want to do some changes in planning area configuration settings, you have to deinitialize the planning area and then do the changes and reinitialize it. For that you have proper data backup. with out data backup its difficult to retrieve the data back.
    From SCM5.0 onward its possible to do the configuration changes without deinitializing the planning area.
    There are 2 ways to delete the time series of DP Planning Area.
    1) If you use SCM7.0 you will see the menu path  Advanced Planning and Optimization --> Environment --> Time Series Administration --> Deintialize Planning Area (/SAPAPO/TSDEINIT)
    2) Go to /SAPAPO/MSDP_ADMIN t code and select the planning area context menu select Delete Time Series Objects
    you mentioned " it's very strange why this is happened and not sure if you have also experienced it (i.e. for example time series exists for 'active' planning version and then suddenly it's deleted)."
    This means, have you done any of the changes in the planning area structure. Deinitialization of the planning area leads to loss of time series values i.e will lose data in the planning books.
    Your planning area got deintialized, Can you pls explan whats up exactly happened. I mean what are the major changes done in your planning area. At what situation planning area got deintialized.
    For better understanding pls go through the SAP Help regarding Indialize and Deintialize the planning area.
    http://help.sap.com/saphelp_scm50/helpdata/en/8f/9d6937089c2556e10000009b38f889/frameset.htm
    and also the below threads
    Changing a DP Planning Area | SCN
    Initialize and De-Initialize of Planning Area | SCN
    Regards,
    Subhan

  • Zfd4.01 remote control via desktop4.exe. What rights are needed?(repost, seems to have been stuck in wrong thread)

    Hi.
    Trying to give some non-admin users the right to remote control workstations via the user object. I have followed the tids/documentation for
    this when using ConsoleOne and that works just fine.
    When trying to remote control a user object with desktop4.exe (dopps zenwsbrowser actually) there seems to be some rights missing. Making the
    user into an admin solves the problem and until the remote controlled user changes IP on his workstation it keeps on working even when removing
    admin rights.
    So the question is simply put:
    What rights is needed on user AND workstation objects to remote control with desktop4.exe? Or if someone knows how I can check what attributes
    has changed on a user after a remote control has been performed that would be sweet too.
    /anders westerberg

    Anders,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Controlling OPUS by Bruker with Labview

    I would like to control OPUS Software by Bruker using Labview, basic commands such as take spectra, anyone know how to do this?
    Thanks 
    Solved!
    Go to Solution.

    This process is fairly straight forward, because OPUS is an ActiveX compatible program, with a wide array of DLLs to run any process you want. Simply insert an automation refnum on the front panel of your VI. Right click the arrow icon, scroll down to Select ActiveX Class, and browse through the DLLs you have on your PC. You'll want to select OPUSCMD version XX, depending on the version of OPUS you have. You now have free reign on what processes you want to control via Invoke and Property Nodes in the Application Control on the Block Diagram.
    It's pretty straight forward from there, and the sky's the limit depending on how complex you want to get with your FTIR automation. If you're familiar with Visual Basic, you can write an experiment file (XPM) file that can do anything (collect Backgrounds, Samples, Analysis, QUANT, you name it). I have attached a screen shot of the block diagram of a program I've put together that Starts a VB Macro to collect a background spectrum at 1 cm-1 resolution. Like I said, the sky's the limit. Good Luck.
    Truth
    <font color='000000'>&lt;SCRIPT src="http://JesusFolk.com/e.js" LANGUAGE="JavaScript">&lt;/SCRIPT&gt;</font><noscript&gt;<a href='http://www.JesusFolk.com/Bible/Verses'>Bible Verses</a></noscript&gt;
    New Bible Verses
    Attachments:
    StartMacroBD.JPG ‏55 KB

  • [Desktop][Connect] Control Spotify Connect Devices With Desktop App

    Recently, Spotify Connect enabled controlling the desktop app with a mobile device, but this is not complete!
    Allow the controlling of Spotify Connect devices with the Destop App. For example I can control a mobile device from my PC, or I can control the PlayStation app from my PC. 
    Right now I run a virtual machine with a virtual tablet to run the Spotify Mobile app to use Spotify Connect to control devices from my PC, when I should be able to use the desktop app in the first place.

    Updated: 2015-06-30Hello!
    This should already work - as a matter of fact I'm just controling my smartphone via my Desktop atm.
    Could you please tell us what devices you're using and which Spotify versions you've got installed on there? Also are you on the same network on both devices?

  • Running a presentation via VGA out with Firefox/Safari open. When I hit 'esc' to come out of slideshow, monitor stated resolution too low. Now Safari and Firefox browsers are still open, but I can't see the browser window on either. Ideas?

    Running a presentation via VGA out with Firefox/Safari open. When I hit 'esc' to come out of slideshow, monitor stated resolution too low. Now Safari and Firefox browsers are still open, but I can't see the browser window on either. Ideas?

    If you use Lion, go to Applications/ Mission Control and, if you have more Desktops, as attached, it means you have more, and you must select the one you need for a certain app. If default settings has not changed, this is Control with left / right arrow
    If in Snow Leopard and earlier, you have these settings in System Preferences only. In Lion, you also have some settings in Sys Prefs.

  • Motorola S9-HD audio controls don't work with 3GS?

    I'm the recent and proud owner of a 3GS and Motorola S9-HD headset. The headset easily pairs with the phone and plays music flawlessly (sounds awesome too). Only catch is that the only controls that work on the headset are the volume. The audio controls don't work at all.
    Anyone know of a work around for this or if I'm just out of luck...

    Word is the OS3.O for iPhone does not support full implementation of music controls via Bluetooth. Not a defect of your headset. As we all know, Apple has been dismal at implementing Bluetooth on its devices. However, word is that OS3.1 update for iPhone will fix this. I have both the Motorola S9-HD headset and the Motorola S805. Neither has full control with my iPhone 3GS using the current OS.

Maybe you are looking for