Upload through DW8 or WS-FTPPro

My host gave me WS-FTPPro to upload my site to his server,
but I was wondering if it would be better to do it through
Dreamweaver 8. Does anyone have an opinion? Thanks.

Use DW for convenience if nothing else.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"just started" <[email protected]> wrote in
message
news:ful653$pmg$[email protected]..
> My host gave me WS-FTPPro to upload my site to his
server, but I was
> wondering if it would be better to do it through
Dreamweaver 8. Does
> anyone have an opinion? Thanks.

Similar Messages

  • Unique ID during upload through WebADI integrator

    Hi All,
    Is there any unique ID generated for each upload through a custom Integrator (similar to fnd_global.conc_request_id for concurrent programs)?
    Thanks,
    Sumanth

    JE,
    Normally we use row id or integration id for this, we populate this value in the external id field (for the records created manually) so that we can do bulk update. My personal experience is row id's are more reliable than integration id's and it has always worked for me :) (my technical team also prefers to use the row id for WS as this value cannot be changed). What kind of linking problem did your people face by using row id?
    If you are looking for some other unique single value identifier, I dont think any other than row id, integration id and external unique id exists. Else you need to go with “On Demand predefined fields” option (First Name, Last Name, Email, Work Phone # for contact records).

  • Employee Photo Upload through binary data

    Hi all,
    I know the Provision for Photo upload through OAAD Tcode, I know FM to upload the photos by giving path as input data. my requirement is I have picture in the form of binary data . i want to upload that into PA30. I have return the following code. No Error but image is not displayed in PA30.Can u Please correct me?
    tables: toav0, toaom, twfdb, toapa.
    data: key like ojint-key,
          object like ojint-name,
          object_id like toav0-object_id,
          archiv_id like toav0-archiv_id,
          arc_doc_id like toav0-arc_doc_id,
          ablagedatum like sapb-sapabldate,
          ar_date like toav0-ar_date,
          del_date like toav0-del_date,
          sap_object like toaom-sap_object,
          ar_object like toaom-ar_object,
          expiry_tim like toaom-expiry_tim,
          method like ojint-method,
          return like ojint-return,
          parameter like ojint-parameter.
    data:begin of i_toav0 occurs 1.
            include structure toav0.
    data: end of i_toav0.
    data: begin of i_toaom occurs 1.
            include structure toaom.
    data: end of i_toaom.
    data: begin of fields occurs 1.
            include structure ojfields.
    data: end of fields.
    DATA:     filename1  TYPE string.
    Data: i_name TYPE STXBITMAPS-TDNAME value 'TEST',
    *  archiv_id like toav0-archiv_id,
    i_id TYPE STXBITMAPS-TDID VALUE 'BMAP',
    i_btype TYPE STXBITMAPS-TDBTYPE VALUE 'BCOL',
    l_bds_bytecnt TYPE i,
    FLENGTH TYPE SAPB-LENGTH,
    l_bds_content TYPE TABLE OF bapiconten,
    OUTDOC     LIKE     TOADT ,
    wa_l_bds_content TYPE  bapiconten.
    *DATA : BINARY TYPE STANDARD TABLE OF TBL1024,
    data : BINARY TYPE STANDARD TABLE OF TBL1024 WITH HEADER LINE,
    ARCHIVOBJECT type standard table of docs,
    archiv_doc_id like toav0-arc_doc_id,
    wa_binary type TBL1024.
    data:  lw_ar_object like toaom-ar_object,
          lw_object_id like sapb-sapobjid,
          lw_sap_object like toaom-sap_object,
          lw_doc_type like toadd-doc_type,
          lw_path like sapb-sappfad,"toav0-arc_doc_id
    *      archiv_doc_id like toav0-arc_doc_id,
          doc_type like toadt-doc_class.
    constants:  c_sap_object type toaom-sap_object value 'PREL',
                c_ar_object type toaom-ar_object value 'HRICOLFOTO',
                c_doc_type type toaom-doc_type value 'JPG'.
    PARAMETERS: filename(150) TYPE c OBLIGATORY.                               "Name of the File where source as  txt format
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename.
      PERFORM getfile.
    start-of-selection.
      filename1 = filename.
    key = '010001380002'.
      lw_ar_object = c_ar_object.
    *  lw_object_id = w_pernr_pass.
      lw_sap_object = c_sap_object.
      lw_doc_type = c_doc_type.
    *  lw_path = it_data-file_nam.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename = filename1
          filetype = 'BIN'
        TABLES
          data_tab = archivobject.
    * Object to be archived
          select single * from toaom where ar_object = c_ar_object and sap_object = c_sap_object.
          if sy-subrc <> 0.
            raise UPLOAD_ERROR.
          else.
    * Authority check with Archive id
            archiv_id = toaom-archiv_id.
            perform authority_check_create(oaall)
            using archiv_id object space ar_object space
            changing sy-subrc.
            if sy-subrc ne 0.
              raise UPLOAD_ERROR.
            else.
              if sy-subrc <> 0.
                raise UPLOAD_ERROR.
                clear toav0.
              else." Transfer key for archiving
                toav0-object_id = key.
                if key eq space.
                  Raise FUNCTION_ERROR.
                  clear toav0.
                else.
                  perform create_archive_object_new  .
                endif.
              endif.
            endif.
          endif.
    form create_archive_object_new .
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
        EXPORTING
          AR_OBJECT                      = lw_ar_object
    *   DEL_DATE                       =
          OBJECT_ID                      = '010001380002'
          SAP_OBJECT                     =  lw_sap_object
    *   FLENGTH                        = '2328'
       DOC_TYPE                       = lw_doc_type
    *   DOCUMENT                       =
    *   MANDT                          = SY-MANDT
    * IMPORTING
    *   OUTDOC                         =
       TABLES
       ARCHIVOBJECT                   =  ARCHIVOBJECT
    *     BINARCHIVOBJECT                = binary
    * EXCEPTIONS
    *   ERROR_ARCHIV                   = 1
    *   ERROR_COMMUNICATIONTABLE       = 2
    *   ERROR_CONNECTIONTABLE          = 3
    *   ERROR_KERNEL                   = 4
    *   ERROR_PARAMETER                = 5
    *   ERROR_USER_EXIT                = 6
    *   ERROR_MANDANT                  = 7
    *   OTHERS                         = 8
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      call function 'ARCHIVOBJECT_CREATE_TABLE'
        EXPORTING
          archiv_id                = archiv_id
          document_type            = lw_doc_type
    *      length                   = '2328'
        IMPORTING
          archiv_doc_id            = i_toav0-arc_doc_id
        TABLES
          archivobject             = archivobject
    *      binarchivobject          = BINARY
        EXCEPTIONS
          error_kernel             = 1
          error_communicationtable = 2
          error_archiv             = 3.
           move i_toav0 to toav0.
        toav0-sap_object = lw_sap_object.
        toav0-object_id = key.
        move archiv_id to toav0-archiv_id.
        move i_toav0-arc_doc_id to toav0-arc_doc_id.
        toav0-ar_object = lw_ar_object.
        move lw_doc_type to toav0-reserve.
        move lw_doc_type to doc_type.
        commit work.
      call function 'ARCHIV_CONNECTION_INSERT'
          exporting
            archiv_id                   = toav0-archiv_id
            arc_doc_id                  = toav0-arc_doc_id
            ar_date                     = ar_date
            ar_object                   = toav0-ar_object
    *     DEL_DATE                    = ' '
    *     MANDANT                     = ' '
            object_id                   = '010001380002'
            sap_object                  = toav0-sap_object
            doc_type                    = doc_type
    *        barcode                     = barcode
          exceptions
            error_connectiontable       = 1
            others                      = 2
    endform.
    FORM getfile .
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_filename     = ' '
          def_path         = '*.*'
          mask             = ''
          mode             = 'O'
          title            = ' SELECTING FILE FOR SOURCE PROGRAM'
        IMPORTING
          filename         = filename
        EXCEPTIONS
          selection_cancel = 3
          selection_error  = 4.

    Hi all,
    I know the Provision for Photo upload through OAAD Tcode, I know FM to upload the photos by giving path as input data. my requirement is I have picture in the form of binary data . i want to upload that into PA30. I have return the following code. No Error but image is not displayed in PA30.Can u Please correct me?
    tables: toav0, toaom, twfdb, toapa.
    data: key like ojint-key,
          object like ojint-name,
          object_id like toav0-object_id,
          archiv_id like toav0-archiv_id,
          arc_doc_id like toav0-arc_doc_id,
          ablagedatum like sapb-sapabldate,
          ar_date like toav0-ar_date,
          del_date like toav0-del_date,
          sap_object like toaom-sap_object,
          ar_object like toaom-ar_object,
          expiry_tim like toaom-expiry_tim,
          method like ojint-method,
          return like ojint-return,
          parameter like ojint-parameter.
    data:begin of i_toav0 occurs 1.
            include structure toav0.
    data: end of i_toav0.
    data: begin of i_toaom occurs 1.
            include structure toaom.
    data: end of i_toaom.
    data: begin of fields occurs 1.
            include structure ojfields.
    data: end of fields.
    DATA:     filename1  TYPE string.
    Data: i_name TYPE STXBITMAPS-TDNAME value 'TEST',
    *  archiv_id like toav0-archiv_id,
    i_id TYPE STXBITMAPS-TDID VALUE 'BMAP',
    i_btype TYPE STXBITMAPS-TDBTYPE VALUE 'BCOL',
    l_bds_bytecnt TYPE i,
    FLENGTH TYPE SAPB-LENGTH,
    l_bds_content TYPE TABLE OF bapiconten,
    OUTDOC     LIKE     TOADT ,
    wa_l_bds_content TYPE  bapiconten.
    *DATA : BINARY TYPE STANDARD TABLE OF TBL1024,
    data : BINARY TYPE STANDARD TABLE OF TBL1024 WITH HEADER LINE,
    ARCHIVOBJECT type standard table of docs,
    archiv_doc_id like toav0-arc_doc_id,
    wa_binary type TBL1024.
    data:  lw_ar_object like toaom-ar_object,
          lw_object_id like sapb-sapobjid,
          lw_sap_object like toaom-sap_object,
          lw_doc_type like toadd-doc_type,
          lw_path like sapb-sappfad,"toav0-arc_doc_id
    *      archiv_doc_id like toav0-arc_doc_id,
          doc_type like toadt-doc_class.
    constants:  c_sap_object type toaom-sap_object value 'PREL',
                c_ar_object type toaom-ar_object value 'HRICOLFOTO',
                c_doc_type type toaom-doc_type value 'JPG'.
    PARAMETERS: filename(150) TYPE c OBLIGATORY.                               "Name of the File where source as  txt format
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename.
      PERFORM getfile.
    start-of-selection.
      filename1 = filename.
    key = '010001380002'.
      lw_ar_object = c_ar_object.
    *  lw_object_id = w_pernr_pass.
      lw_sap_object = c_sap_object.
      lw_doc_type = c_doc_type.
    *  lw_path = it_data-file_nam.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename = filename1
          filetype = 'BIN'
        TABLES
          data_tab = archivobject.
    * Object to be archived
          select single * from toaom where ar_object = c_ar_object and sap_object = c_sap_object.
          if sy-subrc <> 0.
            raise UPLOAD_ERROR.
          else.
    * Authority check with Archive id
            archiv_id = toaom-archiv_id.
            perform authority_check_create(oaall)
            using archiv_id object space ar_object space
            changing sy-subrc.
            if sy-subrc ne 0.
              raise UPLOAD_ERROR.
            else.
              if sy-subrc <> 0.
                raise UPLOAD_ERROR.
                clear toav0.
              else." Transfer key for archiving
                toav0-object_id = key.
                if key eq space.
                  Raise FUNCTION_ERROR.
                  clear toav0.
                else.
                  perform create_archive_object_new  .
                endif.
              endif.
            endif.
          endif.
    form create_archive_object_new .
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
        EXPORTING
          AR_OBJECT                      = lw_ar_object
    *   DEL_DATE                       =
          OBJECT_ID                      = '010001380002'
          SAP_OBJECT                     =  lw_sap_object
    *   FLENGTH                        = '2328'
       DOC_TYPE                       = lw_doc_type
    *   DOCUMENT                       =
    *   MANDT                          = SY-MANDT
    * IMPORTING
    *   OUTDOC                         =
       TABLES
       ARCHIVOBJECT                   =  ARCHIVOBJECT
    *     BINARCHIVOBJECT                = binary
    * EXCEPTIONS
    *   ERROR_ARCHIV                   = 1
    *   ERROR_COMMUNICATIONTABLE       = 2
    *   ERROR_CONNECTIONTABLE          = 3
    *   ERROR_KERNEL                   = 4
    *   ERROR_PARAMETER                = 5
    *   ERROR_USER_EXIT                = 6
    *   ERROR_MANDANT                  = 7
    *   OTHERS                         = 8
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      call function 'ARCHIVOBJECT_CREATE_TABLE'
        EXPORTING
          archiv_id                = archiv_id
          document_type            = lw_doc_type
    *      length                   = '2328'
        IMPORTING
          archiv_doc_id            = i_toav0-arc_doc_id
        TABLES
          archivobject             = archivobject
    *      binarchivobject          = BINARY
        EXCEPTIONS
          error_kernel             = 1
          error_communicationtable = 2
          error_archiv             = 3.
           move i_toav0 to toav0.
        toav0-sap_object = lw_sap_object.
        toav0-object_id = key.
        move archiv_id to toav0-archiv_id.
        move i_toav0-arc_doc_id to toav0-arc_doc_id.
        toav0-ar_object = lw_ar_object.
        move lw_doc_type to toav0-reserve.
        move lw_doc_type to doc_type.
        commit work.
      call function 'ARCHIV_CONNECTION_INSERT'
          exporting
            archiv_id                   = toav0-archiv_id
            arc_doc_id                  = toav0-arc_doc_id
            ar_date                     = ar_date
            ar_object                   = toav0-ar_object
    *     DEL_DATE                    = ' '
    *     MANDANT                     = ' '
            object_id                   = '010001380002'
            sap_object                  = toav0-sap_object
            doc_type                    = doc_type
    *        barcode                     = barcode
          exceptions
            error_connectiontable       = 1
            others                      = 2
    endform.
    FORM getfile .
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_filename     = ' '
          def_path         = '*.*'
          mask             = ''
          mode             = 'O'
          title            = ' SELECTING FILE FOR SOURCE PROGRAM'
        IMPORTING
          filename         = filename
        EXCEPTIONS
          selection_cancel = 3
          selection_error  = 4.

  • How  business transation data,opening balances are uploaded through lsmw?

    hi,
         please tel me hoe to upload the open balances,business transation data of the vendor,customer and gl account through lsmw? along with that please explain the uploading theough bdc.........
       i am eagerly waiting for ur answer...............please let me know asap.
    with regards,
    prasad.

    Hi,
    As all the balances can be uploaded through FB01,Create a document type by for upload set all the transaction allowed in document type.
    Firstly create a LSMW for FB01 posting a document so that we will know what all the fields need to be captured.
    Then in the same format create a XL template with necessary required fields and fill the same with data.
    Asset master data also can be uploaded through FB01 by removing the reconcilation field in OAMK change the reconcilation control and upload the balance in FB01 and again in OAMK change the control to reconcilation.
    or through OASV also you can upload.
    Edited by: santosh kumar on Feb 2, 2012 10:42 AM

  • Unable to update DVM in MDS with upload through em

              Hello all
    I'm working on two environment : dev1 and dev2
    I'm able to deploy a MDS on dev1 by zipping all the content in a "metadata.zip" file and uploading it to the dev1 through entreprise manager console.
    When I do the same thing on dev2, it does not work.
    I use a directory structure for dev1 : then I zip it in metadata.zip + upload through em : I can see then the modifications through the soa composer.
    I use another directory structure for dev2 : then I zip it in another metadata.zip + upload through em : I cannot then see the modifications through the soa composer (but modifications are visible in the metadata database !).
    If you have any clues
    Thanks

    Another information :
    On the MBeans Browser, when I invoke the listSandboxes() operation on MDS I can see that there is one entry that is returned and which filename is composed of the filename that I want to update in the MDS. I mean :
    I want to update a file in apps/AIAMetaData/dvm/dvmstage001.dvm
    In the listSandboxes() returns I have one entry :
    weblogic_72apps72AIAMetaData72dvm72dvmstage001.dvm

  • Problem of BOM components uploading through BAPI,for  the Network(CN01)

    Hello,Friends,
    Iam PP consultant and facing a problem of BOM components uploading through BAPI,for creating of the Network (CN21)
    we have 300 components in the network activity and while uploading the BOM through BAPI , only 295 components has been uploaded.Others components has not uploaded.
    Please suggest me what will be the Problem? and
    What is the solution for the same?
    Regards,
    MYS

    in customizing availability checked has been applied ,for this reason one additional screen is appearing in BAPI for all these components
    How this screen could be by passed

  • Flat file upload through BPS webinterface

    Hi ,
    I want to load a flat file ( format in CSV) through web upload  into a master data infoobject.
    that is i want to upload through BPS webinterface . (3.5 version)
    Is it possible to write everything in a BSP application without the help of Planning level or layout or functions.
    but only through webinterface and a BSP application and can abap coding be included in directly in .htm page.
    kindly help me out.

    Hi,
    I don't think so you 'll be able to write the abap code directly in htm page.Web interfaces are used for the purpose of creating and using user interface .It is no where linked to the logic or the activity that has to be performed using abap code directly.
    You have to use the planning level and planning function for uploading the data through flat file.You can check the How to guide in forum's.
    You can also create Transaction code for uploading the master data,through abap code you can provide buttons to upload it.
    Regards,
    Indu

  • Release Strategy Characteristic Upload through LSMW.

    Release Strategy Characteristic Upload through LSMW.
    Introduction:
    In case of Purchase order, we need to maintain Release Strategy each year. This is due to organizational changes. Due to huge organization, this is around one week activity for us. Reason, we need to maintain characteristics for around 300 different release strategies. Since, we can't transport "Characteristics" from one system to other, we need to maintain them in Quality as well as in Production system.
    Issue: We tried to use option of LSMW to maintain these "Characteristics". But, system is giving error as "Logical Path is not available".
    Question: Who is responsible to create this "Logical Path" and where it can be done?

    Hi,
    I think you moved LSMW from test to production and this might be happening due to this fact. Please redo steps in LSMW for:
    Specify Files
    Assign Files
    Read Data
    Create completely new paths, and allow system to recreate (you need the right authorization). This might help I hope.
    Regards,
    Tomek

  • I can not export imovie 11 to youtube. I tried exporting with quicktime so I could upload through youtube,but it had no sound. Very frustrating. When I upload through youtube it looks as if it is working, but I get no confirmation. Tried it many times.

    I can not export imovie 11 to youtube. I tried exporting with quicktime so I could upload through youtube,but it had no sound. Very frustrating. When I upload through youtube it looks as if it is working, but I get no confirmation. Tried it many times. What do I do?

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • I cant upload through muse's uploaed to ftp host. And it is so slow! I have the correct password, ftp server, and user name frustrating!!

    I cant upload through muse's uploaed to ftp host. And it is so slow! I have the correct password, ftp server, and user name frustrating!!

    What version of Muse are you using? If it's not 2014.2, please go to the Creative Cloud Desktop App or creative.adobe.com and update.
    The FTP login failure is most likely due to your host not supporting FTP Extended Passive Mode. In Muse 2014.2 switch to "Passive (PASV)" in the Connect to FTP Server dialog.
    Regarding performance, how large is your site (in pages and megabytes)? How many Design view tabs are open? What specific operations are slow?
    If you'd like to send your .muse file, I'll take a look and attempt to isolate the cause of slow performance. Please send me the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. Thanks.

  • Uploaded through Bridge CC photos from my camera; went through the motions, not paying attention, bu

    Uploaded through Bridge CC photos from my camera; went through the motions, not paying attention, but it did NOT save 'em where I usually save 'em; how can I ask Brindge or just the Mac Finder the last files I downloaded & where I saved 'em too? Oh, yeah, it ERASED the photos from my camera. I basically just need to ask my Mac (OS 10.8) where I downloaded 'em to. Thanks!

    Uploaded through Bridge CC photos from my camera; went through the motions, not paying attention,
    I'm not sure I do follow this, what do you mean with motions? can you specify this?. I assume you used Photodownloader? BTW, Not paying attention is usually not the best way when importing images...
    but it did NOT save 'em where I usually save 'em; how can I ask Brindge or just the Mac Finder the last files I downloaded & where I saved 'em too?
    When you import files they are written to your disk and therefor no need for save them, the files are already at your disk or written to the location you choose as destination. You could select your computername in the navigation column and then use the list view and choose the column last modified but this is not always showing the correct result. You could also do a spotlight search (or use the free Easy Find you can download from Devon) and choose to search for the extension you have shot your files in (Raw, jpeg??) and then choose modification date to sort.
    There is not a log (at least not to my knowledge) that keeps track of all of your movements unless you have installed such application (don't know if there is one but I think there will be a thrid party or script written by someone). You could try Console (in the utilities folder) that holds your logs and reports but this is usually for crash or forced quit situations.
    Oh, yeah, it ERASED the photos from my camera. I basically just need to ask my Mac (OS 10.8) where I downloaded 'em to. Thanks!
    Well, this would mean you would have first select the option to do so in Photodownloader. While I use PDL on a daily base I always thought this option should not even be present to choose and you certainly should not use it to delete originals.
    Like Curt already stated you have to use the camera software for this with the card in the camera. Either delete but preferable format the card. Mind you, this should not be done before you are sure where your files are written to and after you have checked randomly to see if the previews have build correctly for the newly imported files. Then you should make a back up of those files and only then start thinking about erasing or formatting the card for new use.
    If you have not done very strange things (like choosing the card as destination but if so they might still be there- check finder in column mode- or wrote them to an external disk - where they also still should be) the files should be somewhere at your system. Just do an extensive search and if the files are really important check for recovering software for your card.
    And follow the steps described above for importing, sometimes we need to learn our lessons the hard way (and I have been there too...)

  • Photos uploaded through icloud control panel are only synced with iphone but not with ipad

    Photos which are uploaded through icloud control panel are only synced with iPhone but not with iPad. Photos taken with iPhone or iPad are synced with all devices. So, why I do not get the uploaded photos from my pc to iPad? I alredy disabled photo stream on all devices - same failure

    If only one device is not getting updated data, you need to troubleshoot that device and not photostream itself.
    Verify that ipad is connected to wifi, charged over 20 percent, camera app is closed and take a photo of the screen (or anything else, but then close that camera app).
    Open photostream folder on that ipad and see if picture shows up. If you network is good, should not take long.
    Don't forget that while your phone can use wifi and cellular (even it suppose to use wifi for photostream, cellular networks got much better since original photostream was implemented) - you ipad is probably wifi only.
    If picture shows up - you ipad and photostream have no problems and you can go to other devices one by one.

  • Why i cant play videos uploaded through Facebook & Vimeo?

    I'm using Acer Aspire 4730Z, Windows 7 Ultimate 64-bit, Pentium(R) Dual-Core. I've got Firefox 6 installed on my laptops and i cant play all the videos uploaded through Facebook and Vimeo. But there's no problem loading Youtube videos. Please help!
    *pardon me, i'm not good in english. :)

    Have you tried on another computer? If it doesn't work there it is a site issue.

  • PO Upload through BAPI_PO_CREATE1 - Problem in limit

    Dear All,
    I am using BAPI_PO_CREATE1 for PO upload based on already created Limit based PR I am facing problem in Service account assignment.
    It gives me error "In case of Account assignment, please enter acc. assignmrnt data for item". Although I am supplying account assignment. Please tell me what is the reason of error. Is there any other way to link item with its limit details.
    How to pass the required data to the polimits structure. Kindly let me know
    PO Upload through BAPI_PO_CREATE1 - Problem in Service Item
    I have goen through the above link but its talking about service based PO, I need to create limit based PO.
    Any more info required kindly reply ,I will give... help me getting this....
    Thanks
    Uday

    Dear All,
    I am using BAPI_PO_CREATE1 for PO upload based on already created Limit based PR I am facing problem in Service account assignment.
    It gives me error "In case of Account assignment, please enter acc. assignmrnt data for item". Although I am supplying account assignment. Please tell me what is the reason of error. Is there any other way to link item with its limit details.
    How to pass the required data to the polimits structure. Kindly let me know
    PO Upload through BAPI_PO_CREATE1 - Problem in Service Item
    I have goen through the above link but its talking about service based PO, I need to create limit based PO.
    Any more info required kindly reply ,I will give... help me getting this....
    Thanks
    Uday

  • Stock Balances uploading through Mvt type 561

    Hello,
            We are uploading Stock Balances by T.Code MB1C through Mvt. Type 561. IN FI-MM Integration T.code OBYC, In transaction key "GBB" I have assigned GL Account "Stock Suspense A/c" for BSA. And in transaction key BSX, I've assigned
    GL Account "Raw Material". After that when i enter stock balance through T.code MB1C, The document entry generated is as follows;
    Posting Key      GL Account             Amount
         89           Raw Material A/c           XXXXX
         91*         Stock Suspense A/c      XXXXX
    *The posting Key "91"  is for COSTS, which i believe is incorrect, so where have i gone wrong? what is the solution?? Please help!!!
    Regards
    Ashwin

    Hi,
    I agree with ajay.
    I think you want to know how this will effect u r Balnce Sheet. This is only a intermediary account for balance upload. In sap u uplaod u r trial balance in part using different transactions. For this u devide total transactions in gl, materials, ar, ap, assets etc and use different balancing account which in turn in total is having dr= cr as u r trial balance is having dr= cr.
    Please revert if any querry

Maybe you are looking for

  • How do I access the web utility with model cisco sf302-08p ?

    Hi,i have a problem with the model Cisco SB SF302-08PP Switch , i connect a cable rj45 to my pc and configure the adapter local area connection (ip address:192.168.1.252), the LEDs blink green, and go to the address bar and get the IP by default, whi

  • Migrate from Tiger 10.4.11 to Snow Leopard 10.6.4 that is not a new machine

    I have two users. one with a mac pro running tiger 10.4.11 and one using snow leopard 10.6.4 one user was fired the remaining user wants the better mac running snow leopard i created a new user account on snow leopard mac but now when he tries to run

  • Creative Suite 5.5 Design Premium installation

    Hi, I have just start my new iMac computer. Downloaded CS5.5 Design Premium fine. When it was close to finishing the installation there was an issue with closing Safari which I did and also something else which looked Safari related but nothing else

  • Import data in 9i

    Dear Experts I want to import data in 9i database but i dont want archives(redo) generation during importing data. how can i do this? regards saima

  • Can dw cs3 connect directly to sql server database without a testing server?

    I'm new to dreamweaver but have used script tools that link directly to my sql server database. Not in dw, so far. As of this early stage, I don't have or want to use a web server, and it's blocking me without one. I just want to prototype without a