Call same smartform in program with different text - same result

Hello,
I'm facing the following problem:
In a program, a certain smartforms form can be called multiple times. Only the text can change, depending on the user action.
However, the resulting form does not show different text for the different actions. The first time it is used, the text is correct, but from the second time onwards, the text in the form will still be same than the first time.
The text type in the smartform is 'include text', so I can see in the standard text transaction (so10) that the text was indeed changed correctly. But still it shows the same text in the result.
Is there some option I have missed?
Thanks

Hi,
You can use COMMIT_TEXT.
The system keeps all text modules for which you defined 'storage in update task' in the corresponding text object in the text memory. As soon as it updates the corresponding application object, it must also place the text modules into the log file.
The function module COMMIT_TEXT generates for the text modules in the text object a CALL FUNCTION... IN UPDATE TASK statement in accordance with the action to be executed (delete, create, change).
No COMMIT WORK is created. This must be executed by the application program.
If you do not specify OBJECT, NAME, ID, and LANGUAGE, the system transfers all texts from the text memory. To limit the function to certain texts, enter values (fully or generically) in the above fields. The system then selects all texts that match the selections in the fields up to the first ' * '.
By default, the system deletes texts from the text memory as soon as they are written to the log file. If you want to keep updated texts in the text memory, call the function module with the parameter KEEP = 'X'. The system then keeps the texts in the text memory and flags them as updated. When calling COMMIT_TEXT again, the system ignores these texts. If you change such a text again during the transaction (for example, using SAVE_TEXT or DELETE_TEXT), the system deletes the flag. However, you need another COMMIT_TEXT to update the text.
<b>Reward if helpful.</b>

