Search scan program for Dell C1765NFW

Search scan program for Dell Laser printer C1765NFW compatible to OSX Mavericks 10.9.2. For Windows come special program with printer, but for OSX come nothing or just driver for minimal function. Who have any idea which scan program I can buy and use with this type of laser (all in one) printer?
Many thanks for info!

Try using Image Capture. It's located in your Applications folder.
Launch Image Capture then connect the printer.
The printer/scanner should show up under Devices top left side of the Image Capture window.
Now look at the bottom left side of the window. Click the: Connecting this (device) opens: pop up menu and select an application to import your photos.
You can also select a folder to import photos from the Import To: pop up menu.
Selet the photos you want to import then click Import or Import All on the right.
More help is available from the Image Capture menu bar. Click Help > Image Capture Help
Mac Basics: Using a scanner

Similar Messages

  • What is the preferred virus scan program for iphone? I believe that I have a virus. My phone will come on by itself and it appears to be recording audio. I have read about spyware/surveilance viruses that will record audio and take photos.

    What is the preferred virus scan program for iphone? I believe that I have a virus. My phone will come on by itself and it appears to be recording audio. I have read about spyware/surveilance viruses that will record audio and take photos.

    My phone is not jailbroken.  I don't know what you mean about hacked.   Maybe it is hacked?   This is what is happening: About three times over the past few months I've noticed that my phone while "off" will come on (light up) and the screen shows an arrow towards the bottom; an arrow such that you would see on various "players" in order to "play" video or audio, I've searched my phone and cannot find any app that produces this particular screen though. Once I pick up the phone when this screen myseriously appears out of nowhere and press anything, it goes away and goes to the standard "slider" front page to unlock the phone.

  • What is the best OCR text scanning program for IMac Yosemite?

    I would like a text scanning program (OCR) that will work with Yosemite. Please give me suggestions. Thank you.

    Freebe from Google. But if you need to use something on a regular basis abbyy finereader is on the market for years and has a good reputation.

  • Universal Scanning Program for canon lide 30 (older scanner

    i have a canon canoscan lide 30 scanner. the drivers and toolbox are not supported with leopard. you can get it to work but theres alot of work arounds , turning off permissions on folders etc. so i was wondering does anyone know of either a free program or a inexpensive one, that i could use my canon lide 30 scanner with. i tried the program vuescan, cost 40 but wanted to see all my options cause i'm done with trying to make canon drivers and programs works
    thanks

    Elements 2 should work in 10.4.6. Install PE, then download an install the latest driver for your scanner. (Elements (any version) is not scanning software on its own--it's just that many scanner manufacturers include a PS/PE plug-in for convenience.)

  • How to do program for search help

    Hi,
    Please tell me how to do the program for search help in Dialog programming.
    Thanks,
    Sriram.

    Step 1:
    Create a function module (ZZ_TEST_FUNCTION).
    Step 2:
    --> Create a search help(ZSEARCH)
    --> Enter the above function Module(ZZ_TEST_FUNCTION) in search help exit field.
    STEP 3:
    Attach the search help with any field of table.
    Function module Sample Code:
    FUNCTION ZZ_TEST_FUNCTION.               
    ""Local interface:                    
    *"       IMPORTING                 
    *"             VALUE(MCONAME) DEFAULT SPACE *"             VALUE(SELSTR) DEFAULT SPACE
    *"       TABLES                      
    *"              SHLP_TAB TYPE  SHLP_DESCR_TAB_T
    *"              RECORD_TAB STRUCTURE  SEAHLPRES
    *"       CHANGING                   
    *"             VALUE(SHLP) TYPE  SHLP_DESCR_T *"             VALUE(CALLCONTROL) LIKE  DDSHF4CTRL 
    *"                             STRUCTURE  DDSHF4CTRL
    CALL SCREEN 100.
    Return from application back to SAP                   
      CASE save_ok_0100.                                    
        WHEN 'RSTR'.                                        
          callcontrol-step = 'SELONE2'.                     
        WHEN 'CANCEL' OR 'BACK' OR 'EXIT'.                  
          callcontrol-step = 'EXIT'.                        
        WHEN 'SEL'.                                         
            READ TABLE itab.                 
            record_tab = itab-filed1.           
            APPEND record_tab.                              
            callcontrol-step     = 'RETURN'.                
           EXIT.                                           
          ENDIF.                                            
      ENDCASE.                                              
    ENDFUNCTION.

  • How to do register-level programming for NI6025E when I want to acquire single scan incuding multiple input channels?

    How to do register-level programming for NI6025E when I want to acquire single scan incuding multiple input channels?

    Thanks, Alan, I think I indeed need to combine aiex1.cpp and aiex2.cpp. I made a change to Configure_Board of aiex1.cpp  as follows:
    //Call this function to configure board options.
    void Configure_Board(tSTC *theSTC,tESeries *board)
     //Clear configuration memory
     theSTC->Write_Strobe_0.writeRegister(0x0001);
     //Clear ADC FIFO
     theSTC->Write_Strobe_1.writeRegister(0x0001);
     //Writing to Config_Memory_High_Register for channel 1 settings
     board->ConfigFifoHigh.setChannel(0);
     board->ConfigFifoHigh.setBank(0);
     board->ConfigFifoHigh.setChannelType(board->ConfigFifoHigh.kChannelTypeRSE);
     board->ConfigFifoHigh.flush();
     //Writing to Config_Memory_Low_Register for following channel 1 settings
     board->ConfigFifoLow.setLastChannel(0);
     board->ConfigFifoLow.setGeneralTrigger(0);
     board->ConfigFifoLow.setGain(board->ConfigFifoLow.kGain001_0);
     board->ConfigFifoLow.setPolarity(board->ConfigFifoLow.kPolarityBipolar);
     board->ConfigFifoLow.setDither(0);
     board->ConfigFifoLow.flush();
     //Writing to Config_Memory_High_Register for following channel 0 settings
     board->ConfigFifoHigh.setChannel(1);
     board->ConfigFifoHigh.setBank(0);
     board->ConfigFifoHigh.setChannelType(board->ConfigFifoHigh.kChannelTypeRSE);//RSE mode
     board->ConfigFifoHigh.flush();
     //Writing to Config_Memory_Low_Register for following channel 0 settings
     board->ConfigFifoLow.setLastChannel(1);
     board->ConfigFifoLow.setGeneralTrigger(0);
     board->ConfigFifoLow.setGain(board->ConfigFifoLow.kGain001_0);
     board->ConfigFifoLow.setPolarity(board->ConfigFifoLow.kPolarityBipolar);//BIPOLAR
     board->ConfigFifoLow.setDither(0);
     board->ConfigFifoLow.flush(); 
     return;
     and a change to test(iBus *bus):
    do
      uStatus = theSTC->AI_Status_1.readRegister();
      if (!((uStatus & 0x1000) == 0x1000))
        uValue[i] = board->AIFifoData.readRegister();
       i++;
     } while(i<1);
     printf("Value %d is %6.2f\n",0,FindADDouble(uValue[0]));
     printf("Value %d is %6.2f\n",1,FindADDouble(uValue[1]));
    but it doesn't work, why?
    How shoud I do?

  • Searching for equvivalent program for RIPRSC00 in samrt forms.

    Hi All.
    Can any body please tell me what is the equvivalent program for RIPRSC00 in samrt forms.
    Background:
    This is an upgradation from 46b to ECC 6.0. In 46b, print settings will be done by using the Tcode-OIDF. Now we want this to be developed in SmartForms the same existing program cannot be used for this.
    Thank you inadvance.
    Srini.

    You can use wireshark to do the investigation.
    http://www.wireshark.org/
    Tim
    Johnson Controls
    Holland Michigan

  • Searching program for smartform

    Hello Expert
    How can I seach a program for smartform zxyz
    Eg VA01 enter the order no and all the relavent data
         and when enter the output will display the the smartform zxyz
    Thanks
    Monto

    Well Atish and Experts
    Thanks for your suggestion, I can see the program name also in smarform
    and clicking the function /bcdwb/sf00000053 when double click i can see my smartform name as FORM TYPE TDSFNAME VALUE 'Z_DELIVERY_NOTE',
    (Note: Z_delivery_note is a smartform)
    Now I have 2 logs for Quality Assurance , currently I can one logo .
    but management need only those log to be display with the condition of logo to be display when the order type = ZOR (Sales order)
           Sales organization = 'OMAN'
             Division = 11
               sales ofice = TWMB
    then the DNV logo should display
    esle
                SAI logo should display at the bottom
    So how can Write a condition to display the logo or is there any way
    regards
    Monto  
    FUNCTION /1BCDWB/SF00000053.
    ""Global interface:
    *"       IMPORTING
    *"             VALUE(ARCHIVE_INDEX) TYPE  TOA_DARA OPTIONAL
    *"             VALUE(ARCHIVE_INDEX_TAB) TYPE  TSFDARA OPTIONAL
    *"             VALUE(ARCHIVE_PARAMETERS) TYPE  ARC_PARAMS OPTIONAL
    *"             VALUE(CONTROL_PARAMETERS) TYPE  SSFCTRLOP OPTIONAL
    *"             VALUE(MAIL_APPL_OBJ) TYPE  SWOTOBJID OPTIONAL
    *"             VALUE(MAIL_RECIPIENT) TYPE  SWOTOBJID OPTIONAL
    *"             VALUE(MAIL_SENDER) TYPE  SWOTOBJID OPTIONAL
    *"             VALUE(OUTPUT_OPTIONS) TYPE  SSFCOMPOP OPTIONAL
    *"             VALUE(USER_SETTINGS) TYPE  TDBOOL DEFAULT 'X'
    *"             REFERENCE(IS_DLV_DELNOTE) TYPE  LEDLV_DELNOTE
    *"       EXPORTING
    *"             VALUE(DOCUMENT_OUTPUT_INFO) TYPE  SSFCRESPD
    *"             VALUE(JOB_OUTPUT_INFO) TYPE  SSFCRESCL
    *"             VALUE(JOB_OUTPUT_OPTIONS) TYPE  SSFCRESOP
    *"       EXCEPTIONS
    *"              FORMATTING_ERROR
    *"              INTERNAL_ERROR
    *"              SEND_ERROR
    *"              USER_CANCELED
    DATA: %INPUT     TYPE SSFCOMPIN,
          %RESULT_OP TYPE SSFCRESOP,
          %RESULT_PD TYPE SSFCRESPD,
          %RESULT_CL TYPE SSFCRESCL,
          %TABDEF    LIKE LINE OF %TABDEFS,
          %ARCTAB    TYPE TSFDARA,
          BEGIN OF %FULLNAME,
            FORM TYPE TDSFNAME VALUE 'Z_DELIVERY_NOTE',
            VARI TYPE TDVARIANT,
            ACTV TYPE TDBOOL VALUE 'X',
          END OF %FULLNAME.
    TYPES: T_XDF_ELEM(255)     TYPE C,
           T_XDF_ATTR(255)     TYPE C.
    DATA:  %IMPORT_PARAMETER   TYPE TABLE OF RSIMP WITH HEADER LINE,
           %CHANGING_PARAMETER TYPE TABLE OF RSCHA WITH HEADER LINE,
           %TABLES_PARAMETER   TYPE TABLE OF RSTBL WITH HEADER LINE,
           %EXPORT_PARAMETER   TYPE TABLE OF RSEXP WITH HEADER LINE,
           %EXCEPTION_LIST     TYPE TABLE OF RSEXC WITH HEADER LINE.
    DATA:  %XDF_TABLE          TYPE TSFIXML,
           %XDF_LENGTH         TYPE I.
    DATA:  %XDF_DOCUMENT       TYPE REF TO IF_IXML_DOCUMENT,
           %XDF_PARAMETER      TYPE REF TO IF_IXML_ELEMENT,
           %L_NAME             TYPE STRING,
           %L_VALUE            TYPE STRING,
           %L_OBJECT           TYPE STRING,
           %L_DATE             TYPE STRING,
           %L_TIME             TYPE STRING,
           %L_FLAT             TYPE C,
           %RC                 TYPE SY-SUBRC.
    FIELD-SYMBOLS: <%DATA_OBJECT> TYPE ANY.
    CLASS CL_IXML DEFINITION LOAD.
    CONSTANTS: %C_XDF_ROOT_ELEMENT TYPE T_XDF_ELEM VALUE 'XDF',
         %C_XDF_ATTR_TYPE        TYPE T_XDF_ATTR VALUE 'TYPE',
         %C_XDF_ATTR_TIMESTAMP   TYPE T_XDF_ATTR VALUE 'TIMESTAMP',
         %C_XDF_ATTR_OBJ         TYPE T_XDF_ATTR VALUE 'OBJECT'.
    DATA:  %XDF_FACTORY      TYPE REF TO IF_IXML,
           %XDF_ROOT_ELEMENT TYPE REF TO IF_IXML_ELEMENT.
    DATA:  %L_GETSTATE    TYPE DDTYPEGET,
           %L_TYPE        TYPE DDTYPEKIND,
           %L_TYPE_NAME   TYPE TYPENAME,
           %L_TYPE_CH     LIKE RS38L-IMPORT_TYP,
           %L_DDIC_OBJ    TYPE DDTYPES OCCURS 0 WITH HEADER LINE,
           %L_DD02L_STATE TYPE DD02L   OCCURS 0 WITH HEADER LINE,
           %L_DD04L_STATE TYPE DD04L   OCCURS 0 WITH HEADER LINE,
           %L_DD40L_STATE TYPE DD40L   OCCURS 0 WITH HEADER LINE,
           %L_XMLOUTPUT   TYPE SSFXMLOUT,
           %L_SFSY        TYPE SFSY.
    TYPE-POOLS: ABAP.
    DATA: %XDF2_IXML        TYPE REF TO IF_IXML,
          %XDF2_DOCUMENT    TYPE REF TO IF_IXML_DOCUMENT,
          %XDF2_SRC_OBJECTS TYPE ABAP_TRANS_SRCBIND_TAB,
          %XDF2_SRC_OBJECT  LIKE LINE OF %XDF2_SRC_OBJECTS.
    DEFINE XDF2_APPEND_SRC_OBJECT.
      %XDF2_SRC_OBJECT-NAME  = '&1'.
      TRANSLATE %XDF2_SRC_OBJECT-NAME TO UPPER CASE.
      GET REFERENCE OF &2 INTO %XDF2_SRC_OBJECT-VALUE.
      APPEND %XDF2_SRC_OBJECT TO %XDF2_SRC_OBJECTS.
    END-OF-DEFINITION.
    DEFINE XDF_GET_DDIC_INFO.
      CLEAR %L_DDIC_OBJ.
      CLEAR %L_DDIC_OBJ.
      IF NOT &2 IS INITIAL.
        %L_TYPE_NAME = &2.
      ELSEIF NOT &1-TYP IS INITIAL.
        %L_TYPE_NAME = &1-TYP.
      ELSEIF NOT &1-LINE_OF IS INITIAL.
        %L_TYPE_NAME = &1-LINE_OF.
      ELSEIF NOT &1-TABLE_OF IS INITIAL.
        %L_TYPE_NAME = &1-TABLE_OF.
      ELSE.
        CLEAR %L_TYPE_NAME.
      ENDIF.
      CALL FUNCTION 'DDIF_TYPEINFO_GET'
           EXPORTING TYPENAME = %L_TYPE_NAME
           IMPORTING TYPEKIND = %L_TYPE.
      %L_DDIC_OBJ-TYPENAME = %L_TYPE_NAME.
      %L_DDIC_OBJ-TYPEKIND = %L_TYPE.
      IF NOT %L_DDIC_OBJ IS INITIAL.
        COLLECT %L_DDIC_OBJ.
      ENDIF.
    END-OF-DEFINITION.
    DEFINE XDF_CREATE_DATA_STREAM.
      CLEAR: %L_OBJECT, %L_DATE, %L_TIME, %L_NAME, %L_TYPE_NAME,
             %L_VALUE.
      IF &3 = 'T'.
        IF NOT &2 IS INITIAL.
          %L_TYPE_NAME = &2.
        ELSEIF NOT &1-TYP IS INITIAL.
          %L_TYPE_NAME = &1-TYP.
        ENDIF.
        IF NOT %L_TYPE_NAME IS INITIAL.
          %L_TYPE_CH = %L_TYPE_NAME.
          CALL FUNCTION 'RS_TYPE_EXISTENCE_CHECK'
               EXPORTING
                 TYPE = %L_TYPE_CH
               IMPORTING
                 STRUCTURE_IS_FLAT = %L_FLAT
               EXCEPTIONS
                 OTHERS = 1.
        ENDIF.
        IF %L_FLAT NE 'X'.
          CONCATENATE &1-PARAMETER '[]' INTO %L_NAME.
        ELSE.
          %L_NAME = &1-PARAMETER.
        ENDIF.
      ELSE.
        %L_NAME = &1-PARAMETER.
      ENDIF.
      IF NOT &2 IS INITIAL.
        ASSIGN (%L_NAME) TO <%DATA_OBJECT>
               CASTING TYPE (&2).
        %L_TYPE_NAME = &2.
      ELSEIF NOT &1-TYP IS INITIAL.
        ASSIGN (%L_NAME) TO <%DATA_OBJECT>
               CASTING TYPE (&1-TYP).
        %L_TYPE_NAME = &1-TYP.
      ELSEIF NOT &1-LINE_OF IS INITIAL.
        ASSIGN (%L_NAME) TO <%DATA_OBJECT>.
        %L_TYPE_NAME = &1-LINE_OF.
      ELSEIF NOT &1-TABLE_OF IS INITIAL.
        ASSIGN (%L_NAME) TO <%DATA_OBJECT>.
        %L_TYPE_NAME = &1-TABLE_OF.
      ELSE.
        ASSIGN (%L_NAME) TO <%DATA_OBJECT>.
        CLEAR %L_TYPE_NAME.
      ENDIF.
      IF &3 EQ 'T'.
        %L_NAME = &1-PARAMETER.
      ENDIF.
      CALL FUNCTION 'SDIXML_DATA_TO_DOM'
           EXPORTING
                 NAME        = %L_NAME
                 DATAOBJECT  = <%DATA_OBJECT>
           IMPORTING
                 DATA_AS_DOM = %XDF_PARAMETER
           CHANGING
                 DOCUMENT    = %XDF_DOCUMENT
           EXCEPTIONS
                 OTHERS      = 1.
      %L_NAME  = %C_XDF_ATTR_TYPE.
      %L_VALUE = %L_TYPE_NAME.
      CALL METHOD %XDF_PARAMETER->SET_ATTRIBUTE
           EXPORTING NAME      = %L_NAME
                        VALUE     = %L_VALUE
           RECEIVING RVAL      = %RC.
      CLEAR %L_DDIC_OBJ.
      READ TABLE %L_DDIC_OBJ WITH KEY TYPENAME = %L_TYPE_NAME.
      CASE %L_DDIC_OBJ-TYPEKIND.
        WHEN 'S'.
          READ TABLE %L_DD02L_STATE WITH KEY TABNAME = &1-TYP.
          %L_DATE = %L_DD02L_STATE-AS4DATE.
          %L_TIME = %L_DD02L_STATE-AS4TIME.
          %L_OBJECT = 'TABL'.
        WHEN 'E'.        " data elements
          READ TABLE %L_DD04L_STATE WITH KEY ROLLNAME = &1-TYP.
          %L_DATE = %L_DD04L_STATE-AS4DATE.
          %L_TIME = %L_DD04L_STATE-AS4TIME.
          %L_OBJECT = 'DTEL'.
        WHEN 'L'.        " table types
          READ TABLE %L_DD40L_STATE WITH KEY TYPENAME = &1-TYP.
          %L_DATE = %L_DD40L_STATE-AS4DATE.
          %L_TIME = %L_DD40L_STATE-AS4TIME.
          %L_OBJECT = 'TTYP'.
        WHEN OTHERS.
          CLEAR: %L_DATE, %L_TIME, %L_OBJECT.
      ENDCASE.
      %L_NAME  = %C_XDF_ATTR_OBJ.
      CALL METHOD %XDF_PARAMETER->SET_ATTRIBUTE
           EXPORTING NAME      = %L_NAME
                     VALUE     = %L_OBJECT
           RECEIVING RVAL      = %RC.
      %L_NAME  = %C_XDF_ATTR_TIMESTAMP.
      CONCATENATE %L_DATE %L_TIME INTO %L_VALUE.
      CALL METHOD %XDF_PARAMETER->SET_ATTRIBUTE
           EXPORTING NAME      = %L_NAME
                     VALUE     = %L_VALUE
           RECEIVING RVAL      = %RC.
      CALL METHOD %XDF_ROOT_ELEMENT->APPEND_CHILD
           EXPORTING NEW_CHILD = %XDF_PARAMETER
           RECEIVING RVAL      = %RC.
      CHECK %RC = 0.
    END-OF-DEFINITION.
    CLEAR DOCUMENT_OUTPUT_INFO.
    CLEAR JOB_OUTPUT_INFO.
    CLEAR JOB_OUTPUT_OPTIONS.
    %L_SFSY = SFSY.
    CLEAR SFSY.
    SFSY-PAGE = %L_SFSY-PAGE.
    SFSY-FORMPAGES = %L_SFSY-FORMPAGES.
    SFSY-JOBPAGES = %L_SFSY-JOBPAGES.
    SFSY-XDF = %L_SFSY-XDF.
    SFSY-XDF2 = %L_SFSY-XDF2.
    CLEAR INTSFSY.
    IF CONTROL_PARAMETERS-NO_OPEN = SPACE.
       CALL FUNCTION 'SSF_CREATE_COMPOSER_INPUT'
            EXPORTING
                 ARCHIVE_PARAMETERS = ARCHIVE_PARAMETERS
                 USER_SETTINGS      = USER_SETTINGS
                 MAIL_SENDER        = MAIL_SENDER
                 MAIL_RECIPIENT     = MAIL_RECIPIENT
                 MAIL_APPL_OBJ      = MAIL_APPL_OBJ
                 OUTPUT_OPTIONS     = OUTPUT_OPTIONS
                 CONTROL_PARAMETERS = CONTROL_PARAMETERS
            IMPORTING
                 INPUT              = %INPUT.
      IF OUTPUT_OPTIONS-XSFCMODE = SPACE.
        %INPUT-XSF        = ' '.
        %INPUT-XSFOUTMODE = ' '.
        %INPUT-XSFOUTDEV  = ' '.
        %INPUT-XSFACTION  = ' '.
        %INPUT-XSFFORMAT  = ' '.
      ENDIF.
      CALL FUNCTION 'SSFCOMP_OPEN'
           EXPORTING  INPUT  = %INPUT
           IMPORTING  RESULT = %RESULT_OP
           EXCEPTIONS OTHERS = 1.
      IF SY-SUBRC <> 0.
        %VARIANT = SPACE.
        PERFORM %RAISE.
      ENDIF.
      JOB_OUTPUT_OPTIONS = %RESULT_OP.
    ENDIF.
    IF SFSY-XDF = 'X'.
      CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE'
           EXPORTING
                FUNCNAME           = '/1BCDWB/SF00000053'
                INACTIVE_VERSION   = SPACE
           TABLES
                IMPORT_PARAMETER   = %IMPORT_PARAMETER
                CHANGING_PARAMETER = %CHANGING_PARAMETER
                TABLES_PARAMETER   = %TABLES_PARAMETER
                EXPORT_PARAMETER   = %EXPORT_PARAMETER
                EXCEPTION_LIST     = %EXCEPTION_LIST
           EXCEPTIONS
                OTHERS             = 1.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      %L_GETSTATE-TBHD = %L_GETSTATE-TBFD = %L_GETSTATE-DTEL = 'X'.
      %L_GETSTATE-TTHD = %L_GETSTATE-TTFD = 'X'.
      LOOP AT %IMPORT_PARAMETER.
        XDF_GET_DDIC_INFO %IMPORT_PARAMETER
                          %IMPORT_PARAMETER-DBFIELD.
      ENDLOOP.
      LOOP AT %CHANGING_PARAMETER.
        XDF_GET_DDIC_INFO %CHANGING_PARAMETER
                          %CHANGING_PARAMETER-DBFIELD.
      ENDLOOP.
      LOOP AT %TABLES_PARAMETER.
        XDF_GET_DDIC_INFO %TABLES_PARAMETER
                          %TABLES_PARAMETER-DBSTRUCT.
      ENDLOOP.
      CALL FUNCTION 'DD_TYPEINFO_GET'
           EXPORTING  GETSTATE    = %L_GETSTATE
           TABLES     DDTYPES_TAB = %L_DDIC_OBJ[]
                      DD02L_TAB   = %L_DD02L_STATE[]
                      DD04L_TAB   = %L_DD04L_STATE[]
                      DD40L_TAB   = %L_DD40L_STATE[].
      %XDF_FACTORY = CL_IXML=>CREATE( ).
      %XDF_DOCUMENT = %XDF_FACTORY->CREATE_DOCUMENT( ).
      %L_NAME = %C_XDF_ROOT_ELEMENT.
      %XDF_ROOT_ELEMENT
           = %XDF_DOCUMENT->CREATE_ELEMENT( NAME = %L_NAME ).
      CALL METHOD %XDF_DOCUMENT->APPEND_CHILD
           EXPORTING  NEW_CHILD  = %XDF_ROOT_ELEMENT
           RECEIVING  RVAL       = %RC.
      CHECK %RC = 0.
      LOOP AT %IMPORT_PARAMETER.
        XDF_CREATE_DATA_STREAM %IMPORT_PARAMETER
                               %IMPORT_PARAMETER-DBFIELD 'I'.
      ENDLOOP.
      LOOP AT %CHANGING_PARAMETER.
        XDF_CREATE_DATA_STREAM %CHANGING_PARAMETER
                               %CHANGING_PARAMETER-DBFIELD 'C'.
      ENDLOOP.
      LOOP AT %TABLES_PARAMETER.
        XDF_CREATE_DATA_STREAM %TABLES_PARAMETER
                               %TABLES_PARAMETER-DBSTRUCT 'T'.
      ENDLOOP.
      CALL FUNCTION 'SSFCOMP_XDF_OUTPUT'
           EXPORTING  DOCUMENT = %XDF_DOCUMENT
           EXCEPTIONS OTHERS   = 1.
    ELSEIF SFSY-XDF2 = 'X'.
      %XDF2_IXML     = CL_IXML=>CREATE( ).
      %XDF2_DOCUMENT = %XDF2_IXML->CREATE_DOCUMENT( ).
      XDF2_APPEND_SRC_OBJECT ARCHIVE_INDEX ARCHIVE_INDEX.
      XDF2_APPEND_SRC_OBJECT ARCHIVE_INDEX_TAB ARCHIVE_INDEX_TAB.
      XDF2_APPEND_SRC_OBJECT ARCHIVE_PARAMETERS ARCHIVE_PARAMETERS.
      XDF2_APPEND_SRC_OBJECT CONTROL_PARAMETERS CONTROL_PARAMETERS.
      XDF2_APPEND_SRC_OBJECT MAIL_APPL_OBJ MAIL_APPL_OBJ.
      XDF2_APPEND_SRC_OBJECT MAIL_RECIPIENT MAIL_RECIPIENT.
      XDF2_APPEND_SRC_OBJECT MAIL_SENDER MAIL_SENDER.
      XDF2_APPEND_SRC_OBJECT OUTPUT_OPTIONS OUTPUT_OPTIONS.
      XDF2_APPEND_SRC_OBJECT USER_SETTINGS USER_SETTINGS.
      XDF2_APPEND_SRC_OBJECT IS_DLV_DELNOTE IS_DLV_DELNOTE.
      XDF2_APPEND_SRC_OBJECT JOB_OUTPUT_INFO JOB_OUTPUT_INFO.
      CALL TRANSFORMATION ID
           SOURCE (%XDF2_SRC_OBJECTS)
           RESULT XML %XDF2_DOCUMENT.
      CALL FUNCTION 'SSFCOMP_XDF2_OUTPUT'
        EXPORTING
          DOCUMENT = %XDF2_DOCUMENT
        EXCEPTIONS
          OTHERS   = 1.
    ELSE.
      %FULLNAME-VARI = %VARIANT.
      %VARIANT = SPACE.
      IF %HEADER IS INITIAL.
        IMPORT HEADER   TO %HEADER
               REFTAB   TO %REFTAB
               DOCSTRUC TO %DOCSTRUC
               TABDEF   TO %TABDEFS
               FROM DATABASE STXFCONTR(SF) ID %FULLNAME.
        IF SY-SUBRC <> 0.
          CALL FUNCTION 'SSFRT_SET_ERROR_PARAMETERS'
               EXPORTING I_FORM      = 'Z_DELIVERY_NOTE'.
          CALL FUNCTION 'SSFRT_WRITE_ERROR'
               EXPORTING I_ERRNUMBER = SSF_ERR_NO_RUNTIME_OBJECT
                         I_MSGID     = 'SSFCOMPOSER'
                         I_MSGNO     = '002'
                         I_MSGV1     = 'Z_DELIVERY_NOTE'.
          PERFORM %RAISE.
        ENDIF.
        SELECT SINGLE SDATE STIME FROM D010SINF
          INTO (%HEADER-SDATE, %HEADER-STIME)
          WHERE PROG    = '/1BCDWB/SAPLSF00000053'
            AND R3STATE = 'A'.
        IF SY-SUBRC <> 0.
          CLEAR: %HEADER-SDATE,
                 %HEADER-STIME.
        ENDIF.
      ENDIF.
      LOOP AT %TABDEFS INTO %TABDEF.
        CALL FUNCTION 'SSFCOMP_TABLE_DEFINITION'
             EXPORTING  CPI    = %HEADER-CPI
                        LPI    = %HEADER-LPI
             CHANGING   TABDEF = %TABDEF
             EXCEPTIONS OTHERS = 1.
        IF SY-SUBRC <> 0. PERFORM %RAISE. ENDIF.
      ENDLOOP.
      CALL FUNCTION 'SSFRT_SET_REFERENCES'
           EXPORTING I_REFTAB = %REFTAB .
      CALL FUNCTION 'SSFRT_SET_LANGUAGES'
           EXPORTING I_CONTROL_PARAMETERS = CONTROL_PARAMETERS
                     I_MASTERLANGUAGE     = 'E'
                     I_THRULANG           = ' '
                     I_INSTALL_LANG       = ' '
           IMPORTING O_LANGUAGES          = %LANGUAGES.
      %HEADER-LANGU = %LANGUAGES-LANGU1.
      %WEXIT = SPACE.
      PERFORM %GLOBAL_CLEAR.
      PERFORM %GLOBAL_INIT.
      CLEAR %ARCTAB.
      IF ARCHIVE_INDEX_TAB[] IS INITIAL.
        APPEND ARCHIVE_INDEX TO %ARCTAB.
      ELSE.
        %ARCTAB = ARCHIVE_INDEX_TAB.
      ENDIF.
      CALL FUNCTION 'SSFCOMP_PROCESS_DOCUMENT'
           EXPORTING  HEADER           = %HEADER
                      DOCSTRUC         = %DOCSTRUC
                      STARTPAGE        = CONTROL_PARAMETERS-STARTPAGE
                      ARCHIV_INDEX_TAB = %ARCTAB
                      MAIL_APPL_OBJECT = MAIL_APPL_OBJ
           IMPORTING  RESULT           = %RESULT_PD
           EXCEPTIONS OTHERS           = 1.
      IF SY-SUBRC <> 0. PERFORM %RAISE. ENDIF.
      DOCUMENT_OUTPUT_INFO = %RESULT_PD.
    ENDIF.
    IF CONTROL_PARAMETERS-NO_CLOSE = SPACE.
      CALL FUNCTION 'SSFCOMP_CLOSE'
           IMPORTING  RESULT = %RESULT_CL
           EXCEPTIONS OTHERS = 1.
      IF SY-SUBRC <> 0. PERFORM %RAISE. ENDIF.
      JOB_OUTPUT_INFO = %RESULT_CL.
    ENDIF.
    ENDFUNCTION.

  • Is there a way to get lightroom to search the computer for catalogs like aperture does?

    Is there a way to get lightroom to search the computer for catalogs like aperture does? I've switched over from Aperture to Lightroom, and i liked how in Aperture when i went to open "other library" it would basically scan all connected drives for them, and show me when last opened and what version. Is there a way to do this with Lightroom, either in program or by a third party app?

    The user interface is on a level of elementary PC software
    something I have deteced till now
    no free moving workspace windows
    no search function for the whole catalog
    no support of mpg files in the archive
    no chromatic appararture correction
    second screen sometimes gets lost, when moving between screens
    no automatic creation of collection ( very risky direct interfacing with the original file system )
    wrong counting of objects in catalog folder when creating virtuel copies
    What worked good is the import of the APERTURE Archive ( 40000 objects ) took me one night and its there with the above obsticles!!! I am using just three days and I have to say
    not user friendly
    not workflow supporting
    risky user interfacing with masters
    As JimHess stated, there is no risk working with the masters.
    Chromatic aberation correction is available in Lightroom, searching the entire catalog is available in Lightroom.
    With regards to your other comments, the idea that Lightroom should work the same (or very similar) to Aperture is one that you should remove from your thoughts. It will only get you into trouble. Lightroom is not Aperture and will not work the same, and has different underlying principles, and so its pointless to think you will be able to do everything the same way you did it in Aperture. You need to be open to Lightroom's features, and Lightroom's way of doing things. I agree with JimHess that it takes most people a while to learn Lightroom's way of doing things, but your patience will be rewarded.

  • Bluetooth Driver for dell(Inspiron N5110(ST: 3v82np1 ) is still not working well.

    Hi,
    I have tried installing "Dell Wireless 1701
    802.11 b/g/n, Bluetooth v3.0+HS Driver "
    But I saw neither wireless nor Bluetooth was defined.
    As  the drivers listed below are only  the driver for wireless and bluetooth, I almost tried all of them, except the last three.
    File TitleImportanceRelease DateVersionActions
    Intel Centrino Wireless-N 1030 WiFi Driver 
    (Driver) 
    Other Formats
    Description
    Intel 6230/N1030/N1000 WiFi Driver for win7 64-bit This package provides the driver for the Intel Centrino Wireless-N 1030 WiFi Driver and imore…
    Intel Centrino Wireless-N 1030/Advanced-N 6230
    Bluetooth Adapter Driver 
    (Driver)
    Description
    This package provides the Intel Centrino Wireless-N 1030/Advanced-N 6230 Bluetooth Adapter Driver and is supported on Inspiron N5110 and Vosmore…
    Dell Wireless 1701 802.11 b/g/n, Bluetooth v3.0+HS
    Driver 
    (Driver)
    Description
    This package provides the Dell Wireless 1701 802.11 b/g/n, Bluetooth v3.0+HS Driver and is supported on Inspiron N5110 and Vostro Notebook 3more…
    Dell Wireless 1702 WiFi + Bluetooth Driver 
    (Driver)
    s
    Description
    This package provides the Dell Wireless 1702 802.11 b/g/n, Bluetooth 3.0+HS Driver and is supported on Inspiron and Vostro Notebook models tmore…
    Intel Centrino Wireless-N 1000, Centrino Advanced-N
    6230, Centrino Wireless-N 1030, v.14.2.0.10, A01 
    (Driver)
    Recommended
    Description
    This package provides the Intel Centrino Wireless-N 1000/1030, Advanced-N 6230 Driver and is supported on Inspiron N5110 and Vostro Notebook more…
    Intel Centrino Advanced-N 6230/Wireless-N 1030
    Bluetooth Adapter Driver 
    (Driver)
    Description
    This package provides the Intel Centrino Advanced-N 6230/Wireless-N 1030 Bluetooth Adapter Driver and is supported on Inspiron N5110 and Vosmore…
    Add to My Download List
    Dell Wireless WLAN 1502 Half Mini-Card Driver 
    (Driver)
    Description
    This package provides the driver for Dell Wireless WLAN 1502 Half Mini-Card and is supported on Inspiron Notebook and Vostro Notebook modelmore
    Intel WiMax Link 6150 Driver 
    (Driver)
    Description
    This package provides the Intel WiMax Link 6150 Driver and is supported on Inspirion and XPS Notebook models that are running the following
    Realtek RTL8111E-VB Gigabit and RTL8105E-VB 10/100
    Ethernet Controller Driver 
    (Driver)
    Description
    This package provides the Realtek RTL8111E-VB Gigabit and RTL8105E-VB 10/100 Ethernet Controller Driver and is supported on Inspiron N5110 amore…
    I had to install Dell Wireless 1702 WiFi +
    Bluetooth Driver
    The wireless adapter was defined by this driver, however, the Bluetooth still has an exclamation mark in front of it, and when the Dell WLAN and Bluetooth client installation finished, a pop up message said that Windows couldn't install the device
    well, although there was a folder added in documents folder named 'Bluetooth Folder'
    Yes, the Bluetooth was named with 'Generic Bluetooth adapter' before installing 'Driver above'. However, after installing the driver above, the Bluetooth adapter named with ' Dell wireless 1702 Bluetooth v3.0". But as you see it's
    still not working will.
    The sceen shot shows the device manger before installing  Dell
    Wireless 1702 WiFi + Bluetooth Driver
    These screen shots shows the device manger after installing  Dell
    Wireless 1702 WiFi + Bluetooth Driver
    I've lit windows detect the operating program for this device on the internet, it said "Windows has detected that the operating  program of this device is up to date. As this screenshot shows.
    What should I do because nothing lift to try? If you have a look at the ninth drivers in my previous message, you will see that no other drivers for Bluetooth lift.
    Also, I have tried  to install Intel
    Centrino Wireless-N 1030 WiFi Driver 
    But I have been told that "the installation is blocked', This package of installation cannot be installed on your system' I don't know what this
    means, is it because Dell Wireless 1702 WiFi +
    Bluetooth Driver is being installed
    Could you please take some of your preciout time out to read carefully my points below to finish this problem?
    first:
    Yes, if you had a look at my first post, you would have seen that I really have downloaded and installed the drivers suitable for bluetooth, which was only Dell
    Wireless 1702 WiFi + Bluetooth Driver, which made the bluetooth recognized by Windows 7(64Bit). However, the bluetooth in the device manager still has an exclamation mark as it is shown in the device manager.
    I don't have any other drviers which can do more than the what Dell
    Wireless 1702 WiFi + Bluetooth Driver did because I have tried all the drivers listed under 'Network', exept the what are for Etherent.
    Yes, when I have tried adding the bluetooth between two laptops(Mohammad and Nasreen).  the bluetooth was added for both laptops as you see in these screenshots below:
    The Bluetooth devices of Nasreen's laptop whose bluetooth is having some problems in Device mangage.
    The Bluetooth devices of Mohammad's laptop  whosse Bluetooh is defined well in device manager.
    But there is still problem in the device managre as shown in the screenshot listed before.
    Second: (Important) That when I want to send files or recieving between two bluetooth added in either laptop, I could send them. Also, when I open the Mohammad's bluetooth added in Nansreen's laptop( screenshot
    below), I can show what is inside it.
     However, when I open the the Nasreen's bluetooth addd in Mohammad's laptop, I noticed  no reponse at all because as you see that disconnected is written in fornt "Nasreen-Pc" as this screenshot: 
    Although sometimes Nasreen-Pc gets connected as screenshot below, but I am still not able to open the Bluetooth folder of Nasreen-pc from Mohammad-pc. When trying to do that, no response is there.
    In other times, Nasreen-pc gets connected for a while, but it comes back disconnected.
    Third:: I noticed that the name of Laptop whose Bluetooth was added listed in 'My computer' for the laptop whose Bluetooth is having some problems in the device manager.(First Screen shot below)  However,
    the name of the laptop whose Bluetooth is having problems wasn't listed on other laptop's "my computer"(Second Screen shot below)
    Finally: : when I clicked "right-click" on "Nasreen-PC" and then clicking on "detecting and troublshooting issues", I found that windows informed me that :
    But which driver should I reinstall because I have already installed the Dell
    Wireless 1702 WiFi + Bluetooth Driver almost twice?
    A man should convert his anger and sadness into strength to continue living in this life.

    Certain driver packages contain drivers from some of the essential services only and for additional services, separate drivers must be installed. Additionally, the service is installed only if a compatible device is installed (or paired).
    Therefore, you are seeing the error.
    If you are using the Bluetooth L2CAP Interface and Bluetooth Remote Control services and not able to install the services, you can try unpairing the device, restart the PC, pair the device and then check. If that too fails, you need to install a suitable
    driver, sometimes even other OEM drivers solve the issue. You can Bing/Google about this. You can also contact Dell Support for more information.
    Balaji Kundalam
    Thanks a lot,
    I really didn't understand what you mean with in your first part the service is installed only if a compatible device is installed (or paired).
    The Bluetooth is integrated with
    the laptop, then  where other services will come from, all service are related to Bluetooth.
    If there are some additional services not related to Bluetooth,
    then how can I either let them functioning well or disable them in order to get rid of the yellow exclamation mark
    on the name of my laptop in the Device and printers.
    Also, I really have installed a
    BCBT7(Broadcom Bluetooth) for HP which really defined the same Bluetooth issue,
    Device manager after installing the entire setup of driver BCBT7(Broadcom Bluetooth) on HP laptop
    but  when trying to install the same
     BCBT7(Broadcom Bluetooth)  on Dell,  I faced the error below, although there is an icon for Bluetooth in
    the system tray. Also, the Bluetooth is integrated as
    you have seen in the device manager. 
    You didn't answer me: Third:: I noticed that the name of Laptop whose Bluetooth was added listed in 'My computer' for the laptop whose
    Bluetooth is having some problems in the device manager.(First Screen shot below)  However, the name of the laptop whose Bluetooth is having problems wasn't listed on other laptop's "my computer"(Second Screen shot below)
    A man should convert his anger and sadness into strength to continue living in this life.

  • Standard print program for fi invoice smartform printing

    Hi friend,
    Is there any standard print program available for printing FI related invoice .
    I want print program for printing smartforms.
    I want to know any method for searching the standard print program for printing smartform in Fi module.
    Thanks & Regards,
    Sathish

    Hi,
    FI related Forms will be configure in SPRO.
    Goto SPRO and FI related applivcation.
    There you will find the related forms and programs.

  • Standard program for unbilled  sales orders and purchase order items

    Can anyone advice,  is there any standard program which gives the unbilled sales order and purchase order items.

    Hi,
    Use the T.Code VA05/VA05n for list of all the sales order s which are open.
    Take T.Code:VA05N
    Select the option "Open Sales Orders".
    Execute.
    It will give you all the orders which are open.
    The standard program for this is:"SD_SALES_ORDERS_VIEW".
    The same you can also get by using the T.Code VF04.
    In this if your scenario is "Order related",then select the option "Order related".
    Else if it is "Delivery related",then select "Delivery-related".
    Execute.
    The standatd program for this is:"SDBILLDL".
    T.Code:VF05/VF05n is for list of billing documents.
    Regards,
    Krishna.
    Note:Pls search the forum.

  • Help me to search on calendar for more than one year

    I desparately need to be able to search on calendar for more than one year., which was taken away on the new operating system.  I have kept personal memories of my husband on there in the notes sections on days when we did things. ( I have also kept all kinds of personal notes, like doctor records or conversations, in the notes of events/dates.) it is a huge loss for me not to be able to search my calendar for more than one year. Is there any way I can do this?

    Jens,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Searching of programs/includes/tables based on string

    Hi Experts,
    I have a requirement, is there any program or transaction code to search programs/includes/tables based on the fields
    (Eg. company code, sales organization, country, currency) in the selection screen or any other method. 
    Please suggest, if any solution.
    Thanks,
    GR

    Hi,
    You will not find a program for this requirement & that too based on a field.
    I would suggest if you have the package then SE80 will be the best transaction which will give you all the objects like Tables/programs/FM/Enhancement that come under a package.
    Also if you do a whereused list on fields like Company code, Sales organization, Country, you will end up getting a massive list of objects where it is used.
    Regards
    Abhii

  • Steps for creation of search help exit for a search help

    Hi,
    I have created a search help. I need to create a search help exit for this search help.
    Please let me know how to create a search help exit as well as how to link it to my search help.

    1)Copy the FM F4IF_SHLP_EXIT_EXAMPLE to write your own FM. (check the documentation and coding of FM F4IF_SHLP_EXIT_EXAMPLE).
    2)write your code depending upon the functionality you want.
    3)attach the FM in search help through SE11 in "search help exit" field.
    A search help exit is a function module for making the input help process described by the search help more flexible than possible with the standard version.
    This function module must have the same interface as function module F4IF_SHLP_EXIT_EXAMPLE. The search help exit may also have further optional parameters (in particular any EXPORTING parameters).
    A search help exit is called at certain timepoints in the input help process.
    Note: The source text and long documentation of the above-specified function module (including the long documentation about the parameters) contain information about using search help exits.
    Function modules are provided in the function library for operations that are frequently executed in search help exits. The names of these function modules begin with the prefix F4UT_. These function modules can either be used directly as search help exits or used within other search help exits. You can find precise instructions for use in the long documentation for the corresponding function module.
    This module has been created as an example for the interface and design of Search help exits in Search help.
    All the interface parameters defined here are mandatory for a function module to be used as a search help exit, because the calling program does not know which parameters are actually used internally.
    A search help exit is called repeatedly in connection with several events during the F4 process. The relevant step of the process is passed on in the CALLCONTROL step. If the module is intended to perform only a few modifications before the step, CALLCONTROL-STEP should remain unchanged.
    However, if the step is performed completely by the module, the following step must be returned in CALLCONTROL-STEP.
    For more detailed information please refer to the documentation describing the concept of the search help exit.
    The module must react with an immediate EXIT to all steps that it does not know or does not want to handle.

