Add selection criteria to Billing due date list VF04

Dear gurus,
I need to execute report VF04  but looking sales documents by material. is there any enhacement point or user-exit to add this option to program?
Thank in advance.
Best regards
Juan

Hi,
Take a copy of the program SDBILLDL.
Add the field as a parameter ocr select option.
(1). In ex line 565 add following:
LOOP AT p_gt_fvkdfi.
CLEAR vbak.
LOOP AT s_ernam.
DELETE s_ernam.
ENDLOOP.
ENDIF.
SELECT SINGLE ernam
INTO ( VBAK-ERNAM)
FROM vbak WHERE vbeln = p_gt_fvkdfi-vbeln
AND ernam IN s_pernam.
IF sy-subrc NE 0.
DELETE p_gt_fvkdfi.
CONTINUE.
ENDIF.
ENDLOOP.
Create your own transaction code to this report instead of VF04.
(2).
What you can do is use user exits, USEREXIT_VKDFS_SORTKRI_SALES and USEREXIT_VKDFS_SORTKRI_DEL in V05IEXIT for sales and delivery related billing respectively. All you need to do is to load the user name into VKDFS-SORTKRI and that should be it.
(3).
http://saptechsolutions.com/pdf/SDBillingDocumentConsolidationAndSplit.pdf
(4).please chec for OSS notes.
(5).SPRO IMG -> Sales and Distribution -> Billing -> Lists -> Define Selection Criteria
regards
balajia.

