BDC not working in NO screen mode

Hi All,
We have a BDC in which we need to enter a multiple selection for a document field.
For this we are using the table control concept.
However, how do we fill in more than 8  single selections  (the number of input rows available on the screen)?
We have tried to use the ok code "LINS" that inserts a line at a time. This is working perfectly in ALL screen mode.
However, in NO screen mode what we observed is that the values get overwritten and only 1 document is eventually selected.
Thanks & Regards,
Sana.

Hi,
plz have a look at the below code...
FORM bdc_data .
Work area for data record.
  DATA : lwa_header1 TYPE t_header.
Declaration of local variable.
  DATA : lv_index TYPE sytabix.
  IF NOT i_header[] IS INITIAL.
    v_item_cntr = 1.
    v_cond_cntr = 2.
    v_scale_cntr = 1.
    v_cong_flg = 2.
    LOOP AT i_header INTO wa_header.
      lv_index = sy-tabix + 1.
      CASE wa_header-rec_type.
        WHEN c_h.
-- For header of contracts--
          PERFORM header_data_upload USING wa_header.
--For items of contarcts--
        WHEN  c_i.
If the number of lines in the line item screen exceeds
14 then we need to use the newpage okcode for adding
new line items
          IF v_item_cntr GE 15.
            PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                                  '=NP'.
            v_item_cntr = 2.
          ENDIF.
For uploading the item data
          PERFORM item_data_upload USING wa_header.
Read the internal table for next record
          READ TABLE i_header INTO lwa_header1 INDEX lv_index.
          IF lwa_header1-rec_type = c_h OR sy-subrc <> 0.
if no more line items found then the data should be saved
            PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                                'BU'.
If there exists condition record for that line item
then go to condition screen with OKCODE '=KO'
          ELSEIF lwa_header1-rec_type = c_c.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                     '=KO'.
          ENDIF.
--for items conditions--
        WHEN c_c.
Upload the condition data
          PERFORM conditions_data_upload USING wa_header.
Read the internal table for next record
          READ TABLE i_header INTO lwa_header1 INDEX lv_index.
If the next record is an item go back to item screen
          IF lwa_header1-rec_type = c_i.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
            PERFORM bdc_field  USING 'BDC_OKCODE'
                                     'BACK'.
If the next record is header then save the data
          ELSEIF lwa_header1-rec_type = c_h OR sy-subrc <> 0.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                    'BACK'.
            PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                                'BU'.
If there exists scale record for that condition
then go to scale screen with OKCODE '=PSTF'
          ELSEIF lwa_header1-rec_type = c_s.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=PSTF'.
          ENDIF.
--for items Scales--
        WHEN c_s.
Upload the scales data
          PERFORM scales_data_upload USING wa_header.
Read the internal table for next record
          READ TABLE i_header INTO lwa_header1 INDEX lv_index.
If the next record is condition record then go to condition
screen
          IF lwa_header1-rec_type = c_c .
            v_cong_flg = v_cong_flg + 1.
            v_scale_cntr = 1.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0303'.
            PERFORM bdc_field  USING 'BDC_OKCODE'
                                     'BACK'.
If the next record is header the go back to item screen
and save the data
          ELSEIF lwa_header1-rec_type = c_h OR sy-subrc <> 0.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0303'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                    'BACK'.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                    'BACK'.
            v_cond_cntr = 2.
            v_scale_cntr = 1.
            v_cong_flg = 2.
            PERFORM bdc_dynpro      USING 'SAPMM06E' '0220'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                                'BU'.
If the next record is item the go back to item screen
          ELSEIF lwa_header1-rec_type = c_i.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0303'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                    'BACK'.
            PERFORM bdc_dynpro      USING 'SAPMV13A' '0201'.
            PERFORM bdc_field       USING 'BDC_OKCODE'
                                    'BACK'.
            v_cond_cntr = 2.
            v_scale_cntr = 1.
            v_cong_flg = 2.
          ENDIF.
      ENDCASE.           "CASE wa_header-rec_type.
If the next record is header or no next record found then
call the transaction
      READ TABLE i_header INTO lwa_header1 INDEX lv_index.
      IF lwa_header1-rec_type = c_h OR sy-subrc NE 0.
        v_cong_flg = 2.
        v_scale_cntr = 1.
        v_item_cntr = 1.
        PERFORM call_transaction USING wa_header2 .
        CLEAR lv_index.
      ENDIF.
    ENDLOOP.               "LOOP AT i_header INTO wa_header.
  ENDIF.                   "IF NOT i_header[] IS INITIAL.
ENDFORM.                   "bdc_data
       Start new screen                                              *
