Best practice on when to call the HTTPService?

We use HTTP calls to get data frm the server. Currently in our application we call the server on creationComplete event-and display tabs buttons depending on the data that i get from the server.
But i'm thinking to call the server at initialization event and keep the data ready by the time it comes to creationComplete/what ever works. When is it good to call the server? please update my knowledge.

Ya.. i understand.. but, What i'm thinking is to populte the data into arraycollection / keep the XML which we get and keep it ready for the completion event. Coz, what i see is, whenever i click on a button, it opens a tab on the tabNavigator and shows a canvas without any data - paralell to this a server call is made and after few moments the canvas shows the data, even though it all happens within 2-4 secs depending on the network.. I'm still concerned about those 2-4 secs.. i'm trying to bring down the time it takes to load that single page by running a few things paralelly than doing it one after the other. Any other way you could think of?
Message was edited by: saisri2k2

Similar Messages

  • Best practice for multiple instances of the same BEX query

    Hi there,
    I'm wondering what's the best way to use multiple instances of the same BEX query. Let me explain what I mean:
    I have a dashboard with different queries feeding different period of time such as: week to date, month to date and so on. One query for each since it is based on a user exit.
    For each query I want to show different data in different sections of my dashboard. Per example: sales per directors or sales per customer group, sales per day, sales per week and the like.I tried to connect a simple bar chart via a direct connection but with no success due to the multiple lines generated by the addition of the sales director, customer group, week number and so on.
    My question is about the way to connect the different queries efficiently in order to show the different data while avoiding multiple useless lines.
    The image above shows the query browser where, per example, for a Month to date query there will be mutiple line for each week as well as one line for each director. If, for two different components, I want to show data per week and data per director or other representation what is the best practice:
    Add another instance of the same query and only put the week information and another one will only the director info?
    Should I bind those to the excel file and use formulas to make final calculations?
    Will there be a performance issues for adding different instances of the same query
    I have 6 different queries (read 6 user exit that filters time via user exit).
    Depending on the best practices there might be 4 instances for each for a total of 24 instances in the query browser.
    I hope my question is clear enough, if not please do not hesitate I'll clarify as much as possible.
    Regards,
    Steve

    Hi Steve,
    Might be trying for solution for a long time, If i understood your question clear let me clarify you few points.
    You are trying to access the bex query which is designed with the exit's in the background based on the logic and trying to call the entire dimensions and key-figures in a single connection. Then you are trying to map those data in the charts.
    Steve, try to make more connections based upon the logic and split them. use the same query but split them by sales per customer group, sales per day, sales per week by making three different connections and try. You can merge the prompts from all connections.
    Hope this Helps!!!
    Sorry if i misunderstood your question.
    --SumanT

  • How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activ

    How can I activate an old version of Photoshop that I've loaded on my new tablet? The web activation doesn't work, and when I call the number, it says it's not being used anymore. Meanwhile, I'm down to 13 days till it stops working due to not being activated. HELP?  I really need to continue using this product for my home business.It works fine not activated but the threat is that it will stop working in 13 more days if I don't get it activated, and none of the activation methods they list seem to work.

    The new serial number is to the right of your chosen download.

  • Best Practice regarding using and implementing the pref.txt file

    Hi All,
    I would like to start a post regarding what is Best Practice in using and implementing the pref.txt file. We have reached a stage where we are about to go live with Discoverer Viewer, and I am interested to know what others have encountered or done to with their pref.txt file and viewer look and feel..
    Have any of you been able to add additional lines into the file, please share ;-)
    Look forward to your replies.
    Lance

    Hi Lance
    Wow, what a question and the simple answer is - it depends. It depends on whether you want to do the query predictor, whether you want to increase the timeouts for users and lists of values, whether you want to have the Plus available items and Selected items panes displayed by default, and so on.
    Typically, most organizations go with the defaults with the exception that you might want to consider turning off the query predictor. That predictor is usually a pain in the neck and most companies turn it off, thus increasing query performance.
    Do you have a copy of my Discoverer 10g Handbook? If so, take a look at pages 785 to 799 where I discuss in detail all of the preferences and their impact.
    I hope this helps
    Best wishes
    Michael Armstrong-Smith
    URL: http://learndiscoverer.com
    Blog: http://learndiscoverer.blogspot.com

  • I am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    i am trying to generate purchase order and i create a BAPI also which is active.
    But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    Hi,
    Yeah i tried my Z_BAPI in R3 and then giving some ERROR.
    This is my CODE-
    FUNCTION ZBAPIPOTV2.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(POHD) TYPE  ZPOHD OPTIONAL
    *"     VALUE(POITEM) TYPE  ZPOITEM OPTIONAL
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET1 OPTIONAL
    data: ls_pohd type bapimepoheader,
             ls_pohdx TYPE bapimepoheaderx,
             lt_poit TYPE TABLE OF bapimepoitem,
             lt_poitx TYPE TABLE OF bapimepoitemx,
             ls_poit TYPE bapimepoitem,
             ls_poitx TYPE bapimepoitemx.
       MOVE-CORRESPONDING pohd to ls_pohd.
       MOVE-CORRESPONDING poitem to ls_poit.
       ls_pohdx-comp_code = 'x'.
       ls_pohdx-doc_type = 'x'.
       ls_pohdx-vendor = 'x'.
       ls_pohdx-purch_org = 'x'.
       ls_pohdx-pur_group = 'x'.
       ls_poit-po_item = '00010'.
       APPEND ls_poit to lt_poit.
       ls_poitx-po_item = '00010'.
       ls_poitx-po_itemx = 'x'.
       ls_poitx-material = 'x'.
       ls_poitx-plant = 'x'.
       ls_poitx-quantity = 'x'.
       APPEND ls_poitx to lt_poitx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
       EXPORTING
         POHEADER                     = ls_pohd
        POHEADERX                    =  ls_pohdx
    *   POADDRVENDOR                 =
    *   TESTRUN                      =
    *   MEMORY_UNCOMPLETE            =
    *   MEMORY_COMPLETE              =
    *   POEXPIMPHEADER               =
    *   POEXPIMPHEADERX              =
    *   VERSIONS                     =
    *   NO_MESSAGING                 =
    *   NO_MESSAGE_REQ               =
    *   NO_AUTHORITY                 =
    *   NO_PRICE_FROM_PO             =
    *   PARK_COMPLETE                =
    *   PARK_UNCOMPLETE              =
    * IMPORTING
    *   EXPPURCHASEORDER             =
    *   EXPHEADER                    =
    *   EXPPOEXPIMPHEADER            =
      TABLES
        RETURN                       = return
        POITEM                       = lt_poit
        POITEMX                      = lt_poitx
    *   POADDRDELIVERY               =
    *   POSCHEDULE                   =
    *   POSCHEDULEX                  =
    *   POACCOUNT                    =
    *   POACCOUNTPROFITSEGMENT       =
    *   POACCOUNTX                   =
    *   POCONDHEADER                 =
    *   POCONDHEADERX                =
    *   POCOND                       =
    *   POCONDX                      =
    *   POLIMITS                     =
    *   POCONTRACTLIMITS             =
    *   POSERVICES                   =
    *   POSRVACCESSVALUES            =
    *   POSERVICESTEXT               =
    *   EXTENSIONIN                  =
    *   EXTENSIONOUT                 =
    *   POEXPIMPITEM                 =
    *   POEXPIMPITEMX                =
    *   POTEXTHEADER                 =
    *   POTEXTITEM                   =
    *   ALLVERSIONS                  =
    *   POPARTNER                    =
    *   POCOMPONENTS                 =
    *   POCOMPONENTSX                =
    *   POSHIPPING                   =
    *   POSHIPPINGX                  =
    *   POSHIPPINGEXP                =
    *   SERIALNUMBER                 =
    *   SERIALNUMBERX                =
    *   INVPLANHEADER                =
    *   INVPLANHEADERX               =
    *   INVPLANITEM                  =
    *   INVPLANITEMX                 =
    ENDFUNCTION.
    i am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)". 

  • When I get a message it only vibrates even though all sounds are on and when someone calls the sound works perfectly normal.

    when I get a message my iphone 4s only vibrates even though all sounds are on and when someone calls the sound works perfectly normal.

    Try a reset. To reset the iPhone, press and hold the home and sleep/wake buttons until you see the Apple logo (ignore the slide to power off prompt). If that doesn't work, perform a Restore via iTunes (from backup).

  • Hello, I have been unable to activate my new iphone 6. When I call the activation phone number it just says terms and conditions have been accepted on this account. Please help.

    I have been unable to activate my new iphone 6. When I call the activation phone number it just says terms and conditions have been accepted on this account. Please help.

    Same thing here. I love how they include this nice and easy to follow guide in the box and the KEY step for activation (the phone call) is a total fail. To verizon: the automated just says Terms and Conditions have been accepted for this number. Press 1 to enter another phone number in the order. Well, I HAD NO other phone number in my order. The message gives no other options. She repeats the same line 3 more times and after the 3rd time, it says please hold while we transfer you, call may be monitored etc. Guess what, its 2 am ET and customer service is closed?
    Do you guys expect thousands of iphone customers to speak to a CSR just to activate? Why not just let us do it online? I have activated plenty of phones even LTE phones, online. Now I'm going to have to compete with the other 30,000 people who ran into this same problem overnight tomorrow on the phone....

  • Layout - not recognize the element when i call the function write_form

    Hi experts,
    I got a layout(se71) that not recognize the element that i add in the MAIN window when i call the layout from a program.
    what could it be?
    i add the element in se71.
    any help will be appreciated.
    Michal.

    Hi!
    the write form that u are calling should be as below....
    CALL FUNCTION 'WRITE_FORM'
       EXPORTING
          element                  = 'ELEMENT'
          window                   = 'MAIN'
        EXCEPTIONS
          element                  = 1
          function                 = 2
          type                     = 3
          unopened                 = 4
          unstarted                = 5
          window                   = 6
          bad_pageformat_for_print = 7
         spool_error              = 8
          codepage                 = 9
          OTHERS                   = 10.
      IF sy-subrc <> 0.
        MESSAGE 'MAIN window not called properly'(006) TYPE 'E'.
      ENDIF.                               " IF SY-SUBRC NE 0
    in the layout see if the code there with data element is proper as...
    /E  ELEMENT
       &var&
    Also this write_form FUNCTION MODULE should be called  b/w OPEN_FORM and CLOSE_FORM Function Modules.
    Regards

  • How to keep first form window state maximize when you called the second for

    HI,
    how to keep first form window state maximize when you called the second form ?
    Thanks

    Here is sample of doing this.
    Chris

  • My visual voice mail is not working..i have done all the steps that I have seen on here to do. When I call the voice mail it says that there is not a box set up and I need to contact my system administrator.

    My visual voice mail is not working..i have done all the steps that I have seen on here to do. When I call the voice mail it says that there is not a box set up and I need to contact my system administrator.

    I have had voice mail set up on my phone for 10 years. When I did the last iOS update before 7 I guess it wiped out my voice mail. Can I not set it up myself? I haven't changed my message in years.

  • In my i phone 4s when i call the display moves or shrinks like a vibrate

    In my i phone 4s when i call the display moves or shrinks like a vibrate

    Have you contacted your carrier?
    Who is your carrier and where are you?
    Is your carrier on this list? http://support.apple.com/kb/ht1937

  • Best Practice on using and refreshing the Data Provider

    I have a �users� page, that lists all the users in a table - lets call it master page. One can click on the first column to of the master page and it takes them to the �detail� page, where one can view and update the user detail.
    Master and detail use two different data providers based on two different CachedRowSets.
    Master CachedRowSet (Session scope): SELECT * FROM UsersDetail CachedRowSet (Session scope): SELECT * FROM Users WHERE User_ID=?I want the master to be updated whenever the detail page is updated. There are various options to choose from:
    1. I could call masterDataProvider.refresh() after I call the detailDataProvider.commitChanges() - which is called on the save button on the detail page. The problem with this approach is that the master page will not be refreshed across all user sessions, but only for the one saving the detail page.
    2. I could call masterDataProvider.refresh() on the preRender() event of the master page. The problem with this approach is that the refresh() will be called every single time someone views the master page. Further more, if someone goes to next page (using the built in pagination on the table on master page) and clicks on a user to view its detail and then close the detail page, it does not keep track of the pagination (what page the user was when he/she clicked on a record to view its detail).
    I can find some work around to resolve this problem, but I think this should be a fairly common usage (two page CRUD with master-detail). If we can discuss and document some best practices of doing this, it will help all the developers.
    Discussion:
    1.     What is the best practice on setting the scope of the Data Providers and CahcedRowSet. I noticed that in the tutorial examples, they used page/request scope for Data Provider but session scope for the associated CachedRowSet.
    2.     What is the best practice to refresh the master data provider when a record/row is updated in the detail page?
    3.     How to keep track of pagination, (what page the user was when he/she clicked on the first column in the master page table), so that upon updating the detail page, we cab provide user with a �Close� button, to take them back to whaterver page number he/she was.
    Thanks
    Message was edited by:
    Sabir

    Thanks. I think this is a useful information for all. Do we even need two data providers and associated row sets? Can't we just use TableRowDataProvider, like this:
    TableRowDataProvider rowData=(TableRowDataProvider)getBean("currentRow");If so, I am trying to figure out how to pass this from master to detail page. Essentially the detail page uses a a row from master data provider. Then I need user to be able to change the detail (row) and save changes (in table). This is a fairly common issue in most data driven web apps. I need to design it right, vs just coding.
    Message was edited by:
    Sabir

  • I am so sick of Verizon ripping me off and when I call the agents they are so rude to me.

    I need help.  I know you say, it sounds like it, but I can't get the help from tech support, the agents that answer the phone or the supervisors.  My MINIFIED #G has not worked for over a year.  I finally realized that I could put it on suspend which I did and I can do it one more time.
    I have 2 lines that are due for upgrades and new contracts..  I want an phone 4S and see that this can happen at rthew Apple Store.  should I have the Apple Store get me into an iPhone 4S or not?  I will lose the NE2 which for the cell line is $35 and the data line is $50.  is it possible to use any of the phones like the iPhone 4S like I used the MiFI2200 for?  Can I get a phone these days and hook my MacBook Pro up to it and have the phone act like a Mobile HotSpot?
    If that is so there is no reason to gt a 4G mobile hotspot.
    what is the best smartphone to get that has the capability to be used as a mobile hot spot and is not too hard?
    does anybody else have trouble with this company?  do they treat you like you are a loser?  Iam promised by supervisors that they will call me and help me get set-up with the devices you need but I never get a call. I am only told "I called you but you did not answe the phone.
    what is the best cell carrier to use these days?
    what is the best smartphone for my data line that has the $50 NE2 hooked up to it?  Every phone I read about says the battery is crappy.  there is not one phone that I read about that has all good marks. Just at the beginning of summer there were tons of people saying I can't wait for fall when this comes out that will be the best time.
    I got one of the agents to document if any of my devices do not work they will not charge me restocking fees but I do not know if there are any devices worth the cost this company charges.  I have a MoTO phone that is 8 years old, can't do text messages and I have unlimited.  the data device and line is suspended and I pay $80/mo and I talk to friends with other carriers whohave complicated smartphones, unlimited calls and texts and data and they pay $90/mo.
    what does a person who does not know the phones do like me?  Are there any phones that are really worth going through a new plan and getting all set up, sign a new contract and have it be worth it?
    there has got to be som people here who can help an idiot like me.  I used to be satisfied with the MOTO basic cell phone and the MIFI2200 3G. it was awesome. I would go on a trip, take my MacBok Pro and HOOK IT UP TO THE MIFI AND JUST SURF THE INTERNET, FIND A HOTEL and that was it.
    I just need to know if this company is worth staying or should I go to a better carier like ATT
    what is the phone that allows a person to hook their laptop to and suf without ot depleating my data allowance for the month?
    I am in need of big help.  thanks for any help and Merry Christmas.  I won't be getting a phone under my tree because nobody in my family knows what ssmatphones are worth it.
    should I cancel the data line I saved for the $50 NE2 or save it and get one of the new data devices?  if I should then that means none of the decent phones will allow me to use the phone as a data mobile hotspot or are there good phons that will allow me to use the phone for this purpose?
    I thought the Androids were supposed to be the next best thing.  is the Droid a good phone?
    I need help big time and help with what is a good phone and if it is the iPhone 4S can I use that phone and have it be easy and use oitas a mobile hotspot.

    NotSure wrote:
    I need help.  I know you say, it sounds like it, but I can't get the help from tech support, the agents that answer the phone or the supervisors.  My MINIFIED #G has not worked for over a year.  I finally realized that I could put it on suspend which I did and I can do it one more time. If you suspended without billing, you are not completing your contract on that line.  Each month you suspend without billing adds one month to your contract period.
    I have 2 lines that are due for upgrades and new contracts..  I want an phone 4S and see that this can happen at rthew Apple Store.  should I have the Apple Store get me into an iPhone 4S or not?  Apple may not be able to access your New Every 2, otherwise, it won't make a difference. I will lose the NE2 which for the cell line is $35 and the data line is $50.  is it possible to use any of the phones like the iPhone 4S like I used the MiFI2200 for?    Can I get a phone these days and hook my MacBook Pro up to it and have the phone act like a Mobile HotSpot? Yes, you can get phones to use as a mobile hotspot, but you have to get a larger data plan.
    If that is so there is no reason to gt a 4G mobile hotspot. If you want a 3G phone (like the iPhone), then you'll only have 3G speeds.
    what is the best smartphone to get that has the capability to be used as a mobile hot spot and is not too hard? Look on Verizon's site, each phone listing specifies if it supports the mobile hotspot, and you can read reviews.
    does anybody else have trouble with this company? No.  do they treat you like you are a loser? Nope.  Iam promised by supervisors that they will call me and help me get set-up with the devices you need but I never get a call. I am only told "I called you but you did not answe the phone. Maybe they did.  Why don't you purchase your phone in-store and ask them for help setting up your phone if that is important to you.
    what is the best cell carrier to use these days? The one that provides adequate service in the areas you use your phone at a price you find to be a good value.  You need to do some research to determine that.
    what is the best smartphone for my data line that has the $50 NE2 hooked up to it? If you add a phone to your data line, you'll need a calling plan for that line.  Why do you want two smartphones?  Why not just cancel the data line after the contract expires if you plan to get a phone with a mobile hotspot to replace that functionality?  Every phone I read about says the battery is crappy. Smartphones do not have the 2-3 day battery life many people became accustomed to with basic phones, but many of them last through the day easily, you just have to charge them at night.  Again, read the reviews to determine the best phone for you.  there is not one phone that I read about that has all good marks. And there never will be, no one phone is great for everyone, nor is any phone free of flaws.  Just at the beginning of summer there were tons of people saying I can't wait for fall when this comes out that will be the best time. There's always something new around the corner...
    I got one of the agents to document if any of my devices do not work they will not charge me restocking fees but I do not know if there are any devices worth the cost this company charges. If you exchange a phone due to an issue covered by the warranty you will get a new phone in the first 14 days, and a refurbished unit after that.  As far as the cost, if you don't like Verizon's selection, then look at other carriers, or consider buying older phones used from eBay or the like. I have a MoTO phone that is 8 years old, can't do text messages and I have unlimited.  the data device and line is suspended and I pay $80/mo and I talk to friends with other carriers whohave complicated smartphones, unlimited calls and texts and data and they pay $90/mo. A basic one line plan with unlimited texting and 2GB of data on Verizon is $89.99 + taxes/fees.  I think the mobile hotspot capable data plans are $20/month more.
    what does a person who does not know the phones do like me? Research, and then play with the phones in store.  Also, buy your phone at a store with friendly staff who can help you get set up.  You may have to go to more than one. Are there any phones that are really worth going through a new plan and getting all set up, sign a new contract and have it be worth it? Maybe, how much do you care about the features and capabilities of a smartphone?  Enough to deal with some hassle and learning curve?  If not, a basic phone may be better for you?
    there has got to be som people here who can help an idiot like me.  I used to be satisfied with the MOTO basic cell phone and the MIFI2200 3G. it was awesome. I would go on a trip, take my MacBok Pro and HOOK IT UP TO THE MIFI AND JUST SURF THE INTERNET, FIND A HOTEL and that was it.
    I just need to know if this company is worth staying or should I go to a better carier like ATT Do some research about coverage and cost, and then make a decision.
    what is the phone that allows a person to hook their laptop to and suf without ot depleating my data allowance for the month? Any mobile hotspot use will come out of your data allowance.
    I am in need of big help.  thanks for any help and Merry Christmas.  I won't be getting a phone under my tree because nobody in my family knows what ssmatphones are worth it.
    should I cancel the data line I saved for the $50 NE2 or save it and get one of the new data devices?  if I should then that means none of the decent phones will allow me to use the phone as a data mobile hotspot or are there good phons that will allow me to use the phone for this purpose? I don't know if you would be better off with a basic phone + data device, or a smartphone with mobile hotspot.  There are advantages to both setups.  You can use Verizon's site to do some mock orders and see what the cost difference would be between the two options.
    I thought the Androids were supposed to be the next best thing.  is the Droid a good phone? There is a large selection of Android phones, and many people like them.  You'll need to read some reviews and play with a few to choose the one you may like.
    I need help big time and help with what is a good phone and if it is the iPhone 4S can I use that phone and have it be easy and use oitas a mobile hotspot.

  • Best practice implementation. What are the steps for this?.

    We had an upgrade from CRM 4 to 7 undertaken by some outfit (name deleted). After the upgrade was complete it would look as though the comapny carried on using the GUI interface rather than the WebUI interface, mainly because that's how CRM 4 worked. Now they would like to use the WebUI interface of CRM 7, as the GUI interface is no longer supported, but are receiving a number of errors when using certain features of teh WebUI. It would look as though a lot of config is missing, especially in the UI Framework area. I can only assume that whichever company performed the upgarde simply skipped this section when upgrading.
    I assume that I could download the best practice install/upgrade (?) and then just execute the section regarding the UI Framework, if such a section exists. bearing in mind that there seems to be a lot of config missing in the UI Framework section, would you recommend the course of action that I have mentioned?.
    Our WebUI Interaction centre is giving errors when we go in and I have been informed that I need to complete the config for:
    Customer Relationship Management->UI Framework->UI Framework Definition->Maintain Runtime Framework Profile
    But as I mentioned, there are lots of other sections in the UI Framework area that are empty and hence the suggestion I made above. Hopwever, I would specifically be interested to hear from anyone who can tell me what the entries are in the view table BSPWDV_RF_PROF_C and possibly the table BSPWDV_CTRL_REPL and BSPWDV_DEF_CC.
    I know this only completes part of the config, but it might be enough so that the WebUI IC can be viewed.
    On another subject, I have just come into this company and if I wanted to see what had been installed how do I go about that. for example, if I wanted to know if there had been an upgrade from 4 to 7 for a particular Industry solution, where do I check this?.
    Jason

    I have been through the following steps:
    Entered this URL http://help.sap.com/bp/initial/index.htm
    Clicked on 'Cross-industry Packages'
    Clicked on 'CRM'
    Clicked on 'Englilsh'
    Then the following page is displayed:
    http://help.sap.com/bp_crm70/CRM_DE/HTML/index.htm displayed
    But now what?. How do I get the Best practice instructions for a CRM implemenation?.
    Jason

  • What are some best practices for Effective Sequences on the PS job record?

    Hello all,
    I am currently working on an implementation of PeopleSoft 9.0, and our team has come up against a debate about how to handle effective sequences on the job record. We want to fully grasp and figure out what is the best way to leverage this feature from a functional point of view. I consider it to be a process-related topic, and that we should establish rules for the sequence in which multiple actions are inserted into the job record with a same effective date. I think we then have to train our HR and Payroll staff on how to correctly sequence these transactions.
    My questions therefore are as follows:
    1. Do you agree with how I see it? If not, why, and what is a better way to look at it?
    2. Is there any way PeopleSoft can be leveraged to automate the sequencing of actions if we establish a rule base?
    3. Are there best practice examples or default behavior in PeopleSoft for how we ought to set up our rules about effective sequencing?
    All input is appreciated. Thanks!

    As you probably know by now, many PeopleSoft configuration/data (not transaction) tables are effective dated. This allows you to associate a dated transaction on one day with a specific configuration description, etc for that date and a different configuration description, etc on a different transaction with a different date. Effective dates are part of the key structure of effective dated configuration data. Because effective date is usually the last part of the key structure, it is not possible to maintain history for effective dated values when data for those configuration values changes multiple times in the same day. This is where effective sequences enter the scene. Effective sequences allow you to maintain history regarding changes in configuration data when there are multiple changes in a single day. You don't really choose how to handle effective sequencing. If you have multiple changes to a single setup/configuration record on a single day and that record has an effective sequence, then your only decision is whether or not to maintain that history by adding a new effective sequenced row or updating the existing row. Logic within the PeopleSoft delivered application will either use the last effective sequence for a given day, or the sequence that is stored on the transaction. The value used by the transaction depends on whether the transaction also stores the effective sequence. You don't have to make any implementation design decisions to make this happen. You also don't determine what values or how to sequence transactions. Sequencing is automatic. Each new row for a given effective date gets the next available sequence number. If there is only one row for an effective date, then that transaction will have a sequence number of 0 (zero).

