ASN Create Option

Hi,
I am using MM-SUS Scenario. Done All the settings and Replicated vendor from ECC to SUS (BD14)
Created PO and can see the Idoc -XML Transfer. The PO is confirmed from SUS and is reflected in the ECC.
Now when I am trying to create the ASN  from SUS (ASN-> Create ASN), I can able see the PO but the "Create ASN" button is not visible.
Not able to create ASN ifrom SUS.
The confirmation control and Ack required is maintained in the PO.
Regards
IS

You must start Adobe Acrobat, not Adobe Reader.

Similar Messages

  • How to create optional parameters in discoverer 10.1.2

    I am new to discoverer, Can any one tell me how to create optional parameters in Discoverer desktop edition in 10.1.2
    I looked at the following thread which says optional parameters can be created in 10.1.2 but doesn't tell how tro create it
    How to create optional parameters in Discoverer
    Thanks in Advance

    Hi.
    In the thread you quoted Michael Armstrong-Smith says that optional parameters can be created in Plus but not in Desktop and that's true.
    So your question "how to create optional parameters in Discoverer desktop" is already answered in that thread.
    Assume that it is a typo and you wanted to ask how to create optional parameters in Plus.
    Then the answer is simple: Just uncheck the "Require users to enter a value" checkbox when creating new parameter.
    Regards Jakub

  • How to create Option Boxes IN A SELECTION SCREEN

    How to create Option Boxes IN A SELECTION SCREEN.
    Thanks!

    Hi Rajesh,
    The following explanation gives clear picture of what is mean of check box and radio button with coding.....................
    <b>CHECK BOX :</b>
    AS CHECKBOX [USER-COMMAND fcode]
    Effect:
    This addition specifies that the input field in the first position of the selection screen is displayed as a checkbox, with the corresponding description next to it on the right. The checkbox is selected if the value of para is "X" or r "x". Otherwise, it is not selected.
    The parameter must be created with the type c and length 1. An explicit length len is not permitted. If the addition TYPE is used, this can only be followed by the generic type c or a non-generic data type of type c and length 1.
    The addition USER-COMMAND can be used to assign a function code fcode to the parameter. The function code fcode must be directly specified and may have a maximum length of 20 characters. To evaluate the function code, an interface work area of the structure SSCRFIELDS from the ABAP Dictionary must be declared using the statement TABLES. When the user selects the checkbox on the selection screen, the runtime environment triggers the event AT SELECTION-SCREEN and transfers the function code fcode to the component ucomm of the interface work area sscrfields.
    Notes
    If the TYPE addition is used to make a reference to a data type in the ABAP Dictionary of type CHAR and length 1, and for which t the valid values in the domain are defined as "X" and " ", the parameter is automatically displayed as a checkbox on the selection screen.
    If the addition USER-COMMAND is specified without the addition AS CHECKBOX, and the parameter is of type c with length 1, it is also displayed as a checkbox.
    The addition USER-COMMAND can, for example, be used for screen modifications with the addition MODIF ID (see example).
    <b>Coding :</b>
    PARAMETERS show_all AS CHECKBOX USER-COMMAND flag.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p1(10) TYPE c,
                p2(10) TYPE c,
                p3(10) TYPE c.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.
    PARAMETERS: p4(10) TYPE c MODIF ID bl2,
                p5(10) TYPE c MODIF ID bl2,
                p6(10) TYPE c MODIF ID bl2.
    SELECTION-SCREEN END OF BLOCK b2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF show_all <> 'X' AND
           screen-group1 = 'BL2'.
           screen-active = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    <b>RADIO BUTTON COMMAND :</b>
    RADIOBUTTON GROUP group [USER-COMMAND fcode]
    Effect:
    This addition specifies that the input field is displayed as a radio button in the first position on the selection screen, and the output field is displayed next to it on the right. The radio button is selected if the value of para is "X" or "x". Otherwise, it is not selected.
    group is used to define the radio button group for the parameter. The name group is entered directly as a character string with a maximum of 4 characters. Within a selection screen, there must be a minimum of two parameters in the same radio button group. There cannot be more than one radio button group with the same name in one program, even if they are defined in different selection screens.
    The parameter must be specified with the type c and length 1. Explicit length specification using len is not permitted. If the addition TYPE is used, it can only be followed by the generic type c or a non-generic data type of type c and length 1.
    In a radio button group, only one parameter can be defined with the addition DEFAULT, and the specified value must be "X". By default, the first parameter in a radio button group is set to the value "X", and the rest are set to " ".
    The addition USER-COMMAND can be used to assign a function code fcode to the first parameter in a radio button group. The function code fcode must be specified directly, and have a maximum length of 20 characters. To evaluate the function code, an interface work area of the structure SSCRFIELDS from the ABAP Dictionary must be declared using the statement TABLES. When the user selects any radio button of the radio button group on the selection screen, the runtime environment triggers the event AT SELECTION-SCREEN and transfers the function code fcode to the component ucomm of the interface work area sscrfields.
    Note:
    It is recommended to define the radio buttons of a radio button group directly underneath each other. If the selection screen also contains other elements, it is recommended to define each radio button group within a block surrounded by a frame.
    <b>CODING :</b>
    tables : mkpf,mseg,ekko.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER : P_WERKS LIKE MARC-WERKS MODIF ID S1,
                c as checkbox.
    SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-004.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X' USER-COMMAND UC1.
    SELECTION-SCREEN COMMENT 5(20) TEXT-002 FOR FIELD R1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS : R2 RADIOBUTTON GROUP G1.
    SELECTION-SCREEN COMMENT 5(20) TEXT-003 FOR FIELD R2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B2.
    write :/ p_werks,
           / s_ebeln.
    AT SELECTION-SCREEN OUTPUT .
    LOOP AT SCREEN .
    IF R1 EQ 'X' AND SCREEN-GROUP1 EQ 'S2'.
    SCREEN-INPUT = 0.
    SCREEN-REQUIRED = 1.
    clear s_ebeln[].
    clear p_werks.
    MODIFY SCREEN.
    ENDIF.
    IF R2 EQ 'X' AND SCREEN-GROUP1 EQ 'S1'.
    SCREEN-INPUT = 0.
    SCREEN-REQUIRED = 1.
    clear s_ebeln[].
    clear p_werks.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    Let me knwo if any doubts.
    <b>Reward with points if it helpful</b>
    Regards,
    Vijay

  • Create Option Under File Not Available

    Just purchased Acrobat XI Pro, and was attempting to scan a document to create a PDF. The instructions said to use File/Create/Scanner, but the Create option is not available under File at all. Only Create PDF Online. Please help if anyone can.

    You must start Adobe Acrobat, not Adobe Reader.

  • Enable create option in SU01

    HI Gurus,
      MY user has SAP_ALL Authorization but create option disabled.Chnge option is there but i am not able to change any values in the user data.In both mode(change and disply)it showing grey only.
    Now i need to change the existing user and need create new user too.How to enable create option ?

    ....maybe the IDES distribution was delivered with fault settings and one client is set as client of a CUA....
    So first check SCUA as already suggested.
    If there is no valid CUA-landscape, either delete the CUA landscape directly in transaction SCUA or run report RSDELCUA (called also be SCUA) in SE38. It is advisable to check also BD64, for an existing landscape afterwards and delete it if there is one (RSDELCUA does not delete the BD64-settings).
    b.rgds,
    Bernhard

  • SRM portal create option /change/display

    I am in proces of custamizing new roles in srm portal..here i need to create few role with create option /change/display.Can any one tell me how to proceed this .

    Hi All,
    Can any one pick this ASAP.
    IN SRM portal we have user admin role that come from SAP .
    Here i have a requirement that to create new role to assign helpdesk people where they can only unclock and reset password.is their a way to do this custamizing.
    Edited by: venkatesh kakuru on Sep 28, 2011 10:12 AM

  • Creating option (radio) buttons from Word to PDF (Acrobat Pro)

    Hello,
    I have a word document with form elements (from the form toolbar). After converting this file into a pdf with the acrobat pro add-in I make a interactive pdf with "form field recognition" (in German: "Formularfelderkennung ausführen") of the form menu.
    So far so good.
    But I want to use option buttons, too, not only checkboxes. In Word these option buttons are available only through the toolbar "control element toolbox" (in German: "Steuerelement-Toolbox"). But these elements are not recognized by the above mentioned Acrobat option.
    So, how can I do this without creating these option buttons by hand in Acrobat Pro?
    Thanks, Carlos

    Is it a Designer or Acrobat created form?

  • Quick create option in CRM portal

    Hai Guys,
    In PCUI we have the Quick Create IView there are three options like E-mail, Phone call, task, Appointment but when i am trying to open the Phone call, task appointment link it is not opening it is throwing some error like BSP error i kindly request you guys to give some inputs regarding this.
    Thanks in advance
    Amar

    Hai guys,
    Business Server Page (BSP) error
    What happened?
    Calling the BSP page was terminated due to an error.
    SAP Note
    The following error text was processed in the system:
    No Authorization to Execute BSP Application
    Exception Class CX_CRM_BSP_NOAUTH
    Error Name 
    Program CL_CRM_BSP_FRAME_MAIN=========CP
    Include CL_CRM_BSP_FRAME_MAIN=========CM003
    ABAP Class CL_CRM_BSP_FRAME_MAIN
    Method DO_INIT
    Line 170 
    Long text -
    Error type: Exception
    Your SAP Business Server Pages Team
    Pls try to give some inputs.

  • Creating optional elements using SQL / XML functions

    Hi,
    I am struggling with some SQL / XML functionality in order to create some optional elements in a XMLType.
    I have one table with data to be generated into an XML document. The table looks like this (only the attributes related to the problem are shown):
    msg_id (pk)
    geslacht_hoofdverzekerde
    geboortedatum_hoofdverzekerde
    geslacht_medeverzekerde
    geboortedatum_medeverzekerde
    I have to create an XML document that looks like this:
    <ber:rekenparameters>
    <ber:verzekerde>
    <ber:codeRelatierol>HVZ</ber:codeRelatierol>
    <ber:geslacht>M</ber:geslacht>
    <ber:datumGeboorte>01-01-1960</ber:datumGeboorte>
    </ber:verzekerde>
    <ber:verzekerde>
    <ber:codeRelatierol>MVZ</ber:codeRelatierol>
    <ber:geslacht>V</ber:geslacht>
    <ber:datumGeboorte>01-01-1961</ber:datumGeboorte>
    </ber:verzekerde>
    </ber:rekenparameters>
    Where <ber:codeRelatierol> is hard coded: i.c. of hoofverzekerde 'HVZ' in case of medeverzekerde 'MVZ'.
    Geslacht en datumGeboorte are taken form the table.
    The element <ber:verzekerde> is obligatiry for hoofdverzekerde but optional for medeverzekerde: only in case geslacht_medeverzekerde and geboortedatum_medeverzekerde are not null this 2nd <ber:verzekerde> element has to be added.
    I created the next SQL (I skipped some stuff in order to focus on the problem):
    CREATE OR REPLACE
    VIEW dps_v_berekening_berichten
    AS
    SELECT msg_id as msg_id
    , XMLElement( "ber:berekening"
    , XMLAttributes( 'http://www.w3.org/2001/XMLSchema-instance' AS "xmlns:xsi"
    , 'http://www.mycompany.nl/berekenen' AS "xmlns:ber"
    , 'http://www.mycompany.nl/berekenen http://www.mycompany.nl/berekenen/berekening.xsd' AS "xsi:schemaLocation"
    , XMLElement( "ber:nummerRekenRegel"
    , XMLAttributes( 'http://www.mycompany.nl/berekenen' AS "xmlns:ber" )
    , 1
    , XMLElement( "ber:rekenparameters"
    , XMLAttributes( 'http://www.mycompany.nl/berekenen' AS "xmlns:ber" )
    , XMLElement( "ber:codeEvolutie" ) -- Empty
    , XMLElement( "ber:verzekerde"
    , XMLForest ( 'HVZ' AS "ber:codeRelatierol"
    , xoa.geslacht_hoofdverzekerde AS "ber:geslacht"
    , xoa.geboortedatum_hoofdverzekerde AS "ber:datumGeboorte"
    , XMLElement( "ber:verzekerde"
    , XMLForest ( 'MVZ' AS "ber:codeRelatierol"
    , xoa.geslacht_medeverzekerde AS "ber:geslacht"
    , xoa.geboortedatum_medeverzekerde AS "ber:datumGeboorte"
    -- Some more elements.
    ) AS bericht
    FROM DST_UP1_XML_OUTDATA xoa
    The problem is that the XMLForest always creates an <ber:verzekerde> element for medeverzekerde. I tried to create an inline view with just the "vezekerde"attributes and conditionally joining this inline view with the dst_up1_xml_outdata table. That didn't solve my problem. Because in case of a medeverzekerde available it returned two XML documenst: one that included the hoofdverzekerde and one that included the medeverzekerde. And obviously that's not what I want.
    I imagine I have to juggle with some of these SQL / XML functions although I cannot put the finger on the exact differences between some of these (XMLElement, XMLForest, XMLAgg, XMLSequence). The examples shown in de XML DB Developer's Guide don't seem to adress my problem.
    Help !

    Hi, are you talking about this part that you don't want to be there? I am not so clear about your requirements.
    XMLElement( "ber:verzekerde"
    , XMLForest ( 'MVZ' AS "ber:codeRelatierol"
    , xoa.geslacht_medeverzekerde AS "ber:geslacht"
    , xoa.geboortedatum_medeverzekerde AS "ber:datumGeboorte"
    If you want to control certain subelements so they don't appear, do not use xmlforest. Use xmlelement instead so it is easier to control it using case when. Mark (of Oracle, he should be here soon since OOW is over) showed me this technique and it helps tremendously, because oftentimes XDB will return an empty tag even though your consumers don't like it!
    try something like this,
    (case when xoa.geboortedatum_medeverzekerde = 'MVZ' then
    xmlelement("ber:verzekerde",
    xmlelement("What you want", colname),
    xmlelement("ber:codeRelatierol", 'MVZ'),
    (case when colname is not null or = some other value then
    xmlelement("Rest", colname))
    end)
    end),
    You may have to twig some details there. But the key is to use the case when construct to get rid of unwanted elements or empty elements. So you should only have the elements if you have a value of 'MVZ'. Hope this helps.
    Ben

  • Deployed par file does not show as an iview create option

    Hello Experts,
    I modified the com.sap.portal.runtime.masthead par app and deployed it to the portal as myCustomMasthead.
    I see the par file in under the Support Workset in the portal, but when I'm in content admin and try to create an iview from the deployed par file template, the option for the deployed par does not show? Do I need to request basis to bounce the J2ee engine? What might be wrong?
    Any advice will be appreciated.
    Regards,
    MM

    Hi Nishant,
    Yes the file exists under ROOT/WEB-INF/portal/portalapps.
    And I am not using iview from template option, I am using iview from par file option.
    I did not deploy the par file from NWDS, I created the par file in NWDS and then manually deployed the par file using the par uploader tool in the portal.
    Do I need to do anything in the portalapp.xml file? This is what my portalapp.xml file looks like:
    <application>
      <application-config>
        <property name="ClassLoadingPolicy" value="5.0"/>
        <property name="DeploymentPolicy" value="5.0"/>
        <property name="AuthenticationPolicy" value="5.0"/>
      </application-config>
      <components/>
    <services/>
    </application>
    Then there is also another portalapp.xml in the dist folder that has all this SAP stuff inside it. The top line says not to modify the file.
    I bounced the J2EE Engine but it didnt fix the issue.
    MM

  • I can't create option with option none in the Pay

    Hello, i can't create account with option None i don't have this option help me ;-;
    Screenshoot:
    http://scr.hu/2hq0/8ljty

    http://scr.hu/2hq0/8ljty
    Screenshot

  • Playlist creating options are to limited.

    Why is there no playlist option, when making a playlist? Like to select music from other playlist? Or a way to add music to a certain playlist by clicking on the song? for IOS6 (ipad mini). Those are the only two ways i made playlist in the past... and now they are no where to be found.

    Yes. I believe that was changed and no longer works that way. I remember lots of people complaining about it some time back. I never use the clicker so I don't remember when it changed.

  • How to enable Supplier Sites 'Create' option?

    I have created a supplier and address but not able to create 'Site'. My user is having Buyer, Supplier Administrator roles. Also the user is defined as 'Procurement Agent'. Seems some more setup is missing. Any suggestions?

    This may be related to:
    Unable To Create Supplier Site For A Supplier, Procurement Agent Needs An Employee Record. (Doc ID 1353689.1)
    Jani Rautiainen
    Fusion Applications Developer Relations                             
    https://blogs.oracle.com/fadevrel/

  • Using Combo box to create options

    Hello,
    I am using a Framegrabber to acquire my images from our custom made sensors. We have several models so I wrote several Drivers for each one. I have managed to use a combo box with the names of the sensors to select which driver is loaded into the IMAQ board. However, because the application is getting more and more complex, and because I want to have one universal application for all our sensors, I want to have the ability to select different options according to the driver that is selected. For example, if I select Sensor A, and I want to use the serial communication, I want the address of sensor A to be used in the VI. If I choose Sensor B, the values related to sensor B are to be chosen. I guess the idea is simple to implement using an If Statement in C or other languages, but I don't want to go through that mess, and I want to implement it with LabVIEW.
    I could use a Case structure, but that only gives me two options. And I am not very good with Event structures and I do not know if I can use it for this. I also tried to use a local variable, but it would not let me change the values associated with the labels.
    If you understood what I was trying to say, and have an idea, I would greatly appreciate your help. If you are interested in helping but need a visual illustration, I can put a quick VI together for you.
    Thank you in advance,
    Rami

    Hi.
    I think I am doing something wrong, but, maybe someone can quickly enlighten me.
    The situation is this.
    I have a combo box with about 65 values. I want to feed these into a case structure (to select a range of settings to use later on)
    How do I get the values to also appear in the case headers? All I have is true and false..
    My output of the combo box is a string, not  a number. is that why I dont get the values automatically?
    I've attached the combobox and a case structure.
    /Brian
    Attachments:
    example2.vi ‏7 KB

  • Creating Optional package(OP) for CDC.

    I'am new in J2ME. My first project is to create my own OP based on CDC 1.1 (J2se 1.4). I already search from net but until now i not found a guide for creating OP. For all my friends in this group, my poting activities is based on J2ME from sun. So, please help me how to develop OP or give me a source of info (guide).
    Thanks.
    korbins

    RMI depends on reliable network connection to function properly. This is not the case in the real (wireless) world. You need messaging-based protocal (JMS) for gaurentee data delivery in such an un-reliable environment. Our company has developed a java technology which provides RMI-like programming interface and deliver JMS services transparent to the programmer. Let me know if you are interested and I will send you more info.
    Thanks.

Maybe you are looking for