Adding documents to CUCCX call center to be used in script

Hello,
     I'm looking to create a "waiting times" prompt which will alert people how long they may have to wait for service.  We have another system outside of CUCCX that has these stats and our programmer has suggested placing an integer into a flat file that can be uploaded to the CUCCX server which can in turn be read, turned into an integer, and then have some "if" logic applied to it.  So, my question is;
1) How can I set up a user account in CUCCX that will allow for write access to an external user?
2) Where is the default directory that this document would be uploaded to?
Any help is appreciated, thank you.

I'm not sure what I said to confuse the point, but UCCX *can* access a web server via HTTP.  That's what I linked to in the Data Sheet.  Also, don't get too hung up on the XML part, you can easily read a plain text file.
It only takes a single step to read the data.  Here's an example:
Set http_response = URL[http://myinternalserver.company.com/lobby99/waittime/]
Where http_response is a String.
And depending on how you want to inform the caller, the next part could be as simple as this:
Play Prompt (--Triggering Contact--, P[the_wait_time_is] + N[http_response] + SP[gen/time/minutes])
Of course you may prefer time ranges like this:
Set wait_time = Interger.parseInt(http_response)If (wait_time >= 60)  True    Play Prompt (--Triggering Contact--, P[one_hour_wait_or_more])    Goto Main Menu  FalseIf (wait_time >= 30)  True    Play Prompt (--Triggering Contact--, P[half_hour_wait_or_more])    Goto Main Menu  FalseIf (wait_time >= 15)  True    Play Prompt (--Triggering Contact--, P[quarter_hour_wait_or_more])    Goto Main Menu  FalsePlay Prompt (--Triggering Contact--, P[less_than_15_minutes])Goto Main Menu
Where wait_time is an int.
Be sure to have error checking/handling in place too.  I didn't include that.
Anthony Holloway
Please use the star ratings to help drive great content to the top of searches.

Similar Messages

  • Call a Java API using Unix Script

    Hi SDNers,
    I want to call a Java API using Unix Script. Please suggest what will be the commands in Unix.
    Please help!!
    Thanks,
    Priti
    Edited by: Priti Rani Patnaik on Jul 7, 2010 4:17 PM

    Hi
    Try this
    String[] cmd = {"/bin/sh", "-c", "ls > hello"};
      Runtime.getRuntime().exec(cmd);
    [Other Help|/thread/5425832 [original link is broken];
    BR
    Satish Kumar

  • Calling rows and columns using a script

    I have a file as such
    1 2 PX
    0.446E+00 0.867E+00-0.123E+00-0.372E+00 0.285E+00-0.640E+00-0.163E+01-0.658E+00
    -0.173E+00-0.845E+00-0.446E+00-0.366E+00-0.194E+01-0.194E+01-0.214E-01-0.400E-01
    -0.151E+01-0.167E+01-0.173E+01-0.232E+01-0.173E+01-0.121E+01-0.234E+01-0.277E+01
    -0.126E+01 0.940E+00 0.404E+01 0.659E+01 0.513E+01 0.198E+01 0.237E+01 0.518E+01
    2 2 PX
    0.315E+00 0.909E+00 0.104E+00-0.475E+00 0.141E+00-0.449E+00-0.156E+01-0.751E+00
    0.553E-01-0.626E+00-0.640E+00-0.494E+00-0.189E+01-0.213E+01-0.125E+00 0.285E+00
    -0.132E+01-0.180E+01-0.172E+01-0.232E+01-0.187E+01-0.103E+01-0.193E+01-0.268E+01
    -0.130E+01 0.974E+00 0.370E+01 0.610E+01 0.516E+01 0.218E+01 0.232E+01 0.522E+01
    3 2 PX
    0.217E+00 0.116E+01 0.552E+00-0.490E+00-0.892E-01-0.303E+00-0.125E+01-0.512E+00
    0.315E+00-0.672E+00-0.104E+01-0.559E+00-0.162E+01-0.222E+01-0.476E+00 0.166E+00
    -0.131E+01-0.167E+01-0.142E+01-0.234E+01-0.225E+01-0.901E+00-0.123E+01-0.218E+01
    -0.107E+01 0.994E+00 0.320E+01 0.551E+01 0.516E+01 0.225E+01 0.193E+01 0.502E+01
    4 2 PX
    0.110E+01 0.169E+01 0.538E+00-0.103E+01-0.487E+00 0.154E+00 0.134E+00 0.176E+01
    0.325E+01 0.179E+01-0.308E+00-0.155E+01-0.361E+01-0.457E+01-0.233E+01-0.505E+00
    -0.111E+01-0.130E+01-0.128E+01-0.288E+01-0.374E+01-0.274E+01-0.232E+01-0.160E+01
    0.147E+01 0.459E+01 0.612E+01 0.683E+01 0.511E+01 0.116E+01 0.203E+00 0.348E+01
    Where each section (1,2,3,4...) represents a different spring element.  The data is the force in the spring at time t reading from left to right and then on to the next row (i.e.  row1 col1 is time t(1), row1 col2 is time t(2), etc going across)
    I would like to sum the forces in each spring at time t (ie call the force at time t(1) for all elements and add them together.  So that in the end I have the sum of the forces in all elements at each time t.  I would then like to find the time t with the greatest sum and return to a file the force at that time for each element.
    Any help would be appreciated:)

    And now let's see what every part does (before I forget) and you want this right?
    Command 1:
    's/.*\([0-9][0-9]*\).*[0-9][0-9]* PX.* <-- matches the PX lines. "....1-inf numbers (Remember)...1-inf numbers space PX ....."
    /\nSPRING: \1/' < change to SPRING: the number above and an extra newline to make paragraphs which is useful for awk below.
    's/\([^E:]\)\([ -]\)/ <-- match a space or minus and the character before it (see NB 4 above)
    \1\n\2/g' <-- and put a new line between them. This way all the numbers are on a separate line
    'BEGIN { RS="";FS="\n"} <-- RS="" will match paragraphs.
    {for (i=2; i<NF+1; i++) { record[(i-1)]=record[(i-1)]+$i}} <-- Field 1 is SPRING: 9, otherwise record everything by adding up. awk can handle scientific notation.
    There is a i-1 with record because time starts at 1 and i at 2. This could all make more sense without the spring line.
    END {for (times in record) {print record[times] "\tt=" times}}'  <-- print the totals and the time that belongs with it.
    Command 2:
    grep 999t= <-- the output of the spring data will be of the form -999 just because it will be at the bottom of sort -rn.
    $(sed -e 's/.*\([0-9][0-9]*\).*[0-9][0-9]* PX.*/\nSPRING: \1/' -e 's/\([^E:]\)\([ -]\)/\1\n\2/g' file | awk 'BEGIN { RS="";FS="\n"} {for (i=2; i<NF+1; i++) { record[(i-1)]=record[(i-1)]+$i}  <-- identical as above.
    for (i=2; i<NF+1; i++) {data[(i-1)]=data[(i-1)] $i}} <-- this will append the actual string data as opposed to adding it up and losing the original data.
    END {for (times in record) {print record[times] "\tt=" times} <-- identical
    for (times in data) {print "-999t=" times " " data[times]}}'  <-- -999t= prepended because see above
    | tee tempfile.txt  <-- tee copies the data because we will match the top total force with the data of the spring
    | sort -nr | head -n 1 | cut -d= -f2  <-- gives the single highest force
    ) tempfile.txt  <-- Command becomes: grep '999t=high_number' tempfile
    | sed 's/[^ ]* *//' <-- get rid of garbage at the start.

  • Need to make a Call Center

    I need to make a call center at HQ Using a co-lines directly connected to the V3PN router to route calls to the other three VOIP branches?
    Also can any external call at the branches be routed to the call center at HQ?

    At three branch offices,install the FXS voip equipment based on traffic,you can choose the port capacity in FXS.Through implementing FXS at the branches,the external call receiving at the FXS will be diverted to FXO at HQ.

  • How to Integrate Oracle Access Manager 11g with Siebel Call Center 7.8

    I need to change the DB authentication to SSO for Siebel Call Center 7.8. I just found a document about integrationg OAM 10g with Siebel 7 (http://download.oracle.com/docs/cd/B28196_01/idmanage.1014/b25347/siebel.htm#Siebel). However, because it's mandatory to use OAM 11g, I don't know whether this doc is suitable for Siebel 7.8. In addition, is it the right way to configure Siebel SSO? I know, in this way, I need to install WebGate. Please give me some expertise. Thanks.

    This should work as long as your web server and operating system support 11g. There may be some differences in how to set up OAM and the WebGate in 11g versus 10g (that is not my area of expertise), but from the Siebel side the integration is the same. You would pass in the user's Siebel ID (pulled from the LDAP directory) as an HTTP header. Then you just need to tweak a few of the parameters in Siebel:
    For the Security Adapter Profile (LDAPSecAdpt most likely) you are using, set:
    SingleSignOn = True
    TrustToken = HELLO (or whatever value you choose)
    In eapps.cfg or eapps_sia.cfg in the virtual directory section for the specific application object manager (e.g. [sales_enu]) set:
    UserSpec = SIEBEL_USER (or whatever HTTP header name you set up in OAM)
    UserSpecSource = HEADER
    SingleSignOn = TRUE
    TrustToken = HELLO (or whatever value you selected for the Security Adapter profile TrustToken parameter)
    ProtectedVirtualDirectory = /sales_enu
    The protected virtual directory will normally be the same as the virtual directory (in this example /sales_enu) unless you are using customer facing applications with anonymous browsing capabilities (for example a catalog that goes to a shopping cart at some point in the process).
    Also in the [SWE] section of the eapps.cfg file the IntegratedDomainAuth parameter should be set to False.
    Hope this information is helpful.
    Best regards,
    Stevan

  • FSCM Biller Direct Call Center Payment Log

    Hi,
    We are using Biller Direct and Biller Direct Call Center for our dealers/customer AR processing.
    Biller Direct is used by our Dealers to see their account balance and post payment online through Biller Direct web portal.
    Biller Direct Call Center is used by our Account Receivable team to see our dealers account balance and to post payment with authorization from our dealers.
    The main question is:
    How can we see the deatilpayment log/detail on transaction posted through Biller Direct Call Center? Our AR team needs to identify which user from AR team that perform a specific payment. Please advise.
    Is this something that can be setup through XCM or R/3 configuration?
    We need to get the detail of "User ID" and "Date & Time" that a payment is done through Biller Direct Call Center.
    I tried to look from the document changes on AR line item detail of the billing document that got paid. But, the document changes is only showing that user BD_POOL made the payment posting. The user id is setup in XCM for posting any transaction into R/3.
    Appreciate your help in advance.
    Thanks,
    Markus

    Mohit,
    Let me try to answer your questions:
    u2022 What accounting entries are passed from SAP perspective and at what points in time?
    A) SAP will post a CREDIT to the Customer AR item and a DEBIT to a Credit Card Receivable account when the payment is posted in FI.  The DEBIT to the Credit Card Receivable account is included in the nightly Settlement run to be sent to the Processor for a deposit request.
    u2022 How are charges levied by banks / financial institutions handled or can be handled?
    A) There are Processor charges for authorizations and other services such as Fraud checking as well as the INTERCHANGE fee that is a percentage of the Settlement amount.  This could be anywhere from 1.5% to 4% of the Invoice amount depending on the type of transaction and the agreement with the Processor.
    u2022 How any fees / charges imposed by network processors / clearing houses handled on a transactional basis?
    A) The processor will assess and collect these fees, typically on a monthly or daily basis and provide reporting to the Merchant regarding the fees charged.
    u2022 Is this something which Standard SAP Config can accommodate and if yes where exactly? If not what custom development route is appropriate?
    A) Standard SAP does not have the ability to assist with Settlement reconciliation or recognition/assignment of processing fees.  This must be accomplished through Manual postings.
    u2022 Does addition of third party providers like pay metric for interface plug-in help in segregating and processing of credit card charges any better?
    A) Yes, ISVs such as Paymetric which provide integration between SAP and the processors do provide additional SAP and external reporting and functionality to assist with the reconciliation process and in determining the processing fees.
    Regards,
    Eric Bushman
    VP, Solution Engineering

  • Including comments entered from Document Library to Records Center Record Library

    We are currently sending documents from a SharePoint 2010 site to a Records Center.
    We are using the Collect Signatures workflow, and edited this default workflow in SharePoint Designer to then send the document to a Records Center when both signatures have been applied.
    Everything is working well, but we'd like to enter comments @ the originating document library...which we can do now...and have those comments get sent over to the Records Center as well when the document is signed by both people.
    Are we able to do this?  ...have comments entered in the Document Library show up in the Records Center Records Library?
    Thank you!

    Hi Joe,
    If your settings are configured as below,
    The site collection Record Declaration Settings are set to "Block Edit and Delete"
    The Record Library is set to "Automatically declare items as records when they are added to this list."
    The Drop Off Library Record Declaration Setting is set to site collection default: Do not allow the manual declaration of records;
    then the item(e.g. Test.xlsx) routed from "Drop Off Library" will be declared as a record in this Record Library, which is inherited from site collection setting "Block Edit and Delete" and auto declare on library option is enabled, then
    this "Test.xlsx" item will be read-only as record and it can not be edited and deleted by design. 
    From the following error message you provided, it seems you secondly upload the Test.xlsx file in "Drop Off Library", then this time the "Content Organizer" will route
    this second Test.xlsx file to the Record Library again, however it cannot update a read-only item with the same name for Test.xlsx previously existed in the Record Library.
    "Unexpected Routing Engine: File DropOffLibrary/Test.xlsx could not be routed to /sites/records/Records/101-01 in site http://records/sites/records : This item cannot be updated because it is locked as read-only."
    If above is the case, for resolving this issue, you can use the following two methods:
    1. Use the option "<label for="ctl00_PlaceHolderMain_versioningSection_appendUniqueCharsRadioButton">Append unique characters to the end of duplicate filenames</label>" for "Content Organizer" settings.
    2. Or use the option "<label for="ctl00_PlaceHolderMain_recordBehaviorSection_recordBlockDeleteRadioButton">Block Delete</label>" for site collection "Record Declaration" Settings.
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • 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

  • Kudos for a Verizon Call Center rep?

    Just wondering where I can go or who I can talk to in order for a certain call center rep to get some deserved recognition.  I have filled out customer surveys, called different folks within Verizon Wireless and still no result.  I am now beginning to wonder if Verizon really cares about their employees like they say they do.
    Here is the situation:
    I had decided to leave Verizon Wireless after about 10 loyal years with them.  First, when the "new every two" plan was discontinued it was and still is, a very sore spot for me and a lot of other longtime customers.  Then, back in 2011, some "genius" decided we customers needed to pay $2 to pay our bill online.  What a frigging farce.  Hell, verizon, if you want $2 more a month, then raise the rates, be honest with the customer and be done with it.  I hope the stupid s.o.b. that tried to implement this idea is now on the unemployment line.  How frigging stupid can you be?
    I had actually went to the point of purchasing a Straight Talk phone.  I had planned on using this phone for a couple of months to see if it would do what I needed as far as phone and text service.  I had a problem trying to activate the phone.  I was scheduled for a cruise during this time frame and could not finish the activation.  While on the cruise I was ranting and raving about Verizon Wireless.  Sitting at the same table I was at was a lady who finally identified herself as a call center rep.  She was very polite, explained that even though she was on vacation, she still had a responsibility to make any Verizon customer happy and to try to solve the problem, if she could.  Now here we are, out in the middle of the ocean, hundreds of miles away from land, no cell phone service there, and this crazy lady is trying to solve my phone problems.  Talk about dedication!!!!!  End result, she made some suggestions for me to try once I got back home.  I did what she suggested.  Much to my surprise, everything pretty much fell into place.  I added an additional internet line, allowing me to discontinue HughesNet.  I also upgraded my phone to an IPhone, which is a really easy phone for us old folks to use.
    As a result of the time and dedication this person took, not only did Verizon Wireless continue to keep me as a customer, I actually increased the amount of services I get from them.  All because some lady, on vacation, literally in the middle of an ocean, took the time to listen to a crazy old man ranting and raving.
    She truly deserves to be recognized not only by me, but by Verizon Wireless.  She works out of Huntsville, AL. 
    Who can I contact to make sure she gets the pat on the back she deserves?

    I am really glad to hear such a positive outcome for a possible bad situation, here is contact information that may help you voice your positive feedback. 
    Verizon's Corporate Office Headquarters in the USA:
    140 West Street
    New York, NY 10007
    Corporate Phone Number: 1-212-395-1000
    Corporate Fax Number: 1-212-571-1897

  • Partner search in Call Center

    Hello
    We are using Call Center and IVR.
    In the IVR customers are entering object ID that later is used to locate the partner via installed base.
    The info transfered to the CRM using CAD.
    My question is how to configure the Call center profile, to search for partner number using the object ID of installed base object.
    Thanks Nachshon.

    This is something that you can do . 
    i) Create a Call List with Assignement to the IC Orgnanization ( So that IC Agent can see it )
    ii)  Call List have assignment of Calls , with each individual Call Linked to a Business Partner and IC WebClient Script
    iii) The IC Agent will Navigate to Call List View
    iv) Pick a Call from the Call List and Initiate a Outbound call
    v)  The Associated Script is trigerred 
    vi) The Interactive Script have a Step that is linked to the Survey Questionnaire
    vii) Based on the Survey Response ,  set marketing attribute to be added to a Target Group based on Segmentation etc ...
    Hope this helps in forming the design. You can try this , if you have questions around config I can certianly help.
    Edited by: SKP on Mar 24, 2009 6:11 AM

  • The inbound calls to our call center is drop after putting it on hold or transfer

    Dear All;    
    Good day  
    The inbound calls to our call center is drop after putting it on hold or transfer the call to another agent. The MOH file is playing till 21 sec only then call drop . the agent cant resume the call again. The MOH file is running from Gateway (multicast).
    No problem in outbound calls.
    I urgent need you help
    Should you require any more information , please do not hesitate to contact me.
    Thanks & Best Regards,
    Muhammad Fathy,
    IT Network Manager
    ALEXBANK
    A subsidiary of Intesa Sanpaolo Group
    Head office: B210-F1, Smart Village , KM 28 Cairo-Alex Desert Road, Egypt.
    Cell:      +201017288844.
    Office:  +202-35311300   Ext: 8090.
    eMail:   [email protected]
    i To maintain a paperless environment, please don't print this e-mail unless you really need to.

    Typically you have a codec or media resource issue to track down.  IE, MTP, region, location, gateway trunk to trunk to call or something in that area.   Bypass UCCX and do the same call without this app... does it happen with a normal call?

  • Document split by profit center

    Hi,
    We are in a re-implementation scenario.Client is using the older version of SAP and the new version is ECC 6.0.The requirement is to activate the document splitting with profit center and segment as scenarios.(Charecteristics for splitting).As on the cutoff date we take the balances and upload the same in the ECC 6.0 system.The question is how these balances will split.How the customer and vendor line items will split.
    Please clarify...let me know if you need further info.
    Thanks

    Hello Aravind
    Pls check this link
    http://help.sap.com/saphelp_erp2004/helpdata/EN/87/3da04028f40160e10000000a1550b0/content.htm
    Maybe of some help.
    Reg
    suresh

  • How to send a Announcements in CRM WebUI for Call center role.

    Hi
    In some cases if we are shutdowing the prodcution server we want to send a group message to all the users in call center.
    How to do this.
    Please suggest.
    Regards
    Hanu M

    Hi,
    in the IC_Webclient and in the CMS-Role you could use broadcast messaging for this.
    your message is displayed on the bottom of the screen as ticker.
    Add in SAPGUI a new favorite
    BSP-Application: BSP_BROADCAST
    Start-Page: abap_broadcast.htm
    Kind regards
    Manfred

  • I am working from home in virtual call center. I urgently need Firefof 5, all above cause problems and crashes. Can you please advise how I can download FF 5, it is urgent. Thank you.

    I was running Firefox 5 and have been able to protect it against new versions, but now I am not being warned that there is a new version being snuck in without telling me about it.
    The problem is that I work in a virtual call center from home, and the new version is creating problems I never had before.
    Is there a way you can supply me with a link to FF5, and how do I protect it against new versions being installed on my machine. This is extremely important as I earn my living from the call center.
    Thanks and look forward to your reply.

    Perhaps you've already fixed this, but the first two links you showed us do work fine in FF and IE8,  I can not say about the third link as I did not see it on  your page.
    Are you still having trouble with this?
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Oracle SOA Integration with Siebel 8.0 Call Center Application

    Hi Experts,
    I am trying to Integrate Oracle Fusion SOA and Siebel 8.0 and I have been following http://download.oracle.com/docs/cd/E17904_01/doc.1111/e17056/bpel_pm.htm as a reference.
    Here is what I have done so far:
    Created an Inbound Web service (Account Web Service) by login into Siebel Call Center Application. I was able to generate the WSDL file successfully. This WSDL has following operations :
    (a) AccountInsert
    (b) AccountQueryByExample
    (c) AccountQueryById
    If I understand it correctly, this is like any other wsdl file which can be consumed and operations can be invokved by consumers (web service clients)
    I have couple of doubts/questions :
    (1) Once WSDL is generated by the Siebel Client, it can be used in my BPEL process/composite apps to perform the integration. If this statement is true, why and where do we need Siebel Adapter?
    (2) While I was following the online tutorial @ http://download.oracle.com/docs/cd/E17904_01/doc.1111/e17056/bpel_pm.htm , I can see, WSDL was generated by using the Application Explorer (a swing based tool provided by Oracle as a part of Adapter framework). But I have used Siebel Call Center to generate the WSDL file. Which is the standard way of generating the WSDL file?
    (3) In the tutorial mentioned above, I can see request and response xsd files (i.e queryWithView_invoke_request.xsd queryWithView_invoke_response.xsd) . No where in the tutorial has mentioned, how these files were created. Are these hand written files by the developer, or it is something that can be created out of the wsdl itself?
    (4) Also, there is a .jca file (queryWithView_invoke.jca) which is also being used while configuring the Third Party Adapter. Where does queryWithView_invoke.jca come from? Is it something that is created from Application Explorer?
    Would really appreciate if someone can throw lights on these gray areas....
    Waiting for an eagerly reply...
    Thanks in Advance !
    Jameel

    Hi,
    If you are talking about configuring the outbound WS , then you need to go to Siebel > Administration-Webservices> Outbound Webservices
    Query for webservices there and give the <HOST>:<SOA PORT> in the URL.

Maybe you are looking for

  • Idk why i made my password complicated, but i did and now i cant unlock it! help!

    Well, i had a fit and decided to change my code from simple to complicated. Being that i was mad, i just put a long, emphasizing long, passcode, but when i cooled down i didnt remember what it was! I tried at least 6 tmes to unlock it while it was st

  • Opening .CR2 files in CS5 Photoshop from Canon T4i.

    Mac OS 10.6.8.  Photoshop CS5.1 V12.1 x64. I am trying to open and edit RAW images shot on my new Canon T41 Rebel. Will not open. Tried to convert using Adobe DNG Convertor. Did not work. Is there a way without upgrading to CS6?

  • N85 TV-OUT poor performance

    Hello all When I play a video on the n85 it runs perfectly. When I connect the device to the tv-out and from there to the screen the video is very choppy on the n85 and on the screen it's not as smooth as usually... on the same screen, video-file and

  • Mass updation of PIR s-reg

    Hi, Through MD61 using either material number, product group , plan etc... we can update PIR s for limited part numbners only is there any otehr transaction through which we can updated for mass we have to update almost for 2000 parts BDC also shall

  • Filters in alv

    Hi, Please give me complete code for using filters in alv reporting. Regards, Suresh