Expenses document problem in service calls

Hi,
In the service call document we have the expenses tab under which we can view all the documents (Inventory transfers,deliveries..etc) related to that call. Well now my problem is as follows...
I create a service call and later i add many expenses to it.. say i added 3 Inventory transfers and as long as the service call is OPEN I'm able to see the documents added in the Expenses tab when the Display all documents is checked.
Now when i close the service call the contents in the Expenses tab become inactive and I'm not able to view the expenses documents and the Display all documents check box is also disabled.
Hope I'm clear.
Thanks in advance,
Vasu Natari.

Hi Jeyakathan,
Thanks for ur quick reply, the details are as follows,
Q1. I'm logged in as manager and I have full authorization.
Q2. I'm using 2007 B PL SP:00 PL:10
Q3. Even after closing and reopening the service call if the status is Closed the expenses tab is inactive(I mean that the tab is active but all the matrix are inactive) and the Display all documents is also inactive.
Thanks,
Vasu Natari.
Edited by: vasu natari on May 15, 2009 10:31 AM

Similar Messages

  • Problem in Service Call

    Hi All,
    I'm trying to Use Service Call Functionality in Web Dynpro Component to use the class method for the context.
    When running the wizard I'm only getting the option of Function Module RADIO BUTTON ONLY.
    I'm not getting the Class method and other radio buttons.
    Please suggest solution.
    Regards,
    KUMAR

    Hi Alex,
    Thanks for the response.
    In Create Service Call in the 3rd step while trying choose the service type I'm getting this problem.
    While selecting the Service Type In ECC 6.0 System Im getting the following options as radio buttons
    Function Module
    Assistance Class Method
    Class Method
    Web Service Proxy.
    Where as in Solution Manager System
    I'm getting only 1 radio button that is Function Module.
    Please Suggest.
    Regards,
    Kumar

  • 781084 - Cannot add document which needs approval to a Service Call

    Hi Experts,
    Is there any update on this error per SAP Note 781084?
    Symptom:
    When linking a sales document, which needs to be approved via an
    approval procedure, to a Service Call under the Expenses tab page, the
    document will not be displayed in the Service Call window after its
    approval.
    Cause
    Definition problem.
    Solution
    A DRQ number 3383528 was opened.
    IM 2653636.
    I am now using 8.82 version and the issue still exist. Any help would be greatly appreciated.
    Thanks,
    Don

    You can add the document to the service call once it has been approved. For instance:
    1) Create service call
    2) go to Expense tab, create a new Sales Order
    3) Sales Order goes to Approver (at this point, the sales order doesn't appear on the expense tab)
    4) When the Sales Order has been approved and added to the system, go back to the Service Call > Expense Tab > > Expense Details > New Document > Order
    5) At this point, the Sales Order window opens in Add Mode. Press Ctrl-F, and go to the Approved Sales Order. Click OK.
    6) the Sales Order should appear on the expenses tab in the Service Call.
    Hope this helps.
    Reza

  • Capture travel time expenses and working hours spent on the service call

    Hi Experts,
    I have One Year AMC contract with my customer.Under AMC he called me for 10 times.I need to
    Capture travel time expenses and working hours spent on all the service call, Non of them will be billed to the customer.
    This is just for our internal tracking.this particular data will reside within the office premises.
    Explain how efficiently we can track this particular requirement in SAP Business One
    Regards,
    Vikram

    Hi Vikram
    You will notice on the item master records that there is a field called Item Type. The options are Item, Labor and Travel. In order for the service module to recognize the expense or charge type, either Labor or Travel must be select. Create a service item (untick inventory item) and choose the Item Type as Labor or Travel. When you now create a Delivery/Invoice from the expenses section of the service call, it will identify and warn you if you charge the customer, as this would be defined in your service contract template as non billable charges. You can still create a Delivery for the charges and put quantities and values on the Delivery document. In this case you are not going to invoice the customer for the charges, so you can "Close" the Delivery. Just be aware that closing the Delivery will post the value to an offset account defined in the Account Determination.
    The benefit of this approach is that the Delivery will post a debit and credit in your G/L that will "accrue" what the costs are of servicing the customer. My suggestion would be to set the account determination for the Labor/Travel item(s) to item level and define the Revenue/Expense accounts to specific G/L accounts.
    Let me know if you need more information or assistance with the above.
    Kind regards
    Peter Juby

  • Adding Sales Order to Service Call Expense

    Hi,
    Does anyone know how to add a Sales Order Document to a Service Call Expense?
    Please help me.
    With Regards
    B.Ravi Shankar

    One can do using attachment or else you have to link it using programming.

  • Error in setting the linenum for new expenses document

    Hi all,
    I have created an add-on procedure to add a new expenses document to a selected service call.  Although the code compiles without any errors, when I go back and check the expenses tab in the service call form, the new document doesnt appear in the expenses grid.  I also checked whether the data was saved into the corresponding SCL2 and SCL4 tables.  The new stock transaction is not saved into the service call.  My current code is:
    Public Sub add_StockTransaction(ByVal strGRJobID As String, ByVal srtSTDocNo As String)
            Dim oServiceCall As SAPbobsCOM.ServiceCalls
            Dim oExp As SAPbobsCOM.ServiceCallInventoryExpenses
            Dim bRetVal As Boolean
            Dim errcode As Long
            Dim errmsg As String
            Try
                oServiceCall = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oServiceCalls)
                bRetVal = oServiceCall.GetByKey(strGRJobID)
                If Not bRetVal Then
                    SBO_Application.MessageBox("Failed to Retrieve the record.")
                    Exit Sub
                End If
                oExp = oServiceCall.Expenses
                oExp.Add()
                oExp.DocumentType = "67"
                oExp.DocumentNumber = strSTDocNo
                oExp.DocEntry = strSTDocNo - 99999
                SBO_Application.MessageBox(oExp.LineNum)
                oExp.SetCurrentLine(oExp.LineNum + 1)
                oExp.StockTransferDirection = 1
                oExp.Add()
                oServiceCall.Update()
                bRetVal = oServiceCall.Update()
                If bRetVal = False Then
                    oCompany.GetLastError(errcode, errmsg)
                    SBO_Application.MessageBox(errmsg)
                Else
                    SBO_Application.MessageBox("Successfully added stock transaction to Service Call.")
                End If
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
    end sub
    I would appreciate any help as I tried so many ways of solving the problem but couldn't find a solution.  Thank you all in advance.

    Bingo.... I got it.
    Thanks for your hint about the ./.profile. I was setting env variables in .cshrc file and my default shell for "oracle" user was sh.
    Then I changed the default shell for oracle user to csh and viola..... it works.
    root@zngds1gk # su - oracle
    $ id
    uid=100(oracle) gid=101(dba)
    $ setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/sh
    $ exit
    root@zngds1gk # usermod -u 100 -s /bin/csh oracle
    root@zngds1gk # su - oracle
    zngds1gk%
    zngds1gk% setenv
    HOME=/space/oracle
    PATH=/space/oracle/app/oracle/product/10.2.0/Db_2/bin:/usr/bin:
    LOGNAME=oracle
    HZ=100
    TERM=xterm
    SHELL=/bin/csh
    zngds1gk% cat .cshrc
    umask 022
    setenv ORACLE_BASE /space/oracle/app/oracle
    setenv ORACLE_SID adm
    setenv DISPLAY 47.102.212.108:0.0
    setenv ORACLE_HOME /space/oracle/app/oracle/product/10.2.0/Db_2
    setenv PATH /space/oracle/app/oracle/product/10.2.0/Db_2/bin:$PATH
    And now it works...
    Thanks.
    ~Jayant

  • How can I associate an A/P invoice to a service call?

    Hi,
    Customer wants this:
    1. They (Co. A) gets a service call from their customer say for lump sum of 400 dollars.
    2. They (Co. A)  give out a contract to technician say at 45 dollars an hours and travel expenses. This is SERVICE ITEM for a total expense of say 45*2+120=210.
    3. Technician (A Vendor BP in SAP Business one) produces a PO. Co. A pays off the Technician.
    How can I create a Service Call to show both ends of incoming revenue and outgoing expense in the service call?
    Appreciate your help.
    Thank you.

    Dear Syed Aleem,
    I have described some ideas, but if these ideas do not help you, please come back to us with more details of what you need.
    1. They (Co. A) gets a service call from their customer say for lump sum of 400 dollars.
    Here you can create the servce call with the information in the General Tab and in the Remark and in the subject. If this is not enough I would suggest to create an activity and write your remark and content in the activity.
    You can create an activity clicking on the Activity tab. In the activity there is a tab called linked documents and you can add documents linked to the activity and service call.
    2. They (Co. A) give out a contract to technician say at 45 dollars an hours and travel expenses. This is SERVICE ITEM for a total expense of say 45*2+120=210.
    You can use anothe activity or you can add Return from Technician under the Expenses tab of the Service call.
    3. Technician (A Vendor BP in SAP Business one) produces a PO. Co. A pays off the Technician.
    Now, create another activity (or your first one) and add the Purchase order and the payment to it.
    Please, let me know if my suggestions help you.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Service Call and Invoice For That Service Call

    What field relates an invoice created within the service call form under expenses, to the originating service call number. I know it is somewhere but I cannot find it.  The invoice needs to know the originating service calll number.
    Thanks, David

    Yes the field is there SCL4 but the problem is timing. It is posted too late to be meaningful.
    While in an invoice,  I need to capture the service call ID so that I can assign the service call id to a field in the invoice, and also
    import the remarks from the service call to the remarks on the invoice.
    The way B1 words is that SCL4 gets populated way too late in the game. The SCL4 table gets populated only after Updating  the service call itself. This is after the user has created and exited the invoice.
    Any other suggestions for dynamically capturnig the invoice id during invoice creation under a service call?
    Thanks, David

  • DI - Adding Invoice to Service Call?

    Does anyone have any VB examples of using the DI to add an invoice to a service call? We have no problems creating Invoices and no problems creating Service Calls but associating the Invoices with the Service Calls has proven to be a formidable challenge.
    From the looks of the ServiceCalls object I'm guessing you use the Expenses (ServiceCallInventoryExpenses) child object to add a line for the associated Invoice, set the doctype, docentry, and docnum and voila. When I do this, however, I get a -5002 error saying "No related record found. [OSCL.assignee]." I can't fathom what the assignee has to do with an invoice but I have verified that the invoice exists and I'm setting the correct doctype, docentry and docnum for it.
    If anyone has any insight as to how this is supposed to be done, I would greatly appreciate any assistance.

    Nevermind. I worked around it.

  • Series Primary overlaps object Service Call

    hI SAP gurus,
    i am trying to create new series in Document Numbering for  'Service Call' , it doesn't allow me to create Series Numbering and following Error is showing ...
    Series Primary overlaps object Service Call
    Does any one know how should i create a new Series for Service Call..?
    i appreciate your help.
    Thanks and Regards,
    kaviprashu

    hi,
    ok i will quote this for you
    Symptom
    It is a legal requirement in Brazil that service calls are numbered.
    Solution
    To facilitate the legal requirement that users can trace and manage service calls efficiently, it is now possible to assign service calls to sequential series numbering. All marketing document numbering rules (search, overlapping numbers, manual series, and etc.) are also applied on service calls. The following fields and objects are added:
    In the Document Numbering - Setup window, the service calls object is added.
    To access the Document Numbering - Setup window, choose Administration -> System Initialization -> Document Numbering.
    In the Series - Service Calls - Setup window, the 'Primary' series is added.
    For new and upgraded companies, the application automatically creates the 'Primary' series for service calls.
    In the Numbering Series - Setup window, the 'Primary' series is added.
    In the Service Call window, the No. fields (selection of series and number) are added.
    To access the Service Call window, choose Service -> Service Call.
    In the Relate Series to Document - Setup window, the service calls object is added.
    For the service reports (Service Calls, Service Calls by Queue, Response Time by Assigned to, Average Closure Time, Service Monitor, My Service Calls, My Open Service Calls and My overdue Service Calls, Service Contract document - subtab Service Calls and Customer Equipment Card - subtab Service Calls):
    Call No. (label text) is changed to Call ID.
    The Document No. field represents the new call no. field.
    Series column is added to service reports.
    The Check Document Numbering - Selection Criteria window also includes checking of the service calls sequence.
    To access the Check Document Numbering - Selection Criteria window, choose Administration -> Utilities -> Check Document Numbering.
    For new created service calls, no record will be written to History Change Log when you add service calls (the same as the system behavior in the marketing documents).
    Only after the actual update on an already added service call, a history record will be added.
    There is no change in the already existing Call ID field, the behavior of this field stays the same.
    Other terms
    service calls, series, numbering, B1, sequential
    Header Data
    Released on     15.08.2011 15:48:33
    Release status     Released for Customer
    Component     SBO-SER-SCL Service Call
    Priority     Recommendations/additional info
    Category     Advance development
    References
    This document is referenced by:
    SAP Business One Notes
    1606253           Overview Note for SAP Business One 8.81 patch 07
    Validity
    Software Component
    Version
    SAP BUSINESS ONE
    8.81
    regards,
    Fidel

  • Linking expense document to service calls

    Hello
    Can anyone tell me if it is possible to link expense documents to service calls, after they are created in Sales A/R module or after an approval procedure?
    I have found de following note (1052012)  that says that is possible, but i can not see how.
    Thanks in advance.
    Miguel Machado

    Hi Miguel,
    I'm not entirely sure where this conversation is going and why you are querying tables.
    From your original post you asked is it possible to link expenses that have already been added to the system, the simple answer is yes.
    When you are creating a service call, go to the Expenses tab and click on the Expense Details button.  From here click New Document.  Select the type of document you want to add such as Sales Order.  This automatically opens up the Sales Order form in Add mode, from here you can go in to Find mode (Cntrl & F), enter the Sales Order number that you want to add, when that is on the screen click OK.  This will move that sales order number to the Service Call expenses screen where you can update.
    Regards,
    Adrian

  • Link between Service Call and Marketing documents not working

    Hello all,
    I found a field in Marketing Documents - Rows data - that should be the link between a Service Call and the Marketing Documents.
    The field is for example "INV1.isSrvCall" but, even if I create an Invoice from the Service Call, the field will be populated with the value "N".
    Dows anyone knows how to make this field work? Or any workarround to make the connection between a Service Call and the generated documents?
    Thanks in advance,
    Kind Regards

    The problem with SCL4  is that SAP updates it way too late in the process to be meaningful while in the module. You create a service order, then go into the expense document. That is when we need to know the service call id and the internalsn of the equipment being worked on Only when you get out of the service module do SAP post to SCL4.  
    The data (before writing to SCL$) exists as a veriable on the original service form.  But can we access it from the expense document?
    The question is how to access the data (service id) on the original service form from an expense document within the servide module. It is the service form, and that is currently not in focus, so I do not know if you can access it as a varaible, while in the expense document (sales order or invoice) that is in focus.
    Can any one help with this/
    David

  • Thanks this was very useful.. I have a brand new iphone 4s unlocked version from singapore and I am having the same problem constant network fluctuations, no service, call failed, invalid sim, sim failure, bars fluctuating from 5 - 3 - 2 - 1, no signal/ba

    I have a brand new iphone 4s unlocked version from singapore and I am experiencing constant network fluctuations on my iphone , no service, call failed, invalid sim, sim failure, bars fluctuating from 5 - 3 - 2 - 1, no signal/bars searching etc... Ifeel miserable after trying out all the options changed multiple sims, tried multiple carriers, restored the phone back and have set-up as new device but the problem does not get solved... its is so frustrating that after investing on a world's most expensive phone you cannot enjoy the calling features which the phone offers which is the main thing you own the phone for.. Rest of the things are working.. The funniest part I am not able to make calls or receive calls but can access the internet..  I have tried every possible thing and really very frustrated with this iphone of mine...I hope the problem gets solved.. would anyone have any solutions to this problem.. Does it mean one should never update software as I hear that after updating to IOS.5.1 the problem has started coming and same has been with there.... Apple says its a hardware failure which is very difficult to digest as sometimes I get 5 bars and able to make and receive calls but 95% of the time I am unable to. If anyone has any solution I will be very happy if he or share can share the same. Many thanks. its so disgusting to experience this on top of this apple does not support global warranty for the phone as you need to go to the country from where you bought the phone for replacement.. Truly sad state of affairs.. very very very dissappointing.

    Have a look at this it might help
    http://support.apple.com/kb/TS4148

  • Problem in passing/returning objects over dynamic web service call

    Hi Friends,
    I am beginner in java web service.
    Here is the problem I am facing when I pass/return user defined objects to remote web service method using dynamic we service call.
    The client can call the remote web service method in 2 ways.
    1. By generating client stubs using WSDL file
    - In this case, I am able to pass/return the user defined objects to remote method without any issue only when the server side web services are deployed in any server(jboss)
    - But in java 1.6 & above, the web services can be deployed without server using endpoint. In this case, I am not able to pass/return objects over web service calls.
    2. Without generating client stubs (dynamic web service call)
    - This will establish a connection at run time using the given WSDL file (I have attached the document). I have to form an XML(This will contain API name, arguments) string as input at run time
    - In this case, it allows only string as argument while passing & returning.
    Please let me know if you can help me on this.
    Regards,
    pani

    I'm not sure about your question, but this might help:
    [http://forum.java.sun.com/thread.jspa?threadID=5251188|http://forum.java.sun.com/thread.jspa?threadID=5251188]
    You might also want to read on JAXB.

  • Does UTL_HTTP support calling document style web service??

    Hi,
    I am exploring UTL_HTTP options for one of the web service call requirement at a customer site.
    Can any one tell if they have used UTL_HTTP for a document style service.
    If so, pls share the code.
    TIA,
    -Bhawani

    >
    wscompile -keep -verbose -import -f:documentliteral
    -f:nodatabinding config.xml
    wscompile -cp . -keep -verbose -gen:server
    serverconfig.xml
    [creating model: test]
    [creating service: Test]
    [creating port: MyIntf]
    [creating operation: callTXLife]
    error: Type "javax.xml.soap.SOAPElement" implements
    more than one interface, interfaces:
    "javax.xml.soap.Node", "org.w3c
    .dom.Element" ...
    I have the same problem with J2EE 1.4 AS Developer Release.

Maybe you are looking for

  • Junk Characters line at the Receiver MAIL

    Experts, My Scenario is File-to-MAIL   and i have used XSLT mapping.  I'm getting correct output but at the end of the ouput i'm getting unwanted data. Could you tell me the reason; Note: I have browsed throuth the threads but non helped me.

  • Can we create a local client copy for the RFID Client in discovery Box

    Can we create a local client copy for the RFID(400 Client) in the Discovery Box,and if created which profile we have to select for the client and also at a time we can work on these both client or not  .

  • Preview dumbed down?

    Heya, for 2 weeks ago i finally upgraded to Snow Leopard. But i've notice that the application Preview don't work as it used to. Such as the drag & drop of multi pictures into a folder don't work anymore. Now i can only do one by one. I also notice t

  • How Install workspace on Solaris ?

    Hello All , I use Hyprerion 9.3.1 and Now I working under installing Planning on Solaris. After Installing Planning I must install workspace to use Planning. I have problems during insallation Workspace I can't autodeploy workspace on Tomcat (((( why

  • Need suport for sony nex ea50

    Hi, When the camera sony nex ea50 and the Sony HXR-FMU128 to pc (windows 7 64bit) does not show the flash content, and disconnecting it from the camera and connect via usb show does not need a constant as memorizing 128 gb flash from the camera?