Maybe you are looking for

  • How to allow multiple-session changes to fields in a PDF using Reader 7

    Good morning We used Adobe LiveCycle Designer ES 8.2 to create a seminar registration form that people can download from our website. The idea is they fill it in and email it back as an attachment. There are some browser plug-in issues - e.g. in Inte

  • Can't get SPDIF out using my Intel Mini

    I want to connect my mini to a 3.5mm jack to phono adaptor connected to a digital coxial cable connected to my DAC (which then outputs to an amp). The problem is when I connect my 3.5mm jack to phono adaptor to my mini's sound socket, it doesn't reco

  • 7520 EWS NOT DISPLAYING ON MULTIPLE BROWSERS

    We're trying to configure a static IP for our brand new 7520, to resolve firewall issues. We've carefully followed instructions, and the EWS will not display for our current printer IP. I see other people are experiencing the exact same difficulty. W

  • MC46 not getting accurate information

    Dear All, My client  needs to view when was the last consumption. However MC46 is not giving me accurate information. It shows (no consumption) Maybe it is because some movement types are not catered by the report. Is it possible? I have new customiz

  • Transfering music off the memory card to play list...

    hi can anyone help i've not long had my n95 i bought a memory card for it the other day, today i put some music on the memory card then put the card back in the phone, i can find the music its in tools : file mgr then move it to memory card and its a