FORM bdc_dynpro USING pv_program LIKE bdcdata-program
                      pv_dynpro LIKE bdcdata-dynpro.
  CLEAR wa_bdcdata.
  wa_bdcdata-program  = pv_program.
  wa_bdcdata-dynpro   = pv_dynpro.
  wa_bdcdata-dynbegin = c_x.
  APPEND wa_bdcdata TO i_bdcdata.
  CLEAR wa_bdcdata.
ENDFORM.                    "BDC_DYNPRO
       Insert field                                                  *
FORM bdc_field USING pv_fnam LIKE bdcdata-fnam
                     pv_fval TYPE any.
  CLEAR wa_bdcdata.
  wa_bdcdata-fnam = pv_fnam.
  wa_bdcdata-fval = pv_fval.
  APPEND wa_bdcdata TO i_bdcdata.
  CLEAR wa_bdcdata.
ENDFORM.                    "BDC_FIELD
Declaration of local constants
  CONSTANTS : lc_tcode  TYPE tstc-tcode VALUE 'ME31K',
              lc_n      TYPE ctu_mode   VALUE 'N'.
Declaration of local variables
  DATA: lv_msg   TYPE string,
        lv_opt   TYPE ctu_params.
  lv_opt-defsize = c_x.
  lv_opt-dismode = lc_n.
  lv_opt-updmode = c_l.
  REFRESH i_messtab.
Call the transaction to create the Purchasing Contracts
  CALL TRANSACTION lc_tcode USING i_bdcdata
                   OPTIONS FROM lv_opt
                   MESSAGES INTO i_messtab.
  IF NOT i_messtab[] IS INITIAL.
    READ TABLE i_messtab WITH KEY msgtyp = 'E'.
    IF sy-subrc EQ 0.
      CALL FUNCTION 'FORMAT_MESSAGE'
        EXPORTING
          id   = i_messtab-msgid
          lang = sy-langu
          no   = i_messtab-msgnr
          v1   = i_messtab-msgv1
          v2   = i_messtab-msgv2
          v3   = i_messtab-msgv3
          v4   = i_messtab-msgv4
        IMPORTING
          msg  = lv_msg.
      MOVE: p_wa_header-lifnr TO wa_error-lifnr,
            p_wa_header-evart TO wa_error-evart,
            p_wa_header-vedat TO wa_error-vedat,
            p_wa_header-ekorg TO wa_error-ekorg,
            p_wa_header-ekgrp TO wa_error-ekgrp,
            p_wa_header-epstp TO wa_error-epstp,
            p_wa_header-knttp TO wa_error-knttp,
            p_wa_header-bukrs TO wa_error-bukrs,
            p_wa_header-kdatb TO wa_error-kdatb,
            p_wa_header-kdate TO wa_error-kdate,
            p_wa_header-ktwrt TO wa_error-ktwrt,
            p_wa_header-waers TO wa_error-waers,
            p_wa_header-wkurs TO wa_error-wkurs,
            p_wa_header-inco1 TO wa_error-inco1,
            p_wa_header-inco2 TO wa_error-inco2,
            p_wa_header-ihran TO wa_error-ihran,
            p_wa_header-angnr TO wa_error-angnr,
            lv_msg            TO wa_error-msg.
      APPEND wa_error TO i_error.
      CLEAR wa_error.
    ELSE.
      READ TABLE i_messtab WITH KEY msgtyp = 'S'.
      IF sy-subrc EQ 0.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            id   = i_messtab-msgid
            lang = sy-langu
            no   = i_messtab-msgnr
            v1   = i_messtab-msgv1
            v2   = i_messtab-msgv2
            v3   = i_messtab-msgv3
            v4   = i_messtab-msgv4
          IMPORTING
            msg  = lv_msg.
        MOVE: p_wa_header-lifnr TO wa_success-lifnr,
              p_wa_header-evart TO wa_success-evart,
              p_wa_header-vedat TO wa_success-vedat,
              p_wa_header-ekorg TO wa_success-ekorg,
              p_wa_header-ekgrp TO wa_success-ekgrp,
              p_wa_header-epstp TO wa_success-epstp,
              p_wa_header-knttp TO wa_success-knttp,
              p_wa_header-bukrs TO wa_success-bukrs,
              p_wa_header-kdatb TO wa_success-kdatb,
              p_wa_header-kdate TO wa_success-kdate,
              p_wa_header-ktwrt TO wa_success-ktwrt,
              p_wa_header-waers TO wa_success-waers,
              p_wa_header-wkurs TO wa_success-wkurs,
              p_wa_header-inco1 TO wa_success-inco1,
              p_wa_header-inco2 TO wa_success-inco2,
              p_wa_header-ihran TO wa_success-ihran,
              p_wa_header-angnr TO wa_success-angnr,
              i_messtab-msgv2   TO wa_success-ebeln.
        APPEND wa_success TO i_success.
        CLEAR wa_success.
      ENDIF.
    ENDIF.
  ENDIF.
  REFRESH i_bdcdata.
