Upload Signaute in SAp

Hi All,
i have to upload signature in SAP fo purchase order.
I try to upload signature in SAP by usnig program RSTXLDMC but it gives me following error.
TIFF format error: No baseline TIFF 6.0 file 
Please help me to find out the solution.
Thanks
Piyush Mathur

HI,
You can use SE78 to upload any JPG file also into SAP.
Regards
Subramanian

Similar Messages

  • Upload fields from SAP R/3 to BW

    Dear All,
    I'm looking for a method to upload fields from SAP R/3 to BI 7.0.
    My testing case as following:
    - Upload table DFKKKO \ field OBEL from R/3 to BW
    - I created a Generic Datasource and select this field.
    - When coming back to BI, I replicate the metadata from SAP source system and can display my Generic Datasource.
    - I create the Info Package for this Generic Datasource but when I run the scheduling, I didn't find any data in PSA table.
    So this is my questions:
    -   Is this method (generic datasource) suitable for uploading from SAP R/3 to BI or there is anything else better?
    - Why the data cannot uploaded to PSA table? (I got this error message from Monitor "EDI: Partner profile inbound not available" and "Some IDocs have error status" but don't know how to correct)
    If there is any possible response, I shall give reward point.
    Many thanks,

    Hi
    I think you have missed the mapping part in BW....did you create the transformation in BW side before loading the date?You have to map the R/3 field to BW infoobject.

  • Upload data from SAP R/3 to BPC

    Hi Expert
    We need to upload data from SAP R/3 Payroll to BPC into to use in a butget process. We actived 0HR_PY_1 extractor and we have data at PCA area. My question is how i can to load this data into a appset in BCP.
    Please give any idea to do that.
    Thanks

    Hi,
    There are multiple ways of extracting data from ECC to BPC.
    If you have SAP BW implemented for your HR area then you can load data from SAP BW info provider to SAP BPC.
    check out the following thread.... all these things are already widely discussed in the forum.... all thats required is to search.....
    you have got to use Transformation and conversion files.....
    [How to load Transaction Data from BW to BPC]
    If SAP BW is not implemented then the other way is to extract the payroll data into Flat files and use the data manager package to upload the data.... you got to prepare transformation and conversion files for this as well.
    Directly from ECC is not possible as of now.....
    Regards,
    Surya Tamada.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • Upload data into SAP through standard program

    hi!
    why don't we prefer to upload data into sap through standard program like RFBIKR00 to upload for vendor master or other standard programs to upload durectly without using BDC or LSMW and how do we upload data into SAP through BAPI.
    pls help me with a sample program.
    regards
    Amit

    It totally depends upon the requierment which fields your want to update in transaction if it works with program then use program else go for bdc .
    If there is some any screen enhancement with z fields then program will not solve the problem.
    For BAPI you check these links:
    http://www.sap-img.com/abap/bapi-step-by-step-guidance.htm
    http://sap-img.com/bapi.htm
    Edited by: shilpi agarwal on Aug 22, 2008 7:28 AM

  • Upload Document in SAP DMS

    Hi SDNites,
    My requirement is to upload document in SAP DMS and this document we are receiving from an external system. Can you please let me know,
    1. Is there any way I can provide a link in ECC SAP DMS for the documents which are stored in external system (SAP CRM) .
    2. Also is there any standard FM / BAPI available which uploads a document into SAP DMS (I do not want to pick documents from a local directory).
    Regards,
    Abhi

    Hi,
    1) R U able to upload any other file type to the DIR AA00-0123 (word/ppt/pdf etc) ?
    2) Can u Create a new DIR and try uploading the same excel file? does that get created?
    once u do the above just let me know.
    Regards
    Abhishek
    Edited by: AAYNI_AK on Nov 11, 2011 11:33 AM

  • Best Way To Upload Sales in SAP

    Hi,
    I wanted to know what is the best way to upload sales in sap system, currently we are doing manually. We fetch data from the 3rd Party POS system and converting it into XMLfile and create it's IDOC, After that uploading sales by t-code BD20.
    We have 1 issues also:
    1. Dummy Sales: How can we take care of dummy sales records.
    Edited by: BalrajPanwar on Apr 26, 2011 8:40 AM

    Hi,
    You can do it through LSMW or BAPI or BDC method.
    Those are the best ways to upload
    Edited by: Deepti Adimadhyam on Apr 26, 2011 4:52 AM

  • Uploading font to sap

    Hi all,
    I want to upload font to sap how can i upload can you please help me steps to upload font in sap

    Hi,
    Lets suppose that u want to upload the verdana font.
    goto se73 transaction->click the system font radio button->
    now click the last button true->type font installrein->u will be asked to enter the family name->give ZVERDANA.
    Now u need to upload 4 files
    Normal
    Bold
    Bold-italic
    and italic
    while uploading the normal verdana do not check any boxes
    execute the program and u will be prompted for the file
    u can get it from c\windows\fonts
    type in the file name which will be verdana.ttf
    now the normal font is uploaded
    for uploading bold, check the bold check box and upload verdanab.ttf
    same is for italic and bold italic
    Each time u try to add a new file to same name ZVERDANA it will prompt u. Click the Y button to include the 4 files under the same name ZVERDANA
    I hope you understand.you can do this way.
    Use the progarm RSTXSF01 to instal new font
    See the link for more info
    http://help.sap.com/saphelp_nw04/helpdata/en/5f/9d6064a7b111d18dff0000e83dd9fc/content.htm
    Re: Fonts
    Please reward points if it helps
    Thanks
    Virkanth

  • How to extract data from SAP 4.7 and upload data to SAP ECC 6.0

    Hi,
        How to extract data from SAP 4.7 and upload data to SAP ECC 6.0? Can i use BDC,BAPI,LSMW? Help me please.

    hi
    good
    both works not possible simultaneously.
    If you want to do it in two separate task than you can use the GUI_UPLOAD function module to fulfill your requirement.
    thanks
    mrutyun^

  • HOW TO UPLOAD SPREADSHEET TO SAP

    I need to know how do we upload a excel sheet to SAP. What is the transaction code. There is an excel sheet with costs and expenses downloaded for a charge card from bank. we want to post those expenses to liablitlity account in SAP. So if these expenses are downloaded in excel , how do we upload them to SAP to hit the correct G/L account. Please explain the whole procedure
    Thanks
    Lakshmi

    Hi Sridhar,
    Let me explain the situation. We download the expenses from a bank website. Then we need to post those expenses in SAP to their respective accounts. So in this case, how do we do it. Do we need to map those expenses to respective SAP accounts in spreadsheet and then upload them throughLSMW, t.code FB01 in SAP. What specs do we need to give for creating ZGLUPLOAD program to the ABAP person.
    WHat do you mean by P-Card?? Can you please also explain what is Z-table of accounts?? I am not sure if I understand this???
    Thx
    Lakshmi

  • How to upload graphic to SAP througth the program?

    Hi everyone,
         Please help me. My point as subject. Because the graphics is different by delivery's batch no.. Whether has any method to be upload graphic to SAP,
    but does not need to each time used SE78 to upload graphic.
         Thanks a lot. My version is ECC 6.0.
    Nicole

    HI Nicole,
                  I think there is also a another way for uploading a graphic but u can use it only for ALV in SAP  u can use the transaction OAER and fill the class name like u can give PICTURES and in class type OT or as per your requirment and then execute (F8) then goto the create->standard doc. types->screen then you will get a pop-up window and select your graphics.In your report you call the fuction
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = I_LISTHEADER
    I_LOGO = 'OBJECT KEY'.
    Do this if it's use full for you and also....
    Plzz give reward point.
    Thanks n Regard
    Anirudh Saini

  • How to upload Materials into  SAP

    HI,
         How to upload Materials into  SAP using MATMAS05 Idoc type?

    use the lsmw standard existing bapi or idoc method to upload the data into sap

  • How to upload forecast into sap.

    how to upload forecast into sap.

    Hi
    You can use MD61 - create planned independent requirements or MM17 - Mass Maintenance
    Thanks !
    E.Avudaiappan

  • Uploading files to SAP using HTML5 /AJAX/Gateway media links with real-time progress bar

    Hi All,
    Check out the blog post 'Uploading files to SAP using HTML5 /AJAX/Gateway media links with real-time progress bar'
    Uploading files to SAP using HTML5 /AJAX/Gateway media links with real-time progress bar
    Regards
    Prabaharan

    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: NVidia [HDA NVidia], device 3: NVIDIA HDMI [NVIDIA HDMI]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    Which correspondents fine with the
    device "hw:0,3"
    in my mpd.conf alsa section.
    Also sound worked fine withh this config before I started installing ffmpeg-svn and alikes
    hokasch:
    I tried changing the mixer to "Master" but that did not change much.

  • Couldn't change a previous Logo upload in the SAP GUI.

    Hi,
    I couldn't change a previous Logo upload in the SAP GUI.
    How about?
    Best regards

    For uploading a SAP LOGO follow informatio contained in this link:
    http://www.sap-img.com/basis/changing-the-sapgui-logo-on-the-right-hand-side.htm
    1) Try deleting tha actual LOGO from trx SMW0 table and Check the file name of the new LOGO and call it with another file name different from previous and Import the new file.
    2) Check also the file name trx SM30 table SSM_CUST that must be the new file name.
    Best regards

