Substitution for SDM

Hi all,
for development purposes we used the remote SDM API to deploy new development stuff to our J2EE instances. But with NetWeaver CE 7.1 SDM is obsolete. Is there another remote API, for example for JSPM or NWA?
Thanks in advance
Markus

Hi,
JSPM is replacement for SDm for delpoyment for new software for API's
Please go through the following link that will be very useful to you
http://help.sap.com/saphelp_nw70/helpdata/en/1f/c45b4211aac353e10000000a1550b0/content.htm
Thanks & Regards,
Vidyadhar K

Similar Messages

  • What is the default password for SDM in SP15

    Initial password for SDM
    Posted: Mar 22, 2006 2:40 PM    Reply 
    I have installed the SP15 SneakPreview. When i am trying to deploy a webdynpro application into portal from NWDS2.0.15, it is asking for SDM password.
    Can anyone please tell me what is the default password, because i dont remember providing any SDM password during the installation.
    I tried giving the Portal passwword, but it does not seem to work
    Thanks
    Sharath

    the default password is <b>admin</b>
    Here's the document that talks about it:
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/419b479b-0801-0010-f8a1-c26208b4b209">Post-Installation Steps</a>

  • How to set an alerting substitution for another user as admin?

    Dear experts,
    having the case on of our employees went on vaction without entering a substitution for his alerts.
    How can I as an administrator setup a substitution for the alerts of this user?
    Thanks in advance,
    BR Matthias

    No ideads around?

  • Substitution for "Cost of sales Accounting" not working with cycle-trx KSC5

    Hello togehter,
    I have a problem that it seems that a created Substitution for "Cost of sales Accounting" is not executed in our System when running a cycle for Indirect Activity Allocation (Trx. KSC5).
    Now I want to debug the Indirect Activity Allocation but I don't know how those Substitution Steps are generated as code that I can set a breakpoint when executing the cycle with Trx KSC5.
    I want to try a trace when activating the substitution with transaction OBBZ but I'm not able to analyze in which Forms/Functions the Code is generated.
    I also saw some OSS Notes that there are problems with "Cost of Sales Accounting" but I don't know concretely what to do to solve that special problem.
    Kind regards
    Udo

    thanks for your answer.
    I added the filed FKBER in table VWTYGB01.
    Now I can select field "functional area" for CO Substitution.
    nevertheless substitution does not work and set functional area on Dummy FB 9990 for CO postings to CO-object without Functional area.
    Thats curious because I maintained exactly the same Substitution on an other SAP System (IDES Test System) and here it works.
    Any ideas?
    Are there further settigs required after maintenance of table VWTYGB01??
    Thanks in advance

  • Creation of users for SDM

    Hi,
    I have a WAS 6.40 running on a server.Now we have different developers who work on their respective desktops using NWDS.
    When they want to deploy WD app from their NDS,it asks for a SDM passwd.
    What exaclty is this SDM passwd?Is it the passwd for J2EE_ADMIN user?If yes,is it possible to create separate users for SDM so that the developers can have their own user id and passwd without using the J2EE_ADMIN passwd?
    regards,
    Bhupesh

    hi Bhupesh,
    there are no users for SDM as such. you have only a password.
    If you had made a default installation your master password which u give during the installation is your SDM password.
    otherwise, your password is what you gave for SDM excluisvely during the installation (this is Custom Installation).
    if yo had forgotten the password, follow this thread to reset your password.
    Getting SDM Password
    Rgds
    Ak
    Message was edited by: Arunkumar Ravi

  • Creation of substitution for populating field like segment

    Hi Friends,
    It is an  requirement with my client as they have a customized field called Customer Segment Not like SAP standard Segment and they want to populate customer segment in all the records or all the documents posted.
    Luckily, they have only one Customer segment and they want all the documents posted should populate this field by using substitution. I want a help out of you as how do I can write the substitution for this scenario. The customized field is named as YYCSG.
    Regards,
    Shilpa

    Hi,
    Can you please tell me the way to substitute by using VWTYGB01 ? Can you please elaborate this ?
    Regards,
    Shilpa

  • Variable Substitution for Source Directory

    Hello,
    I have seen several threads about using a UDF and variable substitution for dynamically determining the Target Directory.
    Is anyone familiar with (or had to implement) a solution where the Source Directory is dynamically determined.
    My challenge is to connect to a different Source Directory name (sy-datum format, ex:  20070920 ) each day on an ftp site and download all the files in the folder to a know target directory.  I am doing a simple file-to-file transfer, so no mapping is involved.
    Your comments, suggestions and feedback is greatly welcomed.
    Thanks,
    Ralph

    Hello Carme,
    I have not found a solution for this type of event.
    I was attempting this because the FTP site I was connecting to would DELETE a file the moment XI touched it.  So when XI (using FTP Transfer protocol) configured with a DELETE or ARCHIVE (Processing Mode), it would error off because the file was no longer on the FTP site.  I contacted the site but they refused to deactivate their script to auto-delete files.  Using TEST processing mode is not recommended per SAP in a server pool environment.  You would think SAP XI would provide a fourth option in which a DELETE command is not issued back to the FTP site.
    The FTP site did have sub-directories in which copies of the original files were stored, but I could not figure out how to dynamically change the XI Source Directory as the current date changed. 
    I settled on using File NFS (Transfer Protocol) and running the FTP commands from a .bat (batch file).  I put the command I run down at the bottom of the XI page with a 60 second timeout.
    I still do not change to each folder dynamically because the standard FTP  (GET and MGET) commands do not attempt a Delete after file retrieval.
    Perhaps using a batch file is an option you may want to consider using.
    Cheers,
    Ralph

  • ORA-04054 : using variable substitution for the database link name

    Hi,
    I need to use variable substitution for the database link name.
    Here is my command :
    declare
    GET VARCHAR2(50);
    begin
    select OIA_GET_DESIGNATION into GET from INFODRI.OMA_IN_ARTICLES;
    for rec in (select * from [email protected]_GET_DESIGNATION)
    LOOP
    dbms_output.put_line('TEN_CODE vaut : '||rec.ten_code);
    END LOOP;
    exception
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERREUR ORACLE DETECTEE : '||rec.OIR_CUR);
    DBMS_OUTPUT.PUT_LINE('Message Erreur : '||SUBSTR(SQLERRM,1,245));
    :crd := -1;
    end;
    When I run this programm, I receive the error :
    ORA-04054: database link REC.OIA_GET_DESIGNATION does not exist
    When I replace :
    for rec in (select * from [email protected]_GET_DESIGNATION)
    by :
    for rec in (execute immediate 'select * from tensions@'||rec.OIA_GET_DESIGNATION)
    I receive the error :
    PLS-00103 : Encountered the symbol "IMMEDIATE" while parsing.
    What can I do to resolv my problem ?
    Regards,
    Rachel

    What is the name of the DB Link and the name of the object you are selecting
    from?
    I find it easier to create a view on the remote object then use that in selects.
    e.g,
    Link Name = MyLink
    Object_name = Addr_Loc
    create or replace VIEW Rem_Addr_Loc AS
    select * from addr_loc@mylink;
    In the code I then use the view
    begin
      for C_Rec in (select * from Rem_Addr_loc)
      loop
         dbms_output.put_line('Rec: '|| C_Rec.Col1);
      end loop;
    end;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Substitution for Trading Patrner

    Hello All,
    I would like to create the substitution for Trading Partner at G/L Item by following issue:-
    1)     Check some document types  e.g. DR, KR, KZ (Inter-Company)
    2)     Check some G/L Account (excluded 100000 - 1099999)
    3)     Trading partner in G/L Item  should be equal to Trading partner in Vendor/Customer  Item
    For e.g.  If we are posting an entry for document type DR, Customer 1011, trading partner 1010 the trading partner for G/L Item should be 1010 
    Thanks in advance.

    use substitution and create an exit for the mapping of field vbund,
    if the mapping is more extensive, use a mapping table
    A.

  • Profit Center Substitution for Migrated line item

    Dear Expert,
    we migrated the data on feb 2014. past records having the default profit center value in each line item, after the migration we are not using the default profit center , we blocked that through some validation, but some situation, for clearing vendor or customer or gl, the migrated line item having default profit
    center with disabled mode to change. so its throwing the validation error, we cant able to unblock the validation also. we need to write a substitution for this to replace automatically . Eg :
    Default Profit center is : 38000
    it should be replace with to 2038100001
    like wise we have multiple company codes.
    i try to write the prerequisite, herewith i have attached the screen shot, i am getting the error for this, anyone can explain this situation ?
    Regards
    Prince

    Hi
    Please, check these notes
    SAP Note 173798 - User exit for PCA substitution
    SAP Note 1532865 - FAQ: Profit center in the billing document
    SAP Note 150959 - Profit center is incorrect in production order
    SAP Note 530578 - Special stocks in PCA
    SAP Note 594507 - PC with valuated special stock incorrect
    and related notes
    I hope this helps you
    Regards
    Eduardo

  • Font substitution for Times New Roman? Why is Adobe doing this?

    I'm using Adobe Acrobat Pro version 9.2 to read pdfs created by a number of different authors. I'm running Windows 7 64 bit OS. These are NOT pdfs I have created. Some of these pdfs display an incorrect font substitution for Times New Roman and I can't figure out why. In the File/Properties dialog the font property comes up as Times New Roman, True Type, ANSI encoding (Times New Roman has spaces between the words). This font is not embedded. Adobe Sans MM is the font that my Adobe 9.2 substitutes for it, even though I have a true type Times New Roman already installed in Windows.I have installed all updates for both Acrobat and for Windows. If I select the text touch up tool to look at the text, a box comes up saying that the original font is not available and a substitute font will be used. When I look at the drop down box for fonts in Adobe, I see among all of the various fonts available, TimesNewRoman without spaces, but no Times New Roman with spaces. Does this matter?
    When I go to my Windows Control Panel Fonts screen, I see a Times New Roman truetype font available (with spaces, the same as the font the document is requesting). It says OpenType Layout, Digitally Signed, TrueTyepe Outliers. I use it all the time.
    What is required to get Adobe 9 to display this font? It looks like the document is asking for the font I have available on the system and Adobe 9 Pro just isn't identifying it. These same pdfs display just fine on Adobe Acrobat Standard 7.0 on another Windows 7 64 bit OS machine. Is there a separate font library that Adobe has independent of the Windows font library and I simply don't have a complete set of fonts for my version? I don't have the option to have the authors recreate their documents. And they display just fine on an older version of Adobe on a different machine.
    UPDATE: Adobe 9 required more than one update. I did the 300 mb update and the problem described above was still there. I checked again just now for updates, and there was another one. This one, whatever it was, fixed the font substitution problem. So the moral of the story is... update, then update again, and keep doing it until there are no more. Adobe doesn't say "there are xx updates available." You just have to keep on asking for them until it says 'no'.

    The font Radioactive is the problem. It has an incorrect internal name that conflicts with Times New Roman. Delete Radioactive and ban it from any Mac you use.

  • How  we can mention varible substitution for diffrent message payloads

    Hi,
    How  we can mention varible substitution for diffrent message payloads,
    My sceanrio like following,
    According the Outbound idoc message,based on the condition the messages to be split into 9 diffrent files.The sender message may or may not satisfied the condition to one or two messages or  all messages.
    I done the mapping 1:N multimapping in messagemapping & Interface mapping too.
    In reciever file adapter i put the variable substiution like as fallows.
    Variable            Refrence
    Name--            -
    Filename -- payload:message_type_1,1,Segment1,1,Segment2,1,Field_1,1
    <b>How we can mention variable substitution for remaining messages in the same communication channel.my message type names are diffrent for all 9 messagetypes.</b> Any ideas pl forward..,
    When i am testing this scenario,able to processing a one file but the file is not placed in the specified target & gives the follwing error:
    'Conversion configuration error: Unknown structure 'ns1:message_type_2' found in document', probably configuration error in file adapter (XML parser error)'.The file is
    In this case Idoc data satisfied the one message condition only.
    If any ideas & suggestions ..?

    Hi Anjan
    You could always put the "FileName" and "Directory" names into the Dynamic Configuration using a UDF in the map - possibly using a value mapping table to determine the correct values. Then simply reference "%Directory%" and "%FileName%" in the file adapter.  This way you do not have to reference payload variables and you set the names in the map. You will need to tick the box for "use adapter specific message attributes" in the file adapter. you UDF code will look something like
    String dir = "/path";
    String fil = "filename.txt";
    DynamicConfiguration conf = (DynamicConfiguration)container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","Directory");
    conf.put(key,dir);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    conf.put(key,fil);
    - Stephen

  • Substitution for Cost Center

    Dear all,
    I need to use substitution for cost center in some business scenario. Because FI document is automatically created by SD MM side, so cost center maynot be filled in if this account is configured for default accoun assignment in OKB9.
    Now, I want to define a substitution for Cost center field. Such as: if some combination is met, cost center will be filled with A or B ..... (depends on the combination of prerequisites).
    But when I create Substitution, I cannot find field Cost center BSEG-KOSTL in Substitutable fileds Table.
    Do you know how to do it ?
    Thank you very much in advance,
    Best regards,
    Sylvecat.

    Hello!
    See table GB01 for field KOSTL.
    The field EXCLUDE are assigned? If positive that´s should be the cause of your problem.
    Disable this mark to turn field KOSTL able to substitution.
    best regards.

  • How can I add a text substitution for changing st in 1st to superscript?

    I would like to add text substitutions for 1st, 2nd, 3rd, etc. so the letters show up as superscript. I attempted to change the st, nd & rd to superscript in Pages and tried to paste it, but it simply changed it back to regular format. How can I go about changing this?
    Thank you in advance for your help!

    It only works in TextEdit consistently for me. Mail forgets as soon as I sent the message. Pages doesn't even have an Edit > Substitutions menu, nor it is there anything in the inspector.
    So I use [Typinator|http://www.ergonis.com/products/typinator>, which works system-wide, no fuss, and it's more powerful than the built-in text substitution. Another alternative is [Text Expander|http://smilesoftware.com/TextExpander>.
    If the free trails and price still can't help you decide, see this [discussion|http://www.macheist.com/forums/viewtopic.php?id=13544] comparing the two.
    Edit: I eat my words. Getting Typinator to substitute superscript is tricker than I thought.
    Message was edited by: Sam_P

  • Substitution for services

    Colleagues
    We need to create and FI substitution for services in order to apply the cost of them as if the purchase document had Account Assignment Categoryu201DJu201D instead the real u201CFu201D
    For us this mean that the cost will be applied to an account 5XXXXXXX instead of the defined onto the purchase document.
    We havenu2019t been able to this due to into the substitution we cant have  the data of the entry sheet, to identify the replacement account on the T030 table.
    Please let us to know if this is possible.
    Thanks a lo for your help

    Colleagues
    We need to create and FI substitution for services in order to apply the cost of them as if the purchase document had Account Assignment Categoryu201DJu201D instead the real u201CFu201D
    For us this mean that the cost will be applied to an account 5XXXXXXX instead of the defined onto the purchase document.
    We havenu2019t been able to this due to into the substitution we cant have  the data of the entry sheet, to identify the replacement account on the T030 table.
    Please let us to know if this is possible.
    Thanks a lo for your help

Maybe you are looking for