ALV PROBLEM IN DATE : NEED TO BE SEPRATED BY '/'

HI  Gurus,
In ALV i have struct in one place.
In my ALV report the date format i need is separed by '/' but the date format which i am getting is separated by '.'
How to do this : Pls show me thr code :
ls_fieldtab-tabname = 'IT_FINAL'.
  ls_fieldtab-fieldname = 'SPTAG'.
  ls_fieldtab-seltext_s = ls_fieldtab-seltext_m =
  ls_fieldtab-seltext_l = 'Current Date'.
  APPEND ls_fieldtab TO fieldtab.
  CLEAR ls_fieldtab.
IT_final is my final table where date field SPTAG is maintained.
2) Distribution channel need to be hardcoded in ootput as AS01.
hOW TO PASS DATA TO THE FIELD CATLOG.
ls_fieldtab-tabname = 'IT_FINAL'.
  ls_fieldtab-fieldname = 'VTWEG'.
  ls_fieldtab-seltext_s = ls_fieldtab-seltext_m =
  ls_fieldtab-seltext_l = 'DIST. CHANNEL'.
  APPEND ls_fieldtab TO fieldtab.
  CLEAR ls_fieldtab.
DATA DECLARATION : vtweg type mvke-vtweg VALUE '40',
iTS NOT WORKING

HI,
CREATE A FINAL INTERNAL TABLE WITH TWO MORE FILEDS FOR DATE & DIS.CHANNEL ALONG WITH ALL THE FILEDS WHICH YOU REQUIED IN OUTPUT.
  WHILE FILLING THE FINAL INTERNAL TABLE  USE THIS CODE.
DATA: V_DATE  TYPE SY-DATUM,
DATA:  BEGIN OF IT_FIANAL,
                    V_SPTAG(10) TYPE C,         "  DATE
                    V_VTWEG(4)  TYPE C,        " DISTRIBUTION CHANNEL
                     ALL OTHER FILEDS WHICH U REQUIRE...                    
             END OF IT_FINAL,
V_VTWEG          =      ' AS01'  .  
LOOP YOUR FIRST INTERNAL TABLE WHERE YOU ARE GTTING SPTAG. 
CLEAR: V_DATE.
V_DATE  =  INTERNALTABLE-SPTAG.
CONCATENATE V_DATE6(2)  '/'  V_DATE4(2)  '/'  V_DATE+0(4)  INTO  V_SPTAG.
ENDLOOP.
LS_FIELDTAB-TABNAME = 'IT_FINAL'.
LS_FIELDTAB-FIELDNAME = 'V_SPTAG'.
LS_FIELDTAB-SELTEXT_L = 'CURRENT DATE'.
APPEND LS_FIELDTAB TO FIELDTAB.
CLEAR LS_FIELDTAB.
LS_FIELDTAB-TABNAME = 'IT_FINAL'.
LS_FIELDTAB-FIELDNAME = 'V_VTWEG'.
LS_FIELDTAB-SELTEXT_L = 'DIST. CHANNEL'.
APPEND LS_FIELDTAB TO FIELDTAB.
CLEAR LS_FIELDTAB.