Similar Messages

  • How to program with different device by NI-VISA?

    Dear NIer:
    firstly I will list my enviroment.
    SW:Labwindows/cvi 5.5/VISA/MAX.
    HW:HP pc/pci-gpib/GPIB-VXI/DD42916.
    QUESTION:
    1 MAX always think GPIB-VXI/C and DD42916 as a GPIB device.Why don't they think these devices listed above as a VXI device?
    2 Since MAX think DDC42916 as a GPIB device, and DDC42916 supports word serial communication, How can I program with this message-based device by NI-VISA?
    I searched for appropriate function in NI-VISA ref manual,but I failed.VXI WSPRotocal COMMand is not suitable here evidently.
    3 Then how can I program the other device like register-based device and memory-based device under this circumstance?
    4 if slot0 controller changed from GPIB/VXI to 1394/VXI
    ,then how to program?

    east-
    I see this question was answered (and then discussed again in depth) in the VISA forum. I'm posting these links in case anyone looks here for an answer.
    -Scot

  • Parallel execution of same program with different parameters.

    Is it possible to start the same plsql routine parellelly from PLSQL.
    Begin
    prog1 1 1000
    prog1 1001 2000
    prog1 2001 3000
    End;
    I mean to say something like in Unix where in you can
    prog1 1 1000 &
    prog1 1001 2000 &
    prog1 2001 3000 &
    Thanks.

    There are two methods in Oracle. DBMS_JOB and DBMS_SCHEDULER. These are APIs that allows you to create background PL/SQL processes.
    Details on both APIs are in the [url http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/toc.htm]Oracle® Database PL/SQL Packages and Types Reference guide.
    Example (using DBMS_JOB):
    declare
    jobID number; -- job ID returned by DBMS_JOB for scheduled job
    begin
    -- schedule 3 jobs for starting at SYSDATE, as once off jobs as we
    -- do not specify any interval
    DBMS_JOB.Submit( jobID, 'prog1 1 1000;,' SYSDATE );
    DBMS_JOB.Submit( jobID, 'prog1 1001 2000;,' SYSDATE );
    DBMS_JOB.Submit( jobID, 'prog1 2000 3000;,' SYSDATE );
    -- only when these job submissions are committed, will the job queue
    -- processing pool see these jobs
    commit;
    end;

  • Troubles with programming a program with different multiple channels!

    Dear LabView users,
    i've been struggling with a program I need to write about the stress-strain curve and the E-modulus of a material tested with strain gauges, and LVDT's.
    The thing is, I need to acquire data with the nDAQ-system from strain gauges (Virtual channel: Strain), LVDT's (Virtual channel: Voltage) AND a pressure cell (Virtual channel: Voltage), and I need to log this data and do some operations with this data. The problem is, this program needs to work with either the combination of 1 strain gauge, 1 LVDT and 1 pressure cell, but also with the combination, for example, of 4 strain gauges, 2 LVDT's and 1 pressure cell. For the strain gauge I need to be able to configure the strain gauge properties (but this is able with the bridge configuration cluster provided by LabView) for each strain gauge seperatly, also I need to be able to configure the scale and the input voltage for each LVDT or pressure cell, also seperatly. And I need to be able to select the channel for each gauge,LVDT and force cell. Also I need to be able to set these elements to zero before the testing begins. 
    Thereafter all these data needs to be logged into an excel file and also be shown on a clear graph that shows me the strain from the gauges, the displacement of the LVDT's and the force of the pressure cell. 
    Eventually, I need to become a stress-strain curve and the E-modulus of the material we're testing, presented in LabVIEW.
    Does someone has an idea about how I should work this out step by step? Any help would be very usefull.
    With kind regards,
    Peter

    PeteTheGod wrote:
    You remember my previous post? Is it something like that you mean? I started there also with a cluster with name and scale information, but for the strain gauges it was too difficult to complete this. And eventually, it was getting way to complicated for me to proceed with programming.
    And what do you mean with the configuration file? You mean a notebook file like I already tried? 
    Do you have some easy example (.vi) about how I should do this? 
    Dear Peter,
         I'm sorry, but I did not remember your previous post (though I did remember looking at something you had posted).  However, I did "look it up" and saw that I'd made a suggestion that you store your configuration information in a Cluster, use an Enum (that you define) for the various types of Bridges, and store the data in a Configuration File of some form.  LabVIEW has a series of Functions on the File I/O Palette for .INI files (which it calls "Configuration Files", and I provided an example for using an Excel Workbook as a Storage format, but you can use anything, even a Text file.
         The important thing is this allows you, the User, to have a set of "Details" (Bridge Type, Gauge Factor, Gauge Resistance, etc.) stored along with a Name that you choose, and at Run Time, you can specify or choose just the Name (say, from a Drop-down List) and pick up all of the other parameters from your Configuration File.
         If you were going to use a Drop Down List, you would want to populate it with the "Correct Choices", i.e. the list of Names in your Configuration File.  So your Initialization Code would read the Configuration File and create a Ring (or something similar) populated with all of the Names.  Then, when you choose which Device using the Ring to force you to choose one of the named Devices, you would simply use the Ring value to index your array of Configuration information to get Bridge Type, Gauge Factor, etc.
         My earlier Post was "specialized" in that it only applied to Bridge Specification.  If you want to include other Devices, such as LVDTs, you can certainly do that.  Now your basic Cluster would change -- instead of Name, Bridge Type, etc., which is specific for Bridges, you would have Name, Device Type (an Enum that was Bridge, LVDT, etc.), and perhaps a Variant that could be called Device Specs (my earlier Example shows a possible Bridge Device Spec as a cluster of Bridge Type and two Gauge parameters).
         Do you know about Variants and how to handle them?  It just means a little more processing at the time of Reading, Writing, and Using.  Here the LabVIEW .INI Config Functions might be simpler as you could particularize the sub-parameters based on the Device Type.  You could still use Excel, but you'd need to give some thought about how to handle the different sets of columns for the different Device Types.  If you want to go the Excel route, design an Example Worksheet (similar to the example you showed at the beginning of this post, which was just for Bridges, I believe) and show us your thoughts.
         Spending a little time on design now can really pay off later -- it may take you an extra hour to figure out how to write the code, but the code should take very little time to execute, and will keep your program nimble, effective, and capable of handling multiple and new devices.
    Bob Schor

  • Calling a ESS WDJ COmponent with different Client no

    Hi,
    my task is to make ESS available on a different Client (100) instead of 001.
    i was reading about the "Mapping Logical Systems" using the parameter sap-wd-arfc-useSys :
    http://help.sap.com/saphelp_nw70/helpdata/en/af/84a34098022a54e10000000a1550b0/content.htm
    I did the following :
    1. Create a new JCODestination :
    SAP_R3_HumanResources_MetaDataHNL and SAP_R3_HumanResourcesHNL with the new client.
    2. Call the URL
    http://<portal>:<port>/webdynpro/dispatcher/sap.com/ess~lea/com.sap.xss.hr.lea.appl.LeaveRequest?sap-wd-arfc-
    useSys=SAP_R3_HumanResources:HNL&sap-wd-arfc-useSys=SAP_R3_HumanResources_MetaData:HNL
    Result : i get a 500 internal Server error after the login for this client.
    Test 2: The same with the default JCO Destinations : same error
    Test 3: The same without the additional parameter : working
    The JCO Destination is only SAP_R3_HumanResources when i looked it up the Content Admin Area for Web Dynpro.
    What is the point i am missing ? Has someone done it successfully to connect to 2 systems per sap-wd-arfc-useSys ?
    Regards,
    Kai

    Hi Arun,
    the JCODestination Tests (Metadata) are successful.
    The Assignment for ess~lea is only for :
    SAP_R3_HumanResources
    SAP_R3_HumanResources_MetaData
    It is a standard ESS iview. How and why should i assign additional JCODestinations ?
    I overweite it per parameter sap-wd-arfc-useSys
    Regards,
    Kai

  • Launch a program with different variant in one time

    Hi,
    User have to launch all day x times the same transaction but selecting an other saved variant a each time.
    Is there a program or transaction which can be used to launch a lot of program - variant in one time ?
    Thanks a lot
    Regards

    You can use a ECATT testscript to automatise it.
    It can launch different variants each time and how many times you want.
    Follow the documentation <a href="http://help.sap.com/saphelp_nw70/helpdata/en/d4/80023c59698908e10000000a11402f/frameset.htm">link</a>
    Regards,
    Walter

  • Call or Execute, ABAP program with variant

    REPORT Z_call_ABAP_program  NO STANDARD PAGE HEADING.
    TABLES : BKPF , INDX.
    PARAMETERS : ZBUKRS LIKE BKPF-BUKRS OBLIGATORY DEFAULT '0001',
                                 ZGJAHR LIKE BKPF-GJAHR OBLIGATORY DEFAULT '1995'.
    SELECT-OPTIONS : ZPERIOD FOR BKPF-MONAT OBLIGATORY.
    DATA : BEGIN OF CHECK_TAB OCCURS 100,
                     CLIENT LIKE BSEG-MANDT ,
                     COMPANY LIKE BKPF-BUKRS ,
                     FINYR LIKE BKPF-GJAHR ,
                     MONAT LIKE BKPF-MONAT ,
                     LDDT LIKE BKPF-CPUDT ,
                 END OF CHECK_TAB.
    DATA : BEGIN OF CHECK_TABO OCCURS 100,
                      CLIENT LIKE BSEG-MANDT ,
                      COMPANY LIKE BKPF-BUKRS ,
                      FINYR LIKE BKPF-GJAHR ,
                      MONAT LIKE BKPF-MONAT ,
                      LDDT LIKE BKPF-CPUDT ,
                  END OF CHECK_TABO.
    DATA : BEGIN OF CT_KEY ,
                      CLIENT LIKE BSEG-MANDT ,
                      COMPANY LIKE BKPF-BUKRS ,
                      FINYR LIKE BKPF-GJAHR ,
                      MONAT LIKE BKPF-MONAT ,
                      LDDT LIKE BKPF-CPUDT ,
                   END OF CT_KEY.
    START-OF-SELECTION.
    IMPORT CHECK_TAB FROM DATABASE INDX(VP) ID 'CDSDATE'.
    LOOP AT CHECK_TAB.
          MOVE-CORRESPONDING CHECK_TAB TO CHECK_TABO. APPEND CHECK_TABO.
    ENDLOOP.
    LOOP AT CHECK_TAB.
         IF CHECK_TAB-FINYR = ZGJAHR AND CHECK_TAB-MONAT IN ZPERIOD AND
              CHECK_TAB-COMPANY = ZBUKRS.
              CLEAR CT_KEY.
               MOVE: CHECK_TAB-CLIENT TO CT_KEY-CLIENT ,
               CHECK_TAB-COMPANY TO CT_KEY-COMPANY,
               CHECK_TAB-FINYR TO CT_KEY-FINYR ,
                CHECK_TAB-MONAT TO CT_KEY-MONAT ,
                CHECK_TAB-LDDT TO CT_KEY-LDDT.
                EXPORT : CHECK_TAB CT_KEY TO MEMORY.
                SUBMIT ZCDSDTUP
                          WITH YCLIENT = SY-MANDT
                          WITH YCOMPANY = ZBUKRS
                          WITH YFINYR = ZGJAHR
                          WITH YMONAT = CHECK_TAB-MONAT
                          WITH YLDDT = CHECK_TAB-LDDT
                          VIA SELECTION-SCREEN AND RETURN.
                   IMPORT CHECK_TAB FROM MEMORY .
            ENDIF.
    ENDLOOP. 
    SKIP 2.
    WRITE :/2 'Position Before Update'. ULINE /2(53).
    WRITE :/4 'Client' , 11 'Comp.' , 18 'Fin.Yr.' , 27 'Period' ,
    35 'Data Downloaded upto'. SKIP 1.
    LOOP AT CHECK_TABO.
         IF CHECK_TABO-FINYR = ZGJAHR AND CHECK_TABO-MONAT IN ZPERIOD AND
             CHECK_TABO-COMPANY = ZBUKRS.
             WRITE :/5 CHECK_TABO-CLIENT,11 CHECK_TABO-COMPANY,19 CHECK_TABO-FINYR,
                          29 CHECK_TABO-MONAT, 38 CHECK_TABO-LDDT.
          ENDIF.
    ENDLOOP.
    SKIP 3.
    WRITE :/2 'Position After Update'. ULINE /2(53).
    WRITE :/4 'Client' , 11 'Comp.' , 18 'Fin.Yr.' , 27 'Period' , 35 'Data Downloaded upto'. SKIP 1.
    LOOP AT CHECK_TAB.
         IF CHECK_TAB-FINYR = ZGJAHR AND CHECK_TAB-MONAT IN ZPERIOD AND
              CHECK_TAB-COMPANY = ZBUKRS.
              WRITE :/5 CHECK_TAB-CLIENT ,11 CHECK_TAB-COMPANY , 19 CHECK_TAB-FINYR,
                           29 CHECK_TAB-MONAT , 38 CHECK_TAB-LDDT.
         ENDIF.
    ENDLOOP.
    SKIP 3. ULINE.
    WRITE :/7 'PLEASE CONFIRM CAREFULLY THE ABOVE DATES ' ,
                   /5 'BEFORE RUNNING THE DATA DOWNLOAD PROGRAM FOR CDS.'.
    EXPORT CHECK_TAB TO DATABASE INDX(VP) ID 'CDSDATE'.

    You will haev to add the varaint also in the object entry in the transport request.
    For this
    goto Se38 - > select progfram - > click on radio button for varaints - > Cick on Display - > Utilities -> transport request - >  and execute.
    This wil include the varaint also with the program name in the transport request and allow you to directly execute the program after transport to be executed with a varaint.
    Regards,
    Mansi.

  • Multiple copies in Adobe form with different header text

    Hi All,
    I have created Adobe form for Invoice and now my requirement is when we create an invoice it should generate 4 copies with different texts like original copy, duplicate copy and triplicate copy.
    I know its possible in samrtforms using the copy window and maintaing text there.Is it possible in adobe form , if yes how can we achieve this.
    Regards
    Lalit

    Are you using a custom driver program?
    If yes, then loop the function module with the number of copies you have.
    the copy name should be a variable which should be passed to the form in the loop change the value of the copy control accordingly.
    Please let me know, if you see any issues.
    Thanks,
    Rakesh

  • Credits scroll with different colors and txt size

    I am trying to do a credits scroll with different text color and size How do I best do this. I understand how to do it with text/scroll but that doesn't allow me to do different text colors and size. How do I do it with Boris Crawl?
    Message was edited by: Tony Brave

    Hi -
    Mark an In and Out where you want the roll to roll.
    Load Boris Crawl in to the viewer and edit to the timeline.
    Double click on the clip in the timeline.
    On the control tab for Boris Crawl you can set it to roll your text:
    !http://www.spotsbeforeyoureyes.com/Boris%20Crawl%20Set%20Roll.jpg!
    Then click on the box above that where it says click for options and create your roll:
    !http://www.spotsbeforeyoureyes.com/Boris%20Type%20Example.jpg!
    Once you have typed and formatted your text, click apply and you should be able to see the roll.
    The speed of your roll is basically determined by the length of the clip on the timeline, the Controls tab for the clip gives you lots of subtle and not so subtle adjustments - like a soft wipe at the top and bottom of the crawl, etc.
    Hope this helps.

  • Use plan from stored_outlines from query with different syntax?

    Hello,
    I'd like to know is there any ability to use via stored_outlines plan from query with different syntax?
    Database version - 11.1.06
    If yes, maybe you'll take a look at steps (based on Metalink 726802.1), what I tried to do to make it work (with no success):
    alter session set create_stored_outlines=good;
    run good query
    create private outline good from SYS_OUTLINE_0... -< GOOD
    alter session set create_stored_outlines=bad;
    run bad query
    create private outline good from SYS_OUTLINE_0... -< BAD
    update ol$ set sql_text, textlen, signature, hash_value, hash_value2 from BAD to GOOD records
    leave ol$hintcount for GOOD untouched
    delete ol$ where ol_name='BAD';
    delete ol$hints where ol_name='BAD';
    delete ol$nodes where ol_name='BAD';
    execute dbms_outln_edit.refresh_private_outline('GOOD');
    alter session set sql_trace=true;
    alter session set use_private_outlines=true;
    run bad query
    examine trace file and find that it use execution plan different from both bad and good queries
    PS: Originally bad query is posted already Re: Poor performance while join of 2 comprehensive large views and small table
    PPS: Also I review thread CBO not picking correct indexes or doing Full Scans
    Thanks,
    Sergiy
    Edited by: kiberpress on Sep 30, 2009 6:59 AM

    A query with different syntax would result in a different hash value.
    Stored outlines work based on hash value.
    Your question is probably answered now.
    Sybrand Bakker
    Senior Oracle DBA

  • How to call two smartforms with using a single print program

    Hi,
       I have a requirement wherein I need to call two smartforms using a single print program.
       The interface parameters are different in two smartforms.
       I presently solved the issue using the smartform names as the reference.
       Can anyone let me know if there is any other way to solve it.
       I heard something about global params. But not sure.
       Please let me know the best possible way to solve this issue.
    Thanks and Regards,
       Debabrata

    Hi Debabrata,
    Based on the condition in your print program you can call the below code
    fname1 TYPE rs38l_fnam.
    IF -
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSMARTFORMS'
    importing
       fm_name                  = fname1
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.*
    CALL FUNCTION FNAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB      =
      ARCHIVE_PARAMETERS =
      CONTROL_PARAMETERS=
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT              =
      MAIL_SENDER                 =
      OUTPUT_OPTIONS           =
      USER_SETTINGS             = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO =
      JOB_OUTPUT_INFO             =
      JOB_OUTPUT_OPTIONS      =
    EXCEPTIONS
      FORMATTING_ERROR         = 1
      INTERNAL_ERROR              = 2
      SEND_ERROR                    = 3
      USER_CANCELED              = 4
      OTHERS                             = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ELSE.
    fname2 TYPE rs38l_fnam.
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSMARTFORMS'
    importing
       fm_name                  = fname2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.*
    CALL FUNCTION FNAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB      =
      ARCHIVE_PARAMETERS =
      CONTROL_PARAMETERS=
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT              =
      MAIL_SENDER                 =
      OUTPUT_OPTIONS           =
      USER_SETTINGS             = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO =
      JOB_OUTPUT_INFO             =
      JOB_OUTPUT_OPTIONS      =
    EXCEPTIONS
      FORMATTING_ERROR         = 1
      INTERNAL_ERROR              = 2
      SEND_ERROR                    = 3
      USER_CANCELED              = 4
      OTHERS                             = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.

  • How to call the same query more than once with different selection criteria

    Hi,
    Please do anybody know how to solve this issue? I need to call one query with the fixed structure more than once with different selection criteria. For example. I have following data
    Sales organization XX
                         Income 2008  Income 2009
    Customer A       10                 20
    Customer B        30                  0
    Sales organization YY
                         Income 2008  Income 2009
    Customer A        20                5
    Customer B        50                10
    Now, I need this. At the selection screen of query, user fill variable  charakteristic "Sales organization" with interval  XX - YY, than I need to generate two separate results per sales organization, one for Sales Organization XX and the second for SO YYwhich will be displayed each on separate page, where result for SO YY will be dispayed under result for SO YY. Are there some options how to do it for example in Report Designer or WAD or with programming? In Report Designer is possible to use one query more than once, but I dont know how to force each query in RD to display result only for one Sales Organization, which will be defined in selection screen.
    Thank you very much
    J.

    Hello,
    thanks to all for cooperation. Finally we solved this issue with the following way..
    User fill appropriate SO on the selection screen, which is defined as range. This will resulte, that selected SO are listed in report below each othe (standard behavior). Required solution we achieved with the Report Designer, we set page break under each Result row of RD. This caused, that report is divided into required part per SO, which are stated each on separate page.
    J.

  • Use the same form with different button turned on in different calls

    Can I use the same form with different buttons turned on in different calls?
    Thanks!

    This is to avoid piracy. What could happen is, people could buy music, and give it away for free online. Usually it is then you buy a complete album off iTunes that it will only be available on one device. It is tied to that account, and the device must be registered to that account to listen to it.

  • Calling same screen in different programs?

    Hi All,
    I have to call same custom screen in different programs.
    So what is the best way to do this? I dont want to create the same screen in every program, insted I want to create 1 screen and call the same one in every program.
    Any ideas?
    Thanks.

    Hi,
    you are right. It's not possible. I just wan to add quote from ABAP documentation about statement CALL SCREEN.
    The statement CALL SCREEN accesses the dynpros of the relevant main program of the current program group and these use the global data and dialog modules of the main program. Except when calling a dynpro in an externally called subroutine, the main program usually is the current program. If the specified dynpro does not exist in the main program of the program group, an untreatable exception occurs.
    Cheers

  • Is it possible to have multiple different texts conversations with the same two people?

    In iOS 8.1.3 is it possible to have multiple different text conversations with the same person? I'm looking for a way to set an old conversation aside to talk about something new.
    Is this possible?

    speculation is agaisnt the ToS here, but you never know (I was shocked when we got 8 track recording in GB2)
    best thing to do is to send Apple some Feedback and let them know what features you want (they really do read what's sent):
    http://www.bulletsandbones.com/GB/GBFAQ.html#sendfeedback
    (Let the page FULLY load. The link to your answer is at the top of your screen)

Maybe you are looking for

  • Quiet external hard drive for use with Time Machine?

    Few questions related to Time Machine: 1- what external hard drive that would be good to use with Time Machine, that also runs relatively quietly? Since TM runs 24/7, am looking for one that is quieter than my current G-tech. 2- Please confirm what s

  • How to create a material grp

    Hi all  , I would like to know how to create material group and assign it to the particular material . Regards Raj

  • Numbers table name won't save

    I think I found a bug in my copy of Numbers 3.5 (2109). After renaming the table title and saving the document, the title change doesn't get saved. Upon reopening the document the table name is still the same.

  • Weird Unix-files in the waste-bin

    I have a fairly new MacBook and just found a couple of weird looking unix-files in my waste-bin. Obviously the names are quite odd, not to talk about the dates they were supposedly last changed. I'm pretty sure, those are no files/programmes I delete

  • Problem to move user in LDAP with the function DBMS_LDAP.rename_s

    Hello, I want to move a user in Active Directory, but this function i can only change his "cn". And when I use an invalid DN I have no error. My syntax is: retval := DBMS_LDAP.rename_s ( emp_session, my_dn,'cn=nom prenom', 'OU=test,DC=XXX,DC=org', 1,