How we can handle signed packed datatype  in ODI

Hi
I am generating target file from oracle as source.
but i need to pack some numeric field into signed packed format.
there are two type of numeric values
1)1234
2)1234.23
i am getting successfully packed value in case of 1234.
In case of packing 1234.23 (this numeric value),i am getting error like "BigDecimal number format exception".
please suggest .

Hi Anoo,
always remember to put your apex and database versions, it makes it easier to help.
You mentioned stripping out special characters and then putting them back for display. Is there a particular reason why?
If you're having difficulty querying the 'special' characters from SQL, you can create a view to handle that complexity.
The examples you gave don't contain any characters you can't query on. Maybe I'm missing something.
Kofi

Similar Messages

  • Hi All, How we can handle a table control in bdc - in detail its urgent pls

    Hi All, How we can handle a table control in bdc - in detail its urgent. Please send me the explanation in detail.
    Thanks&regards.
    Bharat

    hi,
    Create Table Control
    • Step 1 (Create new structure for table control)
    Type is name of structure (ZTC_EKKO) and press create
    • Step 2 (Create Program)
    Goto transaction SE80(Object Navigator) -> Repository Browser -> Program.
    Enter your program name, please ensure that is begins with SAPMZ…… as this is a module pool (dialog program).
    Press enter to create, and press yes!
    Ensure that you create a top include, and press Enter.
    Accept the name created for the top include.
    Press Enter.
    Press Save
    • Step 3 (Create TOP include)
    Double click on the top include and enter following ABAP code:
    Tables: ZTC_EKKO.
    controls: tc100 type tableview using screen 100.
    data: ok_code type sy-ucomm.
    data: it_ekko type standard
    table of ZTC_EKKO initial size 0,
    wa_ekko type ZTC_EKKO.
    data: ok_code type sy-ucomm.
    Press Save and Activate
    • Step 4 (Create screen)
    Right click the program to create a screen 100 for the dialog. Enter Short description, set screen type to Normal and enter 0 or blank into Next screen. Then move to Element List tab and enter the OK code as OK_CODE (i.e. the same as what you declared in the top include with data: ok_code type sy-ucomm).
    • Step 5 (Create table control)
    Press the Layout button to bring up the screen painter editor.
    Press table control button and drag it on to the screen, enter the name of table control created in TOP include (TC100). Now press the yellow button for attributes and set the table control as below options
    • Step 6 (Populate table control )
    Press the orange button (Fields). On the next screen enter ZTC_EKKO and press the ‘Get from Dict’ button. Select the fields you want (all) and press enter. Now drag them onto your Table Control.
    Below is the result, there will been syntax errors if we check now! So Save and go back into the flow logic tab.
    • Step 7 (Create flow control )
    Within the flow logic of screen 100 and create two modules, one to select the data from the database and the other to move the selected fields into the table control. Also insert the two loop statements to populate and retrieve the lines of the table control.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    module data_retrieval.
    loop at it_ekko into wa_ekko with control TC100.
    module populate_screen.
    endloop.
    PROCESS AFTER INPUT.
    loop at it_ekko.
    endloop.
    MODULE USER_COMMAND_0100.
    Double click the module data_retrieval to create and click yes to get past the popup. Ensure that a new include is created to hold all the PBO modules (default). Press enter.
    Select 10 rows of data from the EKKO table and load into the internal table it_ekko. Go back to the flow logic to load this data into the Table Control.
    check this one
    REPORT ZCALL_TRANS_TAB1 .
    TABLES: LFA1,LFBK,lfb1.
    data: BEGIN OF it_vendor occurs 0,
    LIFNR LIKE LFA1-LIFNR,
    bukrs like lfb1-bukrs,
    END OF it_vendor.
    DATA: BEGIN OF IT_BANK occurs 0,
    LIFNR LIKE LFA1-LIFNR,
    BANKS LIKE LFBK-BANKS,
    BANKL LIKE LFBK-BANKL,
    BANKN LIKE LFBK-BANKN,
    koinh like lfbk-koinh,
    END OF IT_BANK.
    data: it_bdcdata like bdcdata occurs 0 with header line.
    data: it_messages like bdcmsgcoll occurs 0 with header line.
    *selection screen.
    selection-screen: begin of block b1 with frame.
    parameters: p_file like rlgrap-filename default 'c:/vendor.txt'
    obligatory.
    parameters: p_file1 like rlgrap-filename default 'c:/xyz.txt'
    obligatory.
    selection-screen: end of block b1.
    *at selection screen.
    at selection-screen on value-request for p_file.
    perform f4_help using p_file.
    at selection-screen on value-request for p_file1.
    perform f4_help1 using p_file1.
    *start of selection
    start-of-selection.
    *******uploading file
    perform upload_file using p_file P_FILE1.
    ******open session.
    perform populate_data.
    *& Form f4_help
    form f4_help using p_p_file.
    data: l_file type ibipparms-path.
    call function 'F4_FILENAME'
    importing
    file_name = l_file.
    p_file = l_file.
    endform. " f4_help
    *& Form POPULATE_DATA
    form populate_data .
    DATA: L_STRING TYPE STRing.
    DATA: L_COUNTER(2) TYPE n.
    loop at it_vendor.
    perform bdc_dynpro using 'SAPMF02K' '0106'.
    perform bdc_field using 'BDC_CURSOR'
    'RF02K-D0130'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'RF02K-LIFNR'
    it_vendor-lifnr.
    perform bdc_field using 'RF02K-BUKRS'
    it_vendor-bukrs.
    perform bdc_field using 'RF02K-D0130'
    'X'.
    perform bdc_dynpro using 'SAPMF02K' '0130'.
    perform bdc_field using 'BDC_CURSOR'
    'LFBK-bankn(03)'.
    perform bdc_field using 'BDC_OKCODE'
    '=UPDA'.
    *********bank details
    CLEAR l_COUNTER.
    LOOP AT IT_BANK WHERE LIFNR = IT_VENDOR-LIFNR.
    l_COUNTER = l_COUNTER + 1.
    clear l_string.
    CONCATENATE 'lfbk-banks(' l_counter ')' into l_string.
    perform bdc_field using l_string
    it_bank-banks.
    clear l_string.
    CONCATENATE 'lfbk-bankl(' l_counter ')' into l_string.
    perform bdc_field using l_string
    it_bank-bankl.
    clear l_string.
    CONCATENATE 'lfbk-bankn(' l_counter ')' into l_string.
    perform bdc_field using l_string
    it_bank-bankn.
    endloop.
    ******CALL TRANSACTION.
    call transaction 'FK02' using it_bdcdata mode 'A'
    messages into it_messages.
    write:/ sy-subrc.
    perform format_messages.
    clear it_bdcdata.
    refresh it_bdcdata.
    endloop.
    endform. " POPULATE_DATA
    *& Form FORMAT_MESSAGES
    form format_messages .
    data: l_msg(100).
    loop at it_messages.
    call function 'FORMAT_MESSAGE'
    exporting
    id = it_messages-msgid
    lang = sy-langu
    no = it_messages-msgnr
    v1 = it_messages-msgv1
    v2 = it_messages-msgv2
    v3 = it_messages-msgv3
    v4 = it_messages-msgv4
    importing
    msg = l_msg
    exceptions
    not_found = 1
    others = 2
    write:/ l_msg.
    endloop.
    endform. " FORMAT_MESSAGES
    *& Form bdc_dynpro
    form bdc_dynpro using value(p_program)
    value(p_screen).
    it_bdcdata-program = p_program.
    it_bdcdata-dynpro = p_screen.
    it_bdcdata-dynbegin = 'X'.
    append it_bdcdata.
    clear it_bdcdata.
    endform. " bdc_dynpro
    *& Form bdc_field
    form bdc_field using value(p_fnam)
    value(p_fval).
    it_bdcdata-fnam = p_fnam.
    it_bdcdata-fval = p_fval.
    append it_bdcdata.
    clear it_bdcdata.
    endform. " bdc_field
    *& Form upload_file
    form upload_file using p_p_file
    p_p_file1.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    CODEPAGE = ' '
    FILENAME = P_P_FILE
    FILETYPE = 'DAT'
    HEADLEN = ' '
    LINE_EXIT = ' '
    TRUNCLEN = ' '
    USER_FORM = ' '
    USER_PROG = ' '
    DAT_D_FORMAT = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    data_tab = IT_VENDOR
    EXCEPTIONS
    CONVERSION_ERROR = 1
    FILE_OPEN_ERROR = 2
    FILE_READ_ERROR = 3
    INVALID_TYPE = 4
    NO_BATCH = 5
    UNKNOWN_ERROR = 6
    INVALID_TABLE_WIDTH = 7
    GUI_REFUSE_FILETRANSFER = 8
    CUSTOMER_ERROR = 9
    NO_AUTHORITY = 10
    OTHERS = 11
    IF sy-subrc <> 0.
    MESSAGE I000(ZZ) WITH 'UNABLE TO UPLOAD'.
    STOP.
    ENDIF.
    *******UPLOADING BANK DETAILS
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    CODEPAGE = ' '
    FILENAME = P_P_FILE1
    FILETYPE = 'DAT'
    HEADLEN = ' '
    LINE_EXIT = ' '
    TRUNCLEN = ' '
    USER_FORM = ' '
    USER_PROG = ' '
    DAT_D_FORMAT = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    data_tab = IT_BANK
    EXCEPTIONS
    CONVERSION_ERROR = 1
    FILE_OPEN_ERROR = 2
    FILE_READ_ERROR = 3
    INVALID_TYPE = 4
    NO_BATCH = 5
    UNKNOWN_ERROR = 6
    INVALID_TABLE_WIDTH = 7
    GUI_REFUSE_FILETRANSFER = 8
    CUSTOMER_ERROR = 9
    NO_AUTHORITY = 10
    OTHERS = 11
    IF sy-subrc <> 0.
    MESSAGE I000(ZZ) WITH 'UNABLE TO UPLOAD'.
    STOP.
    ENDIF.
    endform. " upload_file
    *& Form f4_help1
    -->P_P_FILE1 text
    form f4_help1 using p_p_file1.
    data:l_file1 type ibipparms-path.
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
    FILE_NAME = l_file1.
    p_file1 = l_file1.
    endform. " f4_help1
    http://sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    Regards,
    Sankar

  • How do I handle sign in trouble when trying to convert a document?

    How do I handle sign in trouble when trying to convert a document?

    Hi jeunes781,
    Are you having trouble signing in to ExportPDF via the website, or from within Reader? If you're using Reader, make sure that you have the most current version of Reader by choosing Help > Check for Updates in the Reader application.
    If the issue occurs when you try signing in via the ExportPDF website, please clear the browser cache and try again.
    (And if neither of those work, please write back and let us know what the specific error is, and where it occurs.)
    Best,
    Sara

  • How  i can implement the desired format in ODI ??

    Hi
    i want to export data from table to file
    but in file i have specific format like
    Account Number :A123456
    Cutomer 1
    Customer 2
    Customer 3
    Account Number : B999999
    Cutomer 4
    Customer 5
    Customer N
    How i can implement this
    plz suggest me possible solutions for this
    thanks

    Hi,
    I have done this before by using three files. The first file contains the header row - in your case, I would create a variable which selects the account number via rownum for example (you could add another variable so you could increment the rownum until exhausted). Then in the first ODISqlUnload
    select 'Account Number :'||#variable.account_number
    from table.
    This creates you header row in a file
    Then, in a second ODISqlUnload, select the 'Customer' data for the account number into another file
    select customer_details
    from table
    where account_number = #variable.account_number.
    So you end up with a list :
    Customer 1
    Customer 2
    etc etc
    Then using an ODIFileAppend, append the two files created above in the final output file. Then loop round in a package for all your account numbers, using the two temp files, then append to the final output.
    Your final output file, then looks like:
    Account Number :A123456
    Customer 1
    Customer 2
    Customer 3
    Account Number : B999999
    Customer 4
    Customer 5

  • Reg : How to update handling unit packing details

    Hi all
    I want to update existing handling unit with new tare weight and gross weight using FM ws_delivery_update.
    how exactly to proceed?
    regards
    jawahar

    Hi Dude,
    I was searching on SDN for updating the handling units. My requirement is similar to yours "Updating Weight and LengthWidthHeight". Can you please help me out as it has been long time the query was posted and i hope u might have completed it. I searched a lot on google and tried many function modules and BAPI also, but its not updating the handling unit.
    Please help me and let me know..
    Thanks in advance

  • How we can handle the below doubt in Java Script!!

    Hi All,
    I need to handle the below scenerio in javascript, i am very poor in scripting langauage could any help me out.
    Below are the three where we have specail character
    words as
    1. transfer (…)
    2. Shell’s
    3. Vitol – as
    The above 3 are having some specail characters which we need to
    replace as mentioned below
    need to use a Function/Method in some scripting language like Java
    script to replace the special character with a predefined sequence eg:
    single quote with “a1b1” before inserting the data in to the data base
    and then while retrieving the record from the database replace “a1b1”
    with single quote.
    Note#:It is a text area where user can either enter or copy and paste
    the content.
    Thanks,
    Anoo..

    Hi Anoo,
    always remember to put your apex and database versions, it makes it easier to help.
    You mentioned stripping out special characters and then putting them back for display. Is there a particular reason why?
    If you're having difficulty querying the 'special' characters from SQL, you can create a view to handle that complexity.
    The examples you gave don't contain any characters you can't query on. Maybe I'm missing something.
    Kofi

  • Asking about how server can handle client disconnection

    Dear sir/madam,
    i'm doing my final year project and it is about a java client/server big2 game.But now i have a difficulties in dealing with the server side.
    That is about how to take action on the serverside if the client suddenly disconnected.
    I have read many java client/server programming scripts.But all of them doesn't mention this problem.The scrpits only assume the client side never disconnect suddenly.
    I hope if you can give me some suggestions on this problem.

    For my mud written in java, I used TCP/IP for the connections. When a client connects, he gets his own thread. Those threads are held in a vector in a manager class. each tick of the server does a quick run thru the vector and if the current thread/socket its on is null or !isAlive() its remove from the vector(which in turn removes it from getting any more game updates. This removal can be caused by two things. The clients disconnects by accident(kills his game, locks up has an internet connection hiccup, etc.) or he uses the games "quit" method. The quit method calls a method that does any player saving of data, etc then closes the socket, and sets it to null. thus the manager sees this and removes him frm the vecotr list on the next server tick. Seems to work great form a mud and worked really well in a multiplayer applet game I had up for a while.

  • Did not complete ugrade to Mountain Lion.Obtained license and personal id but was called away fro Mac for an emergency. Please advise how I can handle. Mountain Lion is

    Hello, I was in the middle of upgrading to Mountain Lion when I was called away from computer. Three one hours phone calleover cyber monday went unanswerd. Have License and ID. Please advise how to finish transaction.
    g

    Mac App Store: How to resume interrupted downloads

  • HTML and how Flash can handle this???

    Hello everyone,
    A while ago now I  can across a component that you could place in flash and it would let you view html web pages from within flash. Now the  frustrating this is that i cannot remember where I saw it and what the name of the component was. Has anyone any ideas?
    Im working on an  embedded systems project using flash and there is a requirement to view html web pages from within Flash. I know there are a number of  third party apps that let you create a stand alone app, using flash, where you  can create virtual browsers. One application in particular that lets you do  this is SWFStudio. I have already been in touch with these guys and they do not  support embedded systems so does anyone else know of any third party application  that is supported on embedded systems, that will let you view HTML pages  using Flash?
    This is frustrating  the hell out of me so any help to ease my pain would be very much appreciated.
    Thanks in advance.

    Hi,
    Thanks for the link and as it would appear there is no solution to my problem. A real shame though as you would have thought adobe, in all thier wisdom, would have built this functionality into Flash. Maybe something to put onto the wish list for the future.
    Thanks again for your help.

  • How Oracle can handle this?

    It is on both Prod and Dev server, 10 R2 with BAAN
    Baan application defined the table as
    SQL> desc ttphrs900201
    Name Null? Type
    T$YEAR NOT NULL NUMBER
    T$PERI NOT NULL NUMBER
    T$EMNO NOT NULL CHAR(6)
    T$SERC NOT NULL NUMBER
    T$WGCO NOT NULL CHAR(3)
    T$NHRS$1 NOT NULL NUMBER
    T$NHRS$2 NOT NULL NUMBER
    T$NHRS$3 NOT NULL NUMBER
    T$NHRS$4 NOT NULL NUMBER
    T$NHRS$5 NOT NULL NUMBER
    T$NHRS$6 NOT NULL NUMBER
    T$NHRS$7 NOT NULL NUMBER
    T$CPRJ NOT NULL CHAR(9)
    T$CSPA NOT NULL CHAR(8)
    T$CACT NOT NULL CHAR(8)
    T$CCUN NOT NULL CHAR(8)
    T$CSTL NOT NULL CHAR(4)
    T$CCCO NOT NULL CHAR(8)
    T$INVO NOT NULL NUMBER
    T$DESC NOT NULL CHAR(52)
    T$ISTA NOT NULL NUMBER
    T$IDAT NOT NULL DATE
    T$TRDT NOT NULL DATE
    T$FIEL NOT NULL CHAR(30)
    T$ERMS NOT NULL CHAR(100)
    T$REFCNTD NOT NULL NUMBER
    T$REFCNTU NOT NULL NUMBER
    but when I did this, there are null values for "NOT NULL" column
    SQL> select distinct T$cstl, t$ccco, t$invo, t$ista, t$fiel
    2 from ttphrs900201
    3 where t$year = 2007
    4 and t$emno = '255';
    T$CS T$CCCO T$INVO T$ISTA T$FIEL
    1103 1 2 Proyecto
    1103 1 2
    Is Oracle hidding some values? I am puzzled. Is a way to display the hidden value. BAAN was installed and designed by the contractors year ago.

    Hi,
    blank space values?, what's the result set for
    select nvl2(T$FIEL,'not null','null'), count(*) from ttphrs900201 group by nvl2(T$FIEL,'not null','null');

  • How we can resolve such situations in R12

    We have R12.1.1 and db is 11.1.0.7 on redhat 5.3 ( 64 bit).
    How we can handle such situations ?
    ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10
    %CPU PID USER COMMAND
    95.4 29239 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,10.0.1.126
    95.2 30247 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,172.16.4.39
    95.1 6949 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,172.16.4.26
    95.1 28563 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,10.0.1.126
    95.1 2186 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,10.1.9.8
    95.0 27474 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,172.16.4.39
    94.6 2751 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,10.0.1.128
    94.5 2174 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,172.16.4.26
    94.3 23930 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP-0,0,1,default,172.16.4.39
    Please reply

    Oracle EBS R12 performance tuning issues were discussed many times in the forum before. Please see old threads for the docs you need to refer to -- http://forums.oracle.com/forums/search.jspa?threadID=&q=Performance+Tuning+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • I bought the pack for students adobe creative cloud, already made the payment three days ago but when opening programs like photosop and illustrator puts the trial period has expired, how I can make them work?

    I bought the pack for students adobe creative cloud, already made the payment three days ago but when opening programs like photosop and illustrator puts the trial period has expired, how I can make them work?

    Hello Ibonedm,
    Sol 1. Please try sign out from Creative cloud Desktop App and quit it.
    1. Launch Creative Cloud application manager.
    2. Click the gear icon in the upper-right corner and select Preferences.
    3. In the Preferences menu, under General, click the Account tab.
    4. Click Sign Out from Creative Cloud.
    Then re-sign in and launch Photoshop CC 2014 and check.
    Sol 2. Check your Hosts file.
    Windows
    1. Choose Start > Run, type %systemroot% \system32\drivers\etc, and then press Enter.
    2. Locate Hosts file and move it to Desktop
    3. Right-click the hosts file and select Open. Select Notepad for the application to open the hosts file.
    4. Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    5. Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    6. Save and close the file and move it back to Etc folder.
    Mac OS
    1. Log in as an administrator to edit the hosts file in Mac OS.
    2. In a Finder window, choose Go > Go To Folder.
    3. Type /etc.
    4. Select the hosts file and move it on Desktop  open it.
    5. Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    6. Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    7. Move Hosts file back to etc folder
    8. Save and close the file.
    Then try launching Photoshop CC 2014 or Illustrator CC 2014
    If prompt for License this software, please click on it and sign in with the Adobe ID and Password which you have used to purchase the subscription and check if you can activate and use the products.
    Please respond , if any issue.
    All the best
    Loveneesh.

  • How can I sign up now

    HOw can I sign up now?

    lindaispeewee,
    Would you describe what you are trying to do?  Are you trying to sign up for one of Acrobat.com subscription services (Adobe PDF Pack, ExportPDF)?
    You were able to post your question on this Adobe Reader for iOS forum.  So you already have a valid Adobe ID.
    You can sign in from Adobe Reader for iOS and save your PDF documents to Acrobat.com for free.  Adobe Reader for iOS provides basic functionality (e.g. viewing PDF documents,  adding comments such as sticky notes and highlight, filling out forms) for free.  However, Acrobat.com subscriptions are paid services for extra features (e.g. converting PDF documents from/to other formats such as Word, Excel, PowerPoint).
    Document Cloud PDF services

  • I singed into CC on my home computer, now I cant sign in at work? How can I sign in at work?

    I singed into CC on my home computer, now I cant sign in at work? How can I sign in at work? Isn't there an option to sign out of all other devices?

    If the IT dept. at your former employer knows what they're doing, they have already had access to everything on your work computer. As to transferring your data to your home computer, read here:
    https://discussions.apple.com/docs/DOC-3141

  • I can't sign in to my app store and my language is Chinese how can I change it to English?

    Cant sign in to my app store and how can I change my app language

    You can log out of the account on the iPad by tapping on the id in Settings > iTunes & App Store and then tap 'sign out' on the popup - you can then sign in with your account/
    If you synced any of your mum's apps to the iPad from your her computer then they will be tied to her account, so only her account will be able to download updates to her apps

Maybe you are looking for

  • Dynamic screen size in BDC

    Hi ppl, I have created a BDC program to upload certain data in a particular transaction which has a table control. This program will be called from devices having different screen sizes. In one of the devices, the table control of the transaction dis

  • Value too large for defined data type

    Hi, i have a Sun Netra t1 105. Sometimes when I try to start top, i get the error message in $SUBJECT. Does someone have a hint? Thanks in advance Tosh42

  • Level 2 status

    I believe that I have been promoted to level two, if not promoted then you know what I mean. I believe one or two perks are available when one reaches the second level. I reached 150 points about a week ago and haven't seen anything yet. Is it a matt

  • Forwarded email paragraphs in box

    I am trying to turn off whatever function puts boxes around paragraphs of text in mail. When I try to edit/manipulate text in emails that have been forwarded to me, it is difficult to do because every paragraph is set in an individual box. I can see

  • Can't download updates on Creative Cloud

    I suddenly can't download any updates, etc.  I keep getting this error message: The address wasn't understood Firefox doesn't know how to open this address, because the protocol (aam) isn't associated with any program.   You might need to install oth