Similar Messages

  • Problem with date format dd/mm/yyyy. But I need to convert yyyy-mm-dd.

    Dear friends,
    I have the problem with date format. I receiving the date with the format dd/mm/yyyy. But I can upload to MySQL only in the format of yyyy-mm-dd.
    how should I handle this situation, for this I've created these code lines.But I have some problem with these line. please help me to solve this problem.
    String pattern = "yyyy-mm-dd";
    SimpleDateFormat format = new SimpleDateFormat(pattern);
    try {
    Date date = format.parse("2006-02-12");
    System.out.println(date);
    } catch (ParseException e) {
    e.printStackTrace();
    System.out.println(format.format(new Date()));
    this out put gives me Tue Apr 03 00:00:00 IST 2007
    But I need the date format in yyyy-mm-dd.
    regards,
    maza
    thanks in advance.

    Thanks Dear BalusC,
    I tried with this,
    rs.getString("DATA_SCAD1")// where the source from .xls files
    String pattern = "yyyy-MM-dd";
    SimpleDateFormat format = new SimpleDateFormat(pattern);
    try {
    Date date = format.parse("DATA_SCAD1");
    System.out.println(date);
    } catch (ParseException e) {
    e.printStackTrace();
    System.out.println(format.format(new Date()));
    this out put gives me Tue Apr 03 00:00:00 IST 2007
    But I want to display the date format in yyyy-mm-dd.
    regards,
    maza

  • I am thinking of buying a iPad but my main desktop machine uses Windows 7 and MS Office.  How easy or difficult is it to transfer data files between the iPad and Windows?  Are there obvious problems or the need for some form of conversion programs?

    I am thinking of buying a iPad but my main desktop machine uses Windows 7 and MS Office.  How easy or difficult is it to transfer data files between the iPad and Windows?  Are there obvious problems or the need for some form of conversion programs?
    Many thanks for any advice.
    David

    You don't need conversion programs, iTunes can copy most of your content over to the iPad via the file sharing section, and some apps also support Dropbox, email attachments, transfer via your wifi network. There are a number of apps that you can get that support Microsoft office file (microsoft don't make an app versions of their software) e.g. from Apple there are Pages (word support), Numbers (excel) and Keynote (powerpoint), and from third-parties there are apps such as Documents To Go and QuickOffice HD

  • I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup

    I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup from last Friday, I go to my Lightroom Backups folder - and the most recent one showing not only isn't yesterday, it's OCTOBER 28 !?? Where the hell are the daily backups between October 28 and November 14?

    Oh wow - JET LAG strikes agin - my apologies; I have located the missing weeks of back-ups. After getting home from a 30-day trip to Europe, I had changed the location of my LR catalog back-ups to an external drive, and forgot that I did that. I have found them, and all is good. Never operate Heavy Machinery without enough rest. Cheers

  • I am trying to download Adobe Pro and I keep getting "Reliable Source Serving Corrupt Data" need and answer to this problem. Thank you!

    I am trying to download Adobe Pro and I keep getting "Reliable Source Serving Corrupt Data" need and answer to this problem. Thank you!

    Hi David,
    Please see this forum thread: "Not Enough Storage Space" error - Acrobat 9 Pro
    While it addresses an earlier version of Acrobat, the troubleshooting tips in it should help in your case as well.
    Best,
    Sara

  • Custom button ALV to download data to excel and word.

    Hai Experts,
       I have a requirement in which i need to add a button on the alv tool bar
        which has the functionality of downloading the data in the alv to
        word/excel/notepad..
      i got the prcedure to download the data but my problemis how to capture the data in the alv into an internal table.
      if i can capture the column headings and the data into an internal table, my problrm of downloading the data solves.
      so please help how to capture the data along with the headings displayed in the
      ALV into an internal table.
      its urgent,,,,
    Madhu

    check this link for a guide how to add and remove buttons from the ALV in web dynpro:
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40794172-b95a-2910-fb98-b86d8a0918b4</a>
    part of this document:
    Get reference to ALV component and configuration model
    To obtain a reference to the ALV component and its configuration model you can use the following code.
    The configuration model can be used to set all sorts of properties of the ALV
    DATA: lr_salv_wd_table TYPE REF TO iwci_salv_wd_table,
    r_table TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
    * get reference to ALV component interface lr_salv_wd_table = wd_this->wd_cpifc_alvmain( ).
    * get ConfigurationModel from ALV Component
    wd_this->r_table = lr_salv_wd_table->get_model( ).
    Hide / add function buttons in your ALV
    You can hide all function buttons of the ALV with one of these methods.
    * Set toolbar visibility to false. data: lr_function_settings type ref to if_salv_wd_function_settings. lr_function_settings ?= wd_this->r_table. lr_function_settings->set_visible( CL_WD_UIELEMENT=>E_VISIBLE-NONE ). * set default ALV Functions off data: lr_standard_functions type ref to if_salv_wd_std_functions. lr_standard_functions ?= wd_this->r_table. lr_standard_functions->set_sort_headerclick_allowed( ABAP_false ). lr_standard_functions->set_filter_filterline_allowed( ABAP_false ). lr_standard_functions->set_filter_complex_allowed( ABAP_false ). lr_standard_functions->set_sort_complex_allowed( ABAP_false ).
    You can set individual functions with these methods:
    CALL METHOD cl_salv_wd_config_table=>if_salv_wd_standard_functions~set_<x>_allowed
    EXPORTING
    Value = ABAP_true.
    Where <x> is to be replaced with the property of your choice.

  • Drop down in alv based on data in other calumn of same row

    Hi Guys,
    I need to provide drop down in an ALV based on data in other calumn in same row.
    if i have two calumns country and region in my alv then drop down values for region should come depending upon country value.
    i went through lot of blogs and forum threads but none seems to solve my problem.
    I'm able to achieve this in Table but not in ALV. I'm using DropdownbyIndex Ui element.

    Hi Guys finally i am able to get my dropdown data visible.
    I am posting the code here so that others can make use of it.
    In your context node add an attribute type WDR_CONTEXT_ATTR_VALUE_LIST
    after getting data into your context node table fill the above attribute as shown in the below code
    LOOP AT lt_mara INTO ls_mara.
    clear: lv_indx.
    lv_indx = sy-tabix.
    clear ls_valueset.
    *refresh: lt_valueset.
    ls_valueset-value = ls_mara-mtart.
    ls_valueset-text = ls_mara-mtart.
    APPEND ls_valueset to ls_mara-valueset.
    clear ls_valueset.
    *ls_valueset-text = ls_mara-matnr.
    APPEND ls_valueset to ls_mara-valueset.
    *lr_element = lo_nd_mara->get_element( lv_indx ).
    *lr_child_node = lr_element->get_child_node( 'DDVALUE' ).
    *lr_child_node->bind_table( lt_valueset ).
    MODIFY lt_mara FROM ls_mara INDEX lv_indx.
    CLEAR ls_mara.
    ENDLOOP. lo_nd_mara->bind_table( lt_mara ).
    DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .
    lo_interfacecontroller =   wd_this->wd_cpifc_alv( ).
    *---set data
    lo_interfacecontroller->set_data( r_node_data = lo_nd_mara ).
    DATA lv_value TYPE REF TO   cl_salv_wd_config_table.
      lv_value = lo_interfacecontroller->get_model(
    *----dropdown logic
    data: lr_col type ref to CL_SALV_WD_COLUMN,
          lr_ddn type ref to cl_salv_wd_uie_dropdown_by_idx.
    CALL METHOD lv_value->if_salv_wd_column_settings~get_column
      EXPORTING
        id     = 'MTART'
      receiving
        value  = lr_col
    *lr_ddn ?= lr_col->get_cell_editor( ).
    CREATE OBJECT lr_ddn
      EXPORTING
        selected_key_fieldname = 'MTART'
    CALL METHOD lr_ddn->set_valueset_fieldname
      EXPORTING
        value  = 'VALUESET'
    lr_ddn->set_selected_key_fieldname( value = 'MTART' ).
    CALL METHOD lr_ddn->set_type
      EXPORTING
        value  = IF_SALV_WD_C_UIE_DRDN_BY_INDEX=>type_key_value
    CALL METHOD lr_col->set_cell_editor
      EXPORTING
        value  = lr_ddn
    lv_value->if_salv_wd_table_settings~set_read_only( abap_false ).
    Just follow the above code you will be able to achieve dropdown by index in your alv.

  • Problems transferring data from MacBook Pro to MacBook Pro

    I just bought a new MacBook Pro and I am having problems transferring data from my old MacBook Pro. I am using an Apple Thunderbolt to FW adapter to hook both computers and I am using the Migration Assistant. Everything looked ok until the "Transferring Your Information" screen got stuck. It says that it is "Transferring your Application folder..." And it has been stuck for at least the last two hours giving a message that says "About 3 minutes remaining..." This is starting to get ridiculously annoying. Options?

    I guess I am finding my own way as time progresses and frustration increases but these are two things that I have found so far:
    1. Transfering from one machine to another does not seem to be the most efficient way to do this so using the TimeMachine backup must be the way to go...
    HOWEVER
    2. In this process I also found another "complication" called: Legacy FaultVault - My computer is encripted and I used this now so called "Legacy FaultVault" app to do it (when it was no a Legacy!). The thing is that you can not transfer documents from your TimeMachine backup to your new Mac if the Legacy Fault Valut is active on your old machine so you first need to desactivate the encription. HOWEVER, this brought another issue...when I tried to desactivate the encription using the Legacy FaultVault screen I got a message saying that I did not have enough disk space to allow me to do that....Isn't that great??? This is a problem by itself and it seems to have some sort of solution I was reading about (not straight forward at all). What I am trying to do now is to copy the folder that contains my files and just paste them on my new machine to see if that works....it looks like my apps are on my new machine, unsure if they are working...need to test this next....
    I guess the transfer machine to machine could have sorted out the conflict eventually...after tens of hours or maybe not! Who knows....
    A very frustrated Apple fan...
    I love Apple products but this is an ISSUE...I feel like there is lack of adecuate documentation around to deal with this or the data transfering apps should be able to deal with this on a more efficient way....just saying...

  • Has anyone else had a problem with data? after updating my phone to the new update, i have all this data, and keep getting notifications that my data is getting high. i never had this problem before.

    has anyone else had a problem with data? after updating my phone to the new update, i have all this data, and keep getting notifications that my data is getting high. i never had this problem before.

    fair enough.  No need for any unnecessary posts either.  You issue had been addressed ad nauseum already in this forum had you bothered to search this forum (as forum etiquette would dictate) before posting.
    In any case, I hope that your problem was solved.

  • Problem finding data in an Oracle Database using CMP beans

    I am having a problem retrieving data from an Oracle database that has a date as
    part of the key. This data was loaded into my database via a batch process writing
    in java using java.sql.Date to store the date information. When calling the findByPrimaryKey
    method of a CMP Entity Bean I continued to get the FinderException. I know this
    data is in my database because I can view the data via SQLPlus and Microsoft Access.
    Has anyone ever experience problems with CMP beans accessing data from an Oracle
    database that had a date as part if the key or with accessing data in the database
    that insert via another method outside of your CMP bean. I desperately need some
    answers.

    Hi Dave,
    You should probably post this type of question in the CMP or JDBC section
    for best results. Chances are that the date is suffering from a rounding
    problem (it could be a date/time in the database with a different time zone)
    or is not the date that you think it is (wrong century or millenium). I've
    seen both. You need to write a quick piece of code that loads in those
    values as both Java timestamps and dates and makes sure that they are what
    you think they are.
    Peace,
    Cameron Purdy
    Tangosol Inc.
    Tangosol Coherence: Clustered Coherent Cache for J2EE
    Information at http://www.tangosol.com/
    "Dave White" <[email protected]> wrote in message
    news:3c1a4ac3$[email protected]..
    >
    I am having a problem retrieving data from an Oracle database that has adate as
    part of the key. This data was loaded into my database via a batchprocess writing
    in java using java.sql.Date to store the date information. When callingthe findByPrimaryKey
    method of a CMP Entity Bean I continued to get the FinderException. Iknow this
    data is in my database because I can view the data via SQLPlus andMicrosoft Access.
    Has anyone ever experience problems with CMP beans accessing data from anOracle
    database that had a date as part if the key or with accessing data in thedatabase
    that insert via another method outside of your CMP bean. I desperatelyneed some
    answers.

  • NOTHING_PROVIDES_DEP: suse-sam-data needed by suse-sam-0.8.1-0.1.1.noarch

    Tried to patch my SLES11 dom0 64bits and got this:
    Bundle installation failed: "Failed to prepare bundles for install:
    NOTHING_PROVIDES_DEP: suse-sam-data needed by
    suse-sam-0.8.1-0.1.1.noarch "
    How to resolve it?
    Technical Consultant
    Kerfi AB Stockholm Sweden

    Well, I did not remove it from zlmmirror bundle patch, just from my own
    created rpm-bundles for sles11_domo_x64.
    Assigning the pool to the server as well will solve the problem, you say?
    SLES11-Pool
    SLES11-Updates
    that goes hand-in-hand... but, I use a NFS share to the installation
    source instead.
    When registrering my SLES11 to ZLM server it does remove everything.
    How can I re-add my installation source AFTER zlm-agent has been
    installed. Automatically. Run a script from zlm-policy?
    Anders
    On 2010-01-28 16:36:03 +0100, brunold <[email protected]> said:
    >
    > Anders,
    >
    > I see .... the suse-sam-data is just in the SLES11-Updates-bundle.
    > So assigning that single patch will result in that problem.
    > You would need to have the monolithic bundle available at the device as
    > a catalog to allow it to get the required package out of it.
    >
    > I think when you rerun the mirror, that removed package will be added
    > back into the patch.
    >
    > Rainer
    Technical Consultant
    Kerfi AB Stockholm Sweden

  • Two Editable Forms on One Page, Issues / Problems Applying Data

    Greeting Everyone!
    I have a problem and I need assistance in getting this issue resolved (advice).
    I have a page with two editable regions, each editable region references a different table. The two tables are related by a common key value. The first issue is that I am able to successfully load the data from the second region, but the data from the first region is not loaded into it's particular form region. Additionally, I have two sets of buttons, one set per region, and two sets of fetch processes and two sets of automatic row processing dml routines.
    Can two forms coexist on the same form or would it be more appropriate to try and make my changes with a view?
    Thanks,
    Charles

    I agree that when you have pages that are more complicated than 1 form etc you should look at writing the code to populate and process the data yourself. I would ditch the automatic row processing and fetch routines and write your own. More work, but gives more control.
    Something like:
    begin
    if :P1_AID is not null then
    select [your table columns] into :P1_AITEM1, :P1_AITEM2
    from [your table]
    where id = :P1_AID;
    else
    :P1_ATEM1 := null;
    :P1_ATEM2 := null;
    -- same for 2nd form
    end if;
    end;
    Conditionally display the insert/update/delete buttons and you're set.
    Then just add the appropriate handlers on submit, conditionally running them based on button or request. Either build your insert statement in the after submit processing or call pl/sql.
    I tend to use pl/sql packages to handle table API's.

  • How to debug DAQ VIs (problem with data)

    I am trying to debug (and understand) the attached VI.  I’m not asking anyone to analyze/debug it, since it is far more than an example; I am new to these forums and feel like asking such a thing would be inappropriate.
    I would like advice on how to debug it.  I am also going to describe my problem to see if the cause may be obvious to someone.
    The outputs of the "Angle Calc" sub-vi are fed into a state machine.  The state machine actuates outputs to move a motor and measures changing angles.  It first moves up/down, then left/right.  The attached VI is called by a top-level VI and the front panel is not usually open.  For some reason, when the front panel is opened, it behaves differently when it is called.  The behavior only changes for the right/left movements.
    Here's where I'm hoping someone can point out some better debugging methods for me.
    I have been using the Express Write to LVM File VI and the Convert to Dynamic Data function to write acquired data to text files for analysis after the acquisition has completed.  Are there better methods recommended for doing this?  I wish I could run through the code while recording the execution and then step through a playback of it!
     As for the specific problem I am having...
    In the "Right Find Stall" case, the signal wired from the "Angle Calc" VI (array size 100) is connected to a Max/Min Array function.  When I log the data coming from the Min/Max function, I see an alternation between valid data and 0 (i.e. 12.2, 0, 13.3, 0, 14.0, 0, 14.5, 0...).  When I log the data being fed into the Min/Max function I do not see 0s. 
    A guess of mine is that the array is empty and therefore no data is logged but Min/Max returns a 0 (not sure why this would happen).  I also have no idea why this would ALWAYS happen with the front panel opened.  I have seen the effect with the front panel closed, but never to the same degree; usually just a seemingly random zero or two but not a pattern of every other point...
    Thanks all,
    Dave
    Attachments:
    Functional_Test.vi ‏2710 KB

    Angle_calc receives array controls in and passes array indicators out.  It performs a trig function and a bit of multiplication. 
    I'll check out the Write to Spreadsheet File VI, haven't used it in the past.  If it will allow me to write text out that'll be enough reason for me to stop using the Express VI.
    I've used Execution Highlighting and stepping before but with the data acquisition by the time the application makes it around to the next read the DAQ card has sampled a ton of data and the data coming in is no longer useful (a different state should be active by then).
    I do think the problem is related to the computer slowing down with the front panel open.  I've logged the 'backlog' number of the Read function and found that the number in there is greater than 0 much more often when the VI's front panel is open and that I've seen relations between the 0s that I discussed earlier and the backlog going above 0 (usually the scan after a non-0 backlog seems to be a problem).
    I need to familiarize myself with the DAQ basics, the buffer, backlog, and relation to sampling rate, etc.
    In a simple VI I just wrote, I noticed that if I increased the sampling rate high enough, data being acquired into a chart cuts-out on a regular basis; instead of a smooth line, I see small dashes or dots of data (spaces in between).  I don't understand this- I would expect data to be lost but not "no data" to be read in.  I think understanding what is happening here would be helpful.

  • My iPad screen went black suddenly and is not coming back on. However i can still hear sounds when there are notifications but nothing comes on the screen. It remains blank. What is the problem? I NEED ASSISTANCE A.S.A.P!!!

    My iPad screen went black suddenly and is not coming back on. However i can still hear sounds when there are notifications but nothing comes on the screen. It remains blank. What is the problem? I NEED ASSISTANCE A.S.A.P!!!

    Try Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Problem posting data with HttpsConnection

    Hi,
    I am currently having problems posting data using a HttpsConnection.
    I am setting the setRequestMethod to HttpConnection.POST and then using the openDataOutputStream method.
    I will post my code when I get home for reference.
    Background to my problem - I am trying to use the declarative security features of J2EE to authenticate a mobile user.
    I am firstly firing a HttpsConnection from the mobile device to a protected resource on the app server. I grab the JSessionId from the Set-Cookie http header of the response and post a second request to the j_security_check and provide the refer http header to the protected resource - this simulates exactly what happens on a browser (I used a Http monitor tool to confirm this). However, I need to pass the j_username and j_password as body of the https request. This doesn't seem to work because the server displays my access denied at this point - as if it hadn't received the crednetials
    However, just to confirm my technique works I subsituted the post request for a get request to j_security_check and passed the j_username and j_password as request params in the URL. This worked fine and I got a 302 response 'temporily moved' which I then handle by simply making a further request for the original resource - this time it serves back the resource because I am authenticated.
    Anyway that sets the scene - so the problem definitely appears to be posting data using an HttpsConnection.
    Any help would be greatly appreciated
    Rgds,
    David

    Hi,
    Here is my code relating to the above problem:
    httpsConn = (HttpsConnection)Connector.open("https://127.0.0.1:8443/ebank/j_security_check");
                httpsConn.setRequestMethod(HttpConnection.POST);
                httpsConn.setRequestProperty("referer", "https://127.0.0.1:8443/ebank/main/mainMenu.xml");
                httpsConn.setRequestProperty("cookie", cookieValue);
                httpsConn.setRequestProperty("location", url);
                httpsConn.setRequestProperty("User-Agent",
                    "Profile/MIDP-1.0, Configuration/CLDC-1.0");
                httpsConn.setRequestProperty("Content-Language",
                    "en-gb");
    String credentials = "j_username=EB0001&j_password=240589";
                httpsConn.setRequestProperty("Content-Length",""+credentials.length());
                DataOutputStream os = httpsConn.openDataOutputStream();
                os.writeUTF(credentials);
    ....Thanks,
    David

Maybe you are looking for

  • Cannot Print PDF

    I am having trouble printing PDF shipping labels from my Laser printer HP CP1215. I have windows 7 using Google Chrome. I looked at the Omnibox and found that under Adobe Reader it had Netscape and Firefox listed and I do not use either of those. Cou

  • ANN: Next series of free FM-to-Acrobat TimeSavers 1-hour webinars

    You are invited to attend webinars in the next series of free FrameMaker-to-Acrobat TimeSavers 1-hour webinars (starting 10am PST/PDT): Better PDFs with FrameMaker-to-Acrobat TimeSavers, January 14 Effective PDF Bookmarks with FM-to-Acrobat TimeSaver

  • FEIN and company code

    Hi PR (Puerto Rico) Company Code - FEIN xxx US company code- FEIN yyy I have some people in PR that needs to be assigned to US FEIN yyy. Is that possible?

  • Mac OS X version 10.4.8 for Ipod classic

    I just got a spankin' new 80 gb I-pod classic. It's charged, I've set my time, etc... But when I hooked it up to my computer, it said that the I-pod cannot be used because it needs Mac OS X version 10.4.8 or higher to get going. I tried to download t

  • Manual 11g upgrade...catuprd erro

    Oracle10g RHEL 4 64bit Hi All, I am manually upgrading our databases from 10gR2 to 11g. However, near the end of the catupgrd.sql script (right before it configures Intermedia) it disconnected. Now what I want to know is that could just run the last