Maybe you are looking for

  • How to connect an iPad Air 2 to a TV?

    I recently bought an iPad Air 2 (my first iPad so it's all new to me), so I was wondering if it's possible to connect the iPad to a TV? I've found a few cables that look like they'd do the job but I thought I'd get some advice before I spend my money

  • SAP BOBJ connection with SQL server 2008

    HI Gurus I want to install bobj server on a server that already have SQL server 2008 installed on it, I have few confusions as this is my first time installation, I hope you can help me. 1. Since SQL server is installed on the same machine where I ha

  • JBO - Exception

    Hello, I created an application using BC4J and when I want to deploy it, I always get the message JBO-33001: Cannot find the configuration file XXXXXXXx\common\bc4j.xcfg in the classpath How can I solve thios. Please it's urgent and very important

  • My downloaded premier elements 64 does not load?

    I downloaded elements photoshop 9 and premier 11. Installed both.....photoshop works fine. Premier 11 does nothing. No error message just no action at all...either from desktop icon are within file folder. I'm replacing premier 8 that worked perfectl

  • My Iphone 5 is locked to Africa flex couldn't find any company with this name I'm stuck help me out.

    My Iphone 5 is locked to Africa flex according to some online carrier check service, i did some search but couldn't find any company in south africa or any where else, don't know how i will Unlock my phone as i got it as a gift from my friend who liv