Function to get operation name

please let me know how we will get operation name by using function in the BPEL

Hi,
Have a look into the following link, there is no "operation name"... But there's composite name and application name that may be useful for you...
http://docs.oracle.com/cd/E23943_01/dev.1111/e10224/bp_appx_functs.htm#CJACABGA
Cheers,
Vlad

Similar Messages

  • Is there any function to get the name of the days?

    Hi,
    I'm using oracle 10.2.0.1.0
    Is there any function to get the days of the week?
    like i need to get sunday,monday,tuesday.....saturday.
    I know i can use union and select the name from dual one by one.
    But just want to know whether there is any other way.
    I need to show the 7 days in a poplist in my form, thats the requirement
    Thanks

    David_Aldridge wrote:
    BluShadow wrote:
    Note: you may want to include "fm" in the format mask, otherwise the name of the day is padded with spaces:
    SQL> ed
    Wrote file afiedt.buf
    1  select replace(to_char(dt,'Day'),' ','*') as fmt1
    2        ,length(to_char(dt,'Day')) as length_fmt1
    3        ,replace(to_char(dt,'fmDay'),' ','*') as fmt2
    4        ,length(to_char(dt,'fmDay')) as length_fmt2
    5  from (select TRUNC(SYSDATE ,'DAY')+Level-1 dt
    6        from   dual
    7        connect by Level<8
    8*      )
    SQL> /
    FMT1      LENGTH_FMT1 FMT2      LENGTH_FMT2
    Monday***           9 Monday              6
    Tuesday**           9 Tuesday             7
    Wednesday           9 Wednesday           9
    Thursday*           9 Thursday            8
    Friday***           9 Friday              6
    Saturday*           9 Saturday            8
    Sunday***           9 Sunday              6
    7 rows selected.
    SQL>
    I think you should use a pl/sql function for this.
    Nah ... just joking.
    I'd be tempted to just use a union all statement to return the seven literals. People will look at it and know exactly what it does.Yeah, agreed, I was just demonstrating that the format mask of a to_char(..., 'Day') pads with spaces, which seems to have been missed in the above answers. ;)

  • Function to get Package Name

    Is there an ODI function that I can call in a package step that will return the name of the current running Package?
    Thanks in Advance,
    Kevin

    Hi,
    Unfortunatelly not, unless a access to the work rep is done..
    An option is send the value (parant scenario name) to the child scenario as parameter.
    Make sense?

  • DATE function to get name of day for a Date given?

    hi guys,
    can anyone tell me what is the DATE function to get the name of day for a date given
    (12/dec/2004)---returns SUNDAY

    Hi peter
    Your Query will return an error.
    SQL> select to_char(to_date('12/dec/2004', 'mm/mon/yyyy'), 'DAY')from dual;
    select to_char(to_date('12/dec/2004', 'mm/mon/yyyy'), 'DAY')from dual
    ERROR at line 1:
    ORA-01816: month may only be specified once.
    month is specified twice.
    select to_char(to_date('12/dec/2004', 'dd/mon/yyyy'), 'DAY')from dual;
    Regards
    Sasidhar.P

  • How to Get Package Name While Running

    Hi
    i want to load Package Name to Table.
    So any idea about ODI Ref Function to get Package Name.

    Hi Nagarjuna,
    You can get package name by doing following steps, as per my knowledge, scenario name and package name both are same in ODI (while creating scenario for package).
    by the time you can retrieve scenario name as package name using below select query with selecting Work Repository schema in ODI variable
    QUERY:
    select SESS_NAME
    from <%=snpRef.getObjectName("L","SNP_SESSION","D")%>
    where SESS_NO = <%=snpRef.getSession("SESS_NO")%>
    Steps:
    1) create a project variable as Get_Package_Name and Data type as Alphanumeric, in Refreshing tab, type above select query and select work repository schema in schema (eg: create WorkRep logical schema in topology manager)
    2) Add Get_Package_Name variable with refresh in package (before interface step)
    3) Generate Scenario for package with same package name with version 001
    When you execute the scenario you can retrieve the package name in Get_Package_Name odi variaable
    Hope this may helps you
    Regards,
    phanikanth

  • Any Function module or BAPIs are available to get scheme name for the inter

    I have internal order no value in table  AUFK-AUFNR ,  and the internal order corresponding Scheme value is available in IMPR-PRNAM . Now I want to inner join both the tables to extract the data , but there is no common field . Is there any Function module or BAPIs are available to get scheme name for the internal orders?

    look at DB-VIEW  "V_IVP_OR".
    Regards,
    Laurent

  • Why can I not use the channel name, which is obtained from the function of DAQmx Task, as the input of the channel name for the function of Get Channel Information of DAQ?

    Why can I not use the channel name, which is obtained from the function of DAQmx Task, as the input of the channel name for the function of Get Channel Information of DAQ?

    Not a lot of details here, but my guess is this isn't working for you because you are wiring in the task to the Active Channels Property and not the actual Channel Name. I have attatched a screenshot of what I believe you are trying to do. The Task has 2 channels in it, so I need to index off one of the channels and wire it into the active channels input of the Channel Property node. Then I can read information about that channel
    Attachments:
    channel_name.JPG ‏69 KB

  • Function to get all the months name of a year from dual

    HI GURUS
    Is there any function to get all the months name of a year from dual
    thanks in advance

    What about this --
    satyaki>
    satyaki>select months_name
      2  from (
      3         select to_char(add_months(trunc(sysdate,'YEAR'),rownum-1),'MONTH') months_name
      4         from dual
      5         connect by rownum<=12
      6       );
    MONTHS_NAME
    JANUARY
    FEBRUARY
    MARCH
    APRIL
    MAY
    JUNE
    JULY
    AUGUST
    SEPTEMBER
    OCTOBER
    NOVEMBER
    MONTHS_NAME
    DECEMBER
    12 rows selected.
    satyaki>Regards.
    Satyaki De.

  • How tio use like operator in textitem to get the name

    Oracle forms6i
    Hai All
    I have created an form to create an hierarchy list. I that I had an Text_item how can i use like operator to get the name to select. which trigger i need to use. when i select the name i need to get his employee code and other details
    Thanks In Advance
    Srikkanth.M

    A is the head of Dept 10 and three person are under A namelyHow will you know that B, C and D are under A is there any parent child relationship between Leader and Employee code? If yes, Then you can create the relationship between blocks no need to set where_clause programatically. So, relationship can be like...
    leader_block.emp_code = emp_block.leader_code
    AND leader_blokc.dep_code = emp_block.dep_codeSo, when you will query data in LEADER block it will show employees which are under LEADER which you queried in LEADER block.
    Or if there is no relationship then how will you know that which employee under which leader?
    b 002 10 1
    c 003 10 1
    d 004 10 1
    When i enter the name of head corresponding other members in the department will need to display in the
    Tabular format Or if you want to query the records only for department relation. Then as you said you create two blocks then create create the relationship using dep_code between those blocks.
    like...
    leader.dep_code = emp_block.dep_code-Ammad

  • How to get the name of a duplicated control or created control and add a callback to it

    Hi All,
    Depending on how many input points I need, I am duplicating a numeric or string input with the DuplicateCtrl function. My question is, how do I get the name and id of the control that was just created, and how can i assign a callback to it? Alternately, would it be better to create a fresh ctrl instead of duplicating?
    Thanks in advance!
    Solved!
    Go to Solution.

    Hi TurboMetrologist,
    why are you trying to get the control constant name? Keep in mind that you cannot use that name to address the control; control names are actually simply macros in the include file associated to the UIR, that is, the compiler preprocesses the code and wherever it finds PANEL_CONTROL names substitutes the corresponding numeric value as parameters to the functions (and consequently 'control' parameter is an int and not a char*)
    That is why NewCtrl () or DuplicateCtrl () functions return a control ID: it is the handle to the new object, our only way to manipulate it. You will need to store this handle into a non-volatile memory so that you can access it durng program life.
    Additionally, there are other ways to assign some particular meaning to a control than swiching on the control constant name. You could for example use the callbackData parameter to differentiate between different copies of a control.
    Let me explain with an example. You told that you need several inputs (dynamically created as you don't know in advance how many of them to use); a clean solution could be to:
    Design a master copy of one control in the UIR editor, where it is easy to customize it; assign also a callback function, if it has to be common to all copies of the control
    Programmatically assign a callbackData value to that control, e.g. SetCtrlAttribute (..., ..., ATTR_CALLBACK_DATA, (void *)1);
    Duplicate the control and then assign a different callbackData
    for (i = 2; i < 5; i++) {
       handle = DuplicateCtrl (...);
       SetCtrlAttribute (..., handle, ATTR_CALLBACK_DATA, (void *)i);
    By operating this way, every time the control callback is fired by any control it will receive the assigned callbackData, and you will be able to differentiate your code by a simple switch:
    switch ((int)callbackData) {
       case 1:    // The master control
          break;
       case 2:    // The first duplicated control
          break;
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Problems getting Operations on Device Mobile

    Hi!
    Can anyone help me with the following problem ???
    We do not get any operation on Orders and notifications on a Device Mobile.
    Thanks you
    ========================================
    Have you done the configuration for the operations in SPRO? In the moment the order gets to the device, the operation should come down as well - at least this is the case in my backend system here. Well, but there is a configuration necessary to send this data at all: Go to SPRO and digg down to MAM setup.
    Open the Point "Determine Order Processing". Select the Order Profile you use on the right side and then select on the left page:
    OrderTypeProfile -> OrderTypeDetail
    The screen opens and gives you some ticks. Check if the tick for "Add Op(eration)" is set. I guess this is not the case in your setup.
    Hope this helps! If not - well, then I need to check further from here. But this was all I did in that system to get operations down to the device - at least that was all I remember.
    Regards,
    Oliver
    ========================================
    Hi Oliver!
    We did follow your recommendation but we still can not see any information on the PDA.
    Best Regards,
    =====================================
    Hi Xiamora,
    well - this is strange!
    If you run  the getdetail hander for MAM001, what does it tell you?
    Regards,
    Oliver
    =======================================
    Hi! Oliver
    I did run SE37 --> MAM25_001_GETDETAIL.
    I did type  USER working on the PDA
    I did type  order on the PDA and I can see the all operations of this order witf the GETDETAIL fucntion.
    What should I check in addition ?
    Thank you very much
    Xiomara

    Hi Xiamora,
    well, the problem is the following: data is missing..... Well, you ask me now what this answer is for, cause you already know that you have no operations, but the problem is not the operation as such:
    Operation is send down in MAM001Item070 if I am correct. From there we have a link to MAM030, MAM031 and MAM010. So if your Operation does not show up, please check first if the related Notification is on the device. Furthermore please check if the Functional Location and Equipment is on the device as well. I expect that one or more of this is missing. For an initial test I would create an order with operations that do not link any deeper. If these coe down immediately we know that we are on the correct treack - if these will not come down - please check
    MEREP_RDB_S01_GET
    Scenario is the name of the Order SyncBO (001) and the Mobile ID is the one of your device. Check the dataset if it is complete.
    Hope this helps to get you any frther!
    Regards,
    Oliver

  • Invalid property get operation; subform doesn't have property 'rawValue'

    Hello,
    I have a form where on the Submit button I'm putting JavaScript that checks each field and radio button set to ensure the user has filled something in. I have used this script before successfully, but this time it is not working and for the life of me I can't see what wrong. Also, I've not encountered this particular error message before. Here is the text I am seeing on clicking the Submit button:
    Acrobat JavaScript Debugger Functions Version 11.0
    Acrobat EScript Built-in Functions Version 11.0
    Acrobat SOAP 11.0
    Exception in line 5 of function top_level, script XFA:form1[0]:page2[0]:buttons[0]:Button1[0]:click
    GeneralError: Operation failed.
    XFAObject.rawValue:5:XFA:form1[0]:page2[0]:buttons[0]:Button1[0]:click
    Invalid property get operation; subform doesn't have property 'rawValue'
    I'm glad to share my script if that's helpful as well.
    Thanks in advance for your help,
    MDawn.

    Here's the script:
    var v1 = page1.firstPage.positioned.firstLine.reqType.rawValue;
    var v2 = page1.firstPage.positioned.firstLine.orderQuote.rawValue;
    var v3 = page1.firstPage.positioned.description.rawValue;
    var v4 = page1.firstPage.positioned.rentExempt.rawValue;
    var v5 = page1.firstPage.positioned.header.posSub.storeNbr.rawValue;
    var v6 = page1.firstPage.positioned.header.posSub.storeName.rawValue;
    var v7 = page1.firstPage.positioned.header.posSub.RadioButtonList.rawValue;
    var v8 = page1.firstPage.positioned.header.posSub.storeContact.rawValue;
    var v9 = page1.firstPage.positioned.header.posSub.email.rawValue;
    var v10 = page1.firstPage.positioned.header.posSub.contactsPhone.rawValue;
    var v11 = page1.firstPage.positioned.header.posSub.custName.rawValue;
    var v12 = page1.firstPage.positioned.header.posSub.custPhone.rawValue;
    var v13 = page1.firstPage.positioned.header.posSub.custEmail.rawValue;
    var v14 = page1.firstPage.positioned.dateNeeded.RadioButtonList.rawValue;
    var v15 = page1.firstPage.positioned.dateNeeded.addlInfo.DateTimeField2.rawValue;
    var v16 = page1.firstPage.positioned.dateNeeded.addlInfo.rushFees.rawValue;
    var v17 = page1.firstPage.positioned.dateNeeded.rushProcessingFees.rushFeePrices.rawValue;
    var v18 = page1.firstPage.positioned.dateNeeded.rushProcessingFees.RadioButtonList.rawValue;
    var v19 = page1.firstPage.positioned.chairsArtInfo.RadioButtonList.rawValue;
    var v20 = page2.personalization.header.RadioButtonList.rawValue;
    var v21 = page2.shipping.shipTo.RadioButtonList.rawValue;
    var v22 = page2.shipping.customerAddress.rawValue;
    var v23 = page2.shipping.rushOrders.RadioButtonList.rawValue;
    //REQUEST
    if ((v1 == "") || (v1 == null))
       xfa.host.messageBox( "Please select the type of request" );
       xfa.host.setFocus("page1.firstPage.positioned.firstLine.reqType");
    //ORDER_QUOTE
    } else {
    if ((v2 == "") || (v2 == null))
        xfa.host.messageBox( "Please indicate whether this is an order or quote" );
      xfa.host.setFocus ("page1.firstPage.positioned.firstLine.orderQuote");
    //DESCRIPTION
    } else {
      if (((v1 == "3")) && ((v3 == "" || v3 == null)))
      xfa.host.messageBox( "Please enter a description" );
      xfa.host.setFocus("page1.firstPage.positioned.description");
    //RENT EXEMPT
    } else {
      if (((v1 == "2")) && ((v4 == "" || v4 == null)))
      xfa.host.messageBox( "Please indicate if the order is rent exempt or royalty exempt" );
      xfa.host.setFocus("page1.firstPage.positioned.rentExempt");
    //STORE NUMBER
    } else {
      if ((v5 == "" || v5 == null))
         xfa.host.messageBox( "Please enter the store number" );
         xfa.host.setFocus("page1.firstPage.positioned.header.posSub.storeNbr");
    //SCHOOL'S NAME
    } else {
      if ((v6 == "" || v6 == null))
         xfa.host.messageBox( "Please enter the school's name" ); 
      xfa.host.setFocus ("page1.firstPage.positioned.header.posSub.storeName");
    //COUNTRY
    } else {
    if ((v7 == "") || (v7 == null))
      xfa.host.messageBox( "Please enter the store's country" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.RadioButtonList");
    //STORE CONTACT
    } else {
    if ((v8 == "") || (v8 == null))
      xfa.host.messageBox( "Please enter the name of the store's contact person" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.storeContact");
    //CONTACT'S EMAIL
    } else {
      if ((v9 == "" || v9 == null))
         xfa.host.messageBox( "Please enter the store contact's email address" );
         xfa.host.setFocus("page1.firstPage.positioned.header.posSub.email");
    //CONTACT'S PHONE
    } else {
    if ((v10 == "") || (v10 == null))
      xfa.host.messageBox( "Please enter the customer's telephone number" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.contactsPhone");
    //CUSTOMER NAME
    } else {
    if ((v11 == "") || (v11 == null))
      xfa.host.messageBox( "Please enter the customer's name" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custName");
    //CUSTOMER PHONE
    } else {
      if ((v12 == "" || v12 == null))
         xfa.host.messageBox( "Please enter the customer's telephone number" );
         xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custPhone");
    //CUSTOMER EMAIL
    } else {
    if ((v13 == "") || (v13 == null))
      xfa.host.messageBox( "Please the customer's email address" );
      xfa.host.setFocus("page1.firstPage.positioned.header.posSub.custEmail");
    //DATE NEEDED
    } else {
    if ((v15 == "") || (v15 == null))
      xfa.host.messageBox( "Please whether the order is needed by a specific date" );
      xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.RadioButtonList");
    //SPECIFIC DATE
    } else {
      if ((v16 == "" || v16 == null))
         xfa.host.messageBox( "Please enter date the order is needed" );
         xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.addlInfo.DateTimeField2");
    //RUSH FEES
    } else {
      if ((v17 == "" || v17 == null))
         xfa.host.messageBox( "Please indicate if rush fees are applicable" );
         xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.addlInfo.rushFees");
    //RUSH PROCESSING FEES
    } else {
      if ((v18 == "" || v18 == null))
         xfa.host.messageBox( "Please select the rush processing fee that is wanted" );
         xfa.host.setFocus("page1.firstPage.positioned.dateNeeded.rushProcessingFees.RadioButtonLi st");
    //CHAIR ART INFORMATION
    } else {
      if ((v19 == "" || v1 == null))
         xfa.host.messageBox( "Please identify the format of the art for the chair" );
         xfa.host.setFocus("page1.firstPage.positioned.chairsArtInfo.RadioButtonList");
    //PERSONALIZATION
    } else {
      if ((v20 == "" || v20 == null))
         xfa.host.messageBox( "Please identify whether personalization is needed for this order" );
         xfa.host.setFocus("page2.personalization.header.RadioButtonList");
    //SHIPPING INFO
    } else {
      if ((v21 == "" || v21 == null))
         xfa.host.messageBox( "Please identify where the order will be shipped" );
      xfa.host.setFocus("page2.shipping.shipTo.RadioButtonList");
    //CUSTOMER'S ADDRESS
    } else {
      if ((v22 == "" || v22 == null))
         xfa.host.messageBox( "Please provide the customer's address" );
         xfa.host.setFocus("page2.shipping.customerAddress");
    //RUSH FEE
    } else {
      if ((v23 == "" || v23 == null))
         xfa.host.messageBox( "Please select the rush fee that the customer wants" );
         xfa.host.setFocus("page2.shipping.rushOrders.RadioButtonList");
    } else {
      Button2.execEvent("click");

  • How to get sequence name in run time.

    hi
    I have several sub sequence called in the main sequence in TestStand. Those sub sequences have different sequence names, which i wanted to display by string indicator on the Labview Operator Interface. Is there a simple way to show the current calling sub sequence name during run time(run main).
    thanks.
    Message Edited by Appledoll on 07-12-2007 10:12 AM

    Hi,
    The easiest way is to use the NameOf() function. In this case where you wish to get the name of the current sequence the syntax NameOf(RunState.Sequence) yields the name. I attach a very simple example also.
    Getting the Name of Any TestStand Property Programmatically in TestStand
    Hope this helps
    Pelle S
    District Sales Manager
    National Instruments Sweden
    Attachments:
    Get sequence name.vi ‏15 KB

  • GET FILE NAME C:\temp\ADIBO.txt

    Hi,
    How to get file name?
    I used Get_File_NAME, but I'am getting an error.
    lv_lfilename is not the type LOGICAL_FILENAME
    C:\temp\ADIBO.txt
    I need to get  ADIBO ??
    tnh, Adibo..:)
    I am using this code to download file and after that I need to get FILE_NAME:
    DATA:  lv_lfilename TYPE string.
    PARAMETERS:
      pa_lfile TYPE zlocalfile
               DEFAULT 'C:temp'.
        CONCATENATE pa_lfile ''INTO lv_lfilename.
        CALL FUNCTION 'GUI_DOWNLOAD'
             EXPORTING
                  filename = lv_lfilename
                  filetype = 'ASC'
             TABLES
                  data_tab = it_billit_down.
        IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.

    Hii..
    You have to Maintain the Logical filenames and their Physical Paths in Tcode FILE.
    Then create a program like this..
    REPORT  ZSEL_FILES1.
    DATA : V_LOGFILE TYPE STRING.
    DATA :V_PHYFILE TYPE STRING.
    DATA : ITAB TYPE TABLE OF SCARR.
    START-OF-SELECTION.
    SELECT * FROM SCARR INTO TABLE ITAB.
    **To get the Physical file based on the Logical file names - Maintained in Tcode FILE
    CALL FUNCTION 'FILE_GET_NAME'
      EXPORTING
       CLIENT                        = SY-MANDT
        LOGICAL_FILENAME              = VlOGFILE
      OPERATING_SYSTEM              = SY-OPSYS
      PARAMETER_1                   = ' '
      PARAMETER_2                   = ' '
      PARAMETER_3                   = ' '
      USE_PRESENTATION_SERVER       = ' '
      WITH_FILE_EXTENSION           = ' '
      USE_BUFFER                    = ' '
      ELEMINATE_BLANKS              = 'X'
    IMPORTING
      EMERGENCY_FLAG                =
      FILE_FORMAT                   =
       FILE_NAME                     = V_PHYFILE
    EXCEPTIONS
      FILE_NOT_FOUND                = 1
      OTHERS                        = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    **To download the file to PC.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        = V_PHYFILE
       FILETYPE                        = 'ASC'
      APPEND                          = ' '
       WRITE_FIELD_SEPARATOR           = 'X'
      HEADER                          = '00'
      TRUNC_TRAILING_BLANKS           = ' '
      WRITE_LF                        = 'X'
      COL_SELECT                      = ' '
      COL_SELECT_MASK                 = ' '
      DAT_MODE                        = ' '
      CONFIRM_OVERWRITE               = ' '
      NO_AUTH_CHECK                   = ' '
      CODEPAGE                        = ' '
      IGNORE_CERR                     = ABAP_TRUE
      REPLACEMENT                     = '#'
      WRITE_BOM                       = ' '
      TRUNC_TRAILING_BLANKS_EOL       = 'X'
      WK1_N_FORMAT                    = ' '
      WK1_N_SIZE                      = ' '
      WK1_T_FORMAT                    = ' '
      WK1_T_SIZE                      = ' '
    IMPORTING
      FILELENGTH                      =
      TABLES
        DATA_TAB                        = ITAB
      FIELDNAMES                      =
    EXCEPTIONS
      FILE_WRITE_ERROR                = 1
      NO_BATCH                        = 2
      GUI_REFUSE_FILETRANSFER         = 3
      INVALID_TYPE                    = 4
      NO_AUTHORITY                    = 5
      UNKNOWN_ERROR                   = 6
      HEADER_NOT_ALLOWED              = 7
      SEPARATOR_NOT_ALLOWED           = 8
      FILESIZE_NOT_ALLOWED            = 9
      HEADER_TOO_LONG                 = 10
      DP_ERROR_CREATE                 = 11
      DP_ERROR_SEND                   = 12
      DP_ERROR_WRITE                  = 13
      UNKNOWN_DP_ERROR                = 14
      ACCESS_DENIED                   = 15
      DP_OUT_OF_MEMORY                = 16
      DISK_FULL                       = 17
      DP_TIMEOUT                      = 18
      FILE_NOT_FOUND                  = 19
      DATAPROVIDER_EXCEPTION          = 20
      CONTROL_FLUSH_ERROR             = 21
      OTHERS                          = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    <b>reward if helpful</b>

  • HP ePrint from excel add-in: Error while getting driver name for printer

    Trying to use add-in for ePrint from excel/word I get, "error while getting driver name for printer \\...HP DesignJet 800PS 42 by HP," with an option to select "OK" and that same message repeats with each printer in our network, and then it doesn't allow me to print using the add-in. However, I can print normally to HP Go Web, open up Print and Share,  then print it from there. This happens with excel and word. I have Office Suite 2007.

    Hello modameister,
    Sorry you are having issues with this printer and the ePrint add-on.  There are a couple of questions I would like you to answer please.
    1.  What operating system are you using? (XP,VISTA,7,MAC OS X)
    2.  What and how much data are you trying to print?
    3.  Have you tried to copy and paste the data into a different application or tried using the snip it tool?
    4.  Are you receiving any .dll errors (mscms.dll)
    Thanks
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

Maybe you are looking for

  • Saved Pages doc as pdf now I want to edit it

    I created a document in Pages and saved it as a pdf, but I forgot to save a version that I can edit. How do I revert back to a document that I can edit? I usually save a Pages document and a second pdf document. Thank you!

  • Installing 10.1.3.3 with IAS 10.1.3.1 LDAP

    I am trying to install OBIEE Plus under the SOA suite app server 10.1.3.1. The app server is setup for LDAP authentication. The install fails with "Unsuccessful verification of username/password pair" . Has anyone tried this?

  • Maverick don't see lan printer

    I have installed driver and software for Epson XP 600 on mac air with Maverick OS. This printer is connected in lan with a static IP address and it is a WIFI printer. After the installation The driver have been updated by Apple automatically. I have

  • Jdbcrealm with DB2

    Dear all I am trying to config jdbcrealm. According to tomcat's instruction, a copy of JDBC driver has to be placed in $CATALINA_HOME/server/lib directory, but only JAR files are recognized. With DB2, it provides db2java.zip NOT jar, is it possible t

  • Delivery date for mandays

    hi, While raising the PO for the mandays job,What will be the delivery date, where can we maintain it. Regards fozters