TS3366 iOS 7: Back and Forward Gesture in Safari and Mail conflicts with Panning Gesture

Back and Forward Gesture in Safari and Mail is different than the back and forward gesture used to swipe between Home screens.  The simple swipe with the thumb straight does not work in Safari and Mail, it conflicts with the Panning gesture.  It should be relatively easy to improve the algorithm to allow for that gesture to work.

Indeed, swiping back from pdf pages sometimes works, but most often does not.
It seems that the swiping gesture has in all cases changed slightly. It is now necessary to swipe a little until a portion of the previous page is uncovered, and only then can one swipe back.
The fact that there is a specific way to swipe back from html pages suggests that there might be an equally specific way to swipe back from pdf pages. I am still experimenting. Meanwhile make sure no one is sitting to your right in case your trackpad flies off during a gesture trial.

Similar Messages

  • My iPad 2 keeps going into no service mode since upgrading to iOS 8.0 and the same with iOS 8.0.2

    My iPad 2 keeps going into no service mode since upgrading to iOS 8.0 and the same with iOS 8.0.2

    Hi jhatlanta, 
    I understand you are using a cellular iPad 2 and since upgrading to iOS 8 (and 8.0.2) your iPad drops the cellular connection and says, "No Service".
    So you have done step 5 in this list, but please test the other steps.
    If you see No Service in the status bar of your iPhone or iPad
    If you're in your carrier's coverage area
    Follow these steps, testing after each.
    Tap Settings > Enable Airplane Mode, wait five seconds, then turn off airplane mode.
    Restart your device.
    Remove the SIM card. If the SIM card is damaged, worn, or bent, or if it's too big or small for the SIM tray, contact your carrier for a new one. Then reinsert the SIM card.
    Check for a carrier-settings update: Connect to a Wi-Fi network, tap Settings > General > About, and install any available carrier-settings updates. If you can't connect to Wi-Fi, connect your device to a computer that has iTunes.
    Update your iPhone to the latest version of iOS.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. This will reset all network settings, including Bluetooth pairing records, Wi-Fi passwords, VPN, and APN settings.
    Contact your carrier to check for any network or account issues.
    Restore your iPhone.
    Best Regards,
    Nubz

  • If i buy iphone 5 from the usa can i take it back and use it with my UK O2 sim card and how much will a 16gb iphone 5 cost

    Hi,
    if i buy iphone 5 from the usa can i take it back and use it with my UK O2 sim card and also how much will a 16gb iphone 5 cost in the usa?
    thanks
    Andy

    hi there,
    you could buy it somewhere in Europe. I know Apple sells them unlocked here in Germany and if I am not mistaken also (among others) in France and Italy.
    Yet, as Peter wrote, the warranty can become a problem. Not sure whether a one country only rule goes for the European Community as well though.
    As for the price, the 16 GB model costs 679,- € (equals roughly 550 £). Currently there is an average delivery time of 4 to 5 weeks.
    LTE connections will not work with Orange or Vodafone. Only EE is about to offer a compatible LTE network. DC-HSPA and regular HSPA+ will work fine.
    regards, Chris

  • If I upgrade to Lion from Snow Leopard on my Mac will MobileMe calendar and mail integrate with iCloud?

    If I upgrade to Lion from Snow Leopard on my Mac will MobileMe calendar and mail integrate with iCloud?

    There is no Mobile Me anymore. It has been gone for several years, now. However, your existing calendar and mail will integrate with iCloud if you enable it on your system.

  • Two finger "back" of "forward" swipe in Safari won't work on PDF web pages.

    This is a problem that carries forward from OSX 10.6 when using the swipe gesture on the magic mouse for browsing "back" and "forward" in Safari. It now continues with the mouse and on the track pad in 10.7.  When viewing PDF web pages the 'back" and "forward" swipe gestures work only sometimes, and when they do work, it requires a much faster swipe.  There are no issues associated with clicking on the back and forward buttons at the top left corner of Safari, so this appear to be isolated to gestures.  Is there any solution to correct this inconsistency?
    Thanks,
    Marc

    Indeed, swiping back from pdf pages sometimes works, but most often does not.
    It seems that the swiping gesture has in all cases changed slightly. It is now necessary to swipe a little until a portion of the previous page is uncovered, and only then can one swipe back.
    The fact that there is a specific way to swipe back from html pages suggests that there might be an equally specific way to swipe back from pdf pages. I am still experimenting. Meanwhile make sure no one is sitting to your right in case your trackpad flies off during a gesture trial.

  • Problem activating the back and exit button with the ALV using OO

    I have wrote my first alv using Methods.My problem is that i can't activete the BACK and  EXIT button in the standart toolbar .
    Look my code please .....
    Without PF-STATUS can i do it ?
    *& Report  YDP_DOUBLE_ALV
    REPORT  YDP_DOUBLE_ALV.
    TABLES : YQM_CERT , MARA , YOUTPUT_APPL.
    DATA : ALV_GRID TYPE REF TO CL_GUI_ALV_GRID,
           CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           FIELD_CAT TYPE LVC_T_FCAT,
           LAYOUT TYPE LVC_S_LAYO.
    DATA : ALV_GRID2 TYPE REF TO CL_GUI_ALV_GRID,
           CUSTOM_CONTAINER2 TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    *       FIELD_CAT TYPE LVC_T_FCAT,
    *       LAYOUT TYPE LVC_S_LAYO.
    DATA: DYNNR TYPE SY-DYNNR,
          REPID TYPE SY-REPID.
    DATA: OK_CODE TYPE SY-UCOMM.
    DATA : BEGIN OF ITAB OCCURS 0.
            INCLUDE STRUCTURE YQM_CERT.
    DATA   END OF ITAB.
    DATA : BEGIN OF ITAB1 OCCURS 0.
            INCLUDE STRUCTURE YOUTPUT_APPL.
    DATA   END OF ITAB1.
    *  MODULE DISPLAY_ALV OUTPUT
    MODULE DISPLAY_ALV OUTPUT.
      SET PF-STATUS 'ZST9'.
      PERFORM DISPLAY_ALV.
    ENDMODULE.                    "DISPLAY_ALV OUTPUT
                       "DISPLAY_ALV OUTPUT
    *& Module USER_COMMAND_0100 INPUT
    * text
    MODULE USER_COMMAND_0100 INPUT.
      CASE OK_CODE.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    START-OF-SELECTION.
      LAYOUT-ZEBRA = 'X'.
      LAYOUT-GRID_TITLE = 'YQM_CERT'.
      LAYOUT-CWIDTH_OPT = 'X'.
      LAYOUT-SMALLTITLE = 'X'.
      SELECT  * FROM  YQM_CERT INTO ITAB.
        APPEND ITAB.
      ENDSELECT.
      SELECT  * FROM  YOUTPUT_APPL INTO ITAB1.
        APPEND ITAB1.
      ENDSELECT.
      CALL SCREEN 100.
    END-OF-SELECTION.
    *&      Form  DISPLAY_ALV
    *       text
    FORM DISPLAY_ALV.
      IF ALV_GRID IS INITIAL.
        CREATE OBJECT CUSTOM_CONTAINER
          EXPORTING
    *      PARENT                      =
            CONTAINER_NAME              = 'CC_ALV'
    *       style                        =
    *      LIFETIME                    = lifetime_default
          REPID                       = REPID
          DYNNR                       = DYNNR
    *      NO_AUTODEF_PROGID_DYNNR     =
    *    EXCEPTIONS
    *      CNTL_ERROR                  = 1
    *      CNTL_SYSTEM_ERROR           = 2
    *      CREATE_ERROR                = 3
    *      LIFETIME_ERROR              = 4
    *      LIFETIME_DYNPRO_DYNPRO_LINK = 5
    *      others                      = 6
        IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CREATE OBJECT ALV_GRID
          EXPORTING
    *    I_SHELLSTYLE      = 0
    *    I_LIFETIME        =
            I_PARENT          = CUSTOM_CONTAINER
    *    I_APPL_EVENTS     = space
    *    I_PARENTDBG       =
    *    I_APPLOGPARENT    =
    *    I_GRAPHICSPARENT  =
    *    I_NAME            =
    *    I_FCAT_COMPLETE   = SPACE
    *  EXCEPTIONS
    *    ERROR_CNTL_CREATE = 1
    *    ERROR_CNTL_INIT   = 2
    *    ERROR_CNTL_LINK   = 3
    *    ERROR_DP_CREATE   = 4
    *    others            = 5
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL METHOD ALV_GRID->SET_TABLE_FOR_FIRST_DISPLAY
          EXPORTING
    *      I_BUFFER_ACTIVE               =
    *      I_BYPASSING_BUFFER            =
    *      I_CONSISTENCY_CHECK           =
             I_STRUCTURE_NAME              = 'YQM_CERT'
    *      IS_VARIANT                    =
    *      I_SAVE                        =
    *      I_DEFAULT                     = 'X'
           IS_LAYOUT                     = LAYOUT
    *      IS_PRINT                      =
    *      IT_SPECIAL_GROUPS             =
    *      IT_TOOLBAR_EXCLUDING          =
    *      IT_HYPERLINK                  =
    *      IT_ALV_GRAPHICS               =
    *      IT_EXCEPT_QINFO               =
    *      IR_SALV_ADAPTER               =
          CHANGING
            IT_OUTTAB                     = ITAB[]
    *      IT_FIELDCATALOG               =
    *      IT_SORT                       =
    *      IT_FILTER                     =
    *    EXCEPTIONS
    *      INVALID_PARAMETER_COMBINATION = 1
    *      PROGRAM_ERROR                 = 2
    *      TOO_MANY_LINES                = 3
    *      others                        = 4
        IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ELSE.
        CALL METHOD ALV_GRID->REFRESH_TABLE_DISPLAY
    *       EXPORTING
    *         IS_STABLE      =
    *         I_SOFT_REFRESH =
    *       EXCEPTIONS
    *         FINISHED       = 1
    *         others         = 2
        IF SY-SUBRC <> 0.
    *      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    ENDFORM.                    "DISPLAY_ALV

    Hi
    U need  to active them in your status ZST9.
    Max

  • When I open certain emails the scroll bars at the side and bottom flash and jump back and forth along with the email content

    I recently upgraded to the latest version of Yahoo mail. Ever since then when I open certain emails the scroll bars jump back and forth and flash. This happens when I open my AT&T bill or something from Amazon for instance. A message appears at the bottom such as "Transferring data from mail.yimg.com", or "us.bc.yahoo.com". This doesn't happen when I use Safari.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    You may have switched on caret browsing.
    *http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    *Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    *http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Keep getting deleted emails back and mail will not close,have to force quit

    i have 4 emails that will not stay deleted.I will delete them and as soon as i reopen my mail they come back.Its as if they never left.Then i can't close my mail.i have to force quit. I have read of other problems close to mine and tried there solutions with no success.I do not know if my setting in pref. are correct or not. This problem is not allowing me to recieve new emails i just keep getttting these same 4 back time after time. very frustrating.

    You're welcome.
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    In order to fix the problem, we'll have to re-create Envelope Index. The thing is, Mail may choke on those messages while re-creating the index, so either be prepared for that or perform optional steps 1 and 3:
    1. (Optional, but recommended). Assuming this is a POP account, in the Finder go to ~/Library/Mail/POP-username@mailserver/INBOX.mbox/Messages/, and identify the *.emlx files associated with the troublesome messages. Viewing the *.emlx files as List in the Finder showing the creation/modification date may help. Just identify them; do not get rid of them yet (you must quit Mail first).
    2. Quit Mail.
    3. (Optional, but recommended). Move to the Trash the troublesome *.emlx files found in step 1.
    4. In the Finder, go to ~/Library/Mail/. Make a backup copy of this folder, just in case something goes wrong -- e.g. by dragging it to the Desktop while holding the Option (Alt) key down.
    5. Locate Envelope Index and move it to the Trash. If you see an Envelope Index-journal file there, delete it as well.
    6. In the Finder, go to ~/Library/Mail/POP-username@mailserver/. Locate Deleted Messages.mbox, and move it to the Trash. I assume there is nothing to be preserved there.
    7. Open Mail. It will tell you that your mail needs to be "imported". Click Continue and Mail will proceed to re-create Envelope Index -- Mail says it's "importing", but it just re-creates the index if the mailboxes are already in Mail 2.x format.
    Note: For those not familiarized with the ~/ notation, it refers to the user's home folder, i.e. ~/Library is the Library folder within the user's home folder.

  • IOS 5.0 and iPhone along with "new user account"

    I do hate this hacking aspect of all software, but with iTunes especially.
    Earlier I tried to remove some duplicates in the iTunes on my old computer, but time after time they popped back from the trash can, what the heck!
    There was a running computer with my iTunes account and everything was fine. Later I even made a restore to new phone after previous phone got lost.
    Then I had to buy new laptop to replace the old as it got broken.
    As instructed, I installed iTunes onto the new computer and was able to connect my Apple Store account and purchased Apps.
    Then after I copied everything in the Apple Computer - folders and iTunes in my old (same user account name) to the new computer, now running with Windows 7 (former laptop had XP).
    Now my iPhone 4 (iOS 5.0) does not sync.
    Sync failed to start...
    Also I wonder what is the reason not to be able to sync back from the handheld? Nokia has that and it really works. When I have new contacts and restore from backup I loose my contacts, since there is no sync file on the new computer. Why the system does not work automatically and sync back from the phone, if no source files found on the computer? The back sync coud be asked every time new phone or ipod/pad is connected.
    Im starting to be absolutely fed up with this constant browsing through discussions forums and what ever hacking pages to get things running that I'm just about to throw the device into the lake next to my house. AAARGH!
    Why do we even accept this? Who would buy or use a car, that had to be repaired or re-booted every 10 miles?
    Great jobs!
    Change over was, is from Samsung NC20 (WinXP) to HP Probook 5330m (Winows 7)

    Update your XCode to 4.3.2
    Your question should be in developer forum
    Developer Forums

  • IOS 7 Calendar and Mail disappears

    I have several iCloud calendars, a couple subscribed icloud calendars a subscribed calendar from TripIt and an Exchange calendar. I also have several email accounts. Two iCloud, One Exchange, a gmail and several POP accounts.
    After updating to IOS 7, None of my NEW events added to Exchange, TripIt or my iCloud added via my Macbook calendar would show up.. All events previous to the update were still there..
    Then My iCloud email accounts disappeared. I went into the settings and the accounts were still there. I went into the settings for the account and exited back out. After that, my mail account re-appeared, but not the calendars.
    I deleted TripIt and re-added it through the app, and suddenly my entire calendar started working again.
    Today, All of my calendars disappeared except for birthdays which I believe are from my contact cards.. Also, from my exchange account I have one recurring event every two weeks.. This event shows up.
    I have gone down to the bottom of the Calendars app, clicked the link 'calendars' and then chosen to HIDE all Calendars, and then SHOW all calendars.. I have also hidden all calendars and tried showing them individually. 
    I tried re-subscribing to the Tripit calendar and I get a message saying I'm already subscribed to a duplicate calendar..
    I have an additional app that keeps appointments CalendarSched that reads from my calendar.. This apps still shows the appointments.. FYI, I added CalendarSched AFTER I got the calendar working again, so it was not installed when I upgraded.
    The information is somehow there, but not showing.

    Agreed. The animations make me dizzy and hurt my eyes, also makes the iphone laggy and sluggish. The new Calendar app now is unusable for me, all of my shared calendars are overlapping each other and make it almost impossible to understand at a quick glance - please bring back the old month view and list view.

  • I cannot save (to desktop) or send (to another computer), a certain important document from the web.  Can I have a back and forth discussion with someone about my issues?

    Technically, I'm just trying to print my online pay stub, and am having an impossible time with the options given to me!!  
    Since my printer isn't working, I'd like to save document to my desktop ("save as" is the only option given to me) and send it as an attachment to a friend's computer and working printer.  I'm given 2 options for the format when trying to "save as", neither work, because when I open the saved icon on my desk top, sometimes there is an empty page that states something like, there is no webpage here, or there is nothing there at all!
    Now, I am currently trying to send the document directly (via email, an option given under "file") the pay stub from my employer (who uses ADP online payroll services), to that computer and working printer ....and I'm receiving a window (with apple mail logo on it) that begins with  "To view this page, you must log in to this area on agateway.adp.com:443:"  and asks for "name" and "password".  I've put in both ADP's information, and what I believe (could be very wrong) to be apple mail's information, and either/neither/nothing seems to work!
    [back story] About 5 years ago, I attempted to set-up apple mail (4.5) on my MacBook (OS X 10.6.8), didn't appreciate the process and abandoned my efforts.  Since then I've always used different email applications (yahoo, go daddy, and currently, gmail).  I've been successfully able to avoid apple mail up until this point.
    Can anyone help me save or send this document?
    Please someone ....help me!

    JRP IV wrote:
    I'm just trying to print my online pay stub
    Since my printer isn't working, I'd like to save document to my desktop ("save as" is the only option given to me) and send it as an attachment to a friend's computer and working printer.
    What browser are you using?
    Are you trying to print or to save the doc? Whether you have a working printer or not is really immaterial. If you're trying to print, then File > Print > PDF > Save as PDF…. If the resulting PDF is small enough (<5MB, though my preference is <1MB), e-mail it to your pal. If it's too big, transfer it using a chat programme or a file service (MediaFire, RapidShare, etc).
    Now, I am currently trying to send the document directly (via email, an option given under "file") the pay stub from my employer (who uses ADP online payroll services), to that computer and working printer ....and I'm receiving a window (with apple mail logo on it) that begins with  "To view this page, you must log in to this area on agateway.adp.com:443:"  and asks for "name" and "password".  I've put in both ADP's information, and what I believe (could be very wrong) to be apple mail's information, and either/neither/nothing seems to work!
    I don't understand any of this. You need to explain better—or perhaps just post a screen shot (blank any private or confidential info on it prior to posting).

  • Ungraded to IOS 8.2 and mail settings changed and outgoing mail will not work. Setting seem to me correct.

    IOS 8.2 did something to my Gmail settings for my outgoing mail. Check the setting and they seem to be correct. Anyone know what else the download may have affected in Gmail or email setting in general? Iphone 6 Plus

    Hello gfdunn,
    I'm sorry to hear you are having issues with your iPhone after the recent iOS 8.2 update. If you are having issues sending mail from your Gmail account in Mail, you may find the information and troubleshooting steps outlined in the following articles helpful:
    Gmail account cannot get or send email in iOS - Apple Support
    Get help with Mail on iPhone, iPad, and iPod touch - Apple Support
    Sincerely,
    - Brenden

  • IOS/AIR Running and Debugging Issues with Flash Builder

    I'm having very frustrating intermittent issues running and debugging Flex applications on an iPad 3rd generation retina with Flash Builder 4.7.
    Until this morning, launching on device using both standard and fast packaging worked pretty well. Every now and again, I'd get a dialog saying the packaging had completed successfully, but it hadn't. A quick change of the USB cable to another port on my iMac and it started working again. I'd also randomly get a "Error occurred while installing the application: Invalid <device> specified" error, which quickly went away.
    This morning, with the same code base, the same certificate and provisioning profiles, Flash Builder has only managed to successfully package and run my application on my iPad twice and I must have attempted to launch fifty or so times. Standard packaging, fast packaging and with and without the useLegacyAOT.
    Does this sound like a Flash Builder issue? Is my iMac USB driver dodgy? Has anybody else experienced this?
    Any help greatly welcomed!
    Thanks,
    Simon

    Hi I have had this problem sometimes. With my Mac Book Pro.
    Try making a new flex application and see if you have the same result.
    When I had this problem I created a new Application and copied every thing from my other application.
    This my be a hard solution but I don't no any others.

  • HT5624 I have two mail accounts and one Icloud account. Thproblem is mail is going out with the incorrect sent from address. I deleted the mail accounts and added just one account back and mail still goes out with the incorrect from address and people res

    My phone will not5 send from the correct address tht I want my mail sent from. Although my mail goes into the correct mail accout answeres leave with the incorrect sent from address.
    I want to be able to send mail corectly.

    In Mail Preferences/Accounts/each GMail account, set up the SMTP Outgoing Server for each account separately, going into SMTP name/edit/Advanced and specify the Username of each account.  The Outgoing servers must be two different servers, authenticated by the Username and Password of each.
    Otherwise, the GMail SMTP server will change the from address to that of the account where the SMTP server was setup.
    Ernie

  • JCAP512 and JCAP6 conflict with concurrent database connectivity

    So here is the situation:
    Environment:
    - We have a production JCAP6 appserver (AIX server 1) running a project pulling data from database A
    - We have 4 JCAP512 domains on AIX Servers 2,3,4 running 4 distinct projects pulling data from server A
    - All project run on a schedule of 5 minutes and login to the server with the same login
    - Database A is SQL Server
    - repository based code
    Scenario:
    - All 5 above processes run concurrently in the greater JCAPS environment.
    - When all 5 processes are running, the JCAP6 process runs fine with no issue but at the same time the 4 JCAP512 processes hang on the database side waiting for a resultset with a wait status of ASYNC_NETWORK_IO
    - As soon as the JCAP6 process completes, all 4 JCAP512 processes start running with no errors. Once the JCAP6 process starts again, same result.
    - We shut off the JCAP6 process and all 4 JCAP512 processes run with no issue
    So after my high-school proof setup above my question comes to what is going on??? All of these processes run on their own isolated physical and application servers. Their only commonaliy is the login to the database. Are there any known database connectivity settings that would limit user transactions if another (same) user connection currently exists?
    Has anybody seen anything like this? Ay assistance would be greatly appreciated.
    Bryan
    Edited by: bgrant88 on Jan 29, 2010 2:15 PM

    I've never worked with the old version of the toolkit, so I don't know how it did things, but looking inside the SQL prep VI, it only generates a command, and the the column name VI wants a recordset. I'm not super familiar with all the internals of ADO, but my understanding is that is standard - you only have the columns after you execute the command and get the recordset back. What you can apparently do here is insert the Execute Prepared SQL VI in the middle and that will return what you need.
    I'm not sure why it worked before. Maybe the execute was hidden inside the prep VI or maybe you can get the column names out of the command object before execution. In general, I would recommend considering switching to the newer VIs.
    Try to take over the world!

Maybe you are looking for

  • Recognition Issue

    My iPod nano 6th gen is not recognized by both my windows 7 computer and itunes. To note I have had this iPod for about a year and worked fine before downloading the new itunes. I have tried downloading the new itunes, uninstalling itunes then reinst

  • The graphics on my iq504 are grainy (pink lines every other pixel)

    ive had 3 different iq504 touchscreen PCs and each one of them did this the first one the problem just went away after a while but this on ( the third replacement) has had the pink lines in it for over 3 months and after messing with it the whole scr

  • Condition "not containing" expression  in Receiver Determination

    Hi guys, I have one interface which processes files with lines compossed by two fields, an identificator, and a data field. Inside the data field, i have a row of characters and I want to create this condition in the receiver determination: If Data c

  • How does "concurrent request schedule" work in database layer?

    for the EBS concurrent request schedule, what triggers the schedule work? I find no related jobs in database, I don't know what others can realize the schedule of concurrrent requests without database job? thanks! Edited by: easonmy on 24-Apr-2012 20

  • Doubt in duty values (CIN)

    Hi All, When I try to capture excise invoice in J1IEX for GR number the duty values are showing in percentage and not in amount. Kindly let me know what is the change to be done show that it will show the amount. Thankyou