Maybe you are looking for

  • Better to use optical bay or drive bay for SSD?

    Just bought a mid-2012 MacPro.  Also purchased a Crucial 512GB SSD drive, which I intend to use for a boot drive.  I know that I can install the drive in one of the four slide out drive bays.  From what I can gather, it doesn't matter which bay I use

  • I tunes 7.0.2 and ipod 1.2 update trouble

    i just updated to itunes 7.0.2 and the ipod update 1.2, and since then my ipod is acting differently. for starters when i go to update my ipod and have it plugged in my computer, the screen back light is is on a dim settings. even if i have it turned

  • EWA for non-productive Systems

    Hi all, is there a possibility to get Early Watch Alerts for Systems in a Solution, which are not marked as productive. I don't want to create many solutions. The same problem i have with the monitoring, I only see the productive in the monitoring ov

  • Quicktime Player no buttons no longer see any surface

    Hello, I use the newest QuickTime Player 7.7.4 instaled. For some time, there are no buttons on the player when playing clips to see. I have the software several times uninstalled and installed What can I do? Sorry for my english(German)

  • DNS error when trying to share my internet connection?

    i have an imac connected online wirelessly, and im trying to share it connection using the ethernet port with my xbox360 but im getting dns error even that i put the right number? anyone have any idea. im able to get ip but not dns.