How to Replace GUID inside table CRMD_PARTNER

Hi,
How to replace old user GUID with a New User GUID inside the table CRMD_PARTNER ?? and from where can we get the GUID of a particular partner ??

Hi Rahul,
The CRMD_PARTNER table stores the partner details that are maintained in a document say shopping cart as example (Header and Line Items).
Now to get all the partners of a the shopping cart use BBP_PD_SC_GETDETAIL function module. This will give all the details + partner details in table form.
Now you can use the FM BBP_PD_SC_UPDATE to change the details. You can delete an existing partner by setting the deletion indicator (DEL_IND I guess) in the partner table. If you wish to add a new partner add the partner id, partner function and guid of header / item (where the partner is required) as P_GUID.
Once the above function (BBP_PD_SC_UPDATE) call is success call the BBP_PD_SC_SAVE to save the changes.
Deleting data from SAP tables is not advisable.
Note: Once partners are assigned to a document and ordered, then you have to delete that partner and assign a new one if at all they need to be changed. Just replacing the partner guid will cause data inconsistency because except the guid all other data will still be that of the old partner. The above steps explain the procedure for the same
Hope this solves your problem.
The below code will delete the existing vendor and add a new vendor for a PO
REPORT  zkb_partner_chg.
DATA: lt_e_item     TYPE TABLE OF bbp_pds_po_item_d.
DATA: lt_e_partner  TYPE TABLE OF bbp_pds_partner.
DATA: lt_e_messages TYPE TABLE OF bbp_pds_messages.
DATA: lt_i_item     TYPE TABLE OF bbp_pds_po_item_icu.
DATA: lt_i_partner  TYPE TABLE OF bbp_pds_partner.
DATA: ls_e_header   TYPE bbp_pds_po_header_d.
DATA: ls_e_item     TYPE bbp_pds_po_item_d.
DATA: ls_e_partner  TYPE bbp_pds_partner.
DATA: ls_i_item     TYPE bbp_pds_po_item_icu.
DATA: ls_i_header   TYPE bbp_pds_po_header_u .
DATA: ls_but000     TYPE but000.
DATA: lv_e_changed TYPE  xfeld.
FIELD-SYMBOLS: <fs_partner> TYPE bbp_pds_partner.
CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
  EXPORTING
    i_object_id     = '3200000576'
    i_with_itemdata = 'X'
  IMPORTING
    e_header        = ls_e_header
  TABLES
    e_item          = lt_e_item
    e_partner       = lt_e_partner
    e_messages      = lt_e_messages.
* Populate Header Data and Item data
MOVE-CORRESPONDING ls_e_header TO ls_i_header.
LOOP AT lt_e_item INTO ls_e_item .
  MOVE-CORRESPONDING ls_e_item TO ls_i_item.
  APPEND ls_i_item TO lt_i_item.
ENDLOOP.
LOOP AT lt_e_partner INTO ls_e_partner.
  APPEND ls_e_partner TO lt_i_partner.
ENDLOOP.
** Delete Partner
READ TABLE lt_i_partner ASSIGNING <fs_partner>
     WITH KEY partner_fct = '00000019'
              p_guid = ls_i_header-guid.
IF sy-subrc EQ 0.
  <fs_partner>-del_ind = 'X'.
ENDIF.
UNASSIGN <fs_partner>.
** Add Partner
SELECT SINGLE * FROM but000 INTO ls_but000 WHERE partner = '0087000004'.
CLEAR ls_e_partner.
ls_e_partner-partner_guid = 1.
ls_e_partner-partner_no = ls_but000-partner_guid.
ls_e_partner-partner_fct = '00000019'.
ls_e_partner-p_guid = ls_i_header-guid.
APPEND ls_e_partner TO lt_i_partner.
* Update Doc
CALL FUNCTION 'BBP_PD_PO_UPDATE'
  EXPORTING
    i_header                = ls_i_header
    i_save                  = 'X'
    iv_with_change_approval = ' '
  IMPORTING
    e_changed               = lv_e_changed
  TABLES
    i_item                  = lt_i_item
    i_partner               = lt_i_partner
    e_messages              = lt_e_messages.
* Save Doc
IF NOT lv_e_changed IS INITIAL.
  CALL FUNCTION 'BBP_PD_PO_SAVE'
    EXPORTING
      iv_header_guid = ls_i_header-guid.
  COMMIT WORK AND WAIT.
