Load Program for Export Licenses

Does anyone know if there is a load program for export licenses or is the only way to do it is to use transaction /sapsll/lclic01?

Hi,
As far as I know you have to create them all one, by one manually by using the transaction. Upload is not possible.
Regards,
Marc

Similar Messages

  • What is a "Load Program" for material master?

    Hi All,
    What is a "Load Program" for the Material master? Is this the Mass Maintainence MM17? Can a Material be extended to all VIEWs + all Plants in one shot via MM17?
    What are the steps using MM17?
    Thanks in advance

    Yes, There is a Program to Upload Material Master Ie : RMDATIND, RMDATGEN
    Using the above Program you can Upload Material Master. And You can Also use Uploading Tools like LSMW / BDC etc.
    MM17 is For MAss Maintenance. Suppose If you want to Update Purchase Group / Purchase Value Key / MRP Controller / Etc... to 1000 Materials Using this MM17 you can Update in Bulk.
    For Extending Views You can Use MM50 with LSMW if Material is Bulk.
    Regards,
    Ashok

  • GTS Extractor for export license

    Dear Experts,
         I had a situation where in I need to send the Export license information from GTS system to BI system, can you please provide me with any of the standard extractor that SAP had provided to transfer this data.
    I found a standard report (Stand alone report) on GTS side to look at this data.
    Report name : /SAPSLL/CONLCLIC01
    T-code : /SAPSLL/LCLIC04
    But is there any extractor that SAP has provided in its business content. So i can  transfer the data to BI system.
    Just an info. This belongs to compliance management section of GTS.
    Thanks for your time.
    -Amit.
    <Moderator Message: did you ever think about having a look at [the help|http://help.sap.com/saphelp_nw70/helpdata/en/41/66ae2148e5300ae10000000a114b54/frameset.htm|GTS]?>
    Edited by: Siegfried Szameitat on Sep 28, 2010 3:48 PM

    If you want to implement export control, you need to understand the government regulations from the country where the shipment is originating from.  Then you need to set up your legal regulation, country groups, number schemes, and license types to follow those regulations.  Plus you need to set up quite a bit of master data once your customizing is complete.  
    Also, since an STO is technically a PO, standard GTS functionality only runs legal control on the delivery associated with the STO.  The STO does  not run through legal control.  You would either need to customize your system to run an STO through export (there is an OSS Note for this) or have import legal control turned on.
    Regards,
    Jessica

  • I cannot load program for neat receipts for mac

    I cannot load software for Neat Works for Mac. Can anyone help me?

    http://www.macupdate.com/app/mac/33482/neatworks

  • Loading program for pricing conditions

    Hi,
    Can anyone guide me in writing the code for Loading Condition records in Vk11, either BAPI or BDC.
    <<removed by moderator>>
    Thank you

    Hi
    check this code
      loop at it_werks into wa_werks.
        clear v_index.
        perform bdc_dynpro      using 'SAPMV13A' '0100'.
        perform bdc_field       using 'BDC_CURSOR'
                                      'RV13A-KSCHL'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'RV13A-KSCHL'
                                      'ZPUP'.
        perform bdc_dynpro      using 'SAPMV13A' '1911'.
        perform bdc_field       using 'BDC_OKCODE'
                                      '/00'.
        perform bdc_field       using 'KOMG-WERKS'
                                       wa_werks-werks.
        v_index = 1.
        loop at it_bdcdata into wa_bdcdata where werks = wa_werks-werks.
          if v_index > 15.
            perform bdc_dynpro      using 'SAPMV13A' '1911'.
            perform bdc_field using 'BDC_OKCODE' '=P+'.
            v_index = 2.
          endif.
          clear v_string.
          concatenate 'KOMG-MATNR(' v_index ')' into v_string.
          perform bdc_field       using  v_string
                                         wa_bdcdata-matnr.
          clear v_string.
          concatenate 'KONP-KBETR(' v_index ')' into v_string.
          perform bdc_field       using  v_string
                                         wa_bdcdata-kbetr.
          clear v_string.
          concatenate 'KONP-KONWA(' v_index ')' into v_string.
          perform bdc_field       using  v_string
                                         wa_bdcdata-konwa.
          clear v_string.
          concatenate 'KONP-KPEIN(' v_index ')' into v_string.
          perform bdc_field       using  v_string
                                         wa_bdcdata-kpein.
          clear v_string.
          concatenate 'RV13A-DATAB(' v_index ')' into v_string.
          perform bdc_field       using  v_string
                                         wa_bdcdata-datab.
          clear v_string.
          concatenate 'RV13A-DATBI(' v_index ')' into v_string.
          perform bdc_field       using  v_string
                                         wa_bdcdata-datbi.
          clear v_string.
          v_index = v_index + 1.
        endloop.
        perform bdc_field       using 'BDC_OKCODE'
                                    '=SICH'.
        perform bdc_transaction using 'VK11'.
      endloop.
    form bdc_field using fnam type bdcdata-fnam
                         fval type any.
      if fval <> ''.
        clear wa_bdc.
        wa_bdc-fnam = fnam.
        wa_bdc-fval = fval.
        append wa_bdc to it_bdc.
      endif.
    endform.                    "BDC_FIELD
    form bdc_transaction using tcode type c.
    REFRESH it_messtab.
      call transaction tcode using it_bdc
                       mode  c_ctumode
                       update c_cupdate.
      commit work and wait.
      refresh it_bdc[].
    endform.                    "bdc_transaction
    redards
    Rao

  • One Concurrent Program, One SQL LOADER program for 85 different files

    I am looking to see if there is a way I can have one concurrent program and one control file to load all 85 files to 85 different tables at once. I really am hoping I don't have to write 85 different control files and 85 different concurrent programs. Can someone point me into the right direction or send examples. Thanks

    Hi!
    A way might be to have ONE data file that will include all the 85 types.
    E.g.
    File1|1298|invoice|...
    File1|1963|invoice|...
    File1|1045|invoice|...
    File2|0688|invoice|...
    File2|0198|invoice|...
    File3|4598|invoice|...
    In your control file use
    REPLACE INTO TABLE xx_file1_table
    WHEN RECORD_TYPE = 'File1'
    ....<list of fields>
    INTO TABLE xx_file2_table
    REPLACE
    WHEN RECORD_TYPE = File2'
    ....<list of fields>
    The only prob is that your data file size might be very big if u have lots of data to process.
    vik

  • Can Export License text be copied into sales documents??

    I have set up legal control in Foreign Trade data to check for export licenses.  Within the license we are using there are several types of text.  I would like to get at least 1 of them to copy into the delivery note and invoice so I can have them print on the documentation.
    When creating this in text determination I can create the text but when I do not see any standard application object when I attemp to set up the access sequence which controls where the text is copied from. 
    Has anyone else been successful at setting this up so that export license text can be copied into the sales documents?  If so how did you get it to copy from the license??  If I can't copy it into the documents on line can I change my print program or script to go get the text and then print it??
    Many thanks for all the help I get from my SAP forum friends!!!         Debbie

    Thanks once again, Siarhei!!  You are absolutely right!!  The text exists in the TTXOB, STXH and STXL tables.  And I'm sure you are right that we can get that data to pull into the scripting and print.
    But do you by chance know why the text object EMBK does not exist in Text determination table (RVTXOBJ)?  If it did exist I could create an access sequence to go and get the data.  I would really prefer to set it up that way if possible so we can see the text in the sales order and then copy it into the delivery note and invoice.  If not, then of course I will use the scripting to get it printed.
    You have been so helpful!! 
    Thanks very, very much!!
    Debbie

  • Trading Partner Details load program

    Does anyone know of a load program for XML Gateway Trading Partner details? I cannot find a .lct or api. I'm trying to avoid manual setup in new instances. My trading partner is setup, there is a load program for transactions, but I need to load the trading partner/transaction detail mappings.

    I was able to get the details as shown in below code...
    CalloutMessage cmIn = (CalloutMessage) input.get(0);
    String fromParty = cmIn.getParameter("FROM_PARTY");
    String toParty = cmIn.getParameter("TO_PARTY");
    String documentType = cmIn.getParameter("DOCUMENT_NAME");
    String action = cmIn.getParameter("ACTION_NAME");

  • Cannot load program sqlplus, error Symbol ___strcmp64 is not exported from dependent module /usr/lib/libc.a[shr_64.o]

    Dear all,
    We are expriencing an error after a redirected restore, we are restored a backup of a prod system on a new host.
    While running a 'brrestore' command to get the restore, it returns the following error:
    BR0401I BRRESTORE 7.40 (8)
    BR0169I Value 'util_file_online' of parameter/option 'backup_dev_type/-d' ignored for 'brrestore' - 'util_file' assumed
    BR0405I Start of file restore: reojarkx.rsb 2014-07-23 16:48:47
    BR0484I BRRESTORE log file: /oracle/SID/sapbackup/reojarkx.rsb
    BR0278E Command output of '/oracle/SID/112_64/bin/sqlplus':
    exec(): 0509-036 Cannot load program sqlplus because of the following errors:
            0509-130 Symbol resolution failed for sqlplus because:
            0509-136   Symbol ___strcmp64 (number 71) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-136   Symbol ___strcpy64 (number 76) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-136   Symbol __setjmp (number 78) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-192 Examine .loader section symbols with the
                     'dump -Tv' command.
    BR0280I BRRESTORE time stamp: 2014-07-23 16:48:47
    BR0279E Return code from '/oracle/SID/112_64/bin/sqlplus': 255
    BR0302E SQLPLUS call for database instance SID failed
    BR0406I End of file restore: reojarkx.rsb 2014-07-23 16:48:47
    BR0280I BRRESTORE time stamp: 2014-07-23 16:48:47
    BR0404I BRRESTORE terminated with errors
    Can someone help to get the reason of this issue.
    Thanks, regards

    Roman,
    how can you know that it is about AIX? The OP didn't tell us.
    Besides that, I agree that different OS versions may be the root cause.
    regards

  • Export License Determination for Non R/3 systems

    Hi Experts,
    We have a non-R/3 system from where sales orders are created and sent to GTS for License Determination. We have developed an interface to load required details to create export declarations.
    We would like to determine export license for the documents created in GTS. We have done all the settings required for License Determination but, still not able to determine license automatically.
    Can anyone advise  is it possible to determine license without r/3 feed? If it is possible, what could be the additional check we have to do.
    Thanks,
    Sudheer

    Thanks for your reply..
    The settings which i done was determining license perfectly when the export declaration documents are created with reference to R/3 documents (proforma invoice from R/3.
    I am looking for manually created document only in GTS, how can we determine export license. Is it possible to determine export license?
    Thanks,
    Sudheer.

  • Foreign Trade - Export License Number for SED and SLI

    We are not using full blown foreign trade.  I just recently set up ECCN codes to be used on the above forms for exporting (we have home grown SAPScripts).  Now I am being asked to have a way to store the Export License Numbers by material (it is item 22 on the SED).  Any ideas?

    thanks Alex Zheng  for your answer but i did not get you
    when i define a license type in VE51  -> no material number attribute exists
    please clarify
    thanks in advance

  • Foreign Trade _ Export License Number for SED or SLI

    We are not using full blown Foreign Trade.  I just recently set up ECCN codes to be used on the above forms for exporting.  Now I am being asked to have a way to store Export License Numbers (it is item 22 on the SED) . . . They are asking it be stored on the material.  Any ideas?

    thanks Alex Zheng  for your answer but i did not get you
    when i define a license type in VE51  -> no material number attribute exists
    please clarify
    thanks in advance

  • A Required COM Add-in program for XL Reporter has not been loaded and ....

    A Required COM Add-in program for XL Reporter has not been loaded and prohibits Microsoft Excel from running. For more information, click help.
    XL 2007, with the Trust level for macros set to minimum. SBO 2007 PL 42.
    Thanks
    Charles

    Read the following solution from SAP for your problem:
    When we open XL Reporter we get an error
    message "A required COM add-in program for XL Reporter has not been loaded
    and prohibits Microsoft Excel from running." when trying to open a report
    definition.
    SOLUTION FOR THE PROBLEM:
    Reason and Prerequisites
    You need to be an administrator on the local machine to add COM add-ins.
    Solution
    The user should be added as a member of the administrator role on the
    local computer the first time you start Excel from XL Reporter the first
    time so that the COM addin are registered, then you can remove the user
    from the administrator group again.
    Manually Loading the XL Reporter Excel COM Add-In
    Symptom
    If you install Microsoft Office after installing the XL Reporter
    application or use another Windows user than the one you used when
    installing XL Reporter, you can get an error message.
    Reason and Prerequisites
    The reason for this is that the report writer COM Add-in has not been
    loaded, which prohibits Microsoft Excel from running.
    Solution
    1. Start Microsoft Excel. If you already have the COM Add-ins command on
    the Tools menu, go to step 7.
    2. In the Tools menu, choose Customize.
    This opens the Customize window.
    3. Choose the Commands tab and select Tools from the Categories pane on
    the left.
    4. In the Command pane on the right, scroll down to the COM Add-ins
    command.
    5. Select the COM Add-ins command, hold down the mouse button, and drag
    COM Add-ins from the Commands pane over to the Tools menu on the Microsoft
    Excel men bar. When the Tools menu commands appear, point to where you
    want the COM Add-ins command to appear on the menu and release the mouse
    button.
    6. To close the Customize window, choose Close.
    7. On the Tools menu, choose the new COM Add-ins option.
    This opens the COM Add-ins window.
    8. In the window, choose Add to open the Add Add-in window.
    9.Select the IXXLReporter.dll file located in the Client directory in the
    XL Reporter program installation area and choose OK.
    10. In the COM Add-ins window, select the XL Reporter checkbox and choose
    OK.

  • Hello, I got the plan for individuals of 10 dolars monthly. Now my trial period pf photoshop finished, so the program does not open it ask me for a license number, and I have not recived that number... so now I what happening is I am paying 10 dolar per m

    Hello, I got the plan for individuals of 10 dollars monthly. Now my trial period of Photoshop finished, so the program does not open it ask me for a license number, and I have not received that number... so now I what happening is I am paying 10 dollar per month and my Photoshop does not work. Could somebody let me know how I go from the trial to the real Photoshop?

    http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Mylenium

  • Why do I have to Sign Out in Creative Cloud then Sign back in everytime I open InDesign or any other CC program for that matter to view my previously loaded TypeKit fonts?

    Why do I have to Sign Out in Creative Cloud then Sign back in everytime I open InDesign or any other CC program for that matter to view my previously loaded TypeKit fonts?

    Hi Denise, It seems that your machine is not holding up the activation. Kindly try to following steps.
    https://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Try to create a new admin account and check if the products are activated or not.
    We would be waiting for your response.
    Thanks,
    Atul Saini

Maybe you are looking for