Customer contact ( VAP1 )  add pager number with BDC

hi ,
    While creating Customer Contact for Pager number entry there is a POP alv , from where Pager need to be selected . while recording BDC it doesnt copy that Okcodes for the POP UP ALV  .
   So how to Add Pager number for mass upload .
Ashok

This has been noted by a few people, must have been either a mistake or Blackberry's way of cutting down on the drug trade. Do drug dealers even use pagers anymore? Just kidding!
I would call the issue into your Carrier's Blackberry support team so that it gets officially recognized and fixed in a future release.
As a workaround for now I can suggest moving the pager numbers to any other type of telephone field.
-: DrewRead :-
Can't find an app on Blackberry World yet? Tweet the developer and ask when they will #GetWithBB10 !!
"Like it" if you like it.

Similar Messages

  • Adobe Reader - how to add page numbers with the free version?

    Hey guys,
    Imagine I've got a PDF file and I want to create a new one by selecting some pages out of it. I know this is simply possible by using the PDFcreator but I want to add page numbers. As far as I know this is not possible with the free version of Adobe unless I would add the page number on every single page by using a text box. I want to make different catalogs from the PDF so the page numbers are really necessary. Have you got any idea how to solve that issue? You know that's pretty much the only thing I need to add which means it's not worth buying the Pro version. Unfortunately I only got the PDF and I can't work on it e.g. with MS word before I export it. Do you know if there is a way to add page numbers with a free version? There might be an additional free software which allows that?
    Thanks for your support! 

    Thanks for your quick replies.
    I know how to add text page by page. But obviously it's hard to place the numbers on the very same position, is it?

  • Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    You should ask in InDesign
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How can i add page number?

    how can i add page number in pages...???

    Maybe reading Pages User Guide would be a good idea.
    Yvan KOENIG (VALLAURIS, France) dimanche 26 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Can i combine pdf, word and powerpoint into 1 pdf, and add page number?

    hi, i've been tasked to create a proposal combining these document types into 1 pdf. does anyone know if i can add page number as well, before i pay for subscription?
    thank you!!

    Hi,
    Combine Files tool in PDF Pack can combine multiple files into a single PDF file, but adding page number to each page of the single PDF file has be done in Adobe Acrobat.
    You can subscribe to Acrobat Plus or download Acrobat XI Pro trial version  from www.adobe.com.  Please see more information about Acrobat Plus subscription at https://www.acrobat.com/acrobatplus/en/home.html?trackingid=JPZKR.
    How to add page number in PDF file using Acrobat XI Pro:
    1. Open a PDF file
    2. Select "Tools" from top right corner
    3. Select "Pages" tab
    4. Select "Header & Footer"
    5. Select "Add Header & Footer" from pull down menu
    6. Select location for page number then click "Insert Page Number" button
    7. Click "OK" button
    Hisami

  • Add page number

    How Do I easily add page numbers to all the pages in my document...?
    Do I really have to manually create a textbox and put a number in it or add a text variable to each and every page? Is't there like some kind of one button push like microsoft word has?

    Euh... I don't know. Can you explain the difference to me? Cause I'm working in french and it's difficult to be sure

  • Add page number in footer through VBA

    Hi Everyone,
    First post so be gentle with me.
    I have inherited an Excel app which creates a pdf file, and I have been asked to add page numbers to the pdf. So I am hoping I can do this from VBA. So far I have found this way to access the pdf doc from VBA:
    Sub myPDF()
        Dim app As Object, avDoc As Object
        Dim stTest As String
        Dim stPath As String
        stPath = "C:\"
        stTest = "Test.pdf"
        Set app = CreateObject("AcroExch.App")
        app.Show
        Set avDoc = CreateObject("AcroExch.AVDoc")
        If avDoc.Open(stPath & stTest, "") Then
            If avDoc.IsValid = False Then Exit Sub
            avDoc.BringToFront
        End If
        Set app = Nothing
        Set avDoc = Nothing
    End Sub
    So that opens the required PDF file. Now I'm hoping that I can do the equivalent of :
    Document....Header & Footer....Add
    and set it up to display the page numbers in the centre footer of each page.
    Thanks for any help,
    Tony

    Hi Everyone,
    First post so be gentle with me.
    I have inherited an Excel app which creates a pdf file, and I have been asked to add page numbers to the pdf. So I am hoping I can do this from VBA. So far I have found this way to access the pdf doc from VBA:
    Sub myPDF()
        Dim app As Object, avDoc As Object
        Dim stTest As String
        Dim stPath As String
        stPath = "C:\"
        stTest = "Test.pdf"
        Set app = CreateObject("AcroExch.App")
        app.Show
        Set avDoc = CreateObject("AcroExch.AVDoc")
        If avDoc.Open(stPath & stTest, "") Then
            If avDoc.IsValid = False Then Exit Sub
            avDoc.BringToFront
        End If
        Set app = Nothing
        Set avDoc = Nothing
    End Sub
    So that opens the required PDF file. Now I'm hoping that I can do the equivalent of :
    Document....Header & Footer....Add
    and set it up to display the page numbers in the centre footer of each page.
    Thanks for any help,
    Tony

  • Anyone know to get pdf page number with PDFBOX?

    I have get page number but the page number display as code like this
    org.pdfbox.pdmodel.PDPage@113beb5how can convert "PDPage@113beb5" to the page number

    the pdf file at least must have 1 bookmark
    this is my code
    import org.pdfbox.pdmodel.PDDocument;
    import org.pdfbox.pdmodel.interactive.documentnavigation.outline.PDDocumentOutline;
    import org.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineItem;
    import org.pdfbox.pdmodel.PDPage;
    import java.awt.image.*;
    import java.io.IOException;
    import javax.swing.*;
    * @author Amir
    public class pdfbookmark2 extends JFrame{
      public pdfbookmark2() throws IOException{
        mypanel p = new mypanel();
      public void pl(String s){
        System.out.println(s);
      public static void main(String[] args) throws IOException {
        new pdfbookmark2() ;
      class mypanel extends JPanel{
      PDDocumentOutline root;
      PDPage pdpage;
        public mypanel() throws IOException{
          PDDocument doca;
          doca =  PDDocument.load("C:/JavaGD.pdf");  // the pdf file must at least 1 bookmark
           root = doca.getDocumentCatalog().getDocumentOutline();
           PDOutlineItem item = root.getFirstChild();
              PDOutlineItem child = item.getFirstChild();
                  pdpage = item.findDestinationPage(doca);
           pl("string page ="+ pdpage.toString());
           doca.close();
    }

  • Who can a customer contact if they are unhappy with the customer service the have recieved?

    I have been a verizon customer since 2008, I have been happy with my service, but at times when I have an issue, I don't feel I have been helped or talk to anyone that can actually help me or do anything.  More often than not its is a "wait it out till this just blows over" feel to the situation.  I don't really want to put all my business out on a public forum, but I currently have an on going issue that has been going on since sat and it is still not resolved with an order I placed.  It was identified on that day, When I was finally able to place the order (which is a whole other separate issue) that there was some incorrect information in the order.   I was told I had to call back once the order was processed, which I did in an attempt to have a correction made, which I did.  After a day it looked as though things had not changed so I called back again only to find that there was another issue, I had not been notified about.  I was told by the reps that helped me that there was not anything they could do even after speaking to a manager.
    Obviously there are alot more details which I have all that information written down, but my point in starting this thread is that I believe that there are alot of customers that go through things like this and it never reached the "right people"   At this point, my order has not been fulfilled, it has been paid for and I have been told it could take up to another 10 days before it can be processed.  I don't feel that is acceptable at all.  I don't feel like this will be a it will blow over incident for me.  If I am unable to get any assistance for this I may leave verizon.

    We are so sorry to see you are having problems with the order. Since this is a public community forum designed for customer to customer interaction, we ask you to contact us via phone, in store, social media or live chat.  We would love to check on the order for  you. Please look for a direct message from me so I can get some information from you.   TamaraH_VZW Follow us on Twitter @VZWSupport If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • How i add voucher number with invoice approval notification in ap.

    our clients wants that he got the notification with voucher number in ap ............. please helppp.....your immidiate response will be highly appreciatable.
    thanx alot in advance
    rgds
    s.m.umais

    Hi sundeep,
    i try to change the body type so many time but still no outcome comes . what is actually the procedure to get notification with voucher number on approval. ap invoice approval or system mailer which help me to customise this ?????????
    wa8in for you reply :)
    thnx & rgds
    umais

  • How to create Pager Number for Customer contact in VAP1 or XD02

    HI ,
       I am trying to mass upload Customer contact data , there is pager number to be uploaded . but when i do it through BDC . Its doesnt record the ALV pop up as there no screen fields as it is not a program screen .
      So BDC selects only the first item in the list , which is FAX number . So i cant upload Pager number through BDC .
      Does there any method available to do the same ? i tried direct upload also but seems tedious .
    Waiting for reply ,

    You would do it the way I created it:
    Select the Text tool in Photoshop and set the font and parameters as I have listed.  Then enter whatever text you like.  It will be rendered over the top of the lower layers you may have in the document.  Save as an image of the appropriate type and you're there.
    Note that "lower layers you may have in the document" could conceivably be none at all (i.e., you render the text over a transparent document).  You could imagine saving that as a .png with transparency and get light text in an image that could then be put over the top of anything else.  The alpha mixing will see to it that the edges smoothly blend with the background.  I haven't actually tried this (I usually do try my own suggestions) because of lack of time right now.
    -Noel
    Edit:  Markerline and I seem to be on the same crystal-controlled wavelength. 

  • Custom Contacts

    Sorry if this is on the wrong board. 
    Is there a way to synchronize custom contacts created in outlook 2003 with someone's BB?
    We have an Exchange 2003 server, and BES 4.1.  The person in question has an 8830.
    We have no problem synchronizing our global address book, which has contacts for everyone in the company.   The user in question has created his own Contacts in the Outlook address book and wants to get them to show up on his BB.
    Thanks

    Hi AHuffman, 
    I'm sure you didn't expect your phone to ring when it was set to silent! I do hope it did not happen at an inopportune time. 
    It seems as if you may have set your husband's contact information as a custom profile. When setting a number as a custom profile, it takes precedence over the sound setting you have set on the phone. In other words, setting a contact up with a custom profile is like telling the phone " No matter what, even if I have the phone set to vibrate or silent, I always want you to ring when this person sends me a message, or calls me." 
    To check on this, please follow these steps:
    Navigate with track pad to your Sounds profile
    Scroll to "Change Sounds and Alerts" and press trackpad to select
    Scroll to "Profile Management" and press trackpad to select
    The first option is "Custom Profile "
    If your husband's contact information is listed there, this is the reason for his calls/messages to come through when your phone is set to silent. If you would like it to stay this way, no changes need to be made. If you would like for his calls/messages to match with what you have set for your regular calls, his name can be removed from this area and then saved in the regular contacts list. Simply press the Blackberry button for the option to remove his name. You can then add the info in your contacts list. 
    I hope this information is helpful. Please post back with your results. Feel free to send me a PM with your name and mobile number if you need additional assistance. Thanks so much!

  • To reset page number after each new section in DeskI

    I have a master/detail report where the master is "Customer name". I have a requirement to reset the page number at each new  Customer name.
    i.e. If "Customer A" spans to 3 pages and "Customer B" spans 2 pages. Then for Customer A the page number should be Page 1 of 3, Page 2 of 3, Page 3 of 3. Then Customer B should have page number as Page 1 of 2,Page 2 of 2.
    1. The Page number can be obtained using PageInSection but only if I display it inside the section body and select "Repeat on every page" . But I need to display it in Page footer.
    2. I am unable to get the total No.of Pages per section unless I do some calculation using the no of rows per Customer. Is there any other way of getting this detail?
    Please help on the baove 2 issues. This is very URGENT.

    Dear Thendral A,
    The "PageInSection" function resets the page number to 1 at the start of each new section in the specified section level.
    For Example:
    you have a report with two section levels, Country and Quarter.
    You set every value of Country to start on a new page and enter the following syntax in a cell placed WITHIN THE SECTION THAT NEEDS THE RESETTING OF THE PAGE (it cannot be placed in the header or footer, as it can then not refer to the relevant section. It will give the value 0 instead), to restart page numbering to 1 for each value of Country:
    =PageInSection(1)
    where (1) is Country which is section 1 in the report.
    If there are any following sections these can also be reset via this formula with the use of the relevant section number.
    This option can be used effectively when you set each value of a section to start on a new page. To do this, check the Start on a new page option in the Section Format dialog box.
    Do remember that the result will only be seen in the report, when the option View/Page layout has been set, otherwise the result will be seen as a 0 at each section (this however does get correctly displayed in the Print Preview, and when printing without the page layout option set).
    I hope that these information help you to understand the functionality of the PageInSection function.
    Regards,
    Samanta F

  • LibreOffice Writer - Add Pages NumbersStart it from a Different page

    Hi guys.
    I'am trying to add page number in different page in Libreoffice. I found video in http://youtu.be/mEZWcAimocw. But when i'am type -1 in field section i've got zero in footer page number.
    http://i6.pixs.ru/storage/4/2/2/snapsho … 904422.png
    Thanks for helping me with this issue

    Yeah, it seems that if you use an offset like -3, it will show 0 at the third page. While it should start with the number 1 on page # 4.
    That's a bug. And it's being ignored by the automatic index generated by libreoffice if I may believe the comments.
    You should try the voted answer here: http://stackoverflow.com/questions/1104 … number-bug
    EDIT: I don't think that FOSS + Office suit = Good working combination. Office 2007 works fine under wine.
    Last edited by Rexilion (2014-04-30 09:11:02)

  • How to print out page number

    I want to print page number with every page how it possible.....
    So that I would come to know how many printed documents are left....
    Please reply soon

    Hi Friend,
    In the Live Previewer menu
    on top there are two buttons
    one for Insert date and time
    two for Insert page numbers
    select the second one it will diff
    options for page displaying
    so that u can display the page numbers
    bye
    srini

Maybe you are looking for