ENDIF.
Regards
Kathirvel
Edited by: Kathirvel Balakrishnan on Feb 29, 2008 12:14 PM - Added the code sample for more clarity

Similar Messages

  • How to iterator inputtext inside table

    hi i have situation where i have table inside a table i have inputtext which got emailaddress how can i iterator in order to return that email
    this is my table
    <af:table value="#{bindings.DeltMember1.collectionModel}"
                              var="row" rows="#{bindings.DeltMember1.rangeSize}"
                              emptyText="#{bindings.DeltMember1.viewable ? 'No data to display.' : 'Access Denied.'}"
                              fetchSize="#{bindings.DeltMember1.rangeSize}"
                              rowBandingInterval="0"
                              selectedRowKeys="#{bindings.DeltMember1.collectionModel.selectedRow}"
                              selectionListener="#{bindings.DeltMember1.collectionModel.makeCurrent}"
                              rowSelection="single" id="t5" width="1155"
                              partialTriggers="cb9" columnStretching="last"
                              inlineStyle="height:134px;">
                      <af:column sortProperty="Username" sortable="false"
                                 headerText="#{bindings.DeltMember1.hints.Username.label}"
                                 id="c15">
                        <af:inputText value="#{row.bindings.Username.inputValue}"
                                      label="#{bindings.DeltMember1.hints.Username.label}"
                                      required="#{bindings.DeltMember1.hints.Username.mandatory}"
                                      columns="#{bindings.DeltMember1.hints.Username.displayWidth}"
                                      maximumLength="#{bindings.DeltMember1.hints.Username.precision}"
                                      shortDesc="#{bindings.DeltMember1.hints.Username.tooltip}"
                                      id="it6">
                          <f:validator binding="#{row.bindings.Username.validator}"/>
                        </af:inputText>
                      </af:column>
                      <af:column sortProperty="Firstname" sortable="false"
                                 headerText="#{bindings.DeltMember1.hints.Firstname.label}"
                                 id="c14">
                        <af:inputText value="#{row.bindings.Firstname.inputValue}"
                                      label="#{bindings.DeltMember1.hints.Firstname.label}"
                                      required="#{bindings.DeltMember1.hints.Firstname.mandatory}"
                                      columns="#{bindings.DeltMember1.hints.Firstname.displayWidth}"
                                      maximumLength="#{bindings.DeltMember1.hints.Firstname.precision}"
                                      shortDesc="#{bindings.DeltMember1.hints.Firstname.tooltip}"
                                      id="it11">
                          <f:validator binding="#{row.bindings.Firstname.validator}"/>
                        </af:inputText>
                      </af:column>
                      <af:column sortProperty="Surname" sortable="false"
                                 headerText="#{bindings.DeltMember1.hints.Surname.label}"
                                 id="c13">
                        <af:inputText value="#{row.bindings.Surname.inputValue}"
                                      label="#{bindings.DeltMember1.hints.Surname.label}"
                                      required="#{bindings.DeltMember1.hints.Surname.mandatory}"
                                      columns="#{bindings.DeltMember1.hints.Surname.displayWidth}"
                                      maximumLength="#{bindings.DeltMember1.hints.Surname.precision}"
                                      shortDesc="#{bindings.DeltMember1.hints.Surname.tooltip}"
                                      id="it7">
                          <f:validator binding="#{row.bindings.Surname.validator}"/>
                        </af:inputText>
                      </af:column>
                      <af:column headerText="#{bindings.DeltMember1.hints.Emailaddress.label}"
                                 id="c18">
                        <af:outputText value="#{row.Emailaddress}" id="ot6"/>
                      </af:column>
                      <af:column id="c17">
                        <af:panelGroupLayout id="pgl6">
                          <af:panelFormLayout id="pfl8" rows="1" maxColumns="2">
                            <af:commandButton actionListener="#{bindings.Delete1.execute}"
                                              text="Remove" id="cb9">
                              <af:setActionListener from="{true}"
                                                    to="#{pageFlowScope.addMember.deleteAction}"/>
                            </af:commandButton>
                          </af:panelFormLayout>
                        </af:panelGroupLayout>
                      </af:column>
                    </af:table>
    something like this
        public String getCountry(){
            DCIteratorBinding it = ADFUtil.findIterator("IntUsr1Iterator");
           RowSetIterator rsi = it.getRowSetIterator();
             Row rw =   rsi.first();
             testusername = (String)rw.getAttribute("Countrycode");
            return testusername;      
    but my problem is the details are inside table not inputtextEdited by: adf009 on 2013/05/28 3:35 PM

    but the value is inside table column,
    what must i iterator
    DCIteratorBinding it = ADFUtil.findIterator("IntUsr1Iterator");
    <af:column headerText="#{bindings.DeltMember1.hints.Emailaddress.label}"
                                 id="c18">
                        <af:outputText value="#{row.Emailaddress}" id="ot6"/>
                      </af:column>
    pagedef of table
    <tree IterBinding="DeltMember1Iterator" id="DeltMember1">
          <nodeDefinition DefName="uam.model.UpdOrgDetails.DeltMember"
                          Name="DeltMember10">
            <AttrNames>
              <Item Value="Username"/>
              <Item Value="Firstname"/>
              <Item Value="Surname"/>
              <Item Value="Emailaddress"/>
            </AttrNames>
          </nodeDefinition>
        </tree>Edited by: adf009 on 2013/05/28 5:00 PM
    Edited by: adf009 on 2013/05/28 5:01 PM

  • How to replace a qualified table with Tuple

    Hi Experts!
    I have a Qualified table woth 2 non qualifiers,which refer to 2 lookup flat table and one text field which is Qualifier.
    Now I want to replace this design with tuple.Please give me steps to do so and also how is the linking of field relation maintained in Tuple.
    Thanks
    Ravz

    Hi Ravz,
    Please refer the complete section 5. Migrating from Qualified Lookup Table to Tuple
    Here, must check Page No 48/58 example for converting Qualified tbale to Tuple. It will solve your problem.
    Sample: Manufacturer Part Number (MPN) in standard Products repository
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/80765a21-78f3-2b10-74a2-dc2ab57a1bd2?quicklink=index&overridelayout=true
    Regards,
    Mandeep Saini

  • How to use loop inside table in smart form

    Hi All
    i have to use page break at the end of each pernr. i got table in smart form and print cells on event on sort begin. it is working ok . i have an other itab in  as well .which i want to the same page with respect to the pernr no.
    but the problem is as i loop the 2nd itab. it prints all the record what it has.
    e.g  i have two pernr 54 and 55.
    the records of itab1 prints on page1 and page 2 properly. now i loop at itab2 it also have relevent records of above said pernrs. but i m unable to control those pernrs and loop print all the records on both pages.
    if u get some thing out of it kindly help me
    Regards
    ammad

    hi,
    Place the second loop ie. itab2 inside the first loop of itab1.  And in the conditions tab of looping itab2 give the condition for checking the pernr.
    try to implement this logic.
    loop itab
      at new pernr
        new-page
      endat.
        loop at itab2 where pernr eq itab-pernr.
       endloop.
    endloop.
    revert back for further queries.
    regards
    Rajitha.

  • Reporting Services - How to open a second table inside report, for each number of client (each apears in first table)

    Reporting Services - How to open a second table inside report, for each number of client (each apears in first table)?
    Exemple:
    Table1
    Cliente name:
    John
    Client number:
    12345
    Survay number of negative answers:
    3
    Table2
    Questions and answers that were negative:
    Question: How much time where you waiting
    Avaluation: 3 (from 1 to 10)
    Answer: They only called me 1 mouth later
    Can you please help me?

    Hi,
    Based on the description, I understand that you want to add subreport in the main report. When previewing the main report, the subreport can be shown in detail. Please see the screenshots on my test:
    In Reporting Services, we can create parameters and pass them from main report to subreport in order to control the data dynamically.
    References:
    Subreports (Report Builder and SSRS)
    Add a Subreport and Parameters (Report Builder and SSRS)
    If I have any misunderstanding, please feel free to contact me.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • How to replace NULL values from main table

    Dear all,
    I like to remove the NULL values from a main table field. Or the question is how to replace any part of the string field in MDM repository main table field.
    e.g.   I have a middle name field partly the value is NULL in some hundreds of records, I like to replace NULL values with Space
    any recommendation.
    Regards,
    Naeem

    Hi Naeem,
    You can try using Workflows for automatically replacing NULLs with any specific value.
    What you can do is: Create a workflow and set trigger action as Record Import, Record Create and Record Update. So, that whenever any change will occur in the repository; that workflow will trigger.
    Now create an assignment expression for replacing NULLs with any specific value and use that assignment expression in your workflow by using Assign Step in workflow.
    For exiting records, you will have to replace NULLs manually using the process given by Preethi else you can export those records in an Excel spreadsheet which have NULLs and then replace all NULLs with any string value and then reimport those records in your MDM repository.
    Hope this will solve your problem.
    Regards,
    Varun
    Edited by: Varun Agarwal on Dec 2, 2008 3:12 PM

  • How to use one hash table inside another hash table

    Hi everyone,
    Any example of hash table inside another hash table.
    Can one here help me how to write one hash table inside another with repeating keys for the first hash table.
    Thanks,
    kanty.

    Do you mean you want the 'value' entries in a hash table to themselves be hash tables? Easy but this often indicates a design flaw.
    Hashtable<String,<Hashtable<String,Value>> fred = new Hashtable<String,<Hashtable<String,Value>> ();But what do you mean by "with repeating keys for the first hash table"?
    Edited by: sabre150 on Jul 2, 2010 10:11 PM
    Looks like you have already handled the declaration side in your other thread. I suspect you should be writing your own beans that hold the information and these beans would then be stored in a Map. The problem I have is that your description is too vague so I can't be certain.

  • How to Replace Null Value as 0 in an OBIEE11g Pivot Table? it's working 10g

    Hi,
    How to Replace Null Value as 0 in an OBIEE11g Pivot Table? it's working in obiee10g version.
    We have tried below methods
    1) criteria tab and edit the ‘column properties’ associated with your fact measure. Choose the ‘Data Format’ tab, tick to override the default format and choose ‘Custom’.
    It seems that the syntax for this custom format is positive-value-mask (semi colon) negative-value-mask (semi colon) null-mask. So this means we have a few options.
    E.g. if you want zeros (0) instead of null then enter:
    #,##0;-#,##0;0
    2) in that formula columns we have put it below case condition also ,
    Measure Column: Nom_amt --> edit formulas
    CASE WHEN Nom_amt IS NULL THEN 0 ELSE Nom_amt END
    3) we have uncheked IS NULL check box in the admin tool also
    I tried above formats still it's not working for me..kindly help me on this..
    thanks to do the needfull
    Best Regards,
    R.Devarasu

    Hi,
    Null value in database displaying as 0 in report, I need to keep value as in database, and I have one calculated row which is based on null values should also null in report.
    but it showing 0 for null values also so, my calculated row showing wrong result.
    my report is like
    col1 col2
    ABC 0
    BCD 12
    DEF -12 --this is calculated row.
    I require result like:
    col1 col2
    ABC null
    BCD 12
    DEF null --this is calculated row.
    Please let me know how I can achieve this.
    Thanks,
    Rahul

  • How to Replace Null Value as 0 in an OBIEE11g Pivot Table?

    Hi,
    How to Replace Null Value as 0 in an OBIEE11g Pivot Table? it's working in obiee10g version.
    We have tried below methods
    1) criteria tab and edit the ‘column properties’ associated with your fact measure. Choose the ‘Data Format’ tab, tick to override the default format and choose ‘Custom’.
    It seems that the syntax for this custom format is positive-value-mask (semi colon) negative-value-mask (semi colon) null-mask. So this means we have a few options.
    E.g. if you want zeros (0) instead of null then enter:
    #,##0;-#,##0;0
    2) in that formula columns we have put it below case condition also ,
    Measure Column: Nom_amt --> edit formulas
    CASE WHEN Nom_amt IS NULL THEN 0 ELSE Nom_amt END
    3) we have uncheked IS NULL check box in the admin tool also
    I tried above formats still it's not working for me..kindly help me on this..
    thanks in advance...
    Best Regards,
    R.Devarasu

    Hi Amith,
    I have update your suggested one,but it's working few of the rows only..remainings rows some of cells still NULL only
    Measure colmns is : Nom_SGD
    IFNULL(Nom_SGD,0.00)
    Movment : dynamic date calc by using $2-$1 oracle formula's
    Actually i am doing below things only,
    31/12/2011 31/03/2011 Movment
    Country
    India 100 -50 -150
    Singapore 200 200
    UK 1200 -1200
    USA 0.00 0.00 0.00 (here changed null as 0)
    Helpmeon this...

  • How to replace null as 0 in  obiee11g pivot table view?

    Hi,
    I am using obiee11g pivot table view,
    I have tried so many views but it's not work. My oracle support team also tired but could not solve it
    1.) used BIN method is that measure columns
    2.) ifnull(column name,0)
    3.) case condition:
    Case when columns is NULL then 0 else column end
    4) data formate override custom formate option
    It seems that the syntax for this custom format is positive-value-mask (semi colon) negative-value-mask (semi colon) null-mask. So this means we have a few options.
    E.g. if you want zeros (0) instead of null then enter:
    #,##0;-#,##0;0
    http://obieeelegant.blogspot.com/2011/06/how-to-replace-null-values-in-obiee.html
    Note:
    I don't want to show strike-rate and custom message in that blank cell. I want to show blank cell(null values) as 0 in the obiee11g pivot table view.
    Obiee10g version is working fine only issues in obiee11g
    Thanks in advance...
    Thanks
    Deva

    I tried this on 11.1.1.6.2 but I can't see good results.
    I choose subject area A-Sample Sales and I choose:
    T02 per Name Month on rows
    P1 Product on columns
    Measure : IFNULL("Simple Calculations"."17 Net Costs", 0)
    Prompted Year 2008
    On product Install and 2008/01 there isn't value...and I put Ifnull in my formula...
    My problem is that I want to do a conditional format when Product = Install. So I have all column with background colour except Null values...so is not pretty...
    If I add custom numeric format I can see 0 but not with background colour...
    I add a picture:
    http://imageshack.us/photo/my-images/600/tablegk.jpg/
    Any help about it??
    Is a bug on obiee??
    Edited by: Alex1 on 04-sep-2012 4:28

  • How do I get my mac partition to use GUID partition Table Scheme?

    I just bought the upgrade for Mountain Lion on my Macbook pro (Mac OS X 10.6.8). I went to install it and i had partitioned my internal harddrive with bootcamp to run windows 7. I went to select the Macintosh partition and it says that disk does not use the GUID partition Table scheme, and it will not let me select it for the upgrade. It says I have to use Disk Utility but I cant seem to figure out how to get it so I can upgrade it to mountain lion. Please help and thank you for your time
    P.S. - Let me know if you need more information to get to the conclusion to this problem.

    Bonjour is built-in to OS X. No download is needed.
    Safari has a Bonjour browser which you can activate by opening Safari Preferences, selecting Advanced and enabling one of the Bonjour entries to add a Bookmark. If you then select the Bookmark, all devices on your local network that are advertising themselves with Bonjour will be shown.
    With regards to the Air not finding the printer attached via USB, you can open System Information and select USB in the left column. The top right pane will show all the USB busses on the Air and if the printer and its USB cable are working correctly, then the printer should be listed under one of the USB busses. Do you see it? If not, try another USB printer cable.

  • WDS: How to replace or remove a device GUID?

    We have a number of computers that are registered in WDS so they are auto-named when imaged. Though, as they age I am having to move hardware around to rapidly fix failed power supplies, etc.
    I've run into a problem, trying to reuse a computer that was used somewhere else, where it previously had its GUID registered, but now I need to assign its GUID to a different computer name in Active Directory, and I am not allowed to do it:
    wdsutil /set-device /device:EL900-MUSIC-D /id:4C4C4544-0032-3010-8053-C2C04F354A31
    WDSUTIL has detected duplicate GUIDs in Active Directory. The duplicate computers are:
    Name: E205-SB
    DN: CN=E205-SB,OU=Computers - EL Staff,DC=XXXX,DC=YYYYY,DC=ZZZZZZ
    MAC/GUID: 44454C4C320010308053C2C04F354A31
    Referral server:
    Boot program:
    WDS client unattend file:
    Boot image path:
    Join domain: Yes
    An error occurred while trying to execute the command.
    Error Code: 0xC1040134
    Error Description: A computer with the same GUID already exists.
    Looking through the commands for wdsutil, it is very odd because there is only a "/set-device" command. There is no "/replace-device" or "/replace-GUID" or "/delete-device" or "/delete-GUID" commands.
    So how do I remove or replace the GUID in the conflicting AD Computer object, without completely deleting the Computer object and rejoining the other machine to the domain? 

    Hi,
    The article described the reason that cause duplicate GUID and how to remove duplicate GUID:
    Managing Duplicate Microsoft Systems Management Server Unique Identifiers
    http://technet.microsoft.com/en-us/library/cc917513.aspx
    Hope this helps.

  • How to understand on hand in user guide and table MTL_ONHAND_QUANTITIES

    version:12.1.1
    IS on hand in user guide from table MTL_ONHAND_QUANTITIES?
    How to understand on hand in user guide and table MTL_ONHAND_QUANTITIES?
    http://etrm.oracle.com/pls/et1211d9/etrm_fndnav.show_object?n_appid=401&n_tabid=52063&c_type=TABLE
    What does "Not implemented in this database" mean?

    What the page is saying that MTL_ONHAND_QUANTITIES is not a table. It is a view.
    The main table underlying the view is mtl_onhand_quantities_detail.
    After you perform a transaction, the data in this table (and view) is updated automatically.
    You don't have to do anything.
    Sandeep Gandhi

  • How do I change the partition scheme to use GUID partition Table.

    How do I change the partition scheme to use GUID partition Table so I can get Snow Leopard to download on my 10.5 disk.
    When I insert the disk it asks me to select  the disk where you want to install MAC OS X.It only give me one option the 10.5.
    when I click on it it says...
    "10.5" can't be used because it doesn't use the GUID Partition Table scheme.
    Use Disk Utility to change the partition scheme.  Select the disk, choose the Partition tab, select the Volume Scheme and then click Options. 
    I tried to do what it says and I can not find what it is saying.  This is the info about my MacBook.
    Model Name: MacBook
      Model Identifier: MacBook4,1
      Processor Name: Intel Core 2 Duo
      Processor Speed: 2.4 GHz
      Number Of Processors: 1
      Total Number Of Cores: 2
      L2 Cache: 3 MB
      Memory: 4 GB
      Bus Speed: 800 MHz
      Boot ROM Version: MB41.00C1.B00
      SMC Version (system): 1.31f0
    Thank you for your help!

    The GUID partition option is one of three possible choices (click the "Options" button in the Partition") menu - be careful to have a full backup as changing the partition scheme will force an erasure on the disk. Take a look at this Apple support article for more complete information:
    Firmware updates for Intel-based Macs require a GUID partition scheme - Apple Support
    Ignore the stuff about firmware updates and just look at the changing GUID partition scheme.
    Good luck - and don't forget about the full backup BEFORE making this sort of change.

  • How to achieve this tree table (displaying/modifying non leaf level details) ?? Image inside

    Region
    location
    Dept
    Budget Available
    Allot Budget
    Unused Budget
    Decision for unused budget
    US
    200$
    User Input
    NY
    100$
    User Input
    CA
    100$
    User Input
    HR
    50$
    User Input
    IT
    50$
    User Input
    ---------30$--------
    20$
    LOV
    Add to Location
    Use for Future Project
    Add to Region
    Spend as Bonus
    How to achieve this tree table ?
    My client wants that they should also be able to manage budge at Location or region level not only at the leaf(Dept) level.
    I did a lot of research and finally found out that the details can only printed at the leaf(Dept) level.......
    We can not hard code Region, locations and departments in table rows. When table tree is displayed we will only show all the regions... (US, UK, SA, IND, AUS, CAN,RUS, JPN.... etc..)
    For Example:
    Locations for US (NY, CA, OKH, WC...... etc.)
    Locaitons for UK (SC, ENG, WL..... etc)  and so on......
    Departments for CA (HR, IT, ADMIN, FIN, TRVL, OPRN........ etc. ..)
    Thanks in advance... It will be really great help if I get some breakthrough...
    -Rahul

    Hi,
    what if you add a transient attribute to those view objects? This way you don't need to change the table structure.
    Frank

Maybe you are looking for

  • Is it possible to extract data from a Safari cookie?

    Hello, I need to recover a FedEx tracking number that I entered in Safari, and I'm hoping that perchance it was stored somehow in a cookie when I entered the number. It appears that I have a few cookies from FedEx in the list of cookie files on my co

  • Cannot send report directly to printer

    Hi, we are installing new canon printers (irc2380's) and we are having difficulty getting the reports to the printer. If i send the output of the report as a file to the application server(solaris) and then print using an lp command then the report p

  • "IP and router address not consistent with subnet mask"

    Hi all, i have one of the old Powermac G5's running os x 10.3.5 "Panther" with a dual 2.5ghz processor, 512mb or ram, 160 gig hd, and no wireless card. I've been trying to hook the computer up to my network via an Ethernet cable (I have a Linksys WRT

  • Enhacement

    Hi All, Have any body worked on EXIT_SAPLFYTX_USER_001 for changing the out put which is passed to third party to calculate the tax. We found this to change the functionality. If any body worked on this please guide us to achieve this. Thanks in adva

  • N97 Web browser

    There is some major work needed on the N97 web browser. iTouch is so much easier to use. Enlarge/shrink, Seems iTouch displays the inital screen  larger format to make it easier to read.  Besides that, my question is I saw on OVI the Opera browser, b