ENDFORM.                    " call_transaction
Regards,
Nagaraj

Similar Messages

  • BDC on FK01 is not working in NO-SCREEN Mode

    Hi gurus ,
    i have a situation,
      A custom interface (built as per requirement) is facing some issues with BDC when executing in "NO-SCREEN mode".
        There was a requirement to include email adress while creating permitted payee vendors for corresponding Original vendors iN  sap.
        Now it used to create them . But after i retrieved the email details for a vendor and passsed in the BDC based on some condition, it doesnot work in "NO-SCREEN Mode" . For ALL Screen Mode it is working as expected ; when OK-CODES are given it asks with a pop-up which mode of communication reqd.
    if  email is selected then it assigns onto the new payee vendor being created. What's the problemwith NO-SCREN Mode?
    could somebody plz guiide here.
    Thanx
    kylie

    Hi Sandra ,
    Thanks for your suggestion throiugh the link.
    Had checked the trouble shooting for  BDC : but the scenario in which i experienc eth eproblem is little different.
    Well the Interface to create vendors was working perfectly in ALL Screen as well as NO-SCREEN mode.
    But a small requirement seem to change its execution.
    The Interface had a commented code snippet : retrieve email address from ADR6 table. Now according to the new requirement this code snippet needs to be utilized. So i uncommented that and duly passed th etable entries into the concerned screen (the code for that screen aldready exsits in the recording but not utilized since the retrieval was commented)
    Collects the email address for any vendor from ADr6 table
    Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code
    now for linking the above created vendor, FK02 BDC is maintained. In this BDC the payment transaction screen is used to link payee vendors (above created vendor)  at company code level for any principal vendors (selected from lfa1 and lfb1 table). So only two screens for linking .
    this entire code was working perfect in both A mode and  N mode  but after including the ADR6 code snippet i dont find teh similar execution in N mode.
    Could you please guide me where could i ahve made some mistake.
    thanks
    Kylie
    Edited by: kylietisha on Jun 6, 2010 5:27 PM
    Edited by: kylietisha on Jun 6, 2010 5:42 PM
    Edited by: Rob Burbank on Jun 6, 2010 4:33 PM

  • BDC - not working in 'No Display' mode

    Hi Friends,
    I have written a BDC for TCode O3URV_SS0.I have used CALL TRANSACTION for that.For capturing messages I have used application log.
    In 'N' mode this BDC is not performing properly.For a new set of line item and  a header data it should save that  records and generate a document number.But in 'N' mode the BDC is working for 1st line item only.
    This BDC is working fine in 'A' mode.
    Please help me to solve this problem.

    Moderator message - Welcome to SCN
    But please search before asking - post locked
    Please read [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement], How to post code in SCN, and some things NOT to do... and [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.
    Rob

  • My imac is not working well, the screen is  flashing.I can´t open any program.there is a monsterflashing

    my imac is not working well, the screen is  flashing.I can´t open any program.there is a monsterflashing

    Hello,
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Cannot log in to Nationwide internet banking in Firefox. I get the front page but Login says internet banking is not working. Next screen says it's ok and sends you back to the first screen, which says it isn't. Works throughInternet explorer

    Question
    Cannot log in to Nationwide internet banking. I get the front page but Login says internet banking is not working. Next screen says it's ok and sends you back to the first screen, which says it isn't. Works throughInternet explorer

    That issue can be caused by corrupted cookies.
    *https://support.mozilla.org/kb/Cannot+log+in+to+websites
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • To whom it may concern      Hi my name is Silvana Pires,I purchased an I Phone 4 S Model A 1387 EMC 2430 SCC.ID DCG E  2430 AIC.579 C-E 243 A in California one year ago,Unfortunately its Not working well the screen is getting black,and the phone is in goo

    To whom it may concern
    Hi my name is Silvana Pires,I purchased an I Phone 4 S Model A 1387 EMC 2430 SCC.ID DCG E
    2430 AIC.579 C-E 243 A in California one year ago,Unfortunately its Not working well the screen is getting black,and the phone is in good shape I can prove it,the Apple support in Brazil doenst work like in USA.
    I look forward to your reply and a resolution of this problem.
    Thank you very much!!!

    You are welcome. I'm glad you got it back up.
    (1) You say you did the symbolic link. I will assume this is set correctly; it's very important that it is.
    (2) I don't know what you mean by "Been feeding the [email protected] for several weeks now, 700 emails each day at least." After the initial training period, SpamAssassin doesn't learn from mail it has already processed correctly. At this point, you only need to teach SpamAssassin when it is wrong. [email protected] should only be getting spam that is being passed as clean. Likewise, [email protected] should only be getting legitimate mail that is being flagged as junk. You are redirecting mail to both [email protected] and [email protected] ... right? SpamAssassin needs both.
    (3) Next, as I said before, you need to implement those "Frontline spam defense for Mac OS X Server." Once you have that done and issue "postfix reload" you can look at your SMTP log in Server Admin and watch as Postfix blocks one piece of junk mail after another. It's kind of cool.
    (4) Add some SARE rules:
    Visit http://www.rulesemporium.com/rules.htm and download the following rules:
    70sareadult.cf
    70saregenlsubj0.cf
    70sareheader0.cf
    70sarehtml0.cf
    70sareobfu0.cf
    70sareoem.cf
    70sarespoof.cf
    70sarestocks.cf
    70sareunsub.cf
    72sare_redirectpost
    Visit http://www.rulesemporium.com/other-rules.htm and download the following rules:
    backhair.cf
    bogus-virus-warnings.cf
    chickenpox.cf
    weeds.cf
    Copy these rules to /etc/mail/spamassassin/
    Then stop and restart mail services.
    There are other things you can do, and you'll find differing opinions about such things. In general, I think implementing the "Frontline spam defense for Mac OS X Server" and adding the SARE rules will help a lot. Good luck!

  • Safari will not open in full screen mode

    After installing the 3-1-14 update from the Apps Store, Safari will not open in full screen mode when I click the double arrow in the upper right corner of the screen. If I try the View>Enter Full Screen it still will not open full screen. Prior to this update, everything was fine. I know the info on the update says it deals with iTunes and iBooks, but after installing it my problems began.
    I am running the Mavericks (all updates installed) on an Mac mini (late 2013 edition), 16GB RAM.
    Any suggestions?

    Please disregard my question. The issue disappeared after a cold boot. Thanks.

  • HT4865 Have tried to verify my icloud account, but its not working the Verifying screen is just scrolling round, but not doing anything

    Have tried to verify my icloud account, but its not working, the Verifying screen has been scrolling for ages now, it seems stuck, but it wont let me do anything, please help

    " I ordered the Snow Leopard software and tried installing it, but it stopped and said to clean the disk."
    First off, your installation disc is in all likelihood faulty.
    This has been a known issue in the past:
    Faulty Snow Leopard install discs - Apple has no timeline on ...
    http://store.apple.com/us/help/returns_refund#policy:
    *You can return software, provided that it has not been installed on any computer. Software that contains a printed software license may not be returned if the seal or sticker on the software media packaging is broken.

  • In the middel of updateing my IPod the connectione stopd and since then the device is not working. only white screen no connectivity to win or to the Appstore

    In the middel of updateing my IPod the connectione stopd and since then the device is not working. only white screen no connectivity to win or to the Appstore

    Try:
    - iOS: Not responding or does not turn on
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • BDC not working in display no screen mode

    Hi exparts,
    I am facing a strange problem. I am creating or changing PIR ( transaction ME11, ME12) through BDC.
    when i am running it in 'Display all screen mode' It is running fine and creating or changing the PIR.
    But, when i am running it in 'Display no screen mode' It is not working. I have used call transaction of BDC and its OPTIONS parameter to export mode and default sixe. In the both cases the return message carry only success message.
    Please advice where i am going wrong and how to run it in 'display no screen' mode.
    Thanks in advance.
    Regards,
    abhshek sarkar

    DId you try  OPT-RACOMMIT = 'X' ?
    DATA: P_OPT TYPE CTU_PARAMS.
                P_OPT-DISMODE = 'N'.
               P_OPT-UPMODE = 'L'.
               P_OPT-RACOMMIT = 'X'.
    CALL TRANSACTION tcode  USING BDC_TAB OPTIONS FROM P_OPT MESSAGES INTO MESSTAB.

  • BDC not working in Background mode

    Hi All,
    I have created a BDC. It is working fine in forground mode but not woking in background mode. Please any one know what could be the problem.
    thanks,
    Shweta

    Hi,
    I think there is some field in your screen is disabled for input. As it will not through you error.
    Please run you BDC in foreground mode and check it and see if you get any message. it will be a sucess message.
    this thing happend to me also as my ship to party was disbled in one of screen of VA02.
    thanks,
    Sarbpreet

  • BDC not working in MODE "N"

    Hi All,
    I have written a BDC for F-37, which is working fine in all screen mode
    but not working in "N" mode..
    P.S. I have BDC as the only option.
    Thanks in advance,
    Kalyan Venigalla.

    If you look at the documentation of CALL TRANSACTION you can pass BDC options which is of type CTU_PARAMS. In this assign 'X' to field 'RACOMMIT' and try to run the BDC in 'N' mode.
    DATA: OPT TYPE CTU_PARAMS.
    OPT-DISMODE = 'N'.
    OPT-UPMODE = 'L'.
    OPT-RACOMMIT = 'X'.
    CALL TRANSACTION 'F-37' USING BDC_TAB OPTIONS FROM OPT MESSAGES INTO MESSTAB.
    Thanks and regards,
    S. Chandramouli.

  • Sleep not working with external screen in clamshell mode

    I have my macbook with Lion operating in clamshell mode with an external display connected as the main screen.
    Although I have set the computer to sleep after 10mins, this never happens and I have to sleep the computer manually every time.
    If I disconnect the external display, or open my Mac and work with both screens, the computer does sleep properly after the set time.
    I can't seem to find the fix anywhere, and the people in the mac store couldn't help me either.
    Can anyone help please?
    Thx,

    How to disable the closed-clamshell mode?
    I think, this is what you're looking for ... maybe you want to uproot that question.

  • Error in BDC while running in NO screen mode

    Hello All,
    I am creating material using BDC. I need to capture errors those occure during creation of material. i need to place these errors in client desktop.
    When I run the BDC in ALL Screen mode all types of errors are getting captured correctly and my requirement correctly done. But when i run the BDC in No screen mode i am getting only one error all the time that is ' NO BAtch input data for Screen' which is a wrong one. i am executing the program with the same data in ALL screen and NO screen modes, to check errors. but in case of no screen mode it is getting failed.
    please help me what should i do to correct this. i need to run the program in No screen mode.
    Kumar.

    Hi,
      IN your all screen mode, you should not press enter when there is no POP UP with the OK Codes.
    If you do not get a pop up with the OK Code box, you can still get through the transaction.
    If you do not get a OK_CODE pop up in atleast one instance in your all screen mode, then it means your code is not working
    Regards,
    Ravi

  • CUO1 - BDC not working in the background.

    Hello Experts,
    We are trying to create dependencies using CU01, when we recorded through LSMW we have got an error saying *for type c' lenght can be from 1 to 65535, ( * caution message arised in the field mapping step)*
    we went on with a work around with a BDC, while recording we didn't find any errors,also when processing the recording the system doesn't throw any status message.
    After creating a ABAP program with the recording, we are seeing the status message when we run them in the "A" all screen mode when we press enter it is able to create the dependency however the BDC is not able to run in the background throwing with the same status message ($ it is not a screen field).
    thanks
    Venkat

    When running in the mode 'A', the navigation should only be through the ok_code pop up and not by pressing enter. If you had to navigate to the next screen only by hitting the enter manually, there is a problem with the recording. Try to re-run the recording else manually add the code for the enter function with reference to a correct recording.
    Vikranth

Maybe you are looking for

  • How to load a flat file into BW-BPS using Web Browser

    Hello, i have a problem with the "How to do Paper". I want to upload a Excel CSV file , but the paper only describes a txt file Uplaod. Does anybody can help me ?Thanks !

  • Calculation of Perk value for Housing Deposits

    Our Company is offering Security Deposits for housing (mainly in case of Mumbai Employees)  as Interest free loans and getting it recovered in 36 instalments. The perk value as per IT rules shall be added in the annual gross salary of the employee.St

  • Authentication failed because Outlook doesn't support any of the available authentication methods.

    When attempting to check and send email from my Mac via iCloud, I keep getting the error "Authentication failed because Outlook doesn't support any of the available authentication methods." I have change just about everything I can see available, but

  • Bluetooth radio disables itself

    My wife has a BlackBerry Pearl and since she is not on an enterprise server, I have it set up to connect to our home PC using Bluetooth.  It works beautifully and will perform a wireless sync of her calendar and contacts whenever she is within range

  • Table of contents (and other wonkiness) in Epub export

    Working on publishing our first book and when I export from Pages 5.1 I get a proper table of contents but it is pushed to front of the book as page 1.  I end up with a ToC header on page 8 but nothing underneath it. Also, the inside title page which