Similar Messages

  • How to use Add Query Criteria for the MySQL data Base in Netbeans ?

    How to use Add Query Criteria for the MySQL data Base in Netbeans Visual web pack.
    When the Query Criteria is add like
    SELECT ALL counselors.counselors_id, counselors.first_name, counselors.telephone,counselors.email
    FROM counselors WHERE counselors.counselors_id = ?
    when i run this Query in the Query Window
    i get a error message Box saying
    Query Processing Error Parameter metadata not available for the given statement
    if i run the Query with out Query Criteria its working fine.

    *I am glad I am not the only one who have this problem. Part of issue has been described as above, there are something more in my case.
    Whenever I try to call ****_tabRowSet.setObject(1, userDropList.getSeleted()); I got error message as shown below:*
    The Java codes are:
    public void dropDown1_processValueChange(ValueChangeEvent event) {
    Object s = this.dropDown1.getSelected();
    try {
    this.User_tabDataProvider1.setCursorRow(this.User_tabDataProvider1.findFirst("User_Tab.User_ID", s));
    this.getSessionBean1().getTrip_tabRowSet1().setObject(1, s);
    this.Trip_tabDataProvider1.refresh();
    } catch (Exception e) {
    this.log("Error: ", e);
    this.error("Error: Cannot select user"+e.getMessage());
    SQL statement for Trip_tabRowSet:
    SELECT ALL Trip_Tab.Trip_Date,
    Trip_Tab.User_ID,
    Trip_Tab.Destination
    FROM Trip_Tab
    WHERE Trip_Tab.User_ID = ?
    Error messages are shown below:
    phase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@5abf3f) threw exception: com.sun.rave.web.ui.appbase.ApplicationException: java.sql.SQLException: No value specified for parameter 1 java.sql.SQLException: No value specified for parameter 1
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.cleanup(ViewHandlerImpl.java:559)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.afterPhase(ViewHandlerImpl.java:435)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:274)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
    com.sun.webui.jsf.util.UploadFilter.doFilter(UploadFilter.java:240)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
    org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:276)
    org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
    org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
    org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
    org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
    com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
    com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
    com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
    com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
    com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
    com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
    com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    tandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
    java.sql.SQLException: No value specified for parameter 1
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:910)
    at com.mysql.jdbc.PreparedStatement.fillSendPacket(PreparedStatement.java:1674)
    at com.mysql.jdbc.PreparedStatement.fillSendPacket(PreparedStatement.java:1622)
    at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1332)
    at com.sun.sql.rowset.internal.CachedRowSetXReader.readData(CachedRowSetXReader.java:193)
    at com.sun.sql.rowset.CachedRowSetXImpl.execute(CachedRowSetXImpl.java:979)
    at com.sun.sql.rowset.CachedRowSetXImpl.execute(CachedRowSetXImpl.java:1439)
    at com.sun.data.provider.impl.CachedRowSetDataProvider.checkExecute(CachedRowSetDataProvider.java:1274)
    at com.sun.data.provider.impl.CachedRowSetDataProvider.setCursorRow(CachedRowSetDataProvider.java:335)
    at com.sun.data.provider.impl.CachedRowSetDataProvider.setCursorIndex(CachedRowSetDataProvider.java:306)
    at com.sun.data.provider.impl.CachedRowSetDataProvider.getRowCount(CachedRowSetDataProvider.java:639)
    at com.sun.webui.jsf.component.TableRowGroup.getRowKeys(TableRowGroup.java:1236)
    at com.sun.webui.jsf.component.TableRowGroup.getFilteredRowKeys(TableRowGroup.java:820)
    at com.sun.webui.jsf.component.TableRowGroup.getRowCount(TableRowGroup.java:1179)
    at com.sun.webui.jsf.component.Table.getRowCount(Table.java:831)
    at com.sun.webui.jsf.renderkit.html.TableRenderer.renderTitle(TableRenderer.java:420)
    at com.sun.webui.jsf.renderkit.html.TableRenderer.encodeBegin(TableRenderer.java:143)
    at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:810)
    at com.sun.webui.jsf.component.Table.encodeBegin(Table.java:1280)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:881)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:889)
    at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:182)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:285)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:133)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:244)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
    at com.sun.webui.jsf.util.UploadFilter.doFilter(UploadFilter.java:240)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:216)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:184)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:276)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    Also when I tried to update my MYSQL connector / J driver to version 5.1.5 from 5.0.5 (NB 5.5.1) and 5.0.7 (NB 6.1), I could not get it work (looooong time to search some JDBC classes and with no response in the end) on both of my Netbean 5.5.1(on PC) and Netbean 6.1(on laptop) IDEs.
    Could anybody look into this issue.
    Many thanks
    Edited by: linqing on Nov 22, 2007 4:48 AM

  • Billing due date

    hi
    If we want to know the Billing due date(Payment due date),
    How can we know that..
    Thanks & Regards
    VASU

    Hi
    Simply way is to run the Billing due list using T.code VF04
    can find billing due dates based on
      Billing data
      Billing date from
      Billing type     
      SD document      
      Sales organization data
      Sales organization
      Distribution chann
      Division         
      Shipping point   
       Customer data                
      Sold-to party    
      Destination country
      For documents
      Order-related      
      Delivery-related   
      Rebate-related     
      Intercompany Billing
    Kindly Reward points if usefull
    Regards
    vK

  • Billing due date change

    I would like to know why my billing due date is being changed. I have been a long standing customer of AT&T back even when it was Cingular. I do not want my billing date changed at all. I have electric and car payment due at the middle of the month. Also it would have been nice if someone would have at least called me and gave me the decency of asking. I'm still trying to figure out how last month I got charged almost $100 over my normal bill.
    Sincerely
    Rebecca [edited for privacy-please do not post personal or unique information such as but not limited to full names, employee ID numbers, email addresses, phone numbers, account numbers, etc.]

    You can logon to your account and check bill details to find out why you were charged more.
    ATT is standardizing the billing so that all customers have 3 weeks to pay their bill. It should have changed the dues date by only a few days.
    If that is no the case, call support and see if they can change the date.

  • Bill due date

    Can I choose my own billing due date?!

    You can but be aware AT&T will still suspend your service, even with a due date you have set. I was suspended today and I put in a date for July 23rd. AT&T will do this to get you to pay a fee to restore. You have to watch them, they will rip you off.

  • Can I change my billing due date?

    Is there a way to change my billing due date to a different day of the month?  Having trouble finding any information and when I tried to call someone I was put through IVR hell.  Please advise.... thank you.

    Yes.  You need to call Customer Service in order to do this.
    https://community.verizonwireless.com/message/681401/
    https://community.verizonwireless.com/message/841181

  • Billing Due dates Remainder..

    Hi frnds,
              I have done one ALV report for FPLT and FPLA tables . In which I will get the Billing due for a particular customer. I have done everything. But When instalement date comes i need to remainder the customer your instalment dates is coming. For that I need to some Function modules or any mail remainder program.
    Could please send me the above same.
    Points will be rewarded.
    With regds,
    Sirisha.

    Hi,
    Thanks for the inputs.
    I want to avoid the invoice split during invoice creation through transaction VF04 for  no. of delivery documents having different billing due dates.
    I can club only 14 delivery documents via VF01 which will have the common billing date. Is there any other method of clubbing 25-30 delivery documents with different billing due dates in one invoice?
    Regards,
    Niketan

  • How to avoid invoice split due to different billing due dates?

    Dear All,
    How to avoid invoice split due to different billing due dates for the group of  outbound deliveries?
    Thanks in advance.
    Regards,
    Niketan

    Hi,
    Thanks for the inputs.
    I want to avoid the invoice split during invoice creation through transaction VF04 for  no. of delivery documents having different billing due dates.
    I can club only 14 delivery documents via VF01 which will have the common billing date. Is there any other method of clubbing 25-30 delivery documents with different billing due dates in one invoice?
    Regards,
    Niketan

  • Why did AT&T change my billing due date?

    I think it's a simple question and only wish to get an answer from AT&T or someone who actually knows the answer.  Don't speculate, don't answer with an educated guess.  I don't mind change if the reason is explained to me but all I received was a vague text message.

    RobBinCT wrote:
    I'm not making this a conspiracy. I'm asking a fair question about what I don't understand. My due date was the same for like 10 years, I don't know anyone else's due date. Why shouldn't I be inquisitive about this? Nothing from AT&T has explained to a layman why this benefits me but I have read how AT&T shareholders benefit greatly from this. Is transparency to much to ask?
    No one has indicated that there would be a direct benefit to the customers to have 21 days from the end of the billing cycle until the bill is due.  The indirect benefit would be that this eases the training for customer service representatives so that they don't have to look up the region of the country that a customer is in when resolving billing due date concerns.  Also, this streamlines the billing system so that all billing due dates are calculated the same way.
    I don't think that any question is too much to ask, but I'm wondering if you will ever be satisfied with an answer to this question.  Many posters have given you answers and not only do you reject the answer, you attack the person giving it.  There's no reason to attack the posters in this thread.

  • Mystery Billing Due Date

    I have been paying regular bills for two homes for telephone, water, sewer, garbage, cable, satelite, electricity, gas, HOA, taxes, leaseholder fee for my lot in a recreational area, and last BUT NOT LEAST my cell phone service from Verizon.  Why is it the problems I have are with Verizon?  Every month I get a bill and it never tells me when the due date is.  It does not show what the amount is after that date which they do not tell me (p.s. - thats not the way all the other companies do it).  So with Verizon I must take a guess. 
    This month i had already paid my bill and got a nice email back from Verizon thanking me for paying from Verizon 8 days ago.  So everything is good, right?  So I thought you are welcome Verizon.  No.  Today I got a "Quick Bill Summary" in the mail demanding 2 months payment plus $5.  Huh?  Whats up with that?  Why is Verizon so different from other companies I do business with?  Is there an explanation?  I feel like they trick me for the extra $5 and early next month demands.  I am paying every month in advance so why is Verizon so agressive?  What kind of customer does Verizon think I am?  Do they stereotype cusomers as low-life, ripe for extortion of late fees, by hiding thier due date?  It does seem like it. 
    Every month every other biller tells me exactly what to pay based on the a due date, along with what I would owe if I miss paying by that date.  Verizon likes to like keeping all this a secret.  Why did I get this irritating statement in the mail 8 days after receiving a thank you email for paying my bill (I thought: on time)?  Verizon now demands two months payment plus $5 penalty.  Whats up with that? 
    And the Verizon website will not let me email a question to them about their billing practice. The Verizon website makes it virtually impossible to email them to ask about this.  Why hide that link?  Are they trying to gather a lot of extra $5 fees? Are they trying to drive good customers (paying $180/month) away to a competitor?  This is a mystery to me.  Where did Verizon learn to do this and why did they choose to do it this way? Is this their business model for extracting more fees from their customers?  What are Verizon's customer satisfaction goals?  Can someone from Verizon explain whay Verizon operates like this?

    I only recieve statements online, so if you have a paper bill, this may not be exactly identical.  When I print a copy of my bill from my MyVerizon account, I see a summary of charges on the right side of the page followed by a large type, bold statement "Total Charges due by DATE $XX"  Do you not see anything of that sort on the front page of your bill?
    On the second page of my bill, I see a section under "Explanation of Charges" that details late fees ($5 or 1.5% of the balance, whichever is greater).  It isn't bold, so it may be easier to miss.
    Do you have a MyVerizon account?  If not, you should register for one.  It makes keep track of your account status a lot easier, and the amount due, due date, and whether you have paid this month are listed on the front page (first one when you log in), so you can view them at a glance.
    To e-mail Verizon, you'll want to click on the "Contact Us" link, then select the type of customer you are from the drop-down.  On the next page, the option in the bottom-left box should be to send an e-mail.
    Hope that helped!

  • Changing Bill Due Date?

    I'm wondering if it's possible to change the due date of my account. I was assigned the 8th of every month when I originally started my service, and that worked for the most part, however recently my pay schedule has changed and it's only become possible for me to pay my bill later in the month. Since my due date is still the 8th, and I consistently pay on or around the 20th (when I get paid), my account is perpetually late and I would like to avoid this going forward.
    Is it possible to change my due date, and if so, does it require any special payments such as a month in advance?
    Thanks!

    Yes it should still be possible, I did when I first got on Verizon & I think they just added or prorated the extra days to my next bill, which in your case sounds like 12, it will be a larger bill the following month because it will start around the 20th or whatever you want, but it will stop your account from being delinquent all the time, & it doesn't cost more, it's just your waiting longer to pay your bill as it's being prorated for those days, then it will all even out the month after that. Good luck....

  • Change my bill due date

    I would like to know if I could change my due date to the 3rd of the month and have it automatic withdraw payment on the 3rd of each month.  I should be able to come up with another $100 dollars in the middle of the month sometime after the 17th then I will pay the balance with the july bill automatic withdrawn option on the 3rd of each month there after. I would Like to prevent late fees and disconnection due to this is my only phone to get my phone calls and make them.
            I was wondering why my bill is $153 instead of $132 is it because of late fees? Thanks for your time and concern of this matter and look forward to hearing back from you.  When I do have the money I will make the $100 dollar payment online as soon as I recieve the money.
    Thanks
    Ida L. Secrist 
    P.S. I am on disability and my payday is on the 3rd of each month.

    You should call customer service *611 or 1-800-922-0204 and ask for financial services department to make payments arrangements.

  • Collective Bill Due Date Alignment

    Hi,
    Is there any way\event through which we can align the due date of the collective child invoices when the collective invoice is generated at the parent level?
    We have a situation where all the child CAs and the corresonding parent CA have the same payment terms, but these child CAs get billed on different dates and hence gets rolled up to the parent CA with different due dates and a clearing restriction (CR) 7 is placed on those invoices .
    When the parent CA is billed and invoiced, CR 7 gets removed, and more than one collective invoice is generated with different due dates and is sent to the customer.  
    Thanks,
    Amlan

    Thanks for the reply..
    I have already gone through that cookbook in SAP market place.
    It talks about the due date alignment of the documents that are posted against the collective parent account and not the rolled up scenarios as I have explained in my previous post.
    I am looking for the due date date alignment of the child invoices which are rolled up to the parent account.
    Thanks,
    Amlan

  • Invoice-wie Due Date List for Vendors

    Hi,
    Please inform me, if there is an report for vendor informing exact the Due Date for each Invoice Drawn for that Vendor
    Regards
    Ashwin

    Use Transaction Code FBL1N & EXECUTE,  then  you go for
    change layout button,
    select "Net due date" field & activate(means get the field  from right side to left side).
    System will give the due date each invoice wise.
    chandra

  • How do I change bill due date?

    I need to change the date that my wireless bill is due. Can you help?

    You need to call customer service and request a change - be aware that it will change your billing cycle and may cause your next bill to be higher than normal if you are making the due date later than it is now. 
    Customer service is 800-922-0204 or *611 from your cell phone.

Maybe you are looking for

  • I am getting Error that there is nothing to be processed.

    I am trying to convert an access database to SQL 2008 Database. I have done this conversion multiple times with sucess but now I am getting the following error. I get this error when I try to create report, convert schema and migrate data. "Conversio

  • Single report showing stock and sale prices

    Dear SD Wizards. Am seeking to know if any standard report exists which would show me a the existing stock alongwith the valid selling price maintained for the item. I do understand it's from two different areas and such instances are best through de

  • How to avoid special charecters in create user form

    Hi all, I am new to Sun IDM.Please u people have to help me in giving the solution. Actually,in create user form ,we have first name and last name text fields.These two fields accept any special charecters.I want these fields to accept only alphabets

  • Select multiple row in a table that are not connected

    I want to be able to select multiple rows, but want to be able to select rows that are not next to each other. They maybe have one or two rows between. Is there anyway to do this in a table? Thanks

  • Write text to graph

    Hello, guys, I wrote a code to write text into the graph, however, I don't quite like the way it works (save image, read image into a picture, add text, save again). Do you have any suggestions ? Any help will be appreciated! Best Camu Attachments: S