How to process an extract in batches?

ABAPers,
I am using two temporarily tables within my module. The first one is actually an extract. I need to process the stored records in batches. The size of each batch is specified in the other table.
For example, say the extract contains 100 records. The other table contains batch sizes of 20, 30 and 50 (for a total of 100 records). In this case, I need to get first 20 records from the extract and process it. After that, I need to get next 30 records and process it, and so on.
Here is a simple example I have put together. This program doesn't work as I do not know the proper LOOP construct to use. I would appreciate it if someone can guide me.
Thank you in advance for your help.
Pradeep
REPORT  ZMYTEST3.
data: myRecord(20).
field-groups tempStore.
insert: myRecord into tempStore.
myRecord = 'abc'.
extract tempStore.
myRecord = 'def'.
extract tempStore.
myRecord = 'ghi'.
extract tempStore.
data: batchSizes type table of I.
append 2 to batchSizes.
append 1 to batchSizes.
data: currentSize type i.
LOOP AT batchSizes INTO currentSize.
  write: / currentSize.
  LOOP.
    AT tempStore.
      write: / myRecord.
    ENDAT.
  ENDLOOP.
ENDLOOP.

Never mind. I figured it out. It appears an internal table can be accessed using indexing. Ergo problem solved.
Pradeep

Similar Messages

  • GoldenGate extract in Batch mode

    I like to configure the Goldengate in a scheduler. Hence I don't want to change parameter file every time for BEGIN and END commands in the extract.
    Is there any way to sent the parameter values from unix to process the extract for only specific time
    Example
    I want to run the batch weekly
    Special run (intial load) for extract - End 14-Jan-2012 23:59
    Next run for extract Begin 15-Jan-2012 00:00 End 15-Jan-2012 23:59
    Next run for extract Begin 16-Jan-2012 00:00 End 16-Jan-2012 23:59
    Next run for extract Begin 17-Jan-2012 00:00 End 17-Jan-2012 23:59
    Please let me know how to automate the Begin and End in the the parameter file
    Thanks
    Balu S

    Script an obey file and call it along with the command line invocations you use to start manager and everything else.

  • Retrieving process id from a batch file

    Hi friends,
    I am having a problem to retrieve the process id from a batch file. I will give the code which I have written and if anyone can help me it will be grateful. I am having time pressure. Here when I call
    Process p = rt.exec("checkExec.bat");
    the process is getting created. What I need is "I have to get the process id inside the batch file and then I have to store that process id to a file. My problem is "HOW CAN I GET HOLD OF PROCESS ID". Please give some guidance.
    !!!!THANKS IN ADVANCE !!!
    PROCESSTEST:
    public class ProcessTest {
         * @param args
         public static void main(String[] args) throws IOException {
              Runtime rt = Runtime.getRuntime();
              try {
                   Process p = rt.exec("checkExec.bat");
              } catch (IOException e) {
                        e.printStackTrace();
    CHECKEXEC.BAT
    cd bin
    java duo.CalledProcess
    CALLEDPROCESS
    public class CalledProcess {
         * @param args
         public static void main(String[] args) {
              try {
                   Runtime rt = Runtime.getRuntime();
                   synchronized (rt) {
                        while(true){
                             rt.exec("notepad");
                             long sec = 100000;
                             rt.wait(sec);
              } catch (InterruptedException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }

    problem is "HOW CAN I GET HOLD OF PROCESS ID".You can take it from the Operating System using JNI.

  • RE: Processing Logged messages in batch mode ?

    Paul,
    One way to findout the log file is to inspect your
    <CentralServer>.log. It should have a line something like..
    Redirecting output to <someDirectory>/forte_ex_26564.log.
    That is the file the the current ftexec is writing to.
    This has worked fine for me.
    Another way is to sort the files by date, and look at the latest
    ones.
    ...I'd love to hear about a better way to do this.
    Ajith Kallambella. M
    Forte Systems Engineer
    International Business Corporation.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Monday, March 01, 1999 9:06 AM
    To: Forte-Users (Adresse de messagerie)
    Subject: Processing Logged messages in batch mode ?
    Hi,
    When I launch partitions, they display a whole bunch of 'useful' messages.
    (maybe using 'task.logmgr.putline')
    I'm afraid these traces go directly in the launcher's log file under
    $FORTE_ROOT/log
    As I get control only when the ftexec ends for the next instruction to be
    interpreted,
    how can I figure out which of these log files relates to the ftexec I just
    got executed ?
    (example: "forte_ex_3613.log")
    I found '/output' for node managers, but for single ftexec(s) ?
    (thinking also about re-used ftexec(s))
    Thanks in advance,
    j-paul gabrielli
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Paul,
    One way to findout the log file is to inspect your
    <CentralServer>.log. It should have a line something like..
    Redirecting output to <someDirectory>/forte_ex_26564.log.
    That is the file the the current ftexec is writing to.
    This has worked fine for me.
    Another way is to sort the files by date, and look at the latest
    ones.
    ...I'd love to hear about a better way to do this.
    Ajith Kallambella. M
    Forte Systems Engineer
    International Business Corporation.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Monday, March 01, 1999 9:06 AM
    To: Forte-Users (Adresse de messagerie)
    Subject: Processing Logged messages in batch mode ?
    Hi,
    When I launch partitions, they display a whole bunch of 'useful' messages.
    (maybe using 'task.logmgr.putline')
    I'm afraid these traces go directly in the launcher's log file under
    $FORTE_ROOT/log
    As I get control only when the ftexec ends for the next instruction to be
    interpreted,
    how can I figure out which of these log files relates to the ftexec I just
    got executed ?
    (example: "forte_ex_3613.log")
    I found '/output' for node managers, but for single ftexec(s) ?
    (thinking also about re-used ftexec(s))
    Thanks in advance,
    j-paul gabrielli
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • FW: Processing Logged messages in batch mode ?

    If you rename your partitions' log files before running the app and do the
    renaming according to each partitions' purpose or partition number, then
    after running the app, just go to the approprate log file. You can do the
    renaming using system agents so that it is not a manual process.
    Essentially, you know in advance where the output goes.
    -Ravi
    -----Original Message-----
    From: J-Paul GABRIELLI [SMTP:[email protected]]
    Sent: Monday, March 01, 1999 11:29 AM
    To: 'Kalidindi, Ravi CWT-MSP'
    Subject: RE: Processing Logged messages in batch mode ?
    Sorry, I was looking for a batch way, when the partition is dead (i.E.
    can't monitor it nor view it in escript)
    No gui :-)
    j-p
    -----Message d'origine-----
    De: Kalidindi, Ravi CWT-MSP [SMTP:[email protected]]
    Date: lundi 1 mars 1999 17:51
    A: 'Kallambella, Ajith'; 'J-Paul GABRIELLI'; 'Forte'
    Objet: RE: Processing Logged messages in batch mode ?
    In case of installed applications or running in distributed mode, you can
    use econsole to choose the appropriate active partition and view the log
    file for it. The "log file" window also displays the name of the
    particular
    log file. In case of installed applications, you can also rename the log
    file for your partitions.
    Hope that helps
    -Ravi Kalidindi
    Born Info Svcs Group
    -----Original Message-----
    From: Kallambella, Ajith [SMTP:[email protected]]
    Sent: Monday, March 01, 1999 9:47 AM
    To: 'J-Paul GABRIELLI'; 'Forte'
    Subject: RE: Processing Logged messages in batch mode ?
    Paul,
    One way to findout the log file is to inspect your
    <CentralServer>.log. It should have a line something like..
    Redirecting output to <someDirectory>/forte_ex_26564.log.
    That is the file the the current ftexec is writing to.
    This has worked fine for me.
    Another way is to sort the files by date, and look at the latest
    ones.
    ...I'd love to hear about a better way to do this.
    Ajith Kallambella. M
    Forte Systems Engineer
    International Business Corporation.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Monday, March 01, 1999 9:06 AM
    To: Forte-Users (Adresse de messagerie)
    Subject: Processing Logged messages in batch mode ?
    Hi,
    When I launch partitions, they display a whole bunch of 'useful'messages.
    (maybe using 'task.logmgr.putline')
    I'm afraid these traces go directly in the launcher's log file under
    $FORTE_ROOT/log
    As I get control only when the ftexec ends for the next instruction tobe
    interpreted,
    how can I figure out which of these log files relates to the ftexec Ijust
    got executed ?
    (example: "forte_ex_3613.log")
    I found '/output' for node managers, but for single ftexec(s) ?
    (thinking also about re-used ftexec(s))
    Thanks in advance,
    j-paul gabrielli
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    If you rename your partitions' log files before running the app and do the
    renaming according to each partitions' purpose or partition number, then
    after running the app, just go to the approprate log file. You can do the
    renaming using system agents so that it is not a manual process.
    Essentially, you know in advance where the output goes.
    -Ravi
    -----Original Message-----
    From: J-Paul GABRIELLI [SMTP:[email protected]]
    Sent: Monday, March 01, 1999 11:29 AM
    To: 'Kalidindi, Ravi CWT-MSP'
    Subject: RE: Processing Logged messages in batch mode ?
    Sorry, I was looking for a batch way, when the partition is dead (i.E.
    can't monitor it nor view it in escript)
    No gui :-)
    j-p
    -----Message d'origine-----
    De: Kalidindi, Ravi CWT-MSP [SMTP:[email protected]]
    Date: lundi 1 mars 1999 17:51
    A: 'Kallambella, Ajith'; 'J-Paul GABRIELLI'; 'Forte'
    Objet: RE: Processing Logged messages in batch mode ?
    In case of installed applications or running in distributed mode, you can
    use econsole to choose the appropriate active partition and view the log
    file for it. The "log file" window also displays the name of the
    particular
    log file. In case of installed applications, you can also rename the log
    file for your partitions.
    Hope that helps
    -Ravi Kalidindi
    Born Info Svcs Group
    -----Original Message-----
    From: Kallambella, Ajith [SMTP:[email protected]]
    Sent: Monday, March 01, 1999 9:47 AM
    To: 'J-Paul GABRIELLI'; 'Forte'
    Subject: RE: Processing Logged messages in batch mode ?
    Paul,
    One way to findout the log file is to inspect your
    <CentralServer>.log. It should have a line something like..
    Redirecting output to <someDirectory>/forte_ex_26564.log.
    That is the file the the current ftexec is writing to.
    This has worked fine for me.
    Another way is to sort the files by date, and look at the latest
    ones.
    ...I'd love to hear about a better way to do this.
    Ajith Kallambella. M
    Forte Systems Engineer
    International Business Corporation.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Monday, March 01, 1999 9:06 AM
    To: Forte-Users (Adresse de messagerie)
    Subject: Processing Logged messages in batch mode ?
    Hi,
    When I launch partitions, they display a whole bunch of 'useful'messages.
    (maybe using 'task.logmgr.putline')
    I'm afraid these traces go directly in the launcher's log file under
    $FORTE_ROOT/log
    As I get control only when the ftexec ends for the next instruction tobe
    interpreted,
    how can I figure out which of these log files relates to the ftexec Ijust
    got executed ?
    (example: "forte_ex_3613.log")
    I found '/output' for node managers, but for single ftexec(s) ?
    (thinking also about re-used ftexec(s))
    Thanks in advance,
    j-paul gabrielli
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Processing Logged messages in batch mode ?

    Hi,
    When I launch partitions, they display a whole bunch of 'useful' messages.
    (maybe using 'task.logmgr.putline')
    I'm afraid these traces go directly in the launcher's log file under $FORTE_ROOT/log
    As I get control only when the ftexec ends for the next instruction to be interpreted,
    how can I figure out which of these log files relates to the ftexec I just got executed ?
    (example: "forte_ex_3613.log")
    I found '/output' for node managers, but for single ftexec(s) ?
    (thinking also about re-used ftexec(s))
    Thanks in advance,
    j-paul gabrielli

    The instrument "LogFile" on the active partition agent contains the name of
    the log file.
    At 10:47 AM 3/1/99 -0500, Kallambella, Ajith wrote:
    Paul,
    One way to findout the log file is to inspect your
    <CentralServer>.log. It should have a line something like..
    Redirecting output to <someDirectory>/forte_ex_26564.log.
    That is the file the the current ftexec is writing to.
    This has worked fine for me.
    Another way is to sort the files by date, and look at the latest
    ones.
    ...I'd love to hear about a better way to do this.
    Ajith Kallambella. M
    Forte Systems Engineer
    International Business Corporation.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Monday, March 01, 1999 9:06 AM
    To: Forte-Users (Adresse de messagerie)
    Subject: Processing Logged messages in batch mode ?
    Hi,
    When I launch partitions, they display a whole bunch of 'useful' messages.
    (maybe using 'task.logmgr.putline')
    I'm afraid these traces go directly in the launcher's log file under
    $FORTE_ROOT/log
    As I get control only when the ftexec ends for the next instruction to be
    interpreted,
    how can I figure out which of these log files relates to the ftexec I just
    got executed ?
    (example: "forte_ex_3613.log")
    I found '/output' for node managers, but for single ftexec(s) ?
    (thinking also about re-used ftexec(s))
    Thanks in advance,
    j-paul gabrielli
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>============================================
    Don Nelson
    Senior Systems Architect
    Forte Software, Inc.
    Denver, CO
    Phone: 303-265-7709
    Corporate voice mail: 510-986-3810
    aka: [email protected]
    ============================================
    "Nothing spoils fun like finding out it builds character." - Calvin
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • How to update revision number in batch attribute at thetime of goodsreceipt

    Hi all i got a requirement to enhance for this standard functionality the user exit is prod order exit_saplcosf_001 & purchase order exit_sapmm07m_003  and the functionality i have to acheive is
    At the time of goods receipt the system should update the batch characteristics ofu201DRevisionu201Cwith the appropriate material revision level. The update should happen for receipt against as purchase order or against a production order. The information that is available with us at the time of goods receipts against purchase/production order will be the order number, material number, Quantity and Batch number. The receiving personnel will input the rev level of the material received (he will get it from the receiving documents received from the vendor) in the popup box provided by this enhancement. This enhancement will check the rev level entered by the receiving personnel with the rev level in the purchase order/ production order in question both match then it will go ahead and do the goods receipt. In case the revision level entered by the user and the one in the order does not match the system will given an error message saying u201C Pl check the material revision level as they do not match u201C. For items with no rev levels the EKPO-REVLV field in the PO will be blank. In case of a production order check the following field in the order header CAUFVD-REVLV to update the batch attribute with the revision level of the material being received in stock. In case CAUFVD-REVLV is empty then it would mean that there is no revision level for this material.
    The pop-up box to enable the user to key in the revision level will be displayed only in case if the purchase order/production order has a revision level in them.
    can u tell how to process to acheive this requirement
    thanks & regards
    naveen
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Oct 21, 2010 10:40 PM

    yes, because the Userfields is missing in the Object.
    maybe you should tell this SAP, looks like they forgot it.
    ok, you can also do it more complicated to stay official - save the information in a usertable.
    regards
    David

  • How to process Sessions

    Hi,
      I Would like to know how to process sessions.
    Regards,
    Prasad

    Refer to these links
    <b>Managing Batch Input Sessions</b>
    http://help.sap.com/saphelp_46c/helpdata/en/69/c2501a4ba111d189750000e8322d00/frameset.htm
    <b>Processing Sessions Automatically</b>
    http://help.sap.com/saphelp_46c/helpdata/en/69/c250414ba111d189750000e8322d00/frameset.htm
    Regds
    Manohar

  • How can a do a simple Batch convert?

    Page 248 of the manual explains how to make Applescript droplets for batch processing:
    You can also drag files or folders onto a droplet, making it easy to batch process files.
    Great! I opened a single file in the Audio editor, applied my actions, and saved the result as AppleScript via File > Save as Applescript.
    I drag and drop a few files to this app, and it processes, but then it asks me to save somewhere. This is understandable, since when performing the actions I didn't specify a save location, but I can't figure out where to specify this for when performing the steps or ultimately creating the Applescript. It's also annoying, because I don't want to have to do this for hundreds of files!
    But it's a moot point - the Applescript app hangs and never does anything with the subsequent files. It only processes the first of the group.
    What am I doing wrong here?
    ... going to try using Compressor... but it won't boot... again.

    Compressor worked once I reinstalled it. Soundtrack Pro ought to be able to do this, or even send to compressor.
    Crazy thought, the Soundtrack Pro manual should mention that you can use Compressor instead of providing instructions that don't really work.

  • Process to Extract the data from R/3 to MDM .

    Hi
    Can any one Explain the process of how the data is Extracted from the R/3 to MDM.
    If any doc plz mail me to [email protected]
    Thanking you in Advance.
    Hari.

    Hi,
    To extract data from R/3 to MDM you would need to first set up a port to XI (if it is your integrator) and then establish an FTP to the MDM server.
    R/3 has lookup data/check table data that can be extracted to MDM to do this you could run standard code provided by SAP extract the lookup data as an xml file & upload this data using hte standard maps in to the MDM repository
    If you have any custom tables in R/3 you could extract that data using MDMGX transaction code .
    Finally for the actual master data you could set up extraction variants using MDM_CLNT_EXTR and schedule jobs to run them/ MDMC to extract records.
    Please find the IT Scenario config guide & other relevant documents at:
    https://websmp204.sap-ag.de/nw04operation
    Regards,
    Anita

  • How many processes?

    Hello,
    I have a question about how many concurrent processes within a single process chain could I start with? That is, from the start process, how many could I trigger at the same time?
    Eg. :
    Start Process
    |
    P1      P2      P3       P4          Pn
    Does it mean each process (P) take up 1 batch process?
    Pls give a hint thanks.
    Regards,
    Alfonso S.

    Alfonso
    After start process you could use any number of process you want. In your example You could runn P1, P2, P3 and P4 in paralle or one after other depends on your requirement.
    Yes each process will take one batch process
    Hope I answered your question
    Thnaks
    Sat

  • How to process Customer Open Items? If that Customer is also an Vendor.

    Hi All,
    I need some help for  the below configuations,
    1. How to process Customer Open Items? If that Customer is also an Vendor to the Company. ( How to adjust these open amounts)
    1. How to process Vendor Open Items? If that Vendor is also an Customer to the Company. ( How to adjust these open amounts)
    Thanks
    Chandra

    Hi Chandra,
    In addition to all the above, if the Customers and Vendors are in different company codes, then, you would have to also do the following configuration.
    Execute transaction code <b>OBYA</b>, when prompted, type in 1st coy code, say A and then 2nd coy code, say B. This would take you to the "<b>Maintain FI Configuration: Automatic Posting - Clearing Accounts</b>" screen.
    In the first frame, where you have
    Posted in : A
    Cleared Against : B
    Under Receivable
    Debit Posting Key : <b>01</b>
    Account Debit : Account Number (The account can be a G/L account, a customer account or a vendor account)
    Under Payable
    Credit Posting Key : <b>31</b>
    Account Credit : Account Number (The account can be a G/L account, a customer account or a vendor account).
    In the second Frame
    Posted in : B
    Cleared Against : A
    Under Receivable
    Debit Posting Key : <b>01</b>
    Account Debit : Account Number (The account can be a G/L account, a customer account or a vendor account)
    Under Payable
    Credit Posting Key : <b>31</b>
    Account Credit : Account Number (The account can be a G/L account, a customer account or a vendor account).
    So, if you are using the Customer/Vendor approach, company A must be set up as both a Customer(Use Txn Code <b>XD01</b>) and a Vendor(USe Txn Code <b>XK01</b>) in Company B and vice versa.
    Once you have completed this set-up, you can then use transaction <b>F.13</b> and/or <b>F13E</b> to carry out your automatic clearing.
    However, if you intend to use the G/L approach, then the account numbers would be Inter-coy G/L account for each coy code as defined in the chart of accounts.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • URGENT - HOW TO PROCESS A BDC SESSION (IN BACKGROUND) FROM INSIDE A REPORT

    Hi All,
    I have a requirement wherein I need to create a BDC session for mass update(from file) of one transaction and check if at all that update has taken place and proceed with the same session for another transaction.
    For this I need to know how to process the session in background in a report, so that if the processing is done, the next set of data to update a different transaction can happen.
    All inputs are welcome and highly valuable to me.
    If someone is unable to intrepret this, I'll detail it again.
    Thanks in advance,
    Vaishnavi Varadarajan

    Hi,
    1.Use RSBDCDRU is an exe pg.With this u can download the logs into local file.
    2.It will create the spool request .from there u can download or print.
    OtherWise:
    Use the code from the link below. U need to provide the session queue id as input and it will download the log to an excel file. U can change it to  ur reqmt.
    Re: BDC
    regards
    kiran

  • How can I convert a large batch of NEFs to JPGs in one step or action?

    How can I convert a large batch of NEFs to JPGs in one step or action?  I'm very new to Lightroom and know almost nothing about it, so I need to know step-by-step.  I've seen online advise about exporting but I don't know what that means - export from where to where?  Can anyone help me?  Thanks!

    I suggest you take a little time to watch some tutorials. If you are that new to Lightroom that you don't understand what export means then it would probably be a good idea for you to get some other information as well. If you don't I think you'll find Lightroom can be very confusing. You haven't indicated what version of Lightroom you are using. The link I'm providing you is a series of getting started videos for Lightroom 5. And just about everything in this series will apply to other versions. You will note that there is one video devoted exclusively to exporting images. But I think you really need to watch the whole series.
    Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

  • How to process each records in the derived table which i created using cte table using sql server

    I want to process each row from the CTE table I created, how can I traverse from first row to second row and so on....
    how to process each records in the derived table which i created using  cte table using sql server

    Ideally you would be doing a set based processing rather than traversing row by row as thats more efficient. To answer it specific to your scenario we may need more info. Can you explain with some sample data your exact requirement?
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • Setting Up the File Server Dynamically

    I have a scenario wherin i have to set up the FTP server name  and directory where i have to put the final file dymically. I was able to set the directory path dynamically using Adapter Specific Message properties. Can somebody suggest me if i can se

  • HTML doesn't work except in Internet Ex;plorer

    I am new to Dreamweaver and have set up the beginnings of a site, using template and files: www.kojonupworking.com.au This site shows the top navigation texts in Internet Explorer but not in Firefox or Netscape and I can't work out why. Can anyone gi

  • Another source of G5 noise

    I experience beeps and chirps from the power supply, but also another kind of noise. Almost every day the door on my G5 starts vibrating. With the fans usually making very little noise I can hear the door vibrating from several feet away. This happen

  • Quality Center Adapter - Connecting Multiple Solution Manager Systems

    We are running Solution Manager 7/Enhp 1 and Quality Center 10 successfully using the Quality Center Adapter integration. My question is, can we connect multiple Solution Manager systems (i.e. SMP/SMS/SMX) to a single Quality Center server simultaneo

  • Installation Address does not Match Billing Addres...

    Hi All I have lived at my current address for 51 years and the phone was originally installed by the Post Office long before BT. About 10 years ago I signed up to view the Bill online and pay by Direct Debit. At some point